/* ============================================
   FINNACLE V2 — Premium Modern Redesign
   Colors: Primary #16a34a, Navy #0f172a, Amber #f59e0b
   Fonts: Inter (headings), DM Sans (body)
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }

body {
  font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #16a34a; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #15803d; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', system-ui, sans-serif;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #0f172a;
}

h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 8px; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: #94a3b8; }
p { margin-bottom: 16px; }

.text-gradient {
  background: linear-gradient(135deg, #16a34a, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 100px;
}
.section-intro {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}
.btn-primary:hover {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: #64748b;
  border-color: #e2e8f0;
}
.btn-ghost:hover {
  color: #0f172a;
  border-color: #cbd5e1;
  background: #f8fafc;
}
.btn-amber {
  background: #f59e0b;
  color: #0f172a;
  border-color: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}
.btn-amber:hover {
  background: #d97706;
  border-color: #d97706;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-header { padding: 10px 24px; font-size: 0.85rem; border-radius: 10px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo-img { height: 36px; width: auto; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(175deg, #f0fdf4 0%, #ffffff 50%, #f8fafc 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.06) 0%, transparent 70%);
}
.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
}
.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(22, 163, 74, 0.03) 0%, transparent 70%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.hero h1 { margin-bottom: 20px; }

.hero-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image {
  flex: 0 0 460px;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.08) 100%);
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
  z-index: 3;
}
.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #0f172a;
}
.hero-float-card span {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ============================================
   BRAND DECORATIONS — Circles, Waves, Dots
   ============================================ */

/* Reusable wavy line (right side) */
.decor-wavy {
  position: relative;
  overflow: hidden;
}
.decor-wavy::after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 200px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='400' viewBox='0 0 120 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0C60 0 0 50 0 100C0 150 120 150 120 200C120 250 0 250 0 300C0 350 120 350 120 400' stroke='%2316a34a' stroke-width='2' fill='none'/%3E%3Cpath d='M80 0C80 0 20 50 20 100C20 150 140 150 140 200C140 250 20 250 20 300C20 350 140 350 140 400' stroke='%2316a34a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Wavy line (left side variant) */
.decor-wavy-left {
  position: relative;
  overflow: hidden;
}
.decor-wavy-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  width: 240px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='400' viewBox='0 0 120 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0C60 0 120 50 120 100C120 150 0 150 0 200C0 250 120 250 120 300C120 350 0 350 0 400' stroke='%2316a34a' stroke-width='2' fill='none'/%3E%3Cpath d='M40 0C40 0 100 50 100 100C100 150 -20 150 -20 200C-20 250 100 250 100 300C100 350 -20 350 -20 400' stroke='%2316a34a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Dot grid pattern */
.decor-dots {
  position: relative;
}
.decor-dots::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(22, 163, 74, 0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
}

/* Green circle blob (top-right) */
.decor-circle-tr {
  position: relative;
}
.decor-circle-tr::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Amber circle blob (bottom-left) */
.decor-circle-bl {
  position: relative;
}
.decor-circle-bl::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Golden circle blob (bottom-right) — #FC9F01 */
.decor-circle-br-gold {
  position: relative;
}
.decor-circle-br-gold::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: 80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(252, 159, 1, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Blue circle blob (top-left) — #1E77E2 */
.decor-circle-tl-blue {
  position: relative;
}
.decor-circle-tl-blue::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(30, 119, 226, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Blue circle blob (bottom-right) — #1E77E2 */
.decor-circle-br-blue {
  position: relative;
}
.decor-circle-br-blue::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: 100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(30, 119, 226, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above decorations */
.decor-wavy > .container,
.decor-wavy-left > .container,
.decor-dots > .container,
.decor-circle-tr > .container,
.decor-circle-bl > .container,
.decor-circle-br-gold > .container,
.decor-circle-tl-blue > .container,
.decor-circle-br-blue > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 88px 0; }

/* ---- Image Frame ---- */
.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}
.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   HOW WE HELP
   ============================================ */
.how-we-help {
  background: #f8fafc;
}

.how-we-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.how-we-help-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.step-card:hover {
  border-color: rgba(22, 163, 74, 0.15);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08);
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16a34a, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 { color: #0f172a; margin-bottom: 4px; }
.step-content p { font-size: 0.9rem; color: #64748b; line-height: 1.6; margin-bottom: 0; }

/* ============================================
   WHY CALL SECTION
   ============================================ */
.why-call-section {
  background: #fff;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.why-card:hover {
  border-color: rgba(22, 163, 74, 0.15);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.08);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card h3 { color: #0f172a; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; color: #64748b; line-height: 1.65; margin-bottom: 0; }

/* ============================================
   TIMELINE (What Happens)
   ============================================ */
.what-happens-section {
  background: #f8fafc;
}

.steps-flow {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Vertical connecting line segments between dots — pure CSS */

.steps-flow-item {
  display: flex;
  align-items: stretch;
  gap: 14px;
  position: relative;
}

/* Dot wrapper — fills full card height so we can align */
.steps-flow-dot-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 38px;
  position: relative;
  z-index: 3;
}
/* First item: dot at top */
.steps-flow-item:first-child .steps-flow-dot-wrap { align-items: flex-start; padding-top: 4px; }
/* Last item: dot at very bottom edge */
.steps-flow-item:last-child .steps-flow-dot-wrap { align-items: flex-end; padding-bottom: 0; }

/* Single continuous line behind all dots using ::before on the flow container */
.steps-flow::before {
  content: '';
  position: absolute;
  left: 19px; /* center of 38px dot-wrap */
  top: 23px; /* center of first dot (4px padding-top + 19px half of 38px) */
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #16a34a 0%, #059669 33%, #f59e0b 66%, #8b5cf6 100%);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.steps-flow-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.steps-flow-dot-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}
.steps-flow-dot-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.steps-flow-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  flex: 1;
}
.steps-flow-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.steps-flow-card h3 {
  color: #16a34a;
  font-size: 1rem;
  margin-bottom: 8px;
}

.steps-flow-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps-flow-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}
.steps-flow-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}
.steps-flow-card ul li:last-child { margin-bottom: 0; }

.steps-flow-card p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.steps-flow-note {
  margin-top: 8px !important;
}
.steps-flow-note em {
  color: #16a34a;
  font-weight: 500;
}

/* ============================================
   DIAGNOSTIC SECTION
   ============================================ */
.diagnostic-section {
  background: #fff;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.diagnostic-content .section-label { margin-bottom: 12px; }

.diagnostic-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.diagnostic-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}
.diagnostic-feature svg { flex-shrink: 0; margin-top: 2px; }

/* Pricing Card */
.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #059669, #f59e0b);
}

.pricing-badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.06);
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.pricing-currency {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16a34a;
  margin-top: 10px;
}
.pricing-value {
  font-family: 'Nunito', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #475569;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list svg { flex-shrink: 0; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: #f8fafc;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-card {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step-num {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #16a34a;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.process-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(22, 163, 74, 0.1);
}

.process-card h3 { color: #0f172a; }
.process-card p { font-size: 0.85rem; color: #64748b; line-height: 1.6; margin-bottom: 0; }

.process-note {
  text-align: center;
  font-size: 0.9rem;
  color: #16a34a;
  font-style: italic;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 36px; /* offset for step number height */
}

/* ============================================
   WALK AWAY (Outcomes)
   ============================================ */
.walk-away-section {
  background: #fff;
}

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

.outcome-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.outcome-card:hover {
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.15);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.06);
  transform: translateY(-2px);
}

.outcome-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-card span {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================
   HEALTH CHECK
   ============================================ */
.health-check-section {
  background: #f8fafc;
}

.health-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.health-check-preview {
  position: relative;
}

.preview-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 480px;
}

.preview-page {
  position: absolute;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}
.preview-page-back {
  width: 72%;
  height: 80%;
  top: 4%;
  left: 18%;
  transform: rotate(3deg);
  opacity: 0.5;
}
.preview-page-mid {
  width: 74%;
  height: 82%;
  top: 6%;
  left: 16%;
  transform: rotate(1.5deg);
  opacity: 0.75;
}
.preview-page-front {
  width: 76%;
  height: 86%;
  top: 8%;
  left: 12%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.preview-header span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 14px;
}

.preview-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.preview-lines span {
  display: block;
  height: 6px;
  width: 100%;
  background: #f1f5f9;
  border-radius: 3px;
}

.preview-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 56px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #16a34a, rgba(22, 163, 74, 0.25));
  border-radius: 4px 4px 0 0;
}

.preview-badge {
  position: absolute;
  bottom: 10%;
  right: 8%;
  background: #f59e0b;
  color: #0f172a;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.health-check-content .section-label { margin-bottom: 12px; }

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}

.cta-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 12px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: #fff;
}

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

.service-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.15);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon img { width: 48px; height: 48px; object-fit: contain; }

.service-card h3 { color: #0f172a; font-size: 0.95rem; }
.service-card p { font-size: 0.85rem; color: #64748b; line-height: 1.65; margin-bottom: 0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(175deg, #f0fdf4 0%, #f8fafc 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #4f3172;
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #fff;
}

.footer-col h2 { color: #fff; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: #fff;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;
}
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom a:hover { color: #fff; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.step-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.step-card.animate-in:nth-child(3) { transition-delay: 0.2s; }

.why-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.why-card.animate-in:nth-child(3) { transition-delay: 0.2s; }

.steps-flow-item.animate-in:nth-child(2) { transition-delay: 0.1s; }
.steps-flow-item.animate-in:nth-child(3) { transition-delay: 0.2s; }
.steps-flow-item.animate-in:nth-child(4) { transition-delay: 0.3s; }

.process-card.animate-in:nth-child(2) { transition-delay: 0.05s; }
.process-card.animate-in:nth-child(4) { transition-delay: 0.1s; }
.process-card.animate-in:nth-child(6) { transition-delay: 0.15s; }
.process-card.animate-in:nth-child(8) { transition-delay: 0.2s; }

.outcome-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.outcome-card.animate-in:nth-child(3) { transition-delay: 0.15s; }
.outcome-card.animate-in:nth-child(4) { transition-delay: 0.2s; }

.service-card.animate-in:nth-child(2) { transition-delay: 0.05s; }
.service-card.animate-in:nth-child(3) { transition-delay: 0.1s; }
.service-card.animate-in:nth-child(4) { transition-delay: 0.15s; }
.service-card.animate-in:nth-child(5) { transition-delay: 0.2s; }
.service-card.animate-in:nth-child(6) { transition-delay: 0.25s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 100px 0 64px; }
  .hero-inner { flex-direction: column-reverse; gap: 40px; }
  .hero-image { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-float-card { left: auto; right: 20px; bottom: -16px; }

  .how-we-help-grid,
  .diagnostic-grid,
  .health-check-grid,
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }

  .health-check-preview { max-width: 280px; margin: 0 auto; order: 1; }
  .health-check-content { text-align: center; order: 2; }
  .cta-image { max-width: 420px; margin: 0 auto; }
  .cta-content { text-align: center; }

  .process-grid { flex-direction: column; align-items: center; }
  .process-connector { transform: rotate(90deg); margin: -8px 0; padding-top: 0; }

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

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .why-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }

  .health-check-content .feature-list { text-align: left; display: inline-block; }
  .health-check-content .btn { width: 100%; justify-content: center; }

  .health-check-preview { overflow: hidden; width: 100%; }
  .preview-stack { max-height: 300px; aspect-ratio: 4 / 5; width: 100%; }
  .preview-page-front { padding: 14px 12px; }
  .preview-title { font-size: 0.75rem; margin-bottom: 8px; }
  .preview-header span { font-size: 0.55rem; }
  .preview-header svg { width: 14px; height: 14px; }
  .preview-lines span { height: 4px; }
  .preview-lines { gap: 4px; margin-bottom: 10px; }
  .preview-chart { height: 32px; gap: 4px; margin-bottom: 8px; }
  .preview-badge { font-size: 0.55rem; padding: 3px 8px; }

  .steps-flow-dot-wrap { width: 34px; }
  .steps-flow-dot { width: 34px; height: 34px; }
  .steps-flow::before { left: 16px; }
  .steps-flow-card { padding: 16px 20px; }

  .btn-lg { padding: 14px 28px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-float-card { display: none; }
  .process-card { padding: 24px 16px; }
}
