/* ===================================================================
   DESIGN TOKENS
=================================================================== */
:root{
  --ink: #241a14;
  --ink-soft: #5c4d42;
  --ink-faint: #8a7a6d;

  --cream: #fbf6ef;
  --cream-alt: #f3e8da;
  --card: #ffffff;

  --gold: #a9713f;
  --gold-light: #d9b48b;
  --gold-deep: #7c4f26;
  --gold-soft-bg: #f6e9d8;

  --espresso: #241610;
  --espresso-2: #34211a;
  --espresso-3: #402a20;

  --urgency: #a3402d;
  --star: #d9a441;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(36, 26, 20, .06);
  --shadow-md: 0 12px 30px rgba(36, 26, 20, .12);
  --shadow-lg: 0 24px 60px rgba(36, 26, 20, .18);
  --shadow-gold: 0 14px 32px rgba(169, 113, 63, .35);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===================================================================
   RESET & BASE
=================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3{ font-family: var(--font-head); color: var(--ink); margin: 0; line-height: 1.15; }
p{ margin: 0; }
button{ font-family: inherit; }

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 32px);
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold-deep);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================================================
   REUSABLE ELEMENTS
=================================================================== */
.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft-bg);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow-light{
  color: var(--gold-light);
  background: rgba(255,255,255,.08);
}

.stars{ color: var(--star); font-size: 1.05rem; letter-spacing: 2px; }

.section-head{
  max-width: 640px;
  margin: 0 0 52px;
  text-align: left;
}
.section-head h2{ font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.section-head p{ color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }
.section-head.light h2{ color: #fff; }
.section-head.light p{ color: rgba(255,255,255,.72); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
  white-space: nowrap;
}
.btn svg{ width: 1.1em; height: 1.1em; flex-shrink: 0; transition: transform .22s var(--ease); }
.btn-primary{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(169,113,63,.45);
}
.btn-primary:hover .i-arrow{ transform: translateX(4px); }
.btn-primary:active{ transform: translateY(-1px); }
.btn-lg{ padding: 18px 34px; font-size: 1.05rem; }
.btn-xl{ padding: 22px 34px; font-size: 1.15rem; }
.btn-block{ width: 100%; }

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gold-deep);
  padding-bottom: 3px;
  border-bottom: 2px solid var(--gold-light);
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow svg{ width: 18px; height: 18px; }
.link-arrow:hover{ gap: 13px; border-color: var(--gold-deep); }

.i-check{ width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }

/* ===================================================================
   SCROLL REVEAL
=================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible{ transition-delay: .1s; }
.reveal-delay-2.is-visible{ transition-delay: .2s; }
.reveal-delay-3.is-visible{ transition-delay: .3s; }

/* ===================================================================
   HEADER
=================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(251, 246, 239, .92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mark{
  width: 40px; height: 40px;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.brand-mark svg{ width: 100%; height: 100%; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong{ font-family: var(--font-head); font-size: 1.15rem; }

/* ===================================================================
   HERO
=================================================================== */
.hero{
  position: relative;
  padding: clamp(120px, 18vw, 170px) 0 100px;
  overflow: hidden;
}
.hero-blobs{
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(480px 480px at 88% 8%, rgba(217,180,139,.35), transparent 70%),
    radial-gradient(420px 420px at 5% 60%, rgba(169,113,63,.14), transparent 70%);
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.hero-lead{ font-size: 1.15rem; line-height: 1.65; color: var(--ink-soft); margin: 22px 0 30px; max-width: 52ch; }
.hero h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
.hero h1 em{ font-style: italic; color: var(--gold-deep); }

.hero-checks{ display: flex; flex-direction: column; gap: 14px; margin-bottom: 38px; }
.hero-checks li{ display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.02rem; }

.hero-actions{ display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.hero-trust{ display: flex; flex-direction: column; gap: 3px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }

.hero-media{ position: relative; justify-self: center; }
.hero-photo-frame{
  position: relative;
  width: min(400px, 82vw);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  outline: 2px solid var(--gold-light);
  outline-offset: 8px;
}
.hero-photo-frame img{ width: 100%; height: 100%; object-fit: cover; }

.floating-card{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.floating-card svg{ width: 26px; height: 26px; color: var(--gold-deep); flex-shrink: 0; }
.floating-card div{ display: flex; flex-direction: column; line-height: 1.2; }
.floating-card strong{ font-size: .95rem; }
.floating-card span{ font-size: .78rem; color: var(--ink-faint); }
.floating-card-top{ top: 6%; left: -8%; animation-delay: 0s; }
.floating-card-bottom{ bottom: 4%; right: -10%; animation-delay: 1.4s; }

@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

.scroll-cue{
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold-light);
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue svg{ width: 18px; height: 18px; }
@keyframes bob{
  0%, 100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, 6px); }
}

/* ===================================================================
   STATS
=================================================================== */
.stats{ background: var(--espresso); padding: 44px 0; }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat{ display: flex; flex-direction: column; gap: 4px; }
.stat-number{ font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--gold-light); }
.stat-label{ font-size: .85rem; color: rgba(255,255,255,.68); letter-spacing: .02em; }

/* ===================================================================
   ABOUT
=================================================================== */
.about{ padding: clamp(80px, 10vw, 130px) 0; }
.about-inner{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-media{ position: relative; justify-self: center; }
.about-photo-frame{
  width: min(380px, 80vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-photo-ring{
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-copy h2{ font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 20px; }
.about-copy p{ color: var(--ink-soft); font-size: 1.08rem; line-height: 1.7; margin-bottom: 28px; }
.about-badges{ display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.about-badge{
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--gold-soft-bg);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.about-badge:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-badge svg{ width: 20px; height: 20px; color: var(--gold-deep); }

/* ===================================================================
   GALLERY
=================================================================== */
.gallery{ background: var(--cream-alt); padding: clamp(80px, 10vw, 130px) 0; }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.gallery-item{
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}
.gallery-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 20px 18px;
  background: linear-gradient(to top, rgba(36,22,16,.85), transparent);
  color: #fff;
  font-size: .9rem;
  display: flex; flex-direction: column; gap: 2px;
}
.gallery-item figcaption span{ font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; }

/* ===================================================================
   TESTIMONIALS
=================================================================== */
.testimonials{ padding: clamp(80px, 10vw, 130px) 0; }
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.testimonial-card{
  margin: 0;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(169,113,63,.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-icon{ width: 30px; height: 30px; color: var(--gold-light); margin-bottom: 8px; }
.testimonial-card .stars{ margin-bottom: 12px; }
.testimonial-card p{ font-size: 1.03rem; line-height: 1.65; color: var(--ink); margin-bottom: 20px; }
.testimonial-card footer{ display: flex; flex-direction: column; }
.testimonial-card footer strong{ font-size: .95rem; }
.testimonial-card footer span{ font-size: .82rem; color: var(--ink-faint); }

.proof-strip-label{ text-align: center; font-weight: 700; color: var(--ink-faint); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 24px; }

.proof-carousel{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-scroll{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  scroll-snap-type: x mandatory;
  flex: 1;
}
.proof-scroll img{
  scroll-snap-align: start;
  height: clamp(280px, 32vw, 460px);
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  border: 7px solid #fff;
  transition: transform .3s var(--ease);
}
.proof-scroll img:hover{ transform: translateY(-6px); }
.proof-scroll::-webkit-scrollbar{ height: 8px; }
.proof-scroll::-webkit-scrollbar-thumb{ background: var(--gold-light); border-radius: 10px; }
.proof-scroll::-webkit-scrollbar-track{ background: transparent; }

.proof-nav{
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gold-soft-bg);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  z-index: 2;
}
.proof-nav svg{ width: 22px; height: 22px; }
.proof-nav:hover{ background: var(--gold-deep); color: #fff; transform: scale(1.08); }
.proof-nav:active{ transform: scale(.96); }

.proof-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.proof-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: .5;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity .2s, transform .2s, width .2s;
}
.proof-dot.is-active{
  opacity: 1;
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--gold-deep);
}

/* ===================================================================
   CURRICULUM
=================================================================== */
.curriculum{ background: var(--cream-alt); padding: clamp(80px, 10vw, 130px) 0; }
.curriculum-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.curriculum-item{
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.curriculum-item:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.curriculum-icon{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-soft-bg);
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.curriculum-icon svg{ width: 26px; height: 26px; }
.curriculum-item h3{ font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.curriculum-item p{ font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

.certificate-callout{
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg, var(--espresso) 0%, var(--espresso-3) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
}
.certificate-icon{
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217,180,139,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.certificate-icon svg{ width: 32px; height: 32px; }
.certificate-callout h3{ color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.certificate-callout p{ color: rgba(255,255,255,.75); line-height: 1.55; }

/* ===================================================================
   OFFER
=================================================================== */
.offer{
  position: relative;
  background: var(--espresso);
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
}
.offer-blobs{
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(500px 500px at 10% 0%, rgba(217,180,139,.14), transparent 70%),
    radial-gradient(500px 500px at 95% 100%, rgba(163,64,45,.16), transparent 70%);
}
.offer .container{ position: relative; z-index: 1; }
.offer .section-head{ margin-inline: auto; text-align: center; }

.offer-card{
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 48px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.countdown{ display: flex; justify-content: center; gap: 12px; margin-bottom: 30px; }
.countdown-unit{
  background: var(--urgency);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 6px;
  width: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.countdown-unit span{ font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.countdown-unit small{ font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }

.offer-price{ display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.price-old{ text-decoration: line-through; color: var(--ink-faint); font-size: .95rem; }
.price-installments{ font-size: 1.9rem; font-family: var(--font-head); font-weight: 700; color: var(--gold-deep); }
.price-cash{ font-size: 1.05rem; color: var(--ink-soft); font-weight: 600; }

.offer-includes{ text-align: left; display: flex; flex-direction: column; gap: 14px; margin: 0 0 32px; }
.offer-includes li{ display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .98rem; }

.offer-fine{ margin-top: 16px; font-size: .82rem; color: var(--ink-faint); }

.kiwify-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: #f4fbf6;
  border: 1px solid #d5eedd;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  color: var(--ink-soft);
}
.kiwify-badge strong{ color: #00A650; font-weight: 700; }
.kiwify-icon{ width: 24px; height: 24px; flex-shrink: 0; object-fit: contain; }

/* ===================================================================
   FAQ
=================================================================== */
.faq{ padding: clamp(80px, 10vw, 120px) 0; }
.faq-inner{ max-width: 760px; }
.faq .section-head{ margin-inline: auto; text-align: center; }
.faq-list{ display: flex; flex-direction: column; gap: 14px; }
.faq-item{
  background: var(--card);
  border: 1px solid var(--gold-soft-bg);
  border-radius: var(--radius-md);
  padding: 6px 26px;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-chevron{ flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-deep); transition: transform .25s var(--ease); }
.faq-item[open] .faq-chevron{ transform: rotate(180deg); }
.faq-item p{ padding-bottom: 22px; color: var(--ink-soft); line-height: 1.6; }

/* ===================================================================
   FINAL CTA
=================================================================== */
.final-cta{ background: var(--cream-alt); padding: 90px 0; }
.final-cta-inner{ text-align: center; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.final-cta h2{ font-size: clamp(1.7rem, 3.4vw, 2.3rem); max-width: 20ch; }

/* ===================================================================
   FOOTER
=================================================================== */
.site-footer{ background: var(--espresso); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand{ display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark{ color: var(--gold-light); }
.footer-brand strong{ display: block; color: #fff; font-family: var(--font-head); font-size: 1.1rem; }
.footer-nav{ display: flex; flex-wrap: wrap; gap: 26px; font-size: .92rem; font-weight: 600; }
.footer-nav a:hover{ color: var(--gold-light); }
.footer-socials{ display: flex; gap: 14px; }
.footer-socials a{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.footer-socials svg{ width: 19px; height: 19px; }
.footer-socials a:hover{ background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-3px); }
.footer-bottom{ padding: 22px 0; text-align: center; font-size: .82rem; }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 1024px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-media{ order: -1; }
}

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-checks{ align-items: center; }
  .hero-checks li{ text-align: left; }
  .hero-actions{ justify-content: center; }
  .hero-media{ order: -1; margin-bottom: 20px; }
  .floating-card-top{ left: -4%; }
  .floating-card-bottom{ right: -4%; }

  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .certificate-callout{ flex-direction: column; text-align: center; }
}

@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .countdown-unit{ width: 62px; padding: 10px 4px; }
  .countdown-unit span{ font-size: 1.3rem; }
  .floating-card{ padding: 10px 14px; }
  .floating-card strong{ font-size: .85rem; }
  .proof-nav{ display: none; }
}
