/* ============================================================
   WebBloom Studio — Main Stylesheet
   Color Palette: Navy, Teal, Emerald, White
   Design: Clean, Modern, Mobile-First
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Colors */
  --navy:       #0D1B2A;
  --navy-light: #152336;
  --teal:       #00C9A7;
  --teal-light: #00E5C0;
  --teal-dim:   #00C9A720;
  --emerald:    #10B981;
  --sky:        #38BDF8;
  --white:      #FFFFFF;
  --off-white:  #F8FAFB;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-800:   #1F2937;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #0D1B2A 0%, #0f2744 50%, #0a2a1e 100%);
  --grad-teal:   linear-gradient(135deg, #00C9A7, #10B981);
  --grad-card:   linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  --grad-section: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 1.5rem;
  --container-max: 1200px;

  /* Borders & Shadows */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --shadow-teal: 0 8px 32px rgba(0, 201, 167, 0.25);
  --shadow-teal-lg: 0 16px 48px rgba(0, 201, 167, 0.35);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0, 201, 167, 0.2);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-lg);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ---------- Scroll Animation Utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 1.5rem;
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .8rem 1.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-teal);
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: .6rem 1.4rem;
  font-size: .875rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.nav-mobile a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  padding: .8rem 0;
  transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--teal); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

/* Animated background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: orb-float 12s ease-in-out infinite 2s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0, 201, 167, 0.12);
  border: 1px solid rgba(0, 201, 167, 0.3);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline .highlight {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-stars {
  display: flex;
  gap: 2px;
  color: #FBBF24;
  font-size: 1rem;
}
.hero-proof-text {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}
.hero-proof-text strong {
  color: var(--white);
  font-weight: 600;
}
.hero-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
}

/* Hero illustration */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(0,201,167,.15);
  width: 100%;
  max-width: 520px;
  animation: hero-img-float 6s ease-in-out infinite;
}
@keyframes hero-img-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  animation: hero-img-float 6s ease-in-out infinite;
}
.hero-stat-card:nth-child(2) { animation-delay: -2s; }
.hero-stat-card:nth-child(3) { animation-delay: -4s; }

.hero-stat-card.card-tl {
  top: 15%;
  left: -30px;
}
.hero-stat-card.card-br {
  bottom: 15%;
  right: -30px;
}
.stat-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.stat-info .stat-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1;
}
.stat-info .stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll svg { stroke: rgba(255,255,255,.4); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  padding: var(--section-padding);
  background: var(--off-white);
}
#services .section-header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,.2); }
.service-card:hover .service-icon-wrap svg { stroke: var(--white); }
.service-card:hover .service-card-title { color: var(--white); }
.service-card:hover .service-card-desc { color: rgba(255,255,255,.8); }
.service-card:hover .service-badge { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.3); }
.service-card > * { position: relative; z-index: 1; }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background var(--transition-base);
}
.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  transition: stroke var(--transition-base);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .7rem;
  transition: color var(--transition-base);
}

.service-card-desc {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  transition: color var(--transition-base);
}

.service-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,201,167,.2);
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
#how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}
#how-it-works .section-header {
  margin-bottom: 3.5rem;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  position: relative;
}

/* Connector line (desktop only) */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--emerald));
  opacity: .2;
  z-index: 0;
}

.step-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition-slow);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,201,167,.2);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--grad-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1.2rem;
  box-shadow: var(--shadow-teal);
}

.step-emoji {
  font-size: 1.8rem;
  margin-bottom: .8rem;
  display: block;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.step-desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Background decorations */
#pricing::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,201,167,.08) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  pointer-events: none;
}
#pricing::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,.06) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

#pricing .section-header { margin-bottom: 3rem; }
#pricing .section-title { color: var(--white); }
#pricing .section-subtitle { color: rgba(255,255,255,.6); }

.pricing-card-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-teal);
}

.pricing-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--grad-teal);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-bottom: .5rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  margin-bottom: .5rem;
}
.pricing-currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: .75rem;
}
.pricing-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pricing-period {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  align-self: flex-end;
  margin-bottom: .6rem;
}

.pricing-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.pricing-feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(0, 201, 167, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pricing-feature-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  stroke-width: 3;
}
.pricing-feature-text {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.pricing-feature-text strong { color: var(--white); }

.pricing-cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.pricing-note {
  text-align: center;
  margin-top: 1.2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* Pricing stats row */
.pricing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.pricing-stat {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
}
.pricing-stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .3rem;
}
.pricing-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
#why-us {
  padding: var(--section-padding);
  background: var(--gray-50);
}
#why-us .section-header { margin-bottom: 3.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all var(--transition-base);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(0,201,167,.15);
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0,201,167,.12), rgba(16,185,129,.08));
  border: 1px solid rgba(0,201,167,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.why-content p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-ring {
  position: relative;
  width: 320px;
  height: 320px;
}
.about-image-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--teal), var(--emerald), var(--sky), var(--teal));
  animation: ring-spin 8s linear infinite;
  z-index: 0;
}
.about-image-ring::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--white);
  z-index: 1;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-img {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-badge-card {
  position: absolute;
  bottom: 10px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.about-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.about-badge-text { font-size: .8rem; color: var(--gray-600); }
.about-badge-text strong { display: block; font-weight: 700; color: var(--navy); font-size: .9rem; }

.about-content .section-label { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.2rem; }

.about-story {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-story + .about-story { margin-bottom: 2rem; }

.about-signature {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: .25rem;
}
.about-title {
  font-size: .85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  padding: var(--section-padding);
  background: var(--gray-50);
}
#contact .section-header { margin-bottom: 3rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-intro {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: .5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.contact-detail:hover {
  border-color: rgba(0,201,167,.2);
  box-shadow: var(--shadow-sm);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--teal); }
.contact-detail-content .label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  margin-bottom: .15rem;
}
.contact-detail-content .value {
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
}
.contact-detail-content .value a {
  color: var(--navy);
  transition: color var(--transition-fast);
}
.contact-detail-content .value a:hover { color: var(--teal); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.8rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,201,167,.12);
}

.form-group textarea { min-height: 140px; }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}
.form-success svg { stroke: var(--teal); width: 48px; height: 48px; }
.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.form-success p { color: var(--gray-600); font-size: .92rem; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
#cta {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,201,167,.12) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content .section-label { margin-bottom: 1.5rem; }
.cta-content .section-title { color: var(--white); margin-bottom: 1.2rem; }
.cta-content .section-subtitle { color: rgba(255,255,255,.6); margin-bottom: 2.5rem; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta-note {
  margin-top: 1.5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--teal); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-subheadline { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-illustration { order: -1; }
  .hero-stat-card.card-tl { left: 0; }
  .hero-stat-card.card-br { right: 0; }

  .about-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .about-image-wrap { justify-content: center; }
  .about-image-ring { width: 260px; height: 260px; }
  .about-img { width: 260px; height: 260px; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .pricing-stats { grid-template-columns: 1fr; gap: 1rem; }

  .steps-wrapper::before { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-padding: 3.5rem 1.25rem; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-headline { font-size: 2.2rem; }
  .hero-stat-card { display: none; }
  .hero-scroll { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .pricing-number { font-size: 4rem; }

  .about-image-ring { width: 220px; height: 220px; }
  .about-img { width: 220px; height: 220px; }
  .about-badge-card { right: 20px; }

  .cta-actions { flex-direction: column; align-items: center; }
}
