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

:root {
  --brand:       #1849D6;
  --brand-dark:  #1239b0;
  --brand-light: #e8eefb;
  --dark:        #0d1117;
  --dark-2:      #111827;
  --dark-card:   #161d2b;
  --text:        #0d1117;
  --text-2:      #374151;
  --muted:       #6b7280;
  --surface:     #ffffff;
  --soft:        #f7f8fc;
  --border:      #e5e7eb;
  --green:       #15803d;
  --red:         #b91c1c;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.13);
  --container:   1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { width: min(var(--container), 100% - 2.5rem); margin: 0 auto; }
.section   { padding: 6rem 0; }
.bg-soft   { background: var(--soft); }
.bg-dark   { background: var(--dark); }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .6rem;
}
.light-eyebrow { color: #93c5fd; }

.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}

.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.center { max-width: 680px; margin-inline: auto; text-align: center; }
.section-h  { font-size: clamp(1.8rem, 3.5vw, 2.75rem); margin-bottom: .6rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin-top: .5rem; }
.sh-minor   { font-size: 1.4rem; margin-bottom: .4rem; }
.white      { color: #fff; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  border-radius: 9px; font-weight: 600; font-size: .9rem;
  border: none; cursor: pointer;
  transition: background .16s, box-shadow .16s, transform .14s;
  white-space: nowrap; letter-spacing: -.01em; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--brand); color: #fff;
  padding: .75rem 1.4rem;
  box-shadow: 0 4px 14px rgba(24,73,214,.28);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 6px 22px rgba(24,73,214,.36); }

.btn-ghost {
  background: transparent; color: var(--text-2);
  padding: .75rem 1.4rem;
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: #9ca3af; color: var(--text); }

.btn-sm    { padding: .5rem .95rem; font-size: .84rem; }
.btn-lg    { padding: .85rem 1.7rem; font-size: .96rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Reveal animation ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── NAV ────────────────────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem; min-height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 9px; font-weight: 700;
  font-size: .95rem; letter-spacing: -.02em; flex-shrink: 0;
  font-family: "Bricolage Grotesque", sans-serif;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 800; flex-shrink: 0;
}
.logo-name span { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-links a {
  padding: .45rem .85rem; border-radius: 7px; font-size: .88rem;
  font-weight: 500; color: var(--text-2);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--soft); color: var(--text); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.3rem; color: var(--text-2); margin-left: auto;
  padding: .4rem;
}
.mobile-menu {
  display: none; flex-direction: column; gap: .25rem;
  padding: .75rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
}
.mobile-menu a { padding: .65rem .75rem; border-radius: 8px; font-weight: 500; font-size: .95rem; }
.mobile-menu a:hover { background: var(--soft); }
.mobile-menu.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: #fff;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(24,73,214,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,73,214,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 1.1rem;
}
.hero-h {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 1rem;
}
.hero-gradient {
  background: linear-gradient(120deg, var(--brand), #6366f1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem; color: var(--text-2); max-width: 480px;
  line-height: 1.65; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex; align-items: center; gap: 0;
  background: var(--soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1.2rem;
  width: fit-content;
}
.ht-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 1.1rem; }
.ht-num  { font-size: 1.25rem; font-weight: 800; color: var(--text); font-family: "Bricolage Grotesque", sans-serif; }
.ht-label{ font-size: .72rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.ht-div  { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }
.mock-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #f9fafb;
  border-bottom: 1px solid var(--border);
}
.m-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.m-dot.r { background: #fc6059; }
.m-dot.y { background: #fdbc2c; }
.m-dot.g { background: #34c749; }
.m-url  { margin-left: 8px; font-size: .75rem; color: var(--muted); font-family: monospace; }
.mock-body { display: flex; height: 280px; }
.mock-sidebar {
  width: 130px; background: #0f172a; padding: 14px 10px;
  display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.ms-logo { color: #67e8f9; font-weight: 800; font-size: .8rem; padding: 4px 8px 10px; letter-spacing: -.02em; }
.ms-item {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 8px; border-radius: 8px;
  font-size: .75rem; color: rgba(255,255,255,.5);
  cursor: pointer;
}
.ms-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.ms-item.active { background: rgba(255,255,255,.1); color: #e2e8f0; }
.mock-content { flex: 1; padding: 14px; overflow: hidden; }
.mc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mc-title { font-size: .85rem; font-weight: 700; }
.mc-badge { background: var(--brand); color: #fff; font-size: .65rem; padding: 1px 6px; border-radius: 99px; margin-left: 6px; font-weight: 700; }
.mc-btn { font-size: .72rem; background: var(--brand); color: #fff; padding: 4px 9px; border-radius: 6px; font-weight: 600; cursor: pointer; }
.mc-cards { display: flex; flex-direction: column; gap: 8px; }
.mc-card { border: 1px solid var(--border); border-radius: 9px; overflow: hidden; }
.mc-card-top { height: 3px; }
.mc-card-body { padding: 8px 10px; display: flex; flex-direction: column; gap: 5px; }
.mc-card-name { font-size: .75rem; font-weight: 600; }
.mc-card-meta { }
.mc-chip { font-size: .62rem; font-weight: 700; padding: 1px 7px; border-radius: 99px; }
.mc-chip.blue   { background: #dbeafe; color: #1d4ed8; }
.mc-chip.amber  { background: #fef3c7; color: #b45309; }
.mc-chip.green  { background: #dcfce7; color: #15803d; }
.mc-progress-wrap { height: 4px; background: #f3f4f6; border-radius: 99px; overflow: hidden; }
.mc-progress-bar  { height: 100%; background: var(--brand); border-radius: 99px; }
.mc-card-stats { display: flex; gap: 8px; }
.mcs { font-size: .65rem; font-weight: 600; }
.mcs.green { color: #15803d; }
.mcs.blue  { color: #2563eb; }
.mcs.red   { color: #dc2626; }
.mcs.gray  { color: var(--muted); }

/* Floating badges */
.hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  font-size: .78rem;
  animation: floatBadge 3s ease-in-out infinite;
}
.hero-badge.b1 { bottom: -20px; left: -28px; animation-delay: 0s; }
.hero-badge.b2 { top: 24px; right: -20px; animation-delay: 1.2s; }
.hb-icon { font-size: 1.1rem; flex-shrink: 0; }
.hb-title { font-weight: 700; font-size: .76rem; }
.hb-sub   { color: var(--muted); font-size: .7rem; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── CLIENTS BAR ────────────────────────────────────────────────────────── */
.clients-bar {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--soft);
}
.clients-bar .container { display: flex; align-items: center; gap: 2rem; }
.cb-label { font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.cb-logos { display: flex; align-items: center; gap: 1.5rem; }
.cb-logo  { font-weight: 700; font-size: 1rem; font-family: "Bricolage Grotesque", sans-serif; color: var(--text-2); }
.cb-logo.cb-muted { color: var(--border); font-style: italic; font-weight: 500; font-size: .85rem; }
.cb-div   { width: 1px; height: 20px; background: var(--border); }

/* ── SERVICES ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(24,73,214,.2);
}
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.svc-card p  { font-size: .9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.1rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags li {
  font-size: .72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 99px; background: var(--soft);
  color: var(--text-2); border: 1px solid var(--border);
}

/* ── WORK / PORTFOLIO ───────────────────────────────────────────────────── */
.case-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.cf-badge {
  display: inline-block; padding: 3px 12px;
  background: var(--brand-light); color: var(--brand);
  border-radius: 99px; font-size: .73rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.cf-title { font-size: 1.5rem; margin-bottom: 1rem; }
.cf-client { font-size: .88rem; color: var(--muted); margin-bottom: 1.1rem; }
.cf-client-label {
  display: inline-block; margin-right: 8px;
  font-weight: 700; font-size: .73rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand);
}
.cf-desc { font-size: .92rem; color: var(--text-2); line-height: 1.7; margin-bottom: .85rem; }
.cf-results {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 1.5rem 0;
}
.cfr-item { display: flex; flex-direction: column; gap: 3px; }
.cfr-num  { font-size: 1.6rem; font-weight: 800; font-family: "Bricolage Grotesque", sans-serif; color: var(--brand); }
.cfr-label{ font-size: .8rem; color: var(--muted); line-height: 1.4; }
.cf-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: .5rem; }
.cf-stack span {
  font-size: .73rem; font-weight: 600; padding: 3px 10px;
  border-radius: 99px; background: #f3f4f6;
  color: var(--text-2); border: 1px solid var(--border);
}

/* Case study window */
.cf-window {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.cfw-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 13px; background: #f9fafb;
  border-bottom: 1px solid var(--border);
}
.cfw-body { padding: 16px; }
.cfw-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cfw-title { font-weight: 700; font-size: .9rem; }
.cfw-pills { display: flex; gap: 6px; }
.cp { font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.cp.warn { background: #fef2f2; color: #dc2626; }
.cp.info { background: #eff6ff; color: #2563eb; }
.cfw-tasks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cft {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 10px; border-radius: 8px;
  background: #f9fafb; font-size: .8rem;
}
.cft.overdue { background: #fff5f5; }
.cft-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cft-dot.done { background: #16a34a; }
.cft-dot.prog { background: #2563eb; }
.cft-dot.late { background: #dc2626; }
.cft-dot.todo { background: #d1d5db; }
.cft-name { flex: 1; font-size: .79rem; }
.cft-av {
  width: 22px; height: 22px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; flex-shrink: 0;
}
.cft-tag { font-size: .68rem; font-weight: 700; padding: 1px 7px; border-radius: 99px; flex-shrink: 0; }
.cft-tag.green { background: #dcfce7; color: #15803d; }
.cft-tag.blue  { background: #dbeafe; color: #1d4ed8; }
.cft-tag.red   { background: #fee2e2; color: #dc2626; }
.cft-tag.gray  { background: #f3f4f6; color: #6b7280; }
.cfw-stats { display: flex; gap: 1rem; padding-top: 10px; border-top: 1px solid var(--border); }
.cs-item { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.cs-val  { font-size: .95rem; font-weight: 800; font-family: "Bricolage Grotesque", sans-serif; }
.cs-val.green { color: #16a34a; }
.cs-val.red   { color: #dc2626; }
.cs-val.blue  { color: #2563eb; }
.cs-lbl { font-size: .68rem; color: var(--muted); }

/* Domains grid */
.domains-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.domain-card {
  padding: 1.4rem 1.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow .18s, transform .18s;
}
.domain-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.dc-icon { font-size: 1.6rem; margin-bottom: .65rem; }
.domain-card h4 { font-size: .95rem; margin-bottom: .35rem; }
.domain-card p  { font-size: .84rem; color: var(--muted); line-height: 1.55; }

.work-cta {
  text-align: center; padding: 2.5rem; background: #fff;
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
}
.work-cta p { font-size: 1rem; color: var(--text-2); margin-bottom: 1rem; }

/* ── PROCESS ────────────────────────────────────────────────────────────── */
.process-track { position: relative; max-width: 820px; margin: 0 auto; }
.pt-line {
  position: absolute; left: 28px; top: 40px; bottom: 40px; width: 2px;
  background: linear-gradient(to bottom, var(--brand), #6366f1, var(--border));
  border-radius: 99px;
}
.pt-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.pt-step  { display: flex; gap: 2rem; align-items: flex-start; }
.pts-num  {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--brand); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; letter-spacing: .02em;
  font-family: "Bricolage Grotesque", sans-serif;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px #fff;
}
.pts-body { padding-top: .85rem; }
.pts-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.pts-body p  { font-size: .92rem; color: var(--text-2); line-height: 1.65; margin-bottom: .85rem; }
.pts-list { display: flex; flex-direction: column; gap: 6px; }
.pts-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem; color: var(--muted);
}
.pts-list li::before {
  content: "✓"; font-weight: 700; color: var(--brand); flex-shrink: 0; font-size: .8rem;
}

/* ── ABOUT ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.about-p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 1rem; }

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card {
  padding: 1.4rem 1.5rem;
  background: var(--dark-card); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.wc-icon { font-size: 1.5rem; margin-bottom: .65rem; }
.why-card h4 { font-size: .95rem; color: #e2e8f0; margin-bottom: .35rem; }
.why-card p  { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ── TESTIMONIAL ────────────────────────────────────────────────────────── */
.big-quote {
  max-width: 820px; margin: 0 auto; text-align: center;
  padding: 3.5rem 2.5rem; position: relative;
}
.bq-marks {
  font-size: 5rem; color: var(--brand); opacity: .18;
  font-family: Georgia, serif; line-height: 1;
  margin-bottom: -1.5rem; display: block;
}
.big-quote p { font-size: 1.3rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 1.5rem; }
.big-quote cite { display: flex; flex-direction: column; align-items: center; gap: 4px; font-style: normal; }
.big-quote cite strong { font-weight: 700; font-size: .95rem; }
.big-quote cite span   { font-size: .85rem; color: var(--muted); }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0; }
.ci-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: color .15s;
}
.ci-item:hover { color: var(--brand); }
.ci-nolink { cursor: default; }
.ci-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 16px; height: 16px; }
.contact-note {
  padding: 1rem 1.25rem; background: var(--soft);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .86rem; color: var(--text-2); line-height: 1.55;
}
.contact-note strong { color: var(--text); }

.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: 5px; }
.cf-group label { font-size: .82rem; font-weight: 600; color: var(--text-2); }
.cf-group input, .cf-group textarea, .cf-group select {
  padding: .65rem .9rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .9rem; font-family: inherit;
  background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(24,73,214,.1);
}
.cf-group select { cursor: pointer; }
.cf-group textarea { resize: vertical; line-height: 1.55; }
.form-note {
  text-align: center; font-size: .8rem; color: var(--muted); margin-top: .25rem;
}

.form-success {
  text-align: center; padding: 3rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #dcfce7; color: #15803d;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.form-success h3 { margin-bottom: .5rem; }
.form-success p  { color: var(--muted); font-size: .9rem; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 3.5rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: .85rem; }
.footer-brand .logo-mark { background: rgba(255,255,255,.15); }
.footer-brand .logo-name { color: rgba(255,255,255,.85); }
.footer-brand .logo-name span { color: #93c5fd; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 300px; margin-bottom: .75rem; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { font-size: .84rem; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-contact a:hover { color: rgba(255,255,255,.8); }

.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .85rem; }
.footer-col { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.25); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .case-featured { grid-template-columns: 1fr; }
  .cf-right { display: none; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero    { padding: 3rem 0 2rem; }
  .nav-links { display: none; }
  .nav-wrap .btn-sm { display: none; }
  .nav-hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .domains-grid  { grid-template-columns: 1fr; }
  .cf-results { grid-template-columns: 1fr 1fr; }
  .why-cards  { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; }
  .big-quote p { font-size: 1.05rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pt-line { display: none; }
  .pt-step { flex-direction: column; gap: .75rem; }
  .pts-num { box-shadow: none; }
}
