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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

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

ul[role="list"] {
  list-style: none;
}

/* ============================================================
   FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');


/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  /* Brand colours */
  --green:          #2D5F3B;
  --green-dark:     #1f4529;
  --green-light:    #3a7a4d;
  --charcoal:       #1E2A24;
  --charcoal-light: #2a3a30;
  --gold:           #C4973B;
  --gold-light:     #d4aa55;
  --offwhite:       #F5F2EB;
  --offwhite-dark:  #ece9e1;
  --text-primary:   #1E2A24;
  --text-secondary: #6B7A72;
  --text-light:     #f0ede6;
  --white:          #ffffff;
  --error:          #C0392B;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --font-accent:  'Playfair Display', serif;

  /* Spacing */
  --container-max: 1200px;
  --section-pad-v: 96px;
  --section-pad-h: 24px;

  /* UI */
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(30, 42, 36, 0.12);
  --shadow-lg:  0 8px 48px rgba(30, 42, 36, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   UTILITY CLASSES
============================================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-v) var(--section-pad-h);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--gold);
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-headline--light {
  color: var(--white);
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.section-sub--light {
  color: rgba(240, 237, 230, 0.75);
}

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.body-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.gold  { color: var(--gold); }
.green { color: var(--green); }

.mobile-only { display: none; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 12px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  font-size: 0.95rem;
  padding: 16px 32px;
}

.btn-full { width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 95, 59, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(240, 237, 230, 0.3);
}

.btn-outline:hover {
  background: rgba(240, 237, 230, 0.08);
  border-color: var(--offwhite);
}

/* Loading state */
.btn-loading {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text { opacity: 0; }
.btn.loading .btn-loading { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grouped reveals */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }


/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0;
}

#navbar.scrolled {
  background: var(--charcoal);
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: padding 0.4s ease;
}

#navbar.scrolled .nav-container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-logo {
  flex-shrink: 0;
  position: relative;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--charcoal);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 20px 24px 28px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.mobile-menu ul li a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover { color: var(--gold); }


/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Video background ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero-video-wrap.loaded { opacity: 1; }

/* The YT iframe replaces the target div — target both */
#hero-yt-player,
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Cover the hero regardless of aspect ratio */
  width: 177.78vh;   /* 16/9 × 100vh */
  height: 56.25vw;   /* 9/16 × 100vw */
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

/* Charcoal+green tinted overlay — keeps brand colours dominant */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 34, 26, 0.72);
  pointer-events: none;
}

/* Subtle grid / texture overlay */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(45, 95, 59, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 95, 59, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Bottom fade */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, rgba(30, 42, 36, 0.4));
  pointer-events: none;
}

/* Green glow blob */
#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  z-index: 3;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 95, 59, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 4;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 160px 24px 120px;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(240, 237, 230, 0.75);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(240, 237, 230, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
}

.hero-scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(196, 151, 59, 0.6), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   NICHE BANNER
============================================================ */
#niche-banner {
  background: var(--green);
  padding: 20px 24px;
  overflow: hidden;
}

.banner-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.banner-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

.banner-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-items span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}

.banner-items .dot {
  color: rgba(255,255,255,0.35);
  font-size: 1.2rem;
  line-height: 1;
}


/* ============================================================
   ABOUT
============================================================ */
#about {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-copy .section-label { margin-bottom: 12px; }

.about-copy .btn { margin-top: 12px; }

.about-usps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.usp-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(30, 42, 36, 0.06);
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(45, 95, 59, 0.15);
}

.usp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(45, 95, 59, 0.08);
  color: var(--green);
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.usp-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ============================================================
   SERVICES / PRICING
============================================================ */
#services {
  background: var(--charcoal);
}

#services .section-sub { margin-bottom: 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: rgba(45, 95, 59, 0.18);
  border-color: var(--gold);
  transform: translateY(-8px);
}

.pricing-card--featured:hover {
  transform: translateY(-12px);
  background: rgba(45, 95, 59, 0.25);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(240, 237, 230, 0.55);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(240, 237, 230, 0.8);
  line-height: 1.5;
}

.plan-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-light);
}

.pricing-card--featured .plan-features li svg {
  color: var(--gold);
}

.pricing-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.5);
  margin-top: 40px;
}

.pricing-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.pricing-note a:hover { color: var(--gold-light); }


/* ============================================================
   PROCESS
============================================================ */
#process {
  background: var(--offwhite);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.25;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.5;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(30, 42, 36, 0.08);
  color: var(--green);
  box-shadow: 0 2px 12px rgba(30, 42, 36, 0.06);
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 59, 0.25);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}

.step-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}



/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: var(--offwhite);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-copy .section-headline {
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-item svg { color: var(--green); flex-shrink: 0; }

.contact-item a:hover { color: var(--green); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 42, 36, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.form-group label span { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--offwhite);
  border: 1.5px solid rgba(30, 42, 36, 0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7A72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 122, 114, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 95, 59, 0.1);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-error {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--error);
  min-height: 16px;
}

.form-disclaimer {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  opacity: 0.7;
}

/* Success message */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 24px;
  text-align: center;
}

.form-success[hidden] { display: none; }

/* Animated checkmark circle */
.success-icon {
  width: 80px;
  height: 80px;
}

.success-circle {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Circle ring draws itself */
.success-circle__ring {
  stroke: var(--green);
  fill: none;
  stroke-dasharray: 157;        /* circumference ≈ 2π×24 ≈ 150.8, rounded up */
  stroke-dashoffset: 157;
  stroke-linecap: round;
  animation: drawRing 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Checkmark draws itself after ring */
.success-circle__check {
  stroke: var(--green);
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* Text fades in after checkmark completes */
.success-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.4s ease 0.9s forwards;
}

.success-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.4s ease 1.05s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px 24px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  border-radius: 4px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(240, 237, 230, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(240, 237, 230, 0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(240, 237, 230, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover { color: rgba(240, 237, 230, 0.6); }


/* ============================================================
   RESPONSIVE — TABLET (768px)
============================================================ */
@media (min-width: 768px) {
  .mobile-only { display: none; }
}

@media (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

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

  .process-grid::before { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
============================================================ */
@media (max-width: 767px) {
  :root {
    --section-pad-v: 64px;
    --section-pad-h: 20px;
  }

  .mobile-only { display: block; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .nav-container {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  #navbar { background: var(--charcoal); }

  /* Hero */
  .hero-container {
    padding: 120px 20px 80px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    gap: 20px;
  }

  .trust-num { font-size: 1.5rem; }

  .hero-scroll-indicator { display: none; }

  /* Sections */
  .section-headline {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  /* About */
  .about-grid { gap: 40px; }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Banner */
  .banner-container { flex-direction: column; align-items: flex-start; }

  /* Swiper arrows */
  .swiper-button-prev,
  .swiper-button-next { display: none !important; }
}


/* ============================================================
   FOCUS STYLES (Accessibility)
============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  #navbar, .hero-scroll-indicator, #testimonials, #contact { display: none; }
}
