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

/* ── DARK THEME (default) ── */
:root,
[data-theme="dark"] {
  --bg:            #07091A;
  --card:          rgba(255,255,255,0.04);
  --card-hover:    rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --nav-bg:        rgba(7,9,26,0.88);
  --drawer-bg:     rgba(10,13,35,0.97);
  --surface-faint: rgba(255,255,255,0.02);
  --sec-btn-bg:    rgba(255,255,255,0.05);
  --sec-btn-hover: rgba(255,255,255,0.09);
  --sec-btn-bdr:   rgba(255,255,255,0.16);
  --tag-soon-bg:   rgba(255,255,255,0.05);
  --input-bg:      rgba(255,255,255,0.04);
  --input-border:  rgba(255,255,255,0.1);
  --input-focus:   rgba(232,82,154,0.4);
  --pink:          #E8529A;
  --magenta:       #BF3FC0;
  --teal:          #00C4C8;
  --gold:          #F5C340;
  --violet:        #8B5CF6;
  --emerald:       #10B981;
  --orange:        #F59E0B;
  --text:          #F0F4FF;
  --muted:         rgba(240,244,255,0.55);
  --dim:           rgba(240,244,255,0.25);
  --blob1:         rgba(232,82,154,0.13);
  --blob2:         rgba(0,196,200,0.09);
  --blob3:         rgba(191,63,192,0.07);
}

/* ── LIGHT THEME ── */
[data-theme="light"] {
  --bg:            #F5F0FF;
  --card:          rgba(255,255,255,0.75);
  --card-hover:    rgba(255,255,255,0.95);
  --border:        rgba(110,60,180,0.1);
  --nav-bg:        rgba(245,240,255,0.9);
  --drawer-bg:     rgba(245,240,255,0.98);
  --surface-faint: rgba(0,0,0,0.025);
  --sec-btn-bg:    rgba(0,0,0,0.04);
  --sec-btn-hover: rgba(0,0,0,0.08);
  --sec-btn-bdr:   rgba(0,0,0,0.12);
  --tag-soon-bg:   rgba(0,0,0,0.04);
  --input-bg:      rgba(255,255,255,0.8);
  --input-border:  rgba(110,60,180,0.18);
  --input-focus:   rgba(214,53,137,0.35);
  --pink:          #D63589;
  --magenta:       #A832B8;
  --teal:          #008A8D;
  --text:          #18062E;
  --muted:         rgba(24,6,46,0.55);
  --dim:           rgba(24,6,46,0.3);
  --blob1:         rgba(214,53,137,0.1);
  --blob2:         rgba(0,138,141,0.07);
  --blob3:         rgba(168,50,184,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.35s, color 0.35s;
}

/* Ambient blobs */
.blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; transition: background 0.35s; }
.blob-1 { top: -15%; right: -8%; width: 65vw; height: 65vw; background: radial-gradient(ellipse, var(--blob1) 0%, transparent 70%); }
.blob-2 { bottom: -10%; left: -8%; width: 50vw; height: 50vw; background: radial-gradient(ellipse, var(--blob2) 0%, transparent 70%); }
.blob-3 { top: 45%; left: 35%; width: 30vw; height: 30vw; background: radial-gradient(ellipse, var(--blob3) 0%, transparent 70%); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.35s, border-color 0.35s;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.2px; }
.nav-logo-text .pink { color: var(--pink); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Theme toggle */
.btn-theme {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.btn-theme:hover { color: var(--text); background: var(--card-hover); }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

.btn-ghost { background: none; border: none; color: var(--muted); font-size: 0.875rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: color 0.2s; padding: 0 4px; text-decoration: none; }
.btn-ghost:hover { color: var(--text); }
.btn-nav-primary { background: linear-gradient(135deg, var(--pink), var(--magenta)); border: none; color: white; font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: inherit; padding: 9px 22px; border-radius: 8px; letter-spacing: -0.1px; white-space: nowrap; text-decoration: none; display: inline-block; }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; z-index: 201; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s, background 0.35s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: var(--drawer-bg); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px; z-index: 199;
  flex-direction: column; gap: 0;
  transition: background 0.35s, border-color 0.35s;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { text-decoration: none; color: var(--muted); font-size: 1.05rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; transition: color 0.2s; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a svg { flex-shrink: 0; }
.nav-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.nav-mobile-theme-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.nav-mobile-theme-label { font-size: 1.05rem; font-weight: 500; color: var(--muted); }
.btn-mobile-theme {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; font-family: inherit; padding: 8px 14px; border-radius: 8px;
  transition: background 0.2s;
}
.btn-mobile-ghost { background: none; border: 1px solid var(--border); color: var(--muted); font-size: 0.95rem; font-weight: 500; cursor: pointer; font-family: inherit; padding: 13px; border-radius: 10px; text-decoration: none; text-align: center; }
.btn-mobile-primary { background: linear-gradient(135deg, var(--pink), var(--magenta)); border: none; color: white; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: inherit; padding: 13px; border-radius: 10px; text-decoration: none; text-align: center; }

/* ── HERO ── */
.hero { position: relative; z-index: 1; min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 80px; }
.hero-lotus-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%); width: min(680px, 90vw); height: min(680px, 90vw); opacity: 0.055; pointer-events: none; }
[data-theme="light"] .hero-lotus-bg { opacity: 0.07; }
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.4rem, 7vw, 4.75rem); font-weight: 800; line-height: 1.07; letter-spacing: -2px; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(130deg, var(--pink) 0%, var(--magenta) 45%, var(--teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(0.95rem, 2.5vw, 1.1rem); color: var(--muted); line-height: 1.75; margin-bottom: 44px; font-weight: 400; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary { padding: 14px 36px; background: linear-gradient(135deg, var(--pink), var(--magenta)); color: white; border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: inherit; letter-spacing: -0.1px; box-shadow: 0 8px 40px rgba(232,82,154,0.35); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: inline-block; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(232,82,154,0.46); }
.btn-hero-secondary { padding: 14px 36px; background: var(--sec-btn-bg); color: var(--text); border: 1px solid var(--border); border-radius: 10px; font-size: 0.95rem; font-weight: 500; cursor: pointer; font-family: inherit; transition: background 0.2s, border-color 0.2s; text-decoration: none; display: inline-block; }
.btn-hero-secondary:hover { background: var(--sec-btn-hover); border-color: var(--sec-btn-bdr); }

/* ── STAT STRIP ── */
.stat-strip { position: relative; z-index: 1; display: flex; justify-content: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-faint); overflow: hidden; transition: background 0.35s, border-color 0.35s; }
.stat-item { flex: 1; max-width: 260px; padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); transition: border-color 0.35s; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -1px; background: linear-gradient(135deg, var(--pink), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ── SECTION ── */
.section { position: relative; z-index: 1; padding: 96px 48px; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 540px; margin-bottom: 60px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 34px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.25s, background 0.35s; }
.service-card:hover { background: var(--card-hover); border-color: rgba(232,82,154,0.3); transform: translateY(-5px); }
.service-card.featured { border-color: rgba(232,82,154,0.3); background: linear-gradient(145deg, rgba(232,82,154,0.07) 0%, rgba(191,63,192,0.04) 100%); }
[data-theme="light"] .service-card.featured { background: linear-gradient(145deg, rgba(214,53,137,0.06) 0%, rgba(168,50,184,0.04) 100%); }
.service-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--magenta), var(--teal)); }
.service-card.dim { opacity: 0.62; }
.service-card.dim:hover { opacity: 0.8; }

.service-tag { position: absolute; top: 22px; right: 22px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }
.tag-live { background: rgba(0,196,200,0.14); color: var(--teal); border: 1px solid rgba(0,196,200,0.28); }
[data-theme="light"] .tag-live { background: rgba(0,138,141,0.1); border-color: rgba(0,138,141,0.25); }
.tag-soon { background: var(--tag-soon-bg); color: var(--dim); border: 1px solid var(--border); }

.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 22px; }
.icon-pink    { background: rgba(232,82,154,0.14); }
.icon-teal    { background: rgba(0,196,200,0.12); }
.icon-gold    { background: rgba(245,195,64,0.12); }
.icon-violet  { background: rgba(139,92,246,0.14); }
.icon-emerald { background: rgba(16,185,129,0.12); }
.icon-orange  { background: rgba(245,158,11,0.12); }
[data-theme="light"] .icon-pink    { background: rgba(214,53,137,0.12); }
[data-theme="light"] .icon-teal    { background: rgba(0,138,141,0.1); }

.service-name { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 30px; }
.service-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--pink); text-decoration: none; cursor: pointer; background: none; border: none; font-family: inherit; padding: 0; transition: gap 0.2s; }
.service-cta:hover { gap: 10px; }
.service-cta-dim { font-size: 0.875rem; color: var(--dim); font-weight: 500; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 30px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; transition: border-color 0.25s, background 0.35s; }
.why-card:hover { border-color: rgba(232,82,154,0.22); background: var(--card-hover); }
.why-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; background: rgba(232,82,154,0.1); }
[data-theme="light"] .why-icon-wrap { background: rgba(214,53,137,0.09); }
.why-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.15px; }
.why-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band { position: relative; z-index: 1; margin: 0 48px 96px; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, rgba(232,82,154,0.18) 0%, rgba(191,63,192,0.14) 50%, rgba(0,196,200,0.1) 100%); border: 1px solid rgba(232,82,154,0.22); padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
[data-theme="light"] .cta-band { background: linear-gradient(135deg, rgba(214,53,137,0.12) 0%, rgba(168,50,184,0.09) 50%, rgba(0,138,141,0.07) 100%); border-color: rgba(214,53,137,0.18); }
.cta-band-lotus { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 300px; height: 300px; opacity: 0.08; pointer-events: none; }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 10px; }
.cta-sub { font-size: 1rem; color: var(--muted); max-width: 440px; line-height: 1.6; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; align-items: center; }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; transition: background 0.35s, border-color 0.35s; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(232,82,154,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
[data-theme="light"] .contact-info-icon { background: rgba(214,53,137,0.09); }
.contact-info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.contact-info-value a { color: var(--pink); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

.contact-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; transition: background 0.35s, border-color 0.35s; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--input-bg); border: 1px solid var(--input-border);
  border-radius: 10px; color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.35s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px var(--input-focus); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #18062E; color: #F0F4FF; }
[data-theme="light"] .form-group select option { background: #F5F0FF; color: #18062E; }

.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: white; border: none; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: inherit;
  letter-spacing: -0.1px; transition: opacity 0.2s, transform 0.2s;
}
.btn-submit:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-alert { padding: 12px 16px; border-radius: 10px; font-size: 0.875rem; margin-bottom: 20px; display: none; }
.form-alert.success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: var(--emerald); }
.form-alert.error   { background: rgba(232,82,154,0.1); border: 1px solid rgba(232,82,154,0.25); color: var(--pink); }
.form-alert.show    { display: block; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── 404 ── */
.not-found { position: relative; z-index: 1; min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 80px; }
.not-found-lotus { width: 100px; height: 100px; opacity: 0.6; margin-bottom: 32px; }
[data-theme="light"] .not-found-lotus { opacity: 0.5; }
.not-found-code { font-family: 'Syne', sans-serif; font-size: clamp(5rem, 18vw, 8rem); font-weight: 800; letter-spacing: -4px; line-height: 1; background: linear-gradient(135deg, var(--pink), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.not-found-title { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 12px; }
.not-found-sub { color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 400px; margin-bottom: 40px; }
.not-found-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.not-found-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 0.85rem; }
.not-found-links span { color: var(--dim); }
.not-found-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.not-found-links a:hover { color: var(--pink); }

@media (max-width: 639px) {
  .not-found-actions { flex-direction: column; align-items: stretch; }
  .not-found-actions a { text-align: center; }
}

/* ── DIVIDER ── */
hr.div { border: none; border-top: 1px solid var(--border); position: relative; z-index: 1; transition: border-color 0.35s; }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.footer-copy { font-size: 0.8rem; color: var(--dim); margin-top: 6px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }

/* ── SIMPLE PAGE (privacy / terms) ── */
.simple-page { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 80px 48px 100px; }
.simple-page h1 { font-family: 'Syne', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.simple-page .page-date { font-size: 0.8rem; color: var(--dim); margin-bottom: 48px; }
.simple-page h2 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; margin: 36px 0 10px; }
.simple-page p, .simple-page li { font-size: 0.925rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.simple-page ul { padding-left: 20px; }
.simple-page a { color: var(--pink); }

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 80px 20px 60px; min-height: 80vh; }

  .stat-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; max-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .section { padding: 64px 24px; }
  .section-sub { margin-bottom: 40px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

  .cta-band { margin: 0 24px 64px; padding: 48px 36px; flex-direction: column; align-items: flex-start; }
  .cta-sub  { max-width: 100%; }
  .cta-band-lotus { right: -60px; width: 220px; height: 220px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-hero-primary { width: 100%; text-align: center; }

  footer { padding: 32px 24px; }

  .simple-page { padding: 60px 24px 80px; }
}

@media (max-width: 639px) {
  nav { padding: 0 20px; }

  .hero { padding: 72px 20px 48px; min-height: 70vh; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { width: 100%; text-align: center; }

  .stat-item { flex: 0 0 50%; padding: 24px 16px; }
  .stat-number { font-size: 1.6rem; }

  .section { padding: 52px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-grid      { grid-template-columns: 1fr; gap: 14px; }
  .service-card  { padding: 26px; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .cta-band { margin: 0 16px 52px; padding: 36px 28px; }
  .cta-title { font-size: 1.4rem; }

  footer { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 20px; }
  .footer-links { gap: 20px; }

  .simple-page { padding: 48px 20px 64px; }
}