/* ===========================================================
   DACONTRA — Minimal Corporate Light
   =========================================================== */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f7f9fc;
  --bg-2:      #eef2f7;
  --ink:       #0a1628;
  --ink-2:     #334155;
  --ink-dim:   #64748b;
  --ink-mute:  #94a3b8;
  --accent:    #2563eb;
  --accent-d:  #1d4ed8;
  --accent-soft:#eff6ff;
  --success:   #16a34a;
  --border:    #e2e8f0;
  --border-2:  #cbd5e1;

  --f-display: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container:  1280px;
  --gutter-x:   clamp(20px, 4vw, 56px);
  --section-py: clamp(70px, 9vw, 130px);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-1:  0 1px 2px rgba(15,23,42,.04);
  --shadow-2:  0 4px 16px rgba(15,23,42,.06);
  --shadow-3:  0 12px 40px rgba(15,23,42,.08);
  --shadow-4:  0 24px 60px rgba(15,23,42,.12);

  --speed:     .3s;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; background: none; border: 0; outline: 0; }
::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter-x);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: none;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}

.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h2--sm { font-size: clamp(28px, 3.5vw, 44px); }

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 600px;
}

.sect-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
}
.sect-head__lede {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 640px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
  margin-top: 24px;
  transition: gap var(--speed) var(--ease);
}
.link:hover { gap: 12px; color: var(--accent-d); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -.005em;
  border-radius: 10px;
  transition: all var(--speed) var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
}
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 28px;
}
.pill__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.pill__dot::after {
  content: '';
  position: absolute; inset: -4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .35;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .35; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* ============ HEADER ============ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: all var(--speed) var(--ease);
}
.hdr.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,.9);
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand__mark svg { width: 100%; height: 100%; }
.nav {
  display: flex;
  gap: 4px;
}
.nav__a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: all var(--speed) var(--ease);
}
.nav__a:hover {
  color: var(--ink);
  background: var(--bg-soft);
}
.hdr__actions { display: flex; gap: 8px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--speed) var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mob {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: 100px var(--gutter-x) 48px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mob.is-open { transform: translateY(0); }
.mob nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mob nav a {
  padding: 16px 0;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mob__meta {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink-dim);
  font-size: 13px;
}

/* ============ HERO ============ */
.hero {
  padding-top: 120px;
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-soft) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15,23,42,.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 80%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero__h {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__h-em {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust__item {
  display: flex; flex-direction: column; gap: 2px;
}
.trust__item strong {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.trust__item span {
  font-size: 12px;
  color: var(--ink-dim);
}
.trust__sep {
  width: 1px; height: 28px;
  background: var(--border-2);
}

/* ============ HERO VISUAL ============ */
.hero__visual {
  position: relative;
}
.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-4);
}
.hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-4);
  width: clamp(220px, 24vw, 270px);
  display: flex; flex-direction: column; gap: 12px;
}
.hero__card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.hero__card-row:last-of-type { border: 0; padding-bottom: 0; }
.hero__card-lbl {
  font-size: 13px; color: var(--ink-dim);
}
.hero__card-row strong {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.hero__card-foot {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ============ TRUST LOGOS ============ */
.logos {
  padding-block: clamp(48px, 6vw, 80px);
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.logos__lbl {
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.logos__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
}
.logos__row span {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--ink-mute);
  opacity: .7;
  transition: opacity var(--speed) var(--ease);
}
.logos__row span:hover { opacity: 1; color: var(--ink); }

/* ============ ABOUT ============ */
.about { padding-block: var(--section-py); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__copy p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
}
.about__panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.panel__pic {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.panel__pic img { width: 100%; height: 100%; object-fit: cover; }
.panel__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ps {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ps strong {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
}
.ps span {
  font-size: 13px;
  color: var(--ink-dim);
}

/* ============ SERVICES ============ */
.svc {
  padding-block: var(--section-py);
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--speed) var(--ease);
}
.svc__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-3);
}
.svc__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 24px;
}
.svc__icon svg { width: 26px; height: 26px; }
.svc__card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.svc__card p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 20px;
}
.svc__card ul {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.svc__card ul li {
  font-size: 14px;
  color: var(--ink-dim);
  padding-left: 22px;
  position: relative;
}
.svc__card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ============ FEATURE / METRICS ============ */
.feat { padding-block: var(--section-py); }
.feat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.feat__copy p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--ink-2);
}
.checks {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.checks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-size: 15px;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.checks li::after {
  content: '';
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.feat__metrics {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.metric { display: flex; flex-direction: column; gap: 10px; }
.metric__head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.metric__head span {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.metric__head strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
}
.bar {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease);
}
.feat__metrics.is-in .bar span { transform: scaleX(1); }
.metric__foot {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}

/* ============ PROJECTS ============ */
.proj {
  padding-block: var(--section-py);
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.proj__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.proj__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.proj__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}
.proj__img { aspect-ratio: 16/10; overflow: hidden; }
.proj__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.proj__card:hover .proj__img img { transform: scale(1.04); }
.proj__body { padding: 28px 30px; }
.proj__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 14px;
}
.proj__body h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.proj__body p {
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 14px;
}

/* ============ PROCESS ============ */
.proc { padding-block: var(--section-py); }
.proc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.proc__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent), var(--accent-soft));
  z-index: 0;
}
.proc__step {
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.proc__num {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 24px;
  letter-spacing: .02em;
}
.proc__step h3 {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.proc__step p {
  color: var(--ink-dim);
  font-size: 15px;
}

/* ============ QUOTES ============ */
.quotes {
  padding-block: var(--section-py);
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.qt {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.qt::before {
  content: '"';
  position: absolute;
  top: 6px; right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--accent-soft);
  line-height: 1;
}
.qt blockquote {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.qt figcaption {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.qt figcaption strong {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.qt figcaption span {
  font-size: 13px;
  color: var(--ink-dim);
}

/* ============ CTA ============ */
.cta { padding-block: clamp(64px, 8vw, 100px); }
.cta__inner {
  background:
    radial-gradient(ellipse at top right, rgba(96,165,250,.14), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(124,58,237,.12), transparent 60%),
    var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 70px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.cta__inner p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta__inner .btn--solid {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.cta__inner .btn--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ============ CONTACT ============ */
.ct { padding-block: var(--section-py); }
.ct__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.ct__copy p { margin: 18px 0 36px; font-size: 17px; color: var(--ink-2); }
.ct__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ct__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.ct__list li:last-child { border: 0; padding-bottom: 0; }
.ct__lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.ct__list a:hover { color: var(--accent); }

.ct__form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-2);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -.005em;
}
.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 15px;
  border-radius: 10px;
  transition: all var(--speed) var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.ct__form .btn { margin-top: 6px; }
.ct__note {
  font-size: 14px;
  color: var(--success);
  background: rgba(22,163,74,.08);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(22,163,74,.18);
}

/* ============ FOOTER ============ */
.ft {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 28px;
  background: var(--ink);
  color: rgba(255,255,255,.7);
}
.ft__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ft__brand .brand {
  color: #fff;
  margin-bottom: 18px;
}
.ft__brand .brand__mark svg rect { fill: rgba(255,255,255,.1); }
.ft__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 320px;
}
.ft__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft__col h4 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.ft__col a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--speed) var(--ease);
}
.ft__col a:hover { color: var(--accent); }
.ft__col small {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-top: 6px;
}
.ft__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.ft__legal { display: flex; gap: 24px; }
.ft__legal a { color: inherit; }
.ft__legal a:hover { color: var(--accent); }

/* ============ TO TOP ============ */
.totop {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-3);
}
.totop svg { width: 18px; height: 18px; }
.totop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.totop:hover { background: var(--accent); transform: translateY(-4px); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .hdr__actions { display: none; }
  .burger { display: flex; }
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes__grid { grid-template-columns: 1fr; }
  .ft__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; }
  .hero__card { left: auto; right: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .feat__grid { grid-template-columns: 1fr; }
  .proj__grid { grid-template-columns: 1fr; }
  .proc__grid { grid-template-columns: 1fr; gap: 16px; }
  .proc__grid::before { display: none; }
  .ct__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .ft__top { grid-template-columns: 1fr; }
  .ft__bot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .svc__grid { grid-template-columns: 1fr; }
  .panel__stats { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 12px; }
  .trust__sep { display: none; }
}
