/* =========================================================
   Wellness Consultancy — IT Services
   Stylesheet
   ========================================================= */

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --accent: #06b6d4;
  --gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(6,182,212,.12) 100%);

  --bg-dark: #0b1020;
  --bg-surface-dark: #131a2e;
  --bg-light: #ffffff;
  --bg-soft: #f7f9fc;

  --text-dark: #0b1020;
  --text-light: #e6e9f5;
  --muted: #6b7280;
  --muted-dark: #a0a8c0;

  --border: #e5e7eb;
  --border-dark: rgba(255,255,255,.08);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(10,15,30,.06);
  --shadow-md: 0 10px 30px rgba(10,15,30,.08);
  --shadow-lg: 0 20px 60px rgba(10,15,30,.12);

  --container: 1180px;
  --header-h: 76px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(99,102,241,.45); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
}
.brand-mark { width: 38px; height: 38px; }
.brand-name { line-height: 1.1; }
.brand-name span { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  color: #374151;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--primary); }
.nav-links a.active { background: var(--gradient-soft); color: var(--primary); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 42px; height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-dark);
  position: relative;
  border-radius: 2px;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  padding: 110px 0 130px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 12% 18%, rgba(99,102,241,.35) 0%, transparent 60%),
    radial-gradient(50% 50% at 88% 22%, rgba(6,182,212,.28) 0%, transparent 60%),
    radial-gradient(40% 60% at 50% 110%, rgba(139,92,246,.20) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; font-weight: 500;
  color: #c7d0ee;
  margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 18px;
  color: #b9c2dc;
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 520px;
}
.stat strong { display: block; font-size: 28px; font-weight: 700; letter-spacing: -.01em; }
.stat span { font-size: 13px; color: #8d97b8; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  justify-self: end;
  width: 100%;
}
.hv-orb {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(99,102,241,.55), rgba(6,182,212,.25) 50%, transparent 70%);
  filter: blur(6px);
  animation: float 8s ease-in-out infinite;
}
.hv-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  font-size: 13px; color: #e6e9f5;
}
.hv-card .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
}
.hv-card.c1 { top: 8%; left: -4%; animation: float 6s ease-in-out infinite; }
.hv-card.c2 { top: 38%; right: -6%; animation: float 7s ease-in-out infinite reverse; }
.hv-card.c3 { bottom: 8%; left: 10%; animation: float 9s ease-in-out infinite; }
.hv-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
  animation: spin 30s linear infinite;
}
.hv-ring.r2 { inset: 14%; animation-duration: 24s; animation-direction: reverse; border-color: rgba(255,255,255,.10); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(99,102,241,.30);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-card .link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--primary);
}

/* ---------- Why us ---------- */
.why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.why-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--border);
}
.why-item .num {
  font-size: 28px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.why-item h4 { font-size: 17px; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 14.5px; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.process-step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: -16px; left: 20px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.process-step h4 { margin: 6px 0 8px; font-size: 17px; }
.process-step p { color: var(--muted); font-size: 14.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 0% 0%, rgba(99,102,241,.45) 0%, transparent 60%),
    radial-gradient(50% 80% at 100% 100%, rgba(6,182,212,.35) 0%, transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.01em; }
.cta-banner p { color: #c7d0ee; margin-top: 6px; }

/* ---------- About page ---------- */
.page-hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(99,102,241,.30) 0%, transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.page-hero p { color: #b9c2dc; margin-top: 14px; font-size: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }
.crumbs { font-size: 13px; color: #8d97b8; margin-bottom: 14px; letter-spacing: .04em; }
.crumbs a { color: #c7d0ee; }
.crumbs span { margin: 0 8px; opacity: .6; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.about-grid h2 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -.02em; line-height: 1.2; margin-bottom: 16px; font-weight: 800; }
.about-grid p { color: var(--muted); margin-bottom: 14px; font-size: 16px; }
.about-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.about-visual .badge {
  position: absolute;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.30);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  font-size: 14px;
}
.about-visual .b1 { top: 18%; left: 8%; }
.about-visual .b2 { bottom: 14%; right: 10%; }
.about-visual .b3 { top: 48%; right: 18%; font-size: 22px; }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mv-card .ico {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.mv-card h3 { font-size: 20px; margin-bottom: 8px; }
.mv-card p { color: var(--muted); }

/* ---------- Services page ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: 0; }
.service-row.reverse .sr-media { order: 2; }
.sr-content h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.sr-content p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.sr-features { list-style: none; }
.sr-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #374151;
  font-size: 15px;
}
.sr-features li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  background-image:
    linear-gradient(135deg, var(--primary), var(--accent)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l3 3 5-6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-blend-mode: normal;
}
.sr-features li::after {
  content: '';
  position: absolute; left: 3px; top: 10px;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l3 3 5-6' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.sr-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  color: #fff;
}
.sr-media::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}
.sr-media svg { width: 40%; height: auto; position: relative; opacity: .95; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: start;
}
.contact-info { padding-right: 10px; }
.contact-info h2 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -.02em; line-height: 1.2; margin-bottom: 14px; font-weight: 800; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.contact-items { display: grid; gap: 16px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-item .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 15px; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 14.5px; }
.contact-item a:hover { color: var(--primary); }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: #374151;
  transition: all .2s ease;
}
.socials a:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: #374151; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--text-dark);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.15);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.form-error {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 14.5px;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: #c7d0ee;
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: #a0a8c0; font-size: 14.5px; transition: color .15s ease; }
.footer ul a:hover { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand-name span { color: #8d97b8; }
.footer .about-blurb { font-size: 14.5px; color: #a0a8c0; max-width: 320px; }
.footer .socials { margin-top: 18px; }
.footer .socials a {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: #c7d0ee;
}
.footer .socials a:hover { background: var(--gradient); border-color: transparent; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13.5px; color: #8d97b8;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 80px 0 90px; }
  .hero-visual { justify-self: center; max-width: 380px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-row { grid-template-columns: 1fr; padding: 50px 0; gap: 30px; }
  .service-row.reverse .sr-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-links .nav-cta { display: inline-flex; margin: 8px 0 0; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stat strong { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 28px; text-align: center; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}
