/* ============================================================
   LANDING PAGE — Curso IA Imobiliário | Edição Especial Zome
   Visual style aligned with summit.zome.pt
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* === Zome Palette === */
  --c-navy:         #022439;
  --c-navy-deep:    #011a2b;
  --c-white:        #ffffff;
  --c-offwhite:     #f8f8f8;
  --c-light:        #f3f5f8;
  --c-text-dark:    #1a2332;
  --c-text-body:    #3d4f5f;
  --c-text-muted:   #6b7d8d;
  --c-text-light:   rgba(248, 248, 248, .85);
  --c-text-light-2: rgba(248, 248, 248, .55);

  /* === Signature Gradient (Orange → Red → Purple) === */
  --gradient-zome:  linear-gradient(45deg, #FF893E 3%, #FD0034 48%, #8E0067 91%);
  --c-orange:       #FF893E;
  --c-red:          #FD0034;
  --c-purple:       #8E0067;

  /* === Greens for "free" === */
  --c-green:        #10b981;
  --c-green-bg:     rgba(16, 185, 129, .1);

  /* === Layout === */
  --max-w:          1180px;
  --section-py:     110px;
  --radius:         12px;
  --radius-lg:      20px;

  /* === Typography === */
  --font: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* === Transitions === */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--c-text-dark);
  background: var(--c-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS — Pill shape like Zome
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s linear;
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn--pill  { border-radius: 50px; }
.btn--sm    { font-size: .85rem; padding: .6rem 1.5rem; }
.btn--lg    { font-size: 1.05rem; padding: 1rem 2.5rem; }
.btn--xl    { font-size: 1.2rem; padding: 1.1rem 3rem; }
.btn--full  { width: 100%; }

.btn--gradient {
  background: var(--gradient-zome);
  color: var(--c-offwhite);
  border: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(253, 0, 52, .3);
}
.btn--gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 36px rgba(253, 0, 52, .45);
}

.btn--outline {
  background: transparent;
  color: var(--c-offwhite);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.06);
  transform: scale(1.05);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-navy);
  font-weight: 700;
}
.btn--white:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* Pulse animation — like Zome CTAs */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.btn--pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
.btn--pulse:hover {
  animation: none;
  transform: scale(1.05);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(2, 36, 57, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  padding: .6rem 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logos {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.navbar__logo--cx  { height: 32px; }
.navbar__logo--zome { height: 40px; }
.navbar__sep {
  color: rgba(255,255,255,.25);
  font-size: 1.1rem;
  font-weight: 200;
}
.navbar__cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.navbar.scrolled .navbar__cta {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO — Large, dramatic, event-style
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 200px;
  overflow: hidden;
}

/* Background — dark navy with subtle radial glow */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,137,62,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(142,0,103,.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .4;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* === LARGE LOGOS === */
.hero__logos-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.hero__logo-main--zome {
  height: auto;
  width: clamp(200px, 28vw, 340px);
}
.hero__logo-main--cx {
  height: auto;
  width: clamp(160px, 22vw, 280px);
}
.hero__logos-x {
  color: rgba(255,255,255,.2);
  font-size: 2rem;
  font-weight: 200;
}

/* Title */
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--c-text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 400;
}

/* CTAs */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   GRADIENT BANNER — below hero, like Zome's date bar
   ============================================================ */
.gradient-banner {
  background: var(--gradient-zome);
  padding: 2.5rem 0;
  position: relative;
  margin-top: -80px;
  z-index: 3;
}
.gradient-banner__inner {
  text-align: center;
}
.gradient-banner__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.gbchip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
}
.gbchip--strong {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  font-weight: 800;
  font-size: 1.05rem;
}
.gradient-banner__deadline {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-py) 0;
}
.section--white { background: var(--c-white); color: var(--c-text-dark); }
.section--light { background: var(--c-light); color: var(--c-text-dark); }
.section--navy  { background: var(--c-navy);  color: var(--c-offwhite); }

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: var(--gradient-zome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}
.section__label--light,
.section__label--white {
  background: none;
  -webkit-text-fill-color: var(--c-orange);
  color: var(--c-orange);
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section__desc {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.section__desc--light { color: var(--c-text-light-2); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: transform .3s linear, box-shadow .3s;
  box-shadow: 0 5px 30px rgba(214,215,216,.35);
}
.benefit-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 45px rgba(175,177,177,.35);
}
.benefit-card__icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,137,62,.1) 0%, rgba(142,0,103,.08) 100%);
  color: var(--c-orange);
  margin-bottom: 1.5rem;
}
.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  line-height: 1.3;
  color: var(--c-navy);
}
.benefit-card p {
  font-size: .95rem;
  color: var(--c-text-body);
  line-height: 1.6;
}

/* ============================================================
   AUDIENCE / PARA QUEM
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: transform .3s linear, border-color .3s;
}
.audience-card:hover {
  transform: scale(1.05);
  border-color: var(--c-orange);
}
.audience-card__icon {
  color: var(--c-orange);
  margin-bottom: 1.25rem;
}
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: .6rem;
}
.audience-card p {
  font-size: .88rem;
  color: var(--c-text-light-2);
  line-height: 1.55;
}

/* ============================================================
   PROGRAM
   ============================================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-module {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(214,215,216,.35);
  transition: transform .3s linear;
}
.program-module:hover { transform: scale(1.02); }

.program-module__header {
  background: var(--gradient-zome);
  padding: 2rem 2.5rem;
}
.program-module__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.75);
  margin-bottom: .4rem;
}
.program-module__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-white);
}
.program-module__content {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.program-topic {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.program-topic__dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gradient-zome);
  margin-top: .35rem;
}
.program-topic h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: .3rem;
}
.program-topic p {
  font-size: .92rem;
  color: var(--c-text-body);
  line-height: 1.55;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card__top {
  background: var(--gradient-zome);
  padding: 2.5rem 3rem;
  text-align: center;
}
.pricing-card__edition {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.75);
  margin-bottom: .4rem;
}
.pricing-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: .3rem;
}
.pricing-card__modules {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}

.pricing-card__body {
  padding: 3rem;
}
.pricing-card__price-block {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-card__amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: -.02em;
}
.pricing-card__vat {
  display: block;
  font-size: .9rem;
  color: var(--c-text-light-2);
  margin-top: .2rem;
}

.pricing-card__free {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-green-bg);
  border: 1px solid rgba(16, 185, 129, .25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--c-green);
}
.pricing-card__free strong {
  display: block;
  font-size: 1.05rem;
}
.pricing-card__free span {
  display: block;
  font-size: .85rem;
  opacity: .8;
  margin-top: .2rem;
}

.pricing-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pricing-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--c-offwhite);
}
.pricing-detail svg { flex-shrink: 0; color: var(--c-orange); margin-top: .15rem; }
.pricing-detail strong { display: block; font-size: .95rem; font-weight: 700; }
.pricing-detail span { display: block; font-size: .82rem; color: var(--c-text-light-2); margin-top: .15rem; }

.pricing-card__cta {
  padding: 0 3rem 3rem;
  text-align: center;
}
.pricing-card__note {
  font-size: .85rem;
  color: var(--c-orange);
  margin-top: 1rem;
  font-weight: 700;
}

/* ============================================================
   URGENCY
   ============================================================ */
.section--urgency {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #1a0a00 0%, #2d0800 40%, #250020 100%);
  color: var(--c-white);
}
.urgency-block {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.urgency-block__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  line-height: 1.15;
}
.urgency-items {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.urgency-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.urgency-item svg { flex-shrink: 0; color: var(--c-orange); margin-top: .15rem; }
.urgency-item strong { display: block; font-size: 1rem; font-weight: 700; }
.urgency-item span { display: block; font-size: .88rem; color: rgba(255,255,255,.55); margin-top: .2rem; }

/* ============================================================
   PATHWAY / UPSELL
   ============================================================ */
.pathway {
  max-width: 680px;
  margin: 0 auto;
}
.pathway__step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.pathway__marker {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 137, 62, .1);
  border: 2px solid rgba(255, 137, 62, .2);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-orange);
}
.pathway__step--active .pathway__marker {
  background: var(--gradient-zome);
  border-color: transparent;
  color: var(--c-white);
}
.pathway__card {
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 2rem;
  flex: 1;
  box-shadow: 0 5px 30px rgba(214,215,216,.3);
}
.pathway__step--active .pathway__card {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(255, 137, 62, .1), 0 5px 30px rgba(214,215,216,.3);
}
.pathway__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--gradient-zome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .4rem;
}
.pathway__card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: .5rem;
}
.pathway__card p {
  font-size: .92rem;
  color: var(--c-text-body);
  line-height: 1.55;
  margin-bottom: .85rem;
}
.pathway__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-orange);
  margin-bottom: .35rem;
}
.pathway__price span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-text-muted);
}
.pathway__price-old {
  font-size: 1rem;
  color: var(--c-text-muted);
  text-decoration: line-through;
  margin-right: .5rem;
  font-weight: 500;
}
.pathway__note {
  font-size: .85rem;
  color: var(--c-green);
  font-weight: 600;
}

.pathway__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 1.25rem 0 1.25rem 1.75rem;
}
.pathway__connector-line {
  width: 2px;
  height: 20px;
  background: var(--gradient-zome);
  border-radius: 2px;
}
.pathway__connector-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-orange);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] { border-color: var(--c-orange); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--c-white);
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron {
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  color: var(--c-orange);
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { padding: 0 1.75rem 1.5rem; }
.faq-item__a p {
  font-size: .95rem;
  color: var(--c-text-light-2);
  line-height: 1.65;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.section--cta-final {
  padding: var(--section-py) 0 calc(var(--section-py) + 40px);
  background: linear-gradient(170deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
}
.cta-final {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* === Large logos in CTA === */
.cta-final__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.cta-final__logo--zome { width: clamp(160px, 20vw, 240px); }
.cta-final__logo--cx   { width: clamp(130px, 16vw, 200px); }
.cta-final__x {
  color: rgba(255,255,255,.2);
  font-size: 1.5rem;
  font-weight: 200;
}

.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 1rem;
  line-height: 1.12;
}
.cta-final__text {
  font-size: 1.1rem;
  color: var(--c-text-light);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.cta-final__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.cta-final__chip {
  font-size: .88rem;
  font-weight: 700;
  padding: .5rem 1.15rem;
  border-radius: 50px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--c-offwhite);
}
.cta-final__chip--green {
  background: var(--c-green-bg);
  border-color: rgba(16, 185, 129, .25);
  color: var(--c-green);
}
.cta-final__sub {
  font-size: .88rem;
  color: var(--c-orange);
  font-weight: 700;
  margin-top: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 2.5rem 0;
  background: var(--c-navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo { height: 28px; opacity: .5; }
.footer__copy { font-size: .82rem; color: var(--c-text-light-2); }

/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(2, 36, 57, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: .7rem 1rem;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}
.sticky-cta__info {
  font-size: .85rem;
  color: var(--c-offwhite);
}
.sticky-cta__info strong {
  font-size: 1.05rem;
  font-weight: 800;
  margin-right: .3rem;
}
.sticky-cta__free {
  display: block;
  font-size: .72rem;
  color: var(--c-green);
  font-weight: 700;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 90px; }
  .container { max-width: 900px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .program-grid  { grid-template-columns: 1fr; }
  .hero__logo-main--zome { width: clamp(160px, 24vw, 260px); }
  .hero__logo-main--cx   { width: clamp(120px, 18vw, 210px); }
}

@media (max-width: 768px) {
  :root { --section-py: 70px; }
  .container { max-width: 740px; padding: 0 1.5rem; }

  .hero { padding: 100px 0 160px; min-height: auto; }
  .hero__logos-main { gap: 1.25rem; margin-bottom: 2.5rem; }
  .hero__logos-x { font-size: 1.5rem; }

  .benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .gradient-banner { margin-top: -50px; padding: 2rem 0; }
  .gbchip { font-size: .88rem; padding: .4rem 1rem; }

  .pricing-card__body   { padding: 2rem; }
  .pricing-card__cta    { padding: 0 2rem 2rem; }
  .pricing-card__grid   { grid-template-columns: 1fr; }
  .pricing-card__top    { padding: 2rem; }

  .pathway__step { flex-direction: column; gap: 1rem; }
  .pathway__connector { padding-left: 0; }

  .cta-final__logos { gap: 1rem; }
  .cta-final__logo--zome { width: clamp(120px, 28vw, 180px); }
  .cta-final__logo--cx   { width: clamp(100px, 22vw, 150px); }

  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }

  .sticky-cta { display: block; }
}

@media (max-width: 480px) {
  .hero__logos-main { flex-direction: column; gap: .75rem; }
  .hero__logos-x { display: none; }
  .hero__logo-main--zome { width: 240px; }
  .hero__logo-main--cx   { width: 200px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  .gradient-banner__chips { flex-direction: column; align-items: center; }
  .audience-grid { grid-template-columns: 1fr; }

  .navbar__logo--cx  { height: 24px; }
  .navbar__logo--zome { height: 30px; }

  .pricing-card__amount { font-size: 2.8rem; }
  .cta-final__chips { flex-direction: column; align-items: center; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
