@font-face {
  font-family: 'Gilroy-Bold';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local('Gilroy-Bold'), url('../fonts/Gilroy-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Gilroy-Medium';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local('Gilroy-Medium'), url('../fonts/Gilroy-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Gilroy-Regular';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local('Gilroy-Regular'), url('../fonts/Gilroy-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Gilroy-Black';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local('Gilroy-Black'), url('../fonts/Gilroy-Black.woff') format('woff');
}

/* ============================================================
    RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ============================================================
    TOKENS  — edit here, everything inherits
============================================================ */
:root {
  /* Color */
  --bg:          #ffffff;
  --surface:     #1a1a1a;
  --surface-2:   #363636;
  --text-body:      #202020;
  --border:      #eeeeee;
  --ink:         #000;
  --ink-muted:   #383838;
  --accent:      #f6a93e;
  --accent-dark: #f69f45;
  --color-primary : #F9C42D;
  --color-yellow: #d2ae2d;
  --color-gray-ligther: #F5F3F3;

  /* Type */
  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Gilroy-Regular', sans-serif;
  --ff-medium: 'Gilroy-Medium', sans-serif;
  --ff-bold: 'Gilroy-Bold', sans-serif;
  --ff-black: 'Gilroy-Black', sans-serif;

  /* Mobile-first fluid scale */
  --fs-xs:   0.6875rem;  /* 11px */
  --fs-sm:   0.8125rem;  /* 13px */
  --fs-base: 1rem;       /* 16px */
  --fs-md:   1.0625rem;  /* 17px */
  --fs-lg:   1.25rem;    /* 20px */
  --fs-xl:   1.625rem;   /* 26px */
  --fs-2xl:  2rem;       /* 32px */
  --fs-3xl:  2.5rem;     /* 40px */
  --fs-hero: clamp(1.2rem, 6vw, 2.5rem);

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   800;

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-normal: 1.55;
  --lh-loose:  1.75;

  /* Spacing — 4pt grid */
  --s1:  0.25rem;   /*  4px */
  --s2:  0.5rem;    /*  8px */
  --s3:  0.75rem;   /* 12px */
  --s4:  1rem;      /* 16px */
  --s5:  1.25rem;   /* 20px */
  --s6:  1.5rem;    /* 24px */
  --s8:  2rem;      /* 32px */
  --s10: 2.5rem;    /* 40px */
  --s12: 3rem;      /* 48px */
  --s16: 4rem;      /* 64px */
  --s20: 5rem;      /* 80px */
  --s24: 6rem;      /* 96px */

  /* Layout */
  --content-w: 1400px;
  --gutter:    var(--s5);   /* mobile gutter */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.45);

  /* Motion */
  --ease:     cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
  --dur-fast: 140ms;
  --dur-base: 260ms;
  --dur-slow: 420ms;

  /* Touch targets */
  --touch-min: 36px;
}

/* Wider gutter on larger screens */
@media (min-width: 640px)  { :root { --gutter: var(--s8);  } }
@media (min-width: 1024px) { :root { --gutter: var(--s24); } }

/* ============================================================
    BASE
============================================================ */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-head);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-hero); font-weight: var(--fw-black); }
h2 { font-size: clamp(1.75rem, 5vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.25rem, 3.5vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); font-family: var(--ff-body); font-weight: var(--fw-semi); letter-spacing: 0; }

p { max-width: 65ch; }
p + p { margin-top: var(--s4); }

.label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Links ── */
.link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast);
}
.link:hover { border-color: var(--accent); }

.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-none { list-style-type: none; }

/* ============================================================
    LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .container { max-width: var(--content-w); }
}
.section        { padding-block: var(--s16); }
.section--lg    { padding-block: var(--s24); }
.section--sm    { padding-block: var(--s10); }

/* Stack: vertical flow with gap */
.stack        { display: flex; flex-direction: column; }
.stack--2     { gap: var(--s2); }
.stack--4     { gap: var(--s4); }
.stack--6     { gap: var(--s6); }
.stack--8     { gap: var(--s8); }
.stack--12    { gap: var(--s12); }

/* Cluster: horizontal wrap */
.cluster      { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); }
.cluster--gap-2 { gap: var(--s2); }
.cluster--gap-4 { gap: var(--s4); }
.cluster--gap-6 { gap: var(--s6); }

.flex {
  display: flex;
}
/* Auto grid */
.grid {
  display: grid;
  gap: var(--s6);
}

.grid--reverse {
  direction: rtl;
}
/* Mobile: 1 col → tablet: 2 col → desktop: as set */
.grid-2 { grid-template-columns: minmax(0, 1fr); }
.grid-3 { grid-template-columns: minmax(0, 1fr); }
.grid-4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 600px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid--reverse {
    direction: ltr;
  }
}

/* Flex */
.flex {
  display: flex;
}
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }

/* Helpers */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-muted   { color: var(--ink-muted); }
.text-accent  { color: var(--accent); }
.text-sm      { font-size: var(--fs-sm); }
.mx-auto      { margin-inline: auto; }
.w-full       { width: 100%; }

/* ============================================================
    COMPONENTS
============================================================ */

/* ── Divider ── */
hr {
  border: none;
  border-top: 3px solid var(--border);
  border-color: #fff;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s1) var(--s3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  white-space: nowrap;
}
.badge--default { background: var(--surface-2); color: var(--ink-muted); }
.badge--accent  { background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); }
.badge--outline { border: 1px solid var(--border); color: var(--ink-muted); }

/* ── Buttons ── */
.svg-icon--size-6 { width: 24px; height: 24px; stroke-width: 2.5; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: var(--touch-min);
  padding: var(--s3) var(--s5);
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  font-family: var(--ff-bold);
  cursor: pointer;
  white-space: normal;
  text-align: center;
  border: 1.5px solid transparent;
  transition:
    background var(--dur-base) var(--ease),
    color      var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    transform  var(--dur-fast) var(--ease),
    box-shadow var(--dur-base) var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--accent);
  color: #0f0f0f;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--ink-muted); }

.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--ink); }

/* Full-width on mobile */
.btn--full { width: 100%; }
@media (min-width: 480px) { .btn--full { width: auto; } }

/* Larger padding + nowrap once there's room */
@media (min-width: 768px) {
  .btn {
    padding: var(--s4) var(--s16);
    font-size: var(--fs-md);
    white-space: nowrap;
  }
}

/* ── Card ── */
.card {
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: var(--s6);
  transition:
    background-color var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease);
}
.card:hover {
  border-color: var(--border);
  background-color: var(--color-gray-ligther);
}
.card--accent:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); }

/* ── Form ── */
.form-group { display: flex; flex-direction: column; gap: var(--s2); }

.form-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.form-input {
  width: 100%;
  min-height: var(--touch-min);
  padding: var(--s3) var(--s4);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: var(--fs-base); /* prevents iOS zoom on focus */
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--ink-muted); opacity: 1; }
.form-input:focus        { outline: none; border-color: var(--accent); }

.form-hint {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
}
.form-error {
  font-size: var(--fs-xs);
  color: #f87171;
}

/* ── Avatar ── */
.avatar {
  border-radius: var(--radius-full);
  object-fit: cover;
  background: var(--surface-2);
  flex-shrink: 0;
}
.avatar--sm  { width: 32px; height: 32px; }
.avatar--md  { width: 44px; height: 44px; }
.avatar--lg  { width: 64px; height: 64px; }

/* ============================================================
    NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fffFFFFA;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 10px 0px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo-image {
  width: 70%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-image { width: 100%; }
}

/* Desktop links — hidden on mobile */
.nav__links {
  align-items: center;
  gap: var(--s2);
  display: flex;;
}
.nav__link {
  font-family: var(--ff-bold);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: color var(--dur-fast);
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
}
.nav__link:hover,
.nav__link.active { color: var(--ink); }
.nav__links .btn {
  padding: var(--s1) var(--s2);
  font-size: var(--fs-base);
}

@media (min-width: 768px) {
  .nav__inner  { height: 64px; }
  .nav__links  { display: flex; gap: var(--s3); }
  .nav__link { font-size: var(--fs-md); }
  .nav__links .btn {
    padding: var(--s1) var(--s6);
    font-size: var(--fs-md);
  }
}

.attention {
  background-color: var(--accent);
  color: var(--ink);
  padding: var(--s1) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
}

@media (min-width: 480px) {
  .attention { padding: var(--s1) var(--s16); }
}

.attention p {
  text-align: center;
  display: block;
  margin: auto;
}

.attention p strong {
  font-family: var(--ff-bold);
}

/* ============================================================
    HERO
============================================================ */
.hero {
  padding-block: var(--s8);
  background-color: #fff0;
  background-image: linear-gradient(180deg,#efcf5d 0,#fff 54%);

}
@media (min-width: 768px) { 
  .hero { padding-block: var(--s12); } 
  .hero .grid {
    align-items: center;
  }
}

.hero__eyebrow {
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  letter-spacing: 0.02rem;
}
.hero__title {
  font-family: var(--ff-head);
  font-size: var(--fs-hero);
  color: var(--ink);
  letter-spacing: 0.02rem;
}

.hero__body {
  font-size: var(--fs-lg);
  font-family: var(--ff-medium);
  color: var(--surface-2);
  line-height: var(--lh-normal);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: stretch;
}

.hero__image {
  order: -1;
}

.hero__image img {
  max-width: 100%;
  height: auto;
}

.list-none li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--fs-md);
  font-family: var(--ff-medium);
  line-height: var(--lh-normal);
  margin-bottom: var(--s2);
}

.check-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  stroke: var(--color-primary);
  flex-shrink: 0;
}

.list-none .hero__list-label {
  min-width: 0;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .hero__image {
    order: 1;
  }
}

/* ============================================================
    PRESS
============================================================ */
#press {
  background-color: var(--color-gray-ligther);
  padding-block: var(--s8);
}

.press-list {
  flex-wrap: wrap;
  gap: var(--s4) var(--s2);
  row-gap: var(--s4);
}

.press-list__logo {
  height: 18px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: opacity var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
}

.press-list__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
@media (min-width: 480px) {
  .press-list {
    gap: var(--s6);
  }
  .press-list__logo {
    height: 24px;
  }
}

@media (min-width: 600px) {
  .press-list {
    gap: var(--s6);
  }
  .press-list__logo {
    height: 32px;
  }
}
@media (min-width: 768px) {
  .press-list {
    flex-wrap: nowrap;
    gap: var(--s8);
  }
}

@media (min-width: 1024px) {
  .press-list {
    gap: var(--s16);
  }
  .press-list__logo {
    height: 40px;
  }
}

/* ============================================================
    FEATURES (article + benefits panel)
============================================================ */
.features {
  --features-green:      var(--color-yellow);
  --features-green-dark: #3a8a36;
  --features-tint:       #eaf4e9;
  padding-block: 0;
}

.features .container { overflow: visible; }

.features__grid {
  align-items: start;
  gap: var(--s8);
}

@media (min-width: 900px) {
  .features__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s10);
    align-items: stretch; /* let the right column match the article height */
  }
  .features__benefits { display: flex; }
  .benefits-card { flex: 1; }
}

@media (min-width: 1100px) {
  .features__grid {
    gap: var(--s12);
  }
}

/* ── Article ── */
.features__article {
  font-family: var(--ff-medium);
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--text-body);
  padding-block: var(--s10);
  padding-bottom: var(--s2);
}

@media (min-width: 900px) {
  .features__article { padding-block: var(--s16); }
}
.features__article > * + * { margin-top: var(--s4); }

.features__article p { max-width: 62ch; font-size: var(--fs-lg); }

.features__heading {
  font-family: var(--ff-bold);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--ink-muted);
  text-wrap: balance;
}

.features__article .features__lead {
  font-family: var(--ff-bold);
  font-size: var(--fs-xl);
  color: var(--ink-muted);
  line-height: var(--lh-snug);
}

.features__highlight {
  background-color: #ffce02;
  color: var(--ink-muted);
  padding: 0.05em 0.3em;
  border-radius: 3px;
  font-family: inherit;
  font-weight: inherit;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.features__link {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--ff-medium);
  transition: color var(--dur-fast);
}
.features__link:hover { color: var(--features-green-dark); }

.features__article strong {
  font-family: var(--ff-bold);
  font-weight: var(--fw-bold);
}

.features__chart {
  margin-block: var(--s6);
  padding: var(--s4);
  background: var(--features-tint);
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--features-green) 25%, transparent);
}

.features__chart img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Benefits panel ── */
.features__benefits { width: 100%; }

@media (min-width: 900px) {
  .features__benefits {
    position: sticky;
    top: var(--s10);
  }
}

.benefits-card {
  position: relative;
  background-color: var(--color-yellow);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  color: #fff;
  padding: var(--s8) var(--s5);
  isolation: isolate;
  margin-inline: -2rem;
}

@media (min-width: 480px) {
  .benefits-card { padding: var(--s16) var(--s10); }
}

/* On desktop, the panel bleeds out to the right viewport edge */
@media (min-width: 900px) {
  .benefits-card {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.06);
  }

  .benefits-card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    background-color: var(--features-green);
    background-image: url('../images/features-pattern.webp');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
  }
}

.benefits-card__title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: var(--s8);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  margin-bottom: var(--s8);
}

.benefits-list__item {
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-family: var(--ff-medium);
  font-size: var(--fs-lg);
  color: #fff;
  line-height: var(--lh-snug);
  letter-spacing: 0.02rem;
  flex-direction: column;
}

.benefits-list__item span { 
  min-width: 0; 
  text-align: center;
  font-size: var(--fs-2xl);
}

@media (min-width: 600px) {
  .benefits-list__item { flex-direction: row; gap: var(--s8); }
  .benefits-list__item span { text-align: left; }
  .benefits-card__title {
    margin-bottom: var(--s16);
  }
  .benefits-list {
    gap: var(--s24);
    margin-bottom: var(--s24);
  }
}

.benefits-list__icon {
  width: 105px;
  height: 105px;
  flex-shrink: 0;
  display: block;
}

.benefits-card__cta {
  width: 100%;
  margin-top: var(--s2);
  background-color: #fff;
}

.benefits-card__cta:hover {
  background-color: var(--ink-muted);
  color: #fff;
}

/* ============================================================
    Divider Offer
============================================================ */

.divider-offer {
  background-color: var(--ink);
  color: #FFF;
  padding: var(--s4);
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
  text-align: center;
}

.divider-offer__content {
  gap: var(--s2);
}

.divider-offer__description + .divider-offer__description {
  margin-top: 0;
}

.divider-offer__description a {
  color: #ffe65a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}

/* ============================================================
    Divider Review
============================================================ */

.divider-review {
  background-color: var(--color-yellow);
  text-align: center;
  padding: var(--s10) var(--s4);
  color: #FFF;
}

.divider-review__description {
  font-size: var(--fs-lg);
}

.divider-review__quote {
  font-style: italic;
  font-family: var(--ff-bold);
  color: var(--text-body);
  line-height: var(--lh-snug);
}

/* ============================================================
    Features Cards
============================================================ */
#features_cards {
  background-color: #f5f3f3;
}

#features_cards .card {
  background-color: transparent;
}
#features_cards p {
  text-align: center;
  font-size: var(--fs-lg);
}

#features_cards h4 {
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
}

#features_cards .feature-icon img {
  height: 120px;
  width: 100%;
}

/* ============================================================
    Featured Testimonials
============================================================ */
#featured_testimonials {
  background: var(--color-yellow);
}

#featured_testimonials .grid > div {
  justify-content: center;
  display: flex;
}

.testimonials-heading {
  color: #fff;
  text-shadow: 2px 1px 3px rgb(0 0 0 / .3);
  font-size: clamp(1.75rem, 2vw, var(--fs-3xl));
}

.testimonials-content * {
  text-align: center;
}

.testimonials-content p {
  font-size: var(--fs-lg);
  color: #fff;
}

.testimonials-image img {
  width: 60%;
  height: 100%;
  box-shadow: 3px 3px 10px 0 rgb(0 0 0 / .3);
}

/* ============================================================
    Featured Content
============================================================ */
#featured-content {
  padding: 0;
}
#featured-content .grid {
  gap: 0;
}
#featured-content .featured-content-description {
  padding: var(--s8) var(--s12);
}
#featured-content .featured-content-description-top {
  padding-inline: 0;
}
#featured-content .featured-content-description-bottom {
  padding-inline: 0;
}
@media (min-width: 900px) {
  #featured-content .featured-content-description-top {
    padding-left: 0;
    padding-right: var(--s12);
  }
  #featured-content .featured-content-description-bottom {
    padding-right: 0;
    padding-left: var(--s12);
  }
}
.featured-content-description .featured-content-label {
  font-size: var(--fs-lg);
}
.featured-content-image-top {
  order: -1;
  padding-top: var(--s8);
}
@media (min-width: 900px) {
  .featured-content-image-top {
    order: 1;
    padding-top: 0;
  }
}
.img-ft {
  object-fit: cover;
  width: 800px;
  height: auto;
  margin: auto;
}
.featured-content-description p {
  font-size: var(--fs-lg);
}

#get-noobru-cta {
  background-color: var(--color-yellow);
  background-image: url(../images/cta-panel.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

#steps {
  background-color: var(--color-gray-ligther);
}

#steps .card {
  background-color: transparent;
  padding: var(--s8);
}

#steps h4 {
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
  text-align: center;
}

#recommendations .recommendations__heading {
  text-align: center;
}

#recommendations .recommendations__description {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.recommendations__grid {
  margin-top: var(--s8);
}

#recommendations .card {
  border-radius: var(--radius-lg);
  background: #FAEB7F;
  overflow: hidden;
  padding: 0;
}

#recommendations .card-header {
  background: var(--color-yellow);
  padding: 15px 15px 35px;
  min-height: 130px;
  text-align: left;
}

#recommendations .card-header h4 {
  color: #fff;
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
}

#recommendations .card-header p {
  font-family: var(--ff-bold);
  line-height: var(--lh-tight);
}

.rec_card_img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 16px;
  margin-top: -50px;
}

.rec_card_img_wrap img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 6px solid #FFFFFF;
  display: block;
}

.rec_card_quote {
  font-family: var(--ff-medium);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  padding: 5px 15px 20px;
  text-align: left;
  margin: 0;
  flex: 1;
  letter-spacing: 0.02rem;
}

.customers-reviews {
  background-color: var(--color-yellow);
  color: #fff;
  position: relative;
}
.customers-reviews .container {
  padding-block: var(--s8);
}
.customers-reviews .shape-image {
  direction: ltr;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.customers-reviews .shape-image--top {
  top: 0;
}
.customers-reviews .shape-image--bottom {
  bottom: -1px;
  transform: rotate(180deg);
}
.svg-bg-shape {
  width: calc(100% + 1.3px);
  height: 35px;
}

.shape-fill {
  fill: #fff;
  transform: rotateY(0deg);
  transform-origin: center;
}
.customers-reviews .stars svg {
  width: 30px;
  height: 30px;
  color: #F9C42D;
}
.customers-reviews-header {
  text-align: center;
}

/* ---- Customers carousel ---- */
.customers-carousel {
  margin-top: var(--s8);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.customers-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--s4);
  width: max-content;
  animation: customers-carousel-scroll 50s linear infinite;
  will-change: transform;
}
.customers-carousel__item {
  flex: 0 0 auto;
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes customers-carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--s2))); }
}
@media (prefers-reduced-motion: reduce) {
  .customers-carousel__track { animation: none; }
}
@media (max-width: 640px) {
  .customers-carousel__item { width: 160px; height: 200px; }
}

#why-noobru .why-noobru__content h2 {
 text-align: center;
}

.customers-reviews .subheading {
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
  color: #000;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 640px) {
  .customers-reviews .subheading {
    flex-direction: row;
    gap: var(--s2);
  }
}

/* ---- Customer review cards ---- */
#customers-reviews-cards .grid {
  margin-top: var(--s10);
  gap: var(--s6);
}
.card--custumer-reviews {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  text-align: left;
  padding: var(--s5);
  color: var(--text-body);
}
.card--custumer-reviews:hover {
  background-color: var(--bg);
  border-color: transparent;
}
.card--custumer-reviews__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.card--custumer-reviews__meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.card--custumer-reviews__name {
  font-family: var(--ff-bold);
  font-size: var(--fs-md);
}
.card--custumer-reviews .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.card--custumer-reviews .stars svg {
  width: 18px;
  height: 18px;
  color: #F9C42D;
}
.card--custumer-reviews__title {
  font-family: var(--ff-bold);
  color: var(--color-yellow);
  font-size: var(--fs-xl);
  line-height: 1.25;
  margin: 0;
}
.card--custumer-reviews__body {
  color: var(--ink-muted);
  font-size: var(--fs-lg);
  line-height: var(--lh-tight);
  margin: 0;
}

#more-reviews .more-reviews-header h2 {
  text-align: center;
  font-family: var(--ff-bold);
  font-size: var(--fs-2xl);
}

#more-reviews .more-reviews-header p strong {
  font-family: var(--ff-bold);
}

/* ---- Mini review cards (text-only) ---- */
.reviews-mini-grid {
  margin-top: var(--s8);
  gap: var(--s5);
}
.card--review-mini {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s5);
  text-align: left;
  color: var(--text-body);
  box-shadow: 10px 10px 36px 10px rgb(0 0 0 / .17);
  border-radius: 0;
}
.card--review-mini:hover {
  background-color: var(--bg);
  border-color: transparent;
}
.card--review-mini__name {
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
}
.stars--mini {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #F9C42D;
}
.stars--mini svg {
  width: 30px;
  height: 30px;
}
.card--review-mini__body {
  color: var(--ink-muted);
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  margin: 0;
  flex: 1;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s2);
  color: var(--color-yellow);
  font-family: var(--ff-bold);
  font-size: var(--fs-lg);
}
.verified-badge svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* ---- Read more CTA ---- */
.reviews-cta {
  margin-top: var(--s10);
  display: flex;
  justify-content: center;
}
.btn--read-more {
  background-color: #fff;
  color: var(--color-yellow);
  border: 1.5px solid var(--color-yellow);
  padding: var(--s3) var(--s8);
  letter-spacing: 0.08em;
  font-size: var(--fs-sm);
}
.btn--read-more:hover {
  background-color: var(--color-yellow);
  color: #fff;
}

#money-back-guarantee {
  background-color: var(--color-yellow);
  color: #fff;
  padding-block: var(--s6);
}

.money-back-guarantee-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--s8);
  padding-block: var(--s10);
}

.money-back-guarantee-container h2 {
  text-shadow: 2px 2px 3px rgb(0 0 0 / .3);
  font-size: var(--fs-2xl);
}

.money-back-guarantee-container p {
  color: var(--ink);
  font-size: var(--fs-xl);
}

.money-back-guarantee-container h2,
.money-back-guarantee-container p {
  text-align: center;
}

#money-back-guarantee .feature-icon img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 900px) {
  .money-back-guarantee-container { flex-direction: row; }
  .money-back-guarantee-container h2,
  .money-back-guarantee-container p {
    text-align: left;
  }
  .money-back-guarantee-container {
    gap: var(--s20);
  }
}

#our-mission {
  background-color: var(--border);
  padding-block: var(--s10);
}

.our-mission-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  padding-block: var(--s10);
  justify-content: center;
  align-items: center;
}

.our-mission-wrapper h2 {
  font-size: var(--fs-2xl);
}

.our-mission-wrapper p {
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
}

#our-mission .featured-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

@media (min-width: 900px) {
  .our-mission-wrapper { flex-direction: row; gap: var(--s16); }
}

#help {
  padding-block: var(--s10);
}

#help h2 {
  font-size: var(--fs-2xl);
  text-align: center;
}

#help h2 .highlight {
  color: var(--color-primary)
}

#special-noobru-cta {
  background-color: var(--color-yellow);
  background-image: url(../images/special-offer-cta.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

#special-noobru-cta p {
  text-align: center;
  font-size: var(--fs-lg);
}

/* ============================================================
    FOOTER
============================================================ */
.footer {
  background: var(--surface-2);
  color: #fff;
  text-align: center;
  font-size: var(--fs-lg);
}

.footer__top > *,
.disclaimer p {
  max-width: 90%;
  margin-inline: auto;;
  text-align: center;
}

.footer__copy {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: var(--fs-sm);
  align-items: center;
}

.footer__copy p {
  margin-top: 0;
}

@media (min-width: 600px) {
  .footer__copy {
    flex-direction: row;
    gap: var(--s2);
  }
}

.footer__bottom {
  margin-top: var(--s16);
}

.footer__top h3 {
  font-family: var(--ff-bold);
  font-size: var(--fs-xl);
}
/* ============================================================
    PAGE-LOAD ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp var(--dur-slow) var(--ease) both; }
.anim-d1 { animation-delay: 80ms; }
.anim-d2 { animation-delay: 180ms; }
.anim-d3 { animation-delay: 300ms; }
.anim-d4 { animation-delay: 420ms; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}