/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #F7F3EC;
  color: #1C1208;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── TOKENS ── */
:root {

  --ink: #7a6a52;
  --ink-mid: #3D2E1A;
  --ink-soft: #7A6A52;
  --forest: #1E4030;
  --forest-mid: #2D5A3D;
  --forest-lt: #4A7C5F;
  --leaf: #5C9E6E;
  --gold: #B8892A;
  --gold-lt: #D4A84B;
  --gold-pale: #F0DFB0;
  --cream: #F7F3EC;
  --cream-dk: #EDE5D5;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --pad: clamp(20px, 5vw, 80px);
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 64, 48, 0.1);
  transition: box-shadow 0.3s;
}

.nav-logo {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--forest-mid) !important;
}

.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* left panel */
.hero-left {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px) clamp(32px, 5vw, 80px);
  position: relative;
  z-index: 2;
}

/* decorative vertical text */
.hero-vert {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  z-index: 3;
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 2rem;
}

.hero-overline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-lt);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest) !important;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-ghost-w {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-w:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
}

/* hero right — organic image collage */
.hero-right {
  position: relative;
  background: var(--cream-dk);
  overflow: hidden;
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E4030' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/asset_37ca773b.jpeg") center 15%/cover no-repeat;
  filter: grayscale(15%) contrast(1.05);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237, 229, 213, 0.3) 0%, transparent 60%),
    linear-gradient(0deg, rgba(237, 229, 213, 0.9) 0%, transparent 40%);
}

/* floating card over hero image */
.hero-float-card {
  position: absolute;
  bottom: 48px;
  left: 40px;
  background: var(--forest);
  padding: 24px 28px;
  border-radius: 3px;
  max-width: 280px;
  z-index: 5;
  box-shadow: 0 20px 60px rgba(30, 64, 48, 0.35);
}

.hfc-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 10px;
  display: block;
}

.hfc-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.hfc-name {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  display: block;
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
}

.stat-note {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.4;
}

/* ══════════════════════════════════
   SECTION SHARED
══════════════════════════════════ */
.section {
  padding: clamp(60px, 8vw, 120px) var(--pad);
}

.section.alt {
  background: var(--cream-dk);
}

.section.dark {
  background: var(--forest);
}

.sec-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sec-overline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.sec-h2 em {
  font-style: italic;
}

.sec-h2.light {
  color: #fff;
}

.sec-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 3rem;
}

.sec-body.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════
   HOW IT WORKS — 3 PILLARS
══════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.pillar-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 64, 48, 0.1);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.pillar-num {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.pillar-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--ink-soft);
}

/* ══════════════════════════════════
   WHAT MAKES US DIFFERENT
══════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  margin-bottom: 4rem;
}

.diff-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.diff-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.diff-item p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* pull quote */
.pull-quote-block {
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 4px 4px 0;
  max-width: 780px;
  margin: 0 auto;
}

.pull-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.pull-quote-attr {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
}

/* ══════════════════════════════════
   PATIENT STORIES
══════════════════════════════════ */
.stories-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
}

.stories-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.story-card {
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid rgba(30, 64, 48, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30, 64, 48, 0.12);
}

.story-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: filter 0.3s;
  display: block;
}

.story-card:hover .story-photo {
  filter: grayscale(0%);
}

.story-body {
  padding: 1.5rem;
  border-top: 2.5px solid var(--forest);
}

.story-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.story-badge {
  display: inline-block;
  background: rgba(30, 64, 48, 0.08);
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.story-quote {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.65;
}

.story-quote::before {
  content: 'C';
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 0;
  vertical-align: -4px;
  margin-right: 3px;
}

.stories-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest-lt);
  padding-bottom: 3px;
  margin-top: 2rem;
  transition: color 0.2s;
}

.stories-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ══════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════ */
.founder-section {
  background: var(--forest);
  padding: clamp(60px, 7vw, 100px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.founder-left {}

.founder-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
  display: block;
}

.founder-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
}

.founder-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.founder-text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.6);
}

.founder-right {
  position: relative;
}

.founder-quote-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.fqc-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.fqc-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.fqc-attr {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* ══════════════════════════════════
   FOOTER CTA
══════════════════════════════════ */
.footer-cta {
  background: #1c1208;
  padding: clamp(60px, 7vw, 100px) var(--pad);
  text-align: center;
}

.fcta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  display: block;
}

.fcta-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.fcta-h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.fcta-sub {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.fcta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-wa:hover {
  background: #1ea855;
}

.btn-call {
  display: inline-block;
  background: var(--forest-mid);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-call:hover {
  background: var(--forest);
}

.btn-video {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem 2rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-video:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--forest);
  padding: 2.5rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

footer img {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.footer-locs {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  text-align: center;
}

.footer-contact {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  text-align: right;
}

.footer-contact a {
  color: var(--gold-lt);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--forest);
  height: 2px;
  width: 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  bottom: -8px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 100px var(--pad) 60px;
    text-align: center;
    align-items: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-right {}

  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .stories-intro .sec-body {
    margin-left: auto;
    margin-right: auto;
  }

  .stories-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: 1.5rem;
  }

  /* Hamburger Menu */
  .nav-toggle-label {
    display: flex;
    align-items: center;
    width: auto;
    padding: 10px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--cream-dk);
    z-index: 499;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1rem;
    display: block;
    width: 100%;
  }

  .nav-wa-li {
    margin-top: 1rem;
  }

  .nav-wa {
    justify-content: center;
    width: 100%;
  }

  .nav-toggle:checked~.nav-links {
    transform: translateY(0);
  }

  .nav-toggle:checked~.nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked~.nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked~.nav-toggle-label span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .stats-bar {
    grid-template-columns: 1fr !important;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .stories-intro {
    margin-bottom: 2.5rem;
  }

  .stories-cards {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .founder-right {
    order: -1;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2.4rem !important;
  }

  .sec-h2 {
    font-size: 2.2rem !important;
  }

  .stat-num {
    font-size: 3.2rem !important;
  }

  .fcta-btns,
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .btn-primary,
  .btn-ghost-w {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .pull-quote-block {
    padding: 1.5rem;
  }
}

@media (max-width: 375px) {
  :root {
    --pad: 1rem;
  }

  .nav-logo {
    height: 36px;
  }

  .hero-left {
    padding-top: 80px;
  }

  .hero-h1 {
    font-size: 1.8rem !important;
  }

  .section {
    padding: 40px var(--pad);
  }
}

@media (max-width: 360px) {
  :root {
    font-size: 14px;
  }

  .stat-num {
    font-size: 2.8rem !important;
  }
}

/* ── FADE-IN ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp 0.7s ease both;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.25s;
}

.d3 {
  animation-delay: 0.4s;
}

.d4 {
  animation-delay: 0.55s;
}

.d5 {
  animation-delay: 0.7s;
}




.form-wrapper {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 15px 60px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-100 {
  width: 100%;
}

.form-title {
  text-align: center;
  color: #000;
  font-size: 35px;
  font-family: var(--serif);
  font-weight: 700;
  padding: 15px 0 15px 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.form-group {
  width: 100%;
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

input,
select {
  width: 100%;
  height: 42px;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  background: #f7f7f7;
  color: #666;
}

input:focus,
select:focus {
  border-color: #2f2f6d;
  background: #fff;
}

.submit-btn {
  display: block;
  width: 200px;
  height: 42px;
  margin: 10px auto 0;
  border: none;
  border-radius: 4px;
  background: var(--gold);
  ;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 25px;
}

.submit-btn:hover {
  background: var(--gold);
  opacity: 0.9;
}

@media (max-width:480px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-wrapper {
    padding: 15px;
  }

  .form-title {
    font-size: 24px;
  }
}

.captcha-text {
  /* background: var(--forest); */
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 5px;
  justify-content: space-between;

}

#captcha-code {
  background: var(--forest);
  font-size: 25px;
  color: #fff;
  padding: 10px;
}

/* .captcha-search {
  background: #fce28d;
  border-radius: 4px;
  display: flex;
  gap: 10px;
  margin: 10px 0;
  padding: 20px;
} */

.captcha-search img {
  border-radius: 4px;
  cursor: pointer;
  height: 50px;
}

.captcha-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  width: 100%;
}

/* .captcha-field input {
  border: none;
  color: black;
  font-size: 16px;
  height: 30px;
  padding: 10px;
  outline: none;
} */

.captcha-field button {
  font-family: "Special Elite", system-ui;
  background: #3e3e3e;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 15px;
}

.captcha-settings {
  background: #fce28d;
  border-radius: 4px;
  display: flex;
  gap: 10px;
  margin: 10px 0;
  padding: 20px;
}

#result {
  color: #fff;
}