/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --gray: #f4f4f4;
  --text: #1a1a1a;
  --accent: #3b82f6;
}

body {
  line-height: 1.5;
  color: #111;
  font-family: "Inter", sans-serif;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.logo {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
}

h2 {
  font-size: clamp(24px, 3.5vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.5vw, 22px);
}

p {
  font-size: 16px;
  color: #555;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.centerMe {
  text-align: center;
}

/* NAV */
.header {
  background: var(--black);
  color: white;
  padding: 10px 0;
}

.home-page .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}

.nav .logo {
  margin-left: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-mark img {
  display: block;
  width: 260px;
  max-width: 45vw;
  height: auto;
}

.home-nav-logo {
  gap: 10px;
  min-width: 52px;
  overflow: hidden;
}

.home-nav-logo img {
  width: 52px;
  height: 52px;
}

.nav-logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(-8px);
  transition:
    max-width 0.25s ease,
    opacity 0.2s ease,
    transform 0.25s ease;
}

.home-page.nav-logo-expanded .nav-logo-text {
  opacity: 1;
  max-width: 230px;
  transform: translateX(0);
}

.nav-logo-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.nav-logo-line {
  width: 42px;
  height: 3px;
  margin: 5px 0 4px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-logo-tagline {
  color: #d9dee7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-logo-mark {
  gap: 10px;
}

.mobile-logo-mark img {
  width: 52px;
  height: 52px;
}

.mobile-logo-mark .nav-logo-text {
  color: white;
  font-family: "Montserrat", sans-serif;
}

.login-link {
  margin-left: 15px;
  padding: 8px 14px;
  border: 1px solid white;
  border-radius: 6px;
  color: white;
  display: flex;
  align-items: center;
}

.login-link:hover {
  background: white;
  color: black;
}

.loginHidden {
  display: none;
}

/* HERO */
.brand-intro {
  background:
    radial-gradient(circle at center top, rgba(59, 130, 246, 0.24), transparent 38%),
    var(--black);
  display: flex;
  align-items: center;
  min-height: 40vh;
  padding: clamp(32px, 4vw, 52px) 0;
  text-align: center;
}

.hero {
  background: var(--gray);
  /* padding: 80px 0; */
  padding: clamp(40px, 4vh, 80px) 0;
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(760px, 92vw);
  height: auto;
  margin: 0 auto;
}

.hero-logo-stacked {
  display: none;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

/* About Me */
.about-hero {
  text-align: center;
  padding: 40px 0;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.approachCard {
  padding: 20px;
}

.about {
  margin-top: 40px !important;
}

/* BUTTONS */
#learnMore {
  padding-left: 0%;
}
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.primary:hover {
  opacity: 0.9;
}

.secondary {
  border: 1px solid #111;
}

.primary {
  background: var(--accent);
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.secondaryBtn {
  background: var(--accent);
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.contactButton {
  background: var(--accent);
  color: white;
  font-family: "Inter", sans-serif;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  /* font-size: 200px; */
}

.link {
  color: var(--accent);
  font-weight: 700;
}

/* SECTIONS */
section {
  padding-top: 70px;
}
.section {
  /* padding-top: 50px;
  padding-bottom: 60px; */
  /* comment out top, keep the bottom */
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.sectionIndex {
  padding-top: 30px;
  padding-bottom: 30px;
}

.sectionIndex .card {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 20px;
}

.sectionIndex .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.start-here-section,
.homepage-faq-section {
  background: #fafafa;
}

.start-here-grid,
.why-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-work-grid {
  grid-template-columns: repeat(4, 1fr);
}

.start-card {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  padding: 30px 24px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  transition: transform 0.2s ease;
}

.start-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.start-card:hover {
  transform: translateY(-5px);
}

.start-card h3 {
  margin: 0 0 12px;
  padding: 0;
  color: var(--text);
}

.start-card p {
  margin: 0;
  line-height: 1.65;
}

.purchaseBtn {
  /* padding-left: 30px; */
  /* border: 2px solid var(--accent); */
  display: flex;
  justify-content: center;
}

.section.alt {
  background: #f9f9f9;
}

.home-about-preview {
  margin-top: 36px;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* GRID */
.grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-items: center;
}

.membership-grid {
  /* display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 0 1rem;
  margin-top: 20px;
  justify-items: center;
  align-items: stretch; */

  /* comment out top, keep the bottom */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  column-gap: 1rem;
  row-gap: 0;
}

.pricing {
  font-size: 4em;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.smallFont {
  font-size: 0.75em;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featuresList {
  flex: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.featuresList li {
  list-style-type: none;
  margin: 0;
  padding: 18px 24px;
  color: #333;
  font-weight: 500;
}

.features {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  justify-items: stretch;
  width: 100%;
  background: #fafafa;
}

.cardColor {
  position: relative;
  background: white;
  padding-bottom: 28px;
  height: 100%;
  overflow: hidden;
}

.cardColor::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.cardColor p,
h3 {
  /* margin-left: 20px;
  margin-right: 20px; */
  padding-left: 20px;
  padding-right: 20px;
}

.cardP {
  margin-left: 20px;
  margin-right: 20px;
}

.card {
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  border-radius: 15px;
  /* color: white; */
  /* padding: 20px; */
}

.cardP {
  color: #555;
}
.purchaseCard h3 {
  color: var(--text);
  padding-top: 30px;
  margin-bottom: 12px;
}

#card {
  padding: 0;
}

.purchaseCard {
  border-color: #e7e7e7;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  transition: transform 0.2s ease;
}

.purchaseCardTop {
  border: 1px solid #e7e7e7;
  border-bottom: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.purchaseCardBottom {
  border: 1px solid #e7e7e7;
  border-top: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.disabled-link {
  background: #d9dee7;
  color: #6b7280;
  opacity: 1;
  pointer-events: none;
}

hr {
  width: calc(100% - 48px);
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #e7e7e7;
}

.card:hover {
  transform: translateY(-5px);
}

.membership-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.membership-card .secondaryBtn {
  align-self: center;
  width: fit-content;
  min-width: 150px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.24);
  text-align: center;
}

.membership-card .secondaryBtn:hover {
  opacity: 0.9;
}

.membership-card .secondaryBtn.disabled-link {
  box-shadow: none;
}

.checkout-agreement {
  padding: 0 20px;
  color: #555;
  font-size: 0.82rem;
  line-height: 1.5;
}

.checkout-agreement a {
  color: var(--accent);
  font-weight: 700;
}

.product-section {
  padding: 70px 20px;
}

.process-section,
.results-preview-section {
  background: #fafafa;
}

.product-section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-fit-grid,
.process-grid,
.product-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.process-step,
.faq-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 30px 24px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.info-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.info-card h3,
.process-step h3,
.faq-card h3 {
  margin: 0 0 12px;
  padding: 0;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.2;
}

.info-card p,
.process-step p,
.faq-card p {
  margin: 0;
  line-height: 1.65;
}

.process-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  background: var(--black);
  color: white;
  font-family: "Montserrat", sans-serif;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:not(:first-child) {
  font-weight: 700;
  color: var(--text);
}

.results-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.results-preview-grid img {
  width: 100%;
  height: 460px;
  padding: 10px;
  object-fit: contain;
  border-radius: 15px;
  border: 1px solid #e7e7e7;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.results-preview-link {
  margin-top: 28px;
}

.product-faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-final-cta {
  background: var(--black);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.product-final-cta p {
  max-width: 680px;
  margin: 12px auto 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .start-here-grid,
  .why-work-grid,
  .testimonial-support {
    grid-template-columns: 1fr;
  }

  .plan-fit-grid,
  .process-grid,
  .results-preview-grid {
    grid-template-columns: 1fr;
  }

  .results-preview-grid img {
    height: 520px;
  }

  .product-faq-grid {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding: 55px 16px;
  }
}

@media (max-width: 640px) {
  .product-section-heading {
    margin-bottom: 24px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 16px;
  }

  .results-preview-grid img {
    height: 420px;
  }

  .product-final-cta {
    padding: 55px 16px;
  }

  .contact-form,
  .auth-card,
  .legal-card {
    padding: 28px 20px;
  }

  .legal-document {
    padding: 50px 16px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-social-links {
    gap: 16px;
  }
}

/* CTA */
.cta {
  background: black;
  color: white;
  text-align: center;
  padding-top: 35px;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px auto 0;
  width: 100%;
  max-width: 720px;
  padding: 28px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fafafa;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.contact-form button {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.contact-section .container {
  max-width: 820px;
  text-align: center;
}

.contact-section p {
  max-width: 620px;
  margin: 8px auto 0;
}

/* SERVICES */
.wioTitle {
  text-align: center;
  margin-bottom: 10px;
}

.approachCard {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 20px;
}

.approachCard::before,
.about-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.approachCard h3 {
  padding: 0;
}

/* RESULTS */
.results-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--gray);
}

.testimonial-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  text-align: left;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.testimonial-card h3 {
  margin: 0 0 12px;
  padding: 0;
}

.testimonial-card p {
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .testimonial-support {
    grid-template-columns: 1fr;
  }
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  height: 500px;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;

  pointer-events: auto;
  touch-action: manipulation;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
}

.carousel-dots {
  margin-top: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #3b82f6;
}

.carousel-track {
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-track-container {
  position: relative;
  z-index: 1;
}

.carousel-btn {
  z-index: 10000;
}

.carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.carousel-track-container {
  height: 500px;
  overflow: hidden;
}

.slide video,
.slide img {
  pointer-events: none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 28px 20px;
  font-size: 14px;
  background: var(--black);
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-social-links,
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social-links {
  gap: 18px;
  margin-bottom: 14px;
}

.footer-links {
  gap: 18px;
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  font-weight: 700;
}

.footer-links a:hover,
.footer-social-link:hover {
  color: var(--accent);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 2-column layout */
.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Right-side box */
.about-box {
  position: relative;
  overflow: hidden;
  background: white;
  padding: 30px 24px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.about-box h3 {
  padding: 0;
  margin-bottom: 12px;
}

.about-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.about-box li {
  margin-bottom: 10px;
}

.legal-page {
  background: #fafafa;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.legal-card h1 {
  margin-bottom: 8px;
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-card h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  padding: 0;
}

.legal-card p,
.legal-card li {
  line-height: 1.75;
}

.legal-card p {
  margin-bottom: 16px;
}

.legal-card ul,
.legal-card ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-card .updated {
  color: #555;
  font-weight: 700;
}

.auth-section {
  min-height: calc(100vh - 156px);
  background: #fafafa;
  padding: 70px 20px;
}

.auth-card {
  max-width: 460px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  text-align: center;
}

.auth-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.auth-card input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #fafafa;
  font-size: 1rem;
}

.auth-card input:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.auth-card button {
  border: 0;
  cursor: pointer;
}

.auth-card p {
  margin-top: 18px;
}

.error-page {
  min-height: calc(100vh - 156px);
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background: #fafafa;
}

.error-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  padding: 42px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  text-align: center;
}

.error-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.error-card p {
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    gap: 10px;
    text-align: right;
  }

  .hamburger {
    display: block;
  }

  .mobile-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .mobile-nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: flex-end;
    text-align: right;
    margin-top: 10px;
  }

  .mobile-nav .nav-links.active {
    display: flex !important;
  }

  .mobile-logo-mark .nav-logo-tagline {
    width: max-content;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-intro {
    min-height: 40vh;
    padding: 18px 0;
  }

  .brand-intro .hero-logo-horizontal {
    display: none;
  }

  .brand-intro .hero-logo-stacked {
    display: block;
    width: min(350px, 86vw);
  }
}

/* Purchase Buttons */
.stripeButton {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Supplements Section */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: white;
}

/* HERO */

.supp {
  /* background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/supplements-banner.jpg");
  background-size: cover;
  background-position: center;
  color: --var();
  text-align: center;
  padding: 100px 20px; */
  background: var(--gray);
  /* padding: 80px 0; */
  padding: clamp(40px, 4vh, 80px) 0;
  text-align: center;
}

.supp h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.supp p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* CATEGORY FILTERS */

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 20px;
}

.category-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background: var(--gray);
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
}

.category-btn:hover {
  background: var(--accent);
  color: white;
}

/* FEATURED PRODUCT */

.featured {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
}

.badge {
  display: inline-block;
  background: #42d7f5;
  /* padding: 8px 14px; */
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-left: 38%;
  margin-right: 38%;
  color: white;
  font-size: 1.25em;
}

.featured-content h2 {
  margin-top: 0;
}

.btnProduct {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.3s;
}

.btnProduct:hover {
  /* background: var(--primary-dark);
  color: var(--black); */
  opacity: 0.8;
}

/* PRODUCT GRID */

.products {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-top: 0;
  margin-left: -20px;
}

.product-info ul {
  padding-left: 18px;
}

.product-info a {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* DAILY STACK */

.stack {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 80px 20px;
}

.stack-container {
  max-width: 1100px;
  margin: auto;
}

.stack-heading {
  text-align: center;
  margin-bottom: 32px;
}

.stack-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack h2 {
  margin-bottom: 0;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stack-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 30px 24px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.08);
  overflow: hidden;
}

.stack-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.stack-item h3 {
  margin: 0 0 12px;
  padding: 0;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
  text-align: center;
}

.stack-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stack {
    padding: 60px 16px;
  }

  .stack-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stack-item {
    min-height: auto;
    padding: 24px 20px 20px;
  }
}

/* FAQ */

.faq {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 30px;
}

.faq h3 {
  margin-left: -20px !important;
}

/* CTA */

.cta {
  background: var(--black);
  color: white;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.cta h2 {
  margin-top: 0;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.mobileBreak {
  display: none;
}

.mobileBreak1 {
  display: none;
}
.mobileBreak2 {
  display: none;
}
.mobileBreak3 {
  display: none;
}
.mobileBreak4 {
  display: none;
}

.membershipPadding {
  padding-left: 30px;
  padding-right: 30px;
}

.membershipPadding p {
  margin-bottom: 0;
}

@media (max-width: 1190px) {
  .mobileBreak {
    display: block;
  }
  /* .mobileBreak1 {
    display: block;
  } */
  .mobileBreak2 {
    display: none;
  }
  @media (max-width: 1080px) {
    .mobileBreak {
      display: block;
    }
    .mobileBreak1 {
      display: block;
    }
    .mobileBreak2 {
      display: none;
    }
  }
  @media (max-width: 1052px) {
    .mobileBreak {
      display: block;
    }
    .mobileBreak1 {
      display: block;
    }
    .mobileBreak2 {
      display: block;
    }
  }

  @media (max-width: 980px) {
    .mobileBreak {
      display: block;
    }
    .mobileBreak1 {
      display: block;
    }
    .mobileBreak2 {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .featured-card {
      grid-template-columns: 1fr;
    }

    .hero h1 {
      font-size: 2.2rem;
    }
    .mobileBreak {
      display: block;
    }
    .mobileBreak1 {
      display: block;
    }
    .mobileBreak2 {
      display: block;
    }
    .mobileBreak3 {
      display: block;
    }
  }

  @media (max-width: 640px) {
    .mobileBreak {
      display: none;
    }
    .mobileBreak1 {
      display: none;
    }
    .mobileBreak2 {
      display: none;
    }
    .mobileBreak3 {
      display: none;
    }
    .mobileBreak4 {
      display: block;
    }
  }

  /* Terms of Service */
  .tos {
    max-width: 900px;
  }

  /* Privacy Policy */
  .privacy-policy {
    max-width: 900px;
  }

  /* Responsive */
  /* tablet */
  @media (max-width: 1024px) {
    .split {
      grid-template-columns: 1fr;
    }

    .grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  /* mobile */
  @media (max-width: 768px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      width: 100%;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      grid-template-columns: 2fr;
      display: flex !important;
    }
    .hero-buttons .btn {
      width: 100%;
      max-width: 100%;
      text-align: center;
    }

    .purchaseBtn iframe,
    .stripeButton {
      width: 100% !important;
      max-width: 100% !important;
      padding: 10px 0 !important;
    }

    @media (max-width: 640px) {
      .grid {
        grid-template-columns: 1fr;
      }

      /* come back */
      .membership-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        row-gap: 0;
        column-gap: 0 !important;
      }
      .purchaseCard.features {
        height: auto;
        margin-bottom: 2rem;
      }
      .featuresList li {
        padding-top: 20px;
        padding-bottom: 20px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        grid-template-columns: 1fr;
        display: flex !important;
      }
      .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
      }

      .purchaseBtn iframe,
      .stripeButton {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 0 !important;
      }
    }
  }
}
