:root {
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-raised:   #f1f5f9;
  --fg:          #0f172a;
  --fg-2:        #1e293b;
  --muted:       #64748b;
  --muted-2:     #94a3b8;
  --cyan:        #0ea5c9;
  --cyan-mid:    #18b9d9;
  --violet:      #7c3aed;
  --violet-mid:  #8b5cf6;
  --magenta:     #c026d3;
  --border:      rgba(15,23,42,0.08);
  --border-soft: rgba(15,23,42,0.05);
  --shadow-sm:   0 1px 4px rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.06);
  --shadow-md:   0 2px 8px rgba(15,23,42,0.07), 0 12px 40px rgba(15,23,42,0.09);
  --shadow-lg:   0 4px 16px rgba(15,23,42,0.08), 0 24px 64px rgba(15,23,42,0.12);
  --radius:      20px;
  --radius-sm:   10px;
  --pad:         clamp(24px,4vw,64px);
  --gap:         clamp(16px,2vw,28px);
  --nav-h:       68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01','cv11';
}

/* ── Utilities ─────────────────────────────────── */
.grad {
  background: linear-gradient(135deg, var(--cyan-mid) 0%, var(--violet-mid) 55%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
  padding-right: 0.05em;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan); }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-label span:first-child { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); white-space: nowrap; }
.section-label span:last-child { flex: 1; height: 1px; background: var(--border); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
.d1{animation-delay:.1s} .d2{animation-delay:.2s} .d3{animation-delay:.3s}
.d4{animation-delay:.4s}

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  z-index: -1;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--cyan);
  font-size: 16px; font-weight: 800; letter-spacing: -0.02em;
  flex-shrink: 0; margin-right: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  font-size: 14px; font-weight: 600;
  color: var(--fg-2);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  white-space: nowrap;
  background: none; border: none; font-family: inherit;
}
.nav__link:hover { background: var(--bg-raised); color: var(--fg); }
.nav__link--active { color: var(--cyan); font-weight: 600; }

.nav__link svg { transition: transform 0.2s; flex-shrink: 0; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 14px 6px 6px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__drop-link {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px; font-weight: 600;
  color: var(--fg-2);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.nav__drop-link:hover { background: var(--bg-raised); color: var(--fg); }
.nav__drop-link small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-top: 1px; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
  padding: 9px 20px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff;
  font-size: 13.5px; font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(24,185,217,0.28);
  transition: box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { box-shadow: 0 4px 24px rgba(24,185,217,0.42); transform: translateY(-1px); }

.nav__burger {
  display: none;
  margin-left: auto;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.2s; }

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px var(--pad);
}
.nav__mobile a { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; color: var(--fg-2); text-decoration: none; border-bottom: 1px solid var(--border-soft); }
.nav__mobile a:last-child { border: none; }
.nav__mobile .mob-section { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); padding: 14px 0 4px; }

@media (max-width: 800px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + clamp(56px,8vw,96px));
  padding-bottom: clamp(56px,7vw,88px);
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 20% 0%,   rgba(24,185,217,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 80% 100%, rgba(139,92,246,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--cyan);
  background: rgba(14,165,201,0.08);
  border: 1px solid rgba(14,165,201,0.2);
  border-radius: 100px; padding: 5px 16px;
  margin-bottom: 24px;
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

.hero__headline {
  font-size: clamp(38px,6.5vw,80px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.06;
  margin-bottom: 22px; position: relative;
}

.hero__sub {
  font-size: clamp(16px,2vw,20px);
  color: var(--muted); max-width: 580px; margin: 0 auto 36px; line-height: 1.65;
}

.hero__actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 0; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 30px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff; font-size: 15px; font-weight: 700;
  border-radius: 100px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(24,185,217,0.32);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(24,185,217,0.48); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 28px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg-2); font-size: 15px; font-weight: 600;
  border-radius: 100px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(14,165,201,0.04); }

/* ══════════════════════════════════════════════════
   SERVICES (3-card grid)
══════════════════════════════════════════════════ */
.services { padding: clamp(64px,8vw,96px) 0; background: var(--bg-soft); }

.services__headline {
  font-size: clamp(26px,4vw,44px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.14;
  margin-bottom: 8px;
}
.services__sub { font-size: 16px; color: var(--muted); margin-bottom: 44px; }

.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }

.svc-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.svc-card__stripe { height: 3px; border-radius: 2px; margin-bottom: 22px; }
.svc-card--a .svc-card__stripe { background: var(--cyan-mid); }
.svc-card--b .svc-card__stripe { background: linear-gradient(90deg, var(--violet-mid), var(--magenta)); }
.svc-card--c .svc-card__stripe { background: var(--magenta); }

.svc-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card--a .svc-card__icon { background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.18); }
.svc-card--b .svc-card__icon { background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.18); }
.svc-card--c .svc-card__icon { background: rgba(192,38,211,0.07); border: 1px solid rgba(192,38,211,0.18); }

.svc-card__title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.svc-card__body { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   IDENTITY STRIP
══════════════════════════════════════════════════ */
.identity { padding: clamp(64px,8vw,96px) 0; background: var(--bg); }

.identity__inner {
  background: linear-gradient(135deg, rgba(24,185,217,0.05) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid rgba(24,185,217,0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(36px,5vw,56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px,5vw,64px); align-items: center;
}

.identity__headline {
  font-size: clamp(24px,3.5vw,38px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px;
}
.identity__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }

.identity__facts { display: flex; flex-direction: column; gap: 12px; }
.identity__fact {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px;
}
.identity__fact-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.18);
  display: flex; align-items: center; justify-content: center;
}
.identity__fact-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 2px; }
.identity__fact-val { font-size: 14px; font-weight: 600; color: var(--fg-2); }

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner { padding: clamp(64px,8vw,96px) 0; background: var(--bg-soft); }

.cta-banner__inner {
  background: var(--bg); border: 1px solid rgba(24,185,217,0.2);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: clamp(36px,5vw,60px);
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.cta-banner__title { font-size: clamp(20px,3vw,30px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.cta-banner__body { font-size: 15px; color: var(--muted); line-height: 1.65; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

.cta-accent {
  background: rgba(14,165,201,0.04);
  border: 1px solid rgba(14,165,201,0.15);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 28px;
  grid-column: 1 / -1;
}
.cta-accent__title {
  font-size: 15px; font-weight: 700;
  color: var(--fg-2); margin-bottom: 6px;
}
.cta-accent__body {
  font-size: 14px; color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--fg);
  padding: clamp(48px,6vw,72px) 0 0;
  color: #cbd5e1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,56px);
  padding-bottom: clamp(40px,5vw,56px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__grid--v2 { grid-template-columns: 1.6fr 1fr 1fr; }

.footer__brand { margin-bottom: 14px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: #f8fafc; margin-bottom: 12px; }
.footer__tagline { font-size: 13px; color: #64748b; line-height: 1.6; max-width: 280px; }

.footer__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: #475569; margin-bottom: 16px; }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13.5px; color: #94a3b8; text-decoration: none; transition: color 0.15s; }
.footer__links a:hover { color: var(--cyan-mid); }

.footer__bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #475569;
}
.footer__bottom a { color: #475569; text-decoration: none; }
.footer__bottom a:hover { color: var(--cyan-mid); }

/* ══════════════════════════════════════════════════
   SERVICE PAGES
══════════════════════════════════════════════════ */
.svc-hero {
  padding-top: calc(var(--nav-h) + clamp(56px,8vw,88px));
  padding-bottom: clamp(48px,6vw,72px);
  background: var(--bg);
  position: relative; overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 15% 0%,   rgba(24,185,217,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 85% 100%, rgba(139,92,246,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,72px); align-items: center;
}
.svc-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  border-radius: 100px; padding: 5px 16px; margin-bottom: 20px;
}
.svc-hero__badge--cyan { color: var(--cyan); background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.2); }
.svc-hero__badge--violet { color: var(--violet); background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.18); }
.svc-hero__badge--magenta { color: var(--magenta); background: rgba(192,38,211,0.07); border: 1px solid rgba(192,38,211,0.18); }
.svc-hero__headline {
  font-size: clamp(32px,5vw,60px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 18px;
}
.svc-hero__body {
  font-size: clamp(15px,1.8vw,18px); color: var(--muted);
  line-height: 1.75; margin-bottom: 28px;
}

.svc-detail { padding: clamp(64px,8vw,96px) 0; }
.svc-detail--soft { background: var(--bg-soft); }

.svc-detail__inner { max-width: 720px; }
.svc-detail__headline {
  font-size: clamp(24px,3.5vw,36px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 20px;
}
.svc-detail__body { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.svc-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.svc-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.svc-point__icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.svc-point__icon--cyan { background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.18); }
.svc-point__icon--violet { background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.18); }
.svc-point__icon--magenta { background: rgba(192,38,211,0.07); border: 1px solid rgba(192,38,211,0.18); }
.svc-point__title { font-size: 14px; font-weight: 700; color: var(--fg-2); margin-bottom: 4px; }
.svc-point__desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.svc-sidebar {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.svc-sidebar__title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted); margin-bottom: 4px;
}
.svc-sidebar__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.svc-sidebar__check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 760px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════ */
.legal-page {
  padding-top: calc(var(--nav-h) + clamp(40px,5vw,72px));
  padding-bottom: clamp(64px,8vw,96px);
  background: var(--bg);
}
.legal-inner { max-width: 760px; }

.legal-header { margin-bottom: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.legal-header h1 { font-size: clamp(28px,4vw,44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.legal-header__meta { font-size: 13px; color: var(--muted); }

.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 14px;
  border-top: 2px solid var(--border);
  padding-top: 20px;
}
.legal-section h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; margin-top: 20px; color: var(--fg-2); }
.legal-section p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { margin: 0 0 12px 20px; }
.legal-section li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 5px; }
.legal-section strong { color: var(--fg-2); }
.legal-section a { color: var(--cyan); }


/* ══════════════════════════════════════════════════
   PAGE HERO (about, etc.)
══════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(56px,7vw,88px));
  padding-bottom: clamp(48px,6vw,64px);
  background: var(--bg);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 15% 0%,   rgba(24,185,217,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 85% 100%, rgba(139,92,246,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__inner { max-width: 720px; }
.page-hero__eyebrow { margin-bottom: 16px; }
.page-hero__headline {
  font-size: clamp(34px,5vw,60px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 20px;
}
.page-hero__body {
  font-size: clamp(15px,1.8vw,18px); color: var(--muted);
  line-height: 1.75; margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.about-section { padding: clamp(64px,8vw,96px) 0; }
.about-section--soft { background: var(--bg-soft); }

.about-inner { max-width: 720px; }
.about-headline {
  font-size: clamp(24px,3.5vw,36px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 20px;
}
.about-body { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.about-services {
  display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap);
  margin-top: 32px;
}
.about-svc {
  padding: 24px 22px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.about-svc__stripe { height: 3px; border-radius: 2px; margin-bottom: 16px; }
.about-svc__stripe--cyan { background: var(--cyan-mid); }
.about-svc__stripe--violet { background: linear-gradient(90deg, var(--violet-mid), var(--magenta)); }
.about-svc__stripe--magenta { background: var(--magenta); }
.about-svc__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.about-svc__body { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-page {
  padding-top: calc(var(--nav-h) + clamp(48px,6vw,80px));
  padding-bottom: clamp(64px,8vw,96px);
  background: var(--bg);
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px,6vw,80px);
  align-items: start;
}

.contact-left__eyebrow { margin-bottom: 16px; }
.contact-left__headline {
  font-size: clamp(28px,4vw,48px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.contact-left__sub {
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 36px;
}

.expect-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.expect-item { display: flex; align-items: flex-start; gap: 14px; }
.expect-item__icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(14,165,201,0.08); border: 1px solid rgba(14,165,201,0.18);
  display: flex; align-items: center; justify-content: center;
}
.expect-item__title { font-size: 14px; font-weight: 700; color: var(--fg-2); margin-bottom: 2px; }
.expect-item__desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px,4vw,48px);
}

.form-card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.form-card__sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
}
.form-label span { color: var(--cyan); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px; font-family: inherit;
  color: var(--fg); background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(14,165,201,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-2); }
.form-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

.interest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.interest-item {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: 8px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.interest-item:has(input:checked) {
  border-color: var(--cyan); background: rgba(14,165,201,0.04);
}
.interest-item input { accent-color: var(--cyan); cursor: pointer; }
.interest-item label { font-size: 13px; font-weight: 500; color: var(--fg-2); cursor: pointer; }

.form-divider { height: 1px; background: var(--border); margin: 22px 0; }

.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; border-radius: 100px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(24,185,217,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
  font-family: inherit;
}
.form-submit:hover { box-shadow: 0 6px 28px rgba(24,185,217,0.44); transform: translateY(-1px); }

.form-legal {
  font-size: 11px; color: var(--muted-2); text-align: center;
  margin-top: 14px; line-height: 1.6;
}
.form-legal a { color: var(--muted); text-decoration: underline; }

/* ══════════════════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════════════════ */
.thank-you-page {
  padding-top: calc(var(--nav-h) + clamp(48px,6vw,80px));
  padding-bottom: clamp(64px,8vw,96px);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  text-align: center;
  max-width: 500px;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  display: block;
}

.thank-you-headline {
  font-size: clamp(28px,4vw,48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.thank-you-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.thank-you-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--violet-mid));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(24,185,217,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.thank-you-btn:hover {
  box-shadow: 0 6px 28px rgba(24,185,217,0.44);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .footer__grid, .footer__grid--v2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .services__grid, .identity__inner,
  .cta-banner__inner { grid-template-columns: 1fr; }
  .footer__grid, .footer__grid--v2 { grid-template-columns: 1fr 1fr; }
  .cta-banner__actions { align-items: flex-start; }
  .about-services { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-group--row { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__grid, .footer__grid--v2 { grid-template-columns: 1fr; }
}
