/* ============================================================
   WDSG Digital — main.css
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a6bff;
  --blue-dark:  #1254cc;
  --blue-light: #eef3fe;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --bg:         #ffffff;
  --bg-soft:    #f9fafb;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-md:  0 4px 32px rgba(0,0,0,.12);
  --font:       'Inter', system-ui, sans-serif;
  --max-w:      1180px;
}

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.hl-blue { color: var(--blue); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(26,107,255,.25);
}
.btn-main:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26,107,255,.35);
}
.btn-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
}
.btn-arr svg { width: 11px; height: 11px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  transition: transform .15s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.btn-white svg { width: 11px; height: 11px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: .9rem 1.5rem;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.03em;
  color: var(--text);
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--blue); }
.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .45rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg-soft); }

.caret { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.has-dropdown.dd-open .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem;
  min-width: 240px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s, transform .18s;
  z-index: 200;
  /* invisible top padding so mouse can travel from nav-link to dropdown */
  margin-top: 0;
}
/* Invisible bridge fills the gap between trigger and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dd-open .dropdown { opacity: 1; pointer-events: auto; transform: none; }

.has-dropdown:hover .caret,
.has-dropdown.dd-open .caret { transform: rotate(180deg); }

.dd-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.dd-item:hover { background: var(--bg-soft); }

.dd-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}
.ic-b  { background: var(--blue-light); color: var(--blue); }
.ic-g  { background: #e6faf0; color: #16a34a; }
.ic-p  { background: #f5f0ff; color: #7c3aed; }
.ic-o  { background: #fff7ed; color: #ea580c; }
.ic-t  { background: #f0f9ff; color: #0284c7; }
.ic-np { background: #fdf2f8; color: #c026d3; }
.ic-seo{ background: #fefce8; color: #ca8a04; }

.dd-name { font-weight: 600; font-size: .875rem; color: var(--text); display: block; }
.dd-desc { font-size: .775rem; color: var(--muted); display: block; }
.dd-text { display: flex; flex-direction: column; gap: .1rem; }
.dd-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.btn-quote {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  transition: background .15s;
}
.btn-quote:hover { background: var(--blue-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.hb-bar { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .25s, width .25s; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Fine dot grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .45;
  pointer-events: none;
}

/* Blue glow top-right */
.hero-glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(26,107,255,.13) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Inner layout */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; max-width: 560px; }

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26,107,255,.07);
  border: 1px solid rgba(26,107,255,.18);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .85rem .35rem .6rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: .01em;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

.headline {
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hl-blue { color: var(--blue); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* Action buttons row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  padding: .7rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* Trust stats */
.trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.trust-item { padding: 0 1.75rem; }
.trust-item:first-child { padding-left: 0; }
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}
.t-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--text);
}
.t-num span { color: var(--blue); }
.t-label { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: .3rem; }

.hero-right {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Browser mockup */
.browser-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .9rem;
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
}
.dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .75rem;
  color: var(--muted);
  max-width: 220px;
}
.browser-body { padding: .8rem; }
.bb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.bb-logo-bar { width: 60px; height: 8px; background: #e5e7eb; border-radius: 4px; }
.bb-navs { display: flex; gap: .5rem; }
.bb-n { width: 28px; height: 6px; background: #e5e7eb; border-radius: 3px; }
.bb-hero-ph { margin-bottom: .75rem; }
.ph-line { height: 10px; background: #e5e7eb; border-radius: 5px; margin-bottom: .5rem; }
.ph-p { height: 7px; background: #f3f4f6; border-radius: 4px; margin-bottom: .4rem; }
.w70 { width: 70%; }
.w45 { width: 45%; }
.w80 { width: 80%; }
.w55 { width: 55%; }
.ph-cta { width: 100px; height: 22px; background: var(--blue); border-radius: 999px; margin-top: .6rem; opacity: .7; }
.bb-cards { display: flex; gap: .5rem; }
.bb-card { flex: 1; background: #f9fafb; border: 1px solid #f0f0f0; border-radius: 6px; padding: .5rem; }
.bc-i { height: 28px; border-radius: 4px; margin-bottom: .4rem; }
.bc-t { height: 7px; background: #e5e7eb; border-radius: 4px; margin-bottom: .3rem; }
.bc-t2 { height: 6px; background: #f3f4f6; border-radius: 4px; width: 70%; }

.bottom-row {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
}
.metric {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem;
  box-shadow: var(--shadow);
}
.metric-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.metric-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.metric-icon svg { width: 14px; height: 14px; }
.mi-g { background: #e6faf0; }
.mi-b { background: var(--blue-light); }
.mi-p { background: #f5f0ff; }
.metric-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .4rem;
  border-radius: 999px;
}
.mb-up  { background: #e6faf0; color: #16a34a; }
.mb-blue{ background: var(--blue-light); color: var(--blue); }
.metric-val   { font-size: .95rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.metric-label { font-size: .65rem; color: var(--muted); margin-top: .2rem; }

.dark-card {
  flex: 1.1;
  background: #111827;
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dc-label { font-size: .65rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .08em; }
.dc-val   { font-size: .95rem; font-weight: 700; margin-top: .15rem; }
.dc-sub   { font-size: .65rem; color: #6b7280; margin-top: .1rem; }
.dc-live  { display: flex; align-items: center; gap: .35rem; font-size: .7rem; color: #9ca3af; margin-top: .6rem; }
.dc-dot   { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.seo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  box-shadow: var(--shadow);
}
.seo-bars { flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.seo-bar-row { display: flex; align-items: center; gap: .5rem; }
.seo-bar-label { font-size: .65rem; color: var(--muted); width: 36px; flex-shrink: 0; }
.seo-bar-track { flex: 1; height: 6px; background: #f3f4f6; border-radius: 3px; overflow: hidden; }
.seo-bar-fill  { height: 100%; border-radius: 3px; }
.f-g { background: #22c55e; }
.f-b { background: var(--blue); }
.seo-score { text-align: center; }
.seo-num { font-size: 1.75rem; font-weight: 800; letter-spacing: -.04em; color: var(--blue); line-height: 1; }
.seo-lbl { font-size: .65rem; color: var(--muted); }

/* ── Tech Bar ─────────────────────────────────────────────── */
.tech-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.tech-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tech-bar .container { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.tech-bar-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9ca3af;
  white-space: nowrap;
  flex-shrink: 0;
}
.tech-divider-v {
  width: 1px; height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
.tech-items { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.tech-item  { display: flex; align-items: center; gap: .45rem; opacity: .75; transition: opacity .2s; }
.tech-item:hover { opacity: 1; }
.tech-logo  { width: 22px; height: 22px; flex-shrink: 0; }
.tech-logo svg { width: 100%; height: 100%; display: block; }
.tech-name  { font-size: .8rem; font-weight: 600; color: var(--muted); white-space: nowrap; }

/* ── Services ─────────────────────────────────────────────── */
.services-section {
  padding: 5rem 0;
  background: #f8faff;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.services-header-left { flex: 1; min-width: 240px; }
.services-header-sub {
  flex: 1;
  min-width: 240px;
  max-width: 400px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  align-self: flex-end;
}

/* Bento grid: card 1 & 4 wide, 2 & 3 tall */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.svc-card:nth-child(1) { grid-column: span 7; }
.svc-card:nth-child(2) { grid-column: span 5; }
.svc-card:nth-child(3) { grid-column: span 5; }
.svc-card:nth-child(4) { grid-column: span 7; }

/* Per-card palette */
.svc-card:nth-child(1) { --ac: #1a6bff; --ac-l: #eef3fe; --ac-dim: rgba(26,107,255,.08); }
.svc-card:nth-child(2) { --ac: #ea580c; --ac-l: #fff7ed; --ac-dim: rgba(234,88,12,.08); }
.svc-card:nth-child(3) { --ac: #16a34a; --ac-l: #e6faf0; --ac-dim: rgba(22,163,74,.08); }
.svc-card:nth-child(4) { --ac: #7c3aed; --ac-l: #f5f0ff; --ac-dim: rgba(124,58,237,.08); }

.svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none;
}

/* Gradient glow background on hover */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--ac-dim) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  border-radius: 20px;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-5px);
  border-color: var(--ac);
}
.svc-card:hover::after { opacity: 1; }

/* Card top row */
.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-icon {
  width: 52px; height: 52px;
  background: var(--ac-l);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ac);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.svc-icon svg {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

.svc-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ac);
  opacity: .07;
  letter-spacing: -.05em;
  line-height: 1;
  user-select: none;
}

/* Title */
.svc-title {
  position: relative; z-index: 1;
}
.svc-title a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  transition: color .2s;
  display: block;
}
.svc-title a:hover { color: var(--ac); }

/* Tagline */
.svc-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* Feature checklist */
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
  position: relative; z-index: 1;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: #374151;
  font-weight: 500;
}
.svc-feat-check {
  width: 18px; height: 18px;
  background: var(--ac-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-feat-check svg {
  width: 10px; height: 10px;
  stroke: var(--ac); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* CTA row */
.svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
  margin-top: auto;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ac);
  transition: gap .2s;
}
.svc-link:hover { gap: .8rem; }
.svc-link svg {
  width: 16px; height: 16px;
  background: var(--ac-l);
  border-radius: 50%;
  padding: 2px;
  stroke: var(--ac); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.svc-badge {
  font-size: .7rem;
  font-weight: 600;
  background: var(--ac-l);
  color: var(--ac);
  padding: .3rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Why Us ───────────────────────────────────────────────── */
.why-section { padding: 5rem 0; background: var(--bg-soft); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text p { color: var(--muted); line-height: 1.7; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  transition: box-shadow .2s;
}
.why-feat:hover { box-shadow: var(--shadow); }

.wf-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.wf-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.wf-title { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .2rem; }
.wf-desc  { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ── Process ──────────────────────────────────────────────── */
.process-section { padding: 5rem 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step { position: relative; }
.step-num {
  width: 40px; height: 40px;
  background: var(--blue);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--blue-light);
}
.step-title { font-weight: 700; font-size: .95rem; margin-bottom: .5rem; }
.step-desc  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Blog Preview ─────────────────────────────────────────── */
.blog-preview-section { padding: 5rem 0; background: var(--bg-soft); }

.blog-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .15s;
}
.view-all-link:hover { gap: .65rem; }
.view-all-link svg { flex-shrink: 0; }

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  height: 100%;
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.blog-cat {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  background: var(--blue-light);
  padding: .2rem .55rem;
  border-radius: 999px;
}
.blog-read { font-size: .75rem; color: var(--muted); }

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: .75rem;
  flex: 1;
}

.blog-card-excerpt {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-date { font-size: .78rem; color: var(--muted); }
.blog-read-link { font-size: .8rem; font-weight: 600; color: var(--blue); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; }
.faq-container { max-width: 720px; margin-inline: auto; }

.faq-list { margin-top: 2rem; }

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

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: color .15s;
}
.faq-q:hover { color: var(--blue); }
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }

.faq-q-text { flex: 1; }

.faq-icon {
  width: 24px; height: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: var(--muted);
}

details[open] .faq-icon { background: var(--blue); color: #fff; border-color: var(--blue); }

.faq-a {
  padding: 0 0 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #1e2a3a 100%);
  color: #fff;
  padding: 6rem 0;
}
.cta-orb {
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,255,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.cta-label::before { content: ''; display: inline-block; width: 20px; height: 1.5px; background: rgba(255,255,255,.5); }
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.cta-sub strong { color: #fff; }
.cta-note { margin-top: 1.25rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.cta-note a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0d1117;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-link { display: inline-flex; margin-bottom: 1rem; }
.footer-logo-link svg { display: block; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; line-height: 1.7; }
.footer-tagline strong { color: rgba(255,255,255,.75); font-weight: 600; }
.footer-address {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-style: normal;
  margin-bottom: 1.25rem;
}
.footer-address svg { flex-shrink: 0; opacity: .5; }
.footer-address a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-address a:hover { color: #fff; }

/* Social buttons */
.footer-socials { display: flex; gap: .5rem; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn svg { stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover { background: rgba(26,107,255,.2); color: #7aa8ff; border-color: rgba(26,107,255,.4); }

/* Footer nav columns */
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .1rem; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  padding: .3rem 0;
  transition: color .15s, gap .15s;
  position: relative;
}
.footer-col a::before {
  content: '→';
  font-size: .7rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .15s, transform .15s;
  color: var(--blue);
}
.footer-col a:hover { color: #fff; gap: .5rem; }
.footer-col a:hover::before { opacity: 1; transform: none; }

/* Singapore badge */
.footer-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  padding: .6rem 1.25rem;
  border-radius: 999px;
  font-size: .8rem;
  color: #4ade80;
  font-weight: 600;
  letter-spacing: .01em;
  width: fit-content;
  white-space: nowrap;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-copy a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-copy a:hover { color: rgba(255,255,255,.8); }
.footer-seo-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-seo-links a { font-size: .75rem; color: rgba(255,255,255,.25); transition: color .15s; }
.footer-seo-links a:hover { color: rgba(255,255,255,.6); }

/* ── Animations ───────────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim.in-view {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero-right { max-width: 100%; width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .btn-quote { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { padding-top: 2rem; padding-bottom: 2rem; }
  .hero-left { max-width: 100%; }
  .trust { gap: 0; }
  .trust-item { padding: 0 1rem; }
  .tech-bar-inner { gap: 1rem; overflow-x: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card:nth-child(1),
  .svc-card:nth-child(2),
  .svc-card:nth-child(3),
  .svc-card:nth-child(4) { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .bottom-row { flex-wrap: wrap; }
  .metric { min-width: calc(50% - .375rem); }
  .dark-card { min-width: 100%; }
}

/* ── Footer container wrapper ─────────────────────────────── */
.footer-main,
.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Nav logo image/svg */
.nav-logo img { height: 32px; width: auto; display: inline-block; max-width: 140px; object-fit: contain; }
.nav-logo img[src=""] { display: none; }
.nav-logo svg text { font-family: Inter, system-ui, sans-serif; }

/* ── Mobile nav open state ────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { position: sticky; }

  /* Hamburger button */
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: .5rem; }
  .hb-bar { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s, width .3s; }
  .hb-top { width: 22px; }
  .hb-mid { width: 16px; }
  .hb-bot { width: 22px; }

  /* Animate to X when open */
  .nav-toggle[aria-expanded="true"] .hb-top { transform: translateY(7px) rotate(45deg); width: 22px; }
  .nav-toggle[aria-expanded="true"] .hb-mid { opacity: 0; transform: scaleX(0); }
  .nav-toggle[aria-expanded="true"] .hb-bot { transform: translateY(-7px) rotate(-45deg); width: 22px; }
}

/* ── Mobile Overlay ───────────────────────────────────────── */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  pointer-events: none;
  visibility: hidden;
}
.mob-overlay.mob-open {
  pointer-events: auto;
  visibility: visible;
}

/* Slide-in panel */
.mob-panel {
  position: relative;
  z-index: 1;
  width: min(360px, 100vw);
  margin-left: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.32,.72,0,1);
  will-change: transform;
  border-left: 1px solid var(--border);
}
.mob-overlay.mob-open .mob-panel { transform: translateX(0); }

/* Backdrop */
.mob-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.35);
  opacity: 0;
  transition: opacity .32s;
  backdrop-filter: blur(3px);
}
.mob-overlay.mob-open .mob-backdrop { opacity: 1; }

/* Panel header — white with blue accent bar at top */
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.mob-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #818cf8);
  border-radius: 0;
}
.mob-logo { display: flex; align-items: center; }

/* Close button */
.mob-close {
  width: 34px; height: 34px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.mob-close:hover { background: var(--blue-light); color: var(--blue); border-color: rgba(26,107,255,.2); }
.mob-close svg { stroke: currentColor; }

/* Nav body */
.mob-nav {
  flex: 1;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  background: var(--bg-soft);
}

/* Group label */
.mob-group-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .4rem;
  padding-left: .25rem;
}

/* Nav items */
.mob-group-items { display: flex; flex-direction: column; gap: .3rem; }
.mob-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  text-decoration: none;
}
.mob-item:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(26,107,255,.1);
  transform: translateX(2px);
}
.mob-item-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mob-item-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mob-item-text { flex: 1; display: flex; flex-direction: column; gap: .05rem; }
.mob-item-name { font-size: .85rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.mob-item-desc { font-size: .7rem; color: var(--muted); }
.mob-item-arr { width: 13px; height: 13px; flex-shrink: 0; color: #d1d5db; transition: color .15s, transform .15s; }
.mob-item:hover .mob-item-arr { color: var(--blue); transform: translateX(2px); }

/* Simple links */
.mob-simple-links { display: flex; flex-direction: column; gap: .2rem; }
.mob-simple-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .85rem;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s, background .15s;
}
.mob-simple-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.mob-simple-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; flex-shrink: 0; }

/* Footer CTA */
.mob-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem;
  border-radius: 12px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(26,107,255,.25);
}
.mob-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,107,255,.35); }
.mob-cta svg { stroke: currentColor; fill: none; }

.mob-footer-sub {
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
}
.mob-footer-sub a { color: var(--blue); }

/* Stagger animation */
.mob-overlay.mob-open .mob-item,
.mob-overlay.mob-open .mob-simple-link {
  animation: mob-item-in .28s ease both;
}
.mob-overlay.mob-open .mob-group:nth-child(1) .mob-item:nth-child(1) { animation-delay: .04s; }
.mob-overlay.mob-open .mob-group:nth-child(1) .mob-item:nth-child(2) { animation-delay: .07s; }
.mob-overlay.mob-open .mob-group:nth-child(1) .mob-item:nth-child(3) { animation-delay: .10s; }
.mob-overlay.mob-open .mob-group:nth-child(1) .mob-item:nth-child(4) { animation-delay: .13s; }
.mob-overlay.mob-open .mob-group:nth-child(2) .mob-item:nth-child(1) { animation-delay: .16s; }
.mob-overlay.mob-open .mob-group:nth-child(2) .mob-item:nth-child(2) { animation-delay: .19s; }
.mob-overlay.mob-open .mob-group:nth-child(2) .mob-item:nth-child(3) { animation-delay: .22s; }
.mob-overlay.mob-open .mob-simple-link:nth-child(1) { animation-delay: .25s; }
.mob-overlay.mob-open .mob-simple-link:nth-child(2) { animation-delay: .27s; }
.mob-overlay.mob-open .mob-simple-link:nth-child(3) { animation-delay: .29s; }

@keyframes mob-item-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: none; }
}

body.mob-menu-open { overflow: hidden; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumb ol li + li::before { content: '/'; color: var(--border); }
.breadcrumb ol a { color: var(--muted); transition: color .15s; }
.breadcrumb ol a:hover { color: var(--blue); }
.breadcrumb ol [aria-current] { color: var(--text); font-weight: 500; }

/* ── Service Hero ─────────────────────────────────────────── */
.svc-hero { padding: 4rem 0; }
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.svc-features-card, .svc-kws-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.svc-features-card h3, .svc-kws-card h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.svc-features-card ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.svc-features-card li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 500; }
.feat-check { display: flex; flex-shrink: 0; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-section { padding: 5rem 0; background: var(--bg-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card--featured { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.pricing-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .2rem .75rem; border-radius: 999px; white-space: nowrap;
}
.pricing-name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.pricing-price { font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .75rem; }
.pricing-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--text);
  border: 1px solid var(--border); padding: .6rem 1.25rem;
  border-radius: 999px; transition: all .15s;
}
.pricing-cta:hover { border-color: var(--text); }
.pricing-cta--blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.pricing-cta--blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.pricing-note { font-size: .8rem; color: var(--muted); }
.pricing-note a { color: var(--blue); }

/* ── Related Services ─────────────────────────────────────── */
.related-services-section, .other-services { padding: 3rem 0; }
.related-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.related-link-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: .4rem;
}
.related-link-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.related-link-label { font-weight: 700; font-size: .9rem; color: var(--blue); }
.related-link-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; flex: 1; }
.related-link-arrow { color: var(--blue); font-size: 1rem; }

.other-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.other-svc-card {
  display: flex; flex-direction: column; gap: .5rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.25rem; transition: box-shadow .2s;
}
.other-svc-card:hover { box-shadow: var(--shadow); }
.other-svc-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.other-svc-desc { font-size: .78rem; color: var(--muted); }

/* ── Blog pages ───────────────────────────────────────────── */
.blog-hero { padding: 4rem 0 2rem; }
.blog-list-section { padding: 2rem 0 5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.blog-services-bar {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.blog-services-bar p { font-weight: 600; font-size: .875rem; color: var(--text); white-space: nowrap; }
.blog-services-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.blog-services-links a { font-size: .8rem; font-weight: 600; color: var(--blue); background: #fff; padding: .35rem .75rem; border-radius: 999px; border: 1px solid var(--border); transition: box-shadow .15s; }
.blog-services-links a:hover { box-shadow: var(--shadow); }

/* Blog show */
/* ── Article Hero ──────────────────────────────────────────── */
.art-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
}
.art-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--al, #eef3fe) 0%, transparent 65%);
  pointer-events: none;
}
.art-hero-inner { position: relative; z-index: 1; max-width: 760px; }

.art-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.art-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .65rem;
  border-radius: 999px;
}
.art-dot { opacity: .35; }

.art-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.art-excerpt {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.art-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.art-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: .95rem;
  flex-shrink: 0;
}
.art-author-info { display: flex; flex-direction: column; gap: .05rem; flex: 1; }
.art-author-name { font-size: .85rem; font-weight: 700; color: var(--text); }
.art-author-role { font-size: .72rem; color: var(--muted); }

.art-share { display: flex; align-items: center; gap: .4rem; margin-left: auto; }
.art-share-btn {
  width: 32px; height: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color .15s, color .15s, background .15s;
}
.art-share-btn svg { stroke: currentColor; fill: none; }
.art-share-btn:hover { border-color: var(--ac, var(--blue)); color: var(--ac, var(--blue)); background: var(--al, var(--blue-light)); }

/* ── Article layout: sidebar + body ──────────────────────── */
.art-layout { padding: 4rem 0 3rem; background: #fff; }
.art-layout-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sidebar TOC */
.art-sidebar { position: sticky; top: 90px; }
.art-toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  overflow: hidden;
}
.art-toc-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .85rem;
}
.art-toc-nav { display: flex; flex-direction: column; gap: .1rem; margin-bottom: 1.25rem; }
.art-toc-link {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  padding: .35rem .6rem;
  border-radius: 7px;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
  line-height: 1.4;
}
.art-toc-link:hover { color: var(--blue); background: var(--blue-light); border-color: var(--blue); }
.art-toc-link.active { color: var(--blue); font-weight: 700; border-color: var(--blue); background: var(--blue-light); }
.art-toc-cta-btn {
  display: block;
  text-align: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .65rem .75rem;
  border-radius: 10px;
  transition: opacity .15s, transform .15s;
}
.art-toc-cta-btn:hover { opacity: .88; transform: translateY(-1px); }

/* Article body */
.art-body { max-width: 680px; }
.art-h2 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 2.5rem 0 .85rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.art-h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.art-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.75rem 0 .6rem;
}
.art-p {
  font-size: .975rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

/* Inline CTA */
.art-inline-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--al, #eef3fe);
  border-left: 4px solid var(--ac, var(--blue));
  border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.art-inline-cta-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.art-inline-cta-icon svg { stroke: currentColor; fill: none; }
.art-inline-cta-text { flex: 1; font-size: .875rem; line-height: 1.55; color: var(--text); }
.art-inline-cta-text strong { display: block; font-weight: 700; margin-bottom: .2rem; }
.art-inline-cta-text span { color: var(--muted); }
.art-inline-cta-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #fff; font-size: .82rem; font-weight: 700;
  padding: .6rem 1.1rem; border-radius: 999px; white-space: nowrap;
  transition: opacity .15s, transform .15s;
}
.art-inline-cta-btn:hover { opacity: .88; transform: translateY(-1px); }
.art-inline-cta-btn svg { stroke: currentColor; fill: none; }

/* Tags */
.art-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 2rem 0 1.5rem; }
.art-tag {
  font-size: .72rem; font-weight: 500;
  background: var(--bg-soft); color: var(--muted);
  padding: .25rem .65rem; border-radius: 999px;
  border: 1px solid var(--border);
}

/* Author card */
.art-author-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.art-author-card-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0;
}
.art-author-card-name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.art-author-card-bio { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── Related articles ─────────────────────────────────────── */
.art-related { padding: 4rem 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.art-related-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.art-related-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.art-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.art-related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.art-related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue); }
.art-related-card-link {
  display: flex; flex-direction: column;
  padding: 1.35rem; height: 100%;
}
.arc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .85rem;
}
.arc-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .2rem .55rem; border-radius: 999px; }
.arc-read { font-size: .72rem; color: var(--muted); }
.arc-title { font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: .65rem; flex: 1; }
.arc-excerpt { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.arc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .85rem; border-top: 1px solid var(--border); margin-top: auto; }
.arc-date { font-size: .72rem; color: var(--muted); }
.arc-arrow { font-size: .78rem; font-weight: 600; color: var(--blue); }

/* ── Service strip ────────────────────────────────────────── */
.art-services-strip {
  padding: 1.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.art-services-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: .85rem;
}
.art-services-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.art-svc-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600;
  background: var(--al, #eef3fe); color: var(--ac, #1a6bff);
  padding: .45rem .9rem; border-radius: 999px;
  transition: opacity .15s, transform .15s;
}
.art-svc-link:hover { opacity: .85; transform: translateY(-1px); }
.art-svc-link svg { stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Responsive */
@media (max-width: 900px) {
  .art-layout-inner { grid-template-columns: 1fr; }
  .art-sidebar { position: static; }
  .art-toc { display: none; }
  .art-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .art-related-grid { grid-template-columns: 1fr; }
  .art-inline-cta { flex-direction: column; align-items: flex-start; }
  .art-share { margin-left: 0; }
}
.blog-related { padding: 3rem 0; background: var(--bg-soft); }
.blog-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }

/* ── FAQ button (JS version) ──────────────────────────────── */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  font-family: var(--font);
  transition: color .15s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { transition: transform .25s, background .2s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--blue); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.faq-a[hidden] { display: none; }
.faq-a:not([hidden]) { display: block; }

/* ── Contact page ─────────────────────────────────────────── */
/* ── Contact Page ─────────────────────────────────────────── */

/* Hero */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: #0d1117;
  color: #fff;
  padding: 4.5rem 0 3.5rem;
}
.contact-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(26,107,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(124,58,237,.1) 0%, transparent 45%);
  pointer-events: none;
}
.contact-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.contact-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.contact-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.04em;
  margin-bottom: 1rem; color: #fff;
}
.contact-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7;
}
.contact-hero-sub strong { color: rgba(255,255,255,.9); }

/* Body layout */
.contact-body { padding: 4rem 0 5rem; background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
}

/* Left column */
.contact-left { display: flex; flex-direction: column; gap: 2rem; }

/* Info items */
.ci-list { display: flex; flex-direction: column; gap: .75rem; }
.ci-item {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 1rem 1.25rem;
  transition: box-shadow .2s, border-color .2s;
}
.ci-item:hover { box-shadow: var(--shadow); border-color: rgba(26,107,255,.2); }
.ci-icon-wrap {
  width: 40px; height: 40px;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.ci-icon-wrap svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.ci-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .2rem; }
.ci-value { font-size: .95rem; font-weight: 600; color: var(--text); }
.ci-value[href] { color: var(--blue); transition: opacity .15s; }
.ci-value[href]:hover { opacity: .75; }

/* Services grid */
.ci-services-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .75rem; }
.ci-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.ci-svc-card {
  display: flex; align-items: center; gap: .6rem;
  background: var(--al, #eef3fe); border-radius: 10px;
  padding: .65rem .85rem;
  font-size: .78rem; font-weight: 600; color: var(--ac, #1a6bff);
  transition: opacity .15s;
}
.ci-svc-card:hover { opacity: .8; }
.ci-svc-icon { width: 18px; height: 18px; flex-shrink: 0; }
.ci-svc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Trust stats */
.ci-trust {
  display: flex; gap: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.ci-trust-item {
  flex: 1; text-align: center; padding: 1.1rem .75rem;
  border-right: 1px solid var(--border);
}
.ci-trust-item:last-child { border-right: none; }
.ci-trust-num { font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; color: var(--blue); line-height: 1; }
.ci-trust-lbl { font-size: .7rem; color: var(--muted); font-weight: 500; margin-top: .3rem; }

/* Form card */
.contact-right { }
.cf-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
.cf-card-header {
  background: var(--blue);
  padding: 1.75rem 2rem;
  color: #fff;
}
.cf-heading { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.cf-subheading { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .3rem; }

/* Form body */
#contactForm { padding: 1.75rem 2rem; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.cf-label { font-size: .82rem; font-weight: 600; color: var(--text); }
.cf-req { color: var(--blue); margin-left: 1px; }

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
}
.cf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,255,.1);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: #c4c9d4; }
.cf-group textarea { resize: vertical; min-height: 130px; }

/* Validation */
.cf-err {
  font-size: .75rem; color: #dc2626; font-weight: 500;
  min-height: .9rem; display: none;
}
.cf-err.visible { display: block; }

/* Submit button */
.cf-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  padding: .9rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(26,107,255,.3);
  margin-top: .5rem;
}
.cf-btn:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,107,255,.4); }
.cf-btn:disabled { opacity: .7; cursor: not-allowed; }

@keyframes cf-rotate { to { transform: rotate(360deg); } }
.cf-spin { animation: cf-rotate .8s linear infinite; }

/* Success / error messages */
/* FIX: gunakan :not([hidden]) agar display:flex tidak override atribut hidden */
[hidden] { display: none !important; }
.cf-success-msg:not([hidden]) {
  display: flex; align-items: center; gap: .6rem;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: .85rem 1rem;
  font-size: .875rem; font-weight: 600; color: #15803d;
  margin-top: 1rem;
}
.cf-success-msg svg { stroke: #15803d; flex-shrink: 0; }
.cf-error-box {
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 10px; padding: .85rem 1rem;
  font-size: .875rem; color: #dc2626;
  margin-top: 1rem;
}
.cf-error-box a { color: #dc2626; font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  #contactForm { padding: 1.25rem; }
  .cf-card-header { padding: 1.25rem; }
  .ci-services-grid { grid-template-columns: 1fr; }
}

/* ── Services Index Page ──────────────────────────────────── */

/* Hero */
.svcs-hero {
  position: relative;
  overflow: hidden;
  background: #0d1117;
  color: #fff;
  padding: 5rem 0 4.5rem;
}
.svcs-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(26,107,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(124,58,237,.12) 0%, transparent 45%);
  pointer-events: none;
}
.svcs-hero-inner { position: relative; z-index: 1; max-width: 740px; }
.svcs-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.svcs-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.svcs-hl {
  background: linear-gradient(90deg, #4d8bff, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svcs-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.svcs-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.svcs-hero-pills span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .35rem .85rem;
  border-radius: 999px;
}

/* Services list section */
.svcs-list { padding: 4rem 0 5rem; background: #fff; }

/* Each service row */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
}
.svc-row--rev { grid-template-columns: 1.15fr 1fr; }
.svc-row--rev .svc-row-visual { order: 2; }
.svc-row--rev .svc-row-content { order: 1; }

.svc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* Visual panel */
.svc-row-visual {
  border-radius: 24px;
  background: var(--al, #eef3fe);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.6) 0%, transparent 65%);
}
.svc-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.svc-big-icon {
  width: 96px; height: 96px;
  background: #fff;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  color: var(--ac, #1a6bff);
}
.svc-big-icon svg {
  width: 44px; height: 44px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.svc-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ac, #1a6bff);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.svc-visual-num {
  font-size: 6rem;
  font-weight: 900;
  color: var(--ac, #1a6bff);
  opacity: .06;
  letter-spacing: -.05em;
  line-height: 1;
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  pointer-events: none;
  user-select: none;
}

/* Content panel */
.svc-row-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
}
.svc-row-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.svc-row-title a { color: var(--text); transition: color .2s; }
.svc-row-title a:hover { color: var(--ac, #1a6bff); }
.svc-row-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .6rem;
  line-height: 1.5;
}
.svc-row-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.svc-row-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-bottom: 2rem;
}
.svc-row-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  color: #374151;
}
.svc-row-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-row-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.svc-row-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  transition: opacity .2s, transform .2s;
}
.svc-row-cta:hover { opacity: .88; transform: translateY(-2px); }
.svc-row-quote {
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.svc-row-quote:hover { color: var(--text); }

/* Why strip */
.svcs-why {
  padding: 4rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.svcs-why-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 2.5rem;
}
.svcs-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svcs-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s;
}
.svcs-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svcs-why-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.svcs-why-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.svcs-why-text strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.svcs-why-text p { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .svc-row, .svc-row--rev { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row--rev .svc-row-visual,
  .svc-row--rev .svc-row-content { order: unset; }
  .svc-row-visual { max-width: 480px; }
  .svcs-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-row-features { grid-template-columns: 1fr; }
  .svcs-why-grid { grid-template-columns: 1fr; }
}

/* ── About ────────────────────────────────────────────────── */
.about-hero { padding: 4rem 0 2rem; }

/* ── 404 ──────────────────────────────────────────────────── */
.page-404-wrap { text-align: center; padding: 8rem 1.5rem; }
.page-404-wrap h1 { font-size: 6rem; font-weight: 800; color: var(--blue); line-height: 1; }

/* ── Tools ────────────────────────────────────────────────── */
.tools-hero { padding: 4rem 0 2rem; }


/* ── Solutions Pages ──────────────────────────────────────── */

/* Index hero */
.sol-index-hero {
  position: relative; overflow: hidden;
  background: #0d1117; color: #fff;
  padding: 5rem 0 4rem;
}
.sol-index-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(192,38,211,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 70%, rgba(26,107,255,.12) 0%, transparent 45%);
  pointer-events: none;
}
.sol-index-hero-inner { position: relative; z-index: 1; }
.sol-index-title {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.04em;
  margin: 1.25rem 0; color: #fff;
}
.sol-index-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 520px; margin-bottom: 2rem; }
.sol-index-sub strong { color: rgba(255,255,255,.85); }
.sol-index-nav { display: flex; flex-wrap: wrap; gap: .65rem; }
.sol-index-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-size: .82rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 999px; transition: background .2s, border-color .2s;
}
.sol-index-pill:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.25); }
.sol-index-pill-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Cards */
.sol-index-list { padding: 4rem 0 5rem; background: #fff; }
.sol-index-list .container { display: flex; flex-direction: column; gap: 1.25rem; }
.sol-index-card {
  border: 1.5px solid var(--border); border-radius: 20px;
  padding: 2rem 2.25rem; background: #fff;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  position: relative; overflow: hidden;
}
.sol-index-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--ac); border-radius: 4px 0 0 4px;
  opacity: 0; transition: opacity .25s;
}
.sol-index-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); border-color: var(--ac); transform: translateY(-2px); }
.sol-index-card:hover::before { opacity: 1; }
.sol-index-card-top { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1rem; }
.sol-index-icon { width: 52px; height: 52px; background: var(--al); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--ac); flex-shrink: 0; }
.sol-index-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sol-index-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ac); margin-bottom: .3rem; }
.sol-index-card-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.sol-index-card-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.sol-index-card-desc strong { color: var(--text); }
.sol-index-feats { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem .75rem; margin-bottom: 1.5rem; }
.sol-index-feats li { display: flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 500; color: #374151; }
.sol-index-check { width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sol-index-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.sol-index-stat { display: flex; flex-direction: column; }
.sol-index-stat-val { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; }
.sol-index-stat-lbl { font-size: .72rem; color: var(--muted); font-weight: 500; }
.sol-index-cta { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: .875rem; padding: .65rem 1.35rem; border-radius: 999px; transition: opacity .2s, transform .2s; }
.sol-index-cta:hover { opacity: .88; transform: translateY(-2px); }

/* ── Solution Detail ────────────────────────────────────────── */
.sol-detail-hero { position: relative; overflow: hidden; padding: 4rem 0 3.5rem; background: #fff; }
.sol-detail-hero-glow { position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, var(--al, #eef3fe) 0%, transparent 60%); pointer-events: none; }
.sol-detail-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 3.5rem; align-items: start; position: relative; z-index: 1; }
.sol-detail-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.25rem; }
.sol-detail-eyebrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sol-detail-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.08; letter-spacing: -.04em; margin-bottom: 1rem; color: var(--text); }
.sol-detail-tagline { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: .65rem; line-height: 1.5; }
.sol-detail-desc { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.sol-detail-desc strong { color: var(--text); }
.sol-detail-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.sol-detail-cta-btn { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: .9rem; padding: .75rem 1.5rem; border-radius: 999px; transition: opacity .2s, transform .2s; }
.sol-detail-cta-btn:hover { opacity: .88; transform: translateY(-2px); }
.sol-detail-back { font-size: .875rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.sol-detail-back:hover { color: var(--text); }
.sol-detail-kws { display: flex; flex-wrap: wrap; gap: .4rem; }
.sol-kw-pill { font-size: .7rem; font-weight: 500; background: var(--bg-soft); color: var(--muted); padding: .25rem .6rem; border-radius: 999px; border: 1px solid var(--border); }
.sol-detail-feat-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 1.75rem; box-shadow: 0 4px 24px rgba(0,0,0,.07); position: sticky; top: 90px; }
.sol-detail-feat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.sol-detail-feat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sol-detail-feat-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sol-detail-feat-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.sol-detail-feat-list li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 500; color: #374151; }
.sol-detail-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sol-detail-card-cta { display: block; text-align: center; font-size: .85rem; font-weight: 600; padding: .65rem; border-radius: 10px; border: 1.5px solid; transition: background .2s; }
.sol-detail-card-cta:hover { background: var(--al); }
.sol-detail-feats-section { padding: 4rem 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.sol-detail-feats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.sol-detail-fc { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; transition: box-shadow .2s, transform .2s; }
.sol-detail-fc:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sol-detail-fc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.sol-detail-fc-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sol-detail-fc h3 { font-size: .95rem; font-weight: 700; color: var(--text); }
.sol-detail-fc p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }
.sol-detail-fc p strong { color: var(--text); }
.sol-detail-pricing { padding: 5rem 0; }
.sol-detail-pricing-header { text-align: center; margin-bottom: 3rem; }
.sol-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.sol-pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 2rem; position: relative; transition: box-shadow .2s; }
.sol-pricing-card--feat { border-color: var(--ac); box-shadow: 0 0 0 2px var(--ac); }
.sol-pricing-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .7rem; font-weight: 700; padding: .2rem .8rem; border-radius: 999px; white-space: nowrap; }
.sol-pricing-name { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .5rem; }
.sol-pricing-price { font-size: 1.75rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: .75rem; }
.sol-pricing-desc { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.sol-pricing-cta { display: inline-flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 600; border: 1.5px solid; padding: .6rem 1.25rem; border-radius: 999px; transition: opacity .15s; }
.sol-pricing-cta:hover { opacity: .85; }
.sol-pricing-cta--main { color: #fff !important; }
.sol-detail-related { padding: 3rem 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.sol-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.sol-related-card { display: flex; flex-direction: column; gap: .4rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; transition: box-shadow .2s, border-color .2s; }
.sol-related-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.sol-related-label { font-weight: 700; font-size: .9rem; color: var(--blue); }
.sol-related-desc { font-size: .8rem; color: var(--muted); flex: 1; line-height: 1.5; }
.sol-related-arrow { color: var(--blue); font-size: 1rem; margin-top: .25rem; }

/* ── Privacy ──────────────────────────────────────────────── */
.privacy-wrap { max-width: 760px; margin-inline: auto; padding: 4rem 1.5rem; }
.privacy-wrap h1 { margin-bottom: 2rem; }
.privacy-wrap h2 { font-size: 1.2rem; margin: 2rem 0 .5rem; }
.privacy-wrap p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-links-grid { grid-template-columns: 1fr 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-related-grid { grid-template-columns: 1fr 1fr; }
  .sol-detail-hero-inner { grid-template-columns: 1fr; }
  .sol-detail-feat-card { position: static; }
  .sol-detail-feats-grid { grid-template-columns: repeat(2,1fr); }
  .sol-pricing-grid { grid-template-columns: 1fr; }
  .sol-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .related-links-grid, .other-services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-services-bar { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .sol-detail-feats-grid { grid-template-columns: 1fr; }
  .sol-related-grid { grid-template-columns: 1fr; }
  .sol-index-card-top { flex-direction: column; gap: .75rem; }
}
/* ── Industry Pages ─────────────────────────────────────────── */
.ind-hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(160deg, var(--bg-soft) 0%, #fff 60%);
  border-bottom: 1px solid var(--border);
}
.ind-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}
.ind-hero-h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin: .75rem 0 1.25rem;
}
.ind-hero-sub {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2rem;
}
.ind-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ind-trust {
  margin-top: 0;
}

/* Hero feature card */
.ind-hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}
.ind-card-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.ind-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.ind-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
}
.ind-feat-list li svg { flex-shrink: 0; margin-top: 2px; }
.ind-card-price {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.ind-card-price strong { color: var(--text); font-weight: 700; }

/* Build section */
.ind-build-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.ind-build-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ind-section-h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: .75rem 0 1.25rem;
}
.ind-body-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.ind-text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .5rem;
}
.ind-text-link:hover { text-decoration: underline; }

/* Process steps */
.ind-process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ind-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.ind-step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 6px;
  padding: .25rem .5rem;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.ind-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .2rem;
}
.ind-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Why section */
.ind-why-section {
  padding: 5rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ind-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}
.ind-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.ind-why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ind-why-icon {
  font-size: 24px;
  margin-bottom: .75rem;
}
.ind-why-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.ind-why-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ section — industry pages */
.ind-faq-section {
  padding: 5rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ind-faq-header {
  margin-bottom: 3rem;
}
.ind-faq-contact-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.ind-faq-contact-link:hover { text-decoration: underline; }

.ind-faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.ind-faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.ind-faq-card:hover {
  border-color: #c7d9ff;
}
.ind-faq-card--open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,255,.06);
}

.ind-faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font);
  transition: background .15s;
}
.ind-faq-btn:hover { background: var(--bg-soft); }
.ind-faq-card--open .ind-faq-btn { background: var(--blue-light); }

.ind-faq-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: #e8f0ff;
  border-radius: 6px;
  padding: .2rem .45rem;
  letter-spacing: .04em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.ind-faq-card--open .ind-faq-num {
  background: var(--blue);
  color: #fff;
}

.ind-faq-q {
  flex: 1;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.ind-faq-card--open .ind-faq-q { color: var(--blue); }

.ind-faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s;
  display: flex;
  align-items: center;
}
.ind-faq-card--open .ind-faq-icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.ind-faq-ans {
  padding: 0 1.5rem 1.25rem 3.75rem;
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.8;
  border-top: 1px solid var(--blue-light);
}
.ind-faq-ans[hidden] { display: none; }
.ind-faq-ans:not([hidden]) { display: block; }

.ind-faq-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 800px;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .ind-faq-ans { padding-left: 1.5rem; }
  .ind-faq-cta { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* Others section */
.ind-others-section {
  padding: 3rem 0 3.5rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.ind-others-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.ind-others-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .55rem 1.1rem;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all .15s;
}
.ind-pill:hover { border-color: var(--blue); color: var(--blue); }
.ind-pill--dark {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.ind-pill--dark:hover { background: #374151; border-color: #374151; color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .ind-hero-inner { grid-template-columns: 1fr; }
  .ind-hero-card { position: static; }
  .ind-build-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .ind-hero { padding: 2.5rem 0 3rem; }
  .ind-hero-actions { flex-direction: column; align-items: flex-start; }
  .ind-why-grid { grid-template-columns: 1fr 1fr; }
  .ind-build-section, .ind-why-section, .ind-faq-section { padding: 3rem 0; }
}
@media (max-width: 400px) {
  .ind-why-grid { grid-template-columns: 1fr; }
}