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

:root {
  --bg: #ffffff;
  --bg-2: #f8f9fb;
  --bg-3: #f1f3f7;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.16);
  --text: #0d0d12;
  --text-muted: #52526b;
  --text-dim: #9898ae;
  --accent: #0ea882;       /* teal-green */
  --accent-2: #5b4dea;     /* violet */
  --accent-warm: #f97316;  /* orange */
  --accent-glow: rgba(14,168,130,0.12);
  --accent-glow-2: rgba(91,77,234,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1160px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.22s cubic-bezier(0.25,0.8,0.25,1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(14,168,130,0);
}
.btn-primary:hover {
  background: #0bcf9e;
  box-shadow: 0 0 24px rgba(14,168,130,0.28);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(0,0,0,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 20px rgba(14,168,130,0.15);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); font-size: 16px; padding: 16px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(0,0,0,0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-parent-link {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-parent-link:hover { color: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  display: none;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-link {
  display: block;
  padding: 12px 0;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu .mm-link:hover { color: var(--text); }
.mobile-menu .mm-cta { margin-top: 12px; text-align: center; border-bottom: none; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fdf8 0%, #ffffff 50%, #f5f3ff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #a7f3d8, transparent 70%);
  top: -100px; left: -200px;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  top: 100px; right: -150px;
  animation: blobFloat 18s ease-in-out infinite reverse;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fed7aa, transparent 70%);
  bottom: -100px; left: 40%;
  opacity: 0.2;
  animation: blobFloat 22s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.97); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.subsidiary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(14,168,130,0.08);
  border: 1px solid rgba(14,168,130,0.25);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeInDown 0.7s ease both;
}
.subsidiary-badge a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-accent {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-num sup { font-size: 18px; }
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 5px 12px;
  background: rgba(14,168,130,0.08);
  border-radius: 100px;
  border: 1px solid rgba(14,168,130,0.2);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}

.service-card {
  background: var(--bg);
  position: relative;
  transition: background 0.25s;
  cursor: default;
}
.service-card:hover { background: var(--bg-2); }

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.card-featured {
  grid-column: span 2;
  background: var(--bg-2);
}
.card-featured:hover { background: var(--bg-3); }

.service-card-inner {
  padding: 44px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 4px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-hover);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--border-hover);
  border-right: 1px solid var(--border-hover);
  transform: rotate(45deg);
}

/* ===== WHY ===== */
.why {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.why-bg { position: absolute; inset: 0; pointer-events: none; }
.why-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91,77,234,0.07), transparent 70%);
  right: -200px;
  top: -100px;
  border-radius: 50%;
  filter: blur(60px);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-left { display: flex; flex-direction: column; gap: 24px; }
.why-left .section-header { text-align: left; margin: 0; }
.why-left .section-title { font-size: clamp(32px, 3.5vw, 44px); }
.why-left p { font-size: 16px; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.inline-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 24px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-2); }

.faq-icon {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-a.open { max-height: 200px; }
.faq-a p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.contact-left { display: flex; flex-direction: column; gap: 24px; }
.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--text);
}
.contact-left > p { font-size: 16px; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-detail { display: flex; flex-direction: column; gap: 3px; }
.cd-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 600; }
.contact-detail a { font-size: 15px; color: var(--text-muted); transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,168,130,0.1);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg); color: var(--text); }

.form-note { font-size: 12px; color: var(--text-dim); text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: #0d1a16;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: flex; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.65; }
.footer-brand a { color: #22d3a4; }
.footer-brand .logo-mark { background: #22d3a4; color: #000; }
.footer-brand .logo-text { color: #fff; }

.footer-links-group h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 14px; color: rgba(255,255,255,0.38); transition: color 0.2s; line-height: 1.5; }
.footer-links-group a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: #22d3a4; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25,0.8,0.25,1), transform 0.7s cubic-bezier(0.25,0.8,0.25,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .card-featured { grid-column: span 2; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-parent-link { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .btn { display: none; }

  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-scroll-hint { display: none; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 24px; }

  .services-grid { grid-template-columns: 1fr; background: none; border: none; gap: 16px; }
  .card-featured { grid-column: span 1; }
  .service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); }
  .service-card::before { display: none; }
  .service-card-inner { padding: 28px 24px; }

  .steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 1px; height: 32px; margin-left: 24px; }
  .step-connector::after { top: auto; bottom: -4px; right: -2px; transform: rotate(135deg); }

  .why-right { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-header { margin-bottom: 48px; }
  .services, .how, .why, .faq, .contact { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 12px; }
}
