/* ============================================================
   OmniCore — Design System
   Cores semânticas, tipografia e componentes (handoff §3)
   ============================================================ */

:root {
  /* Cores */
  --background: #0A0F1E;
  --card: #0D1526;
  --primary: #2563EB;
  --primary-strong: #1D4FD8;
  --secondary: #4a25eb;
  --foreground: #E7ECF5;
  --muted: #94A0B8;
  --faint: #5C6982;
  --border: rgba(148, 160, 184, 0.14);
  --border-strong: rgba(37, 99, 235, 0.30);

  /* Tipografia */
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  /* Efeitos */
  --grid-line: rgba(37, 99, 235, 0.06);
  --glow-card: 0 0 32px rgba(37, 99, 235, 0.18);
  --glow-btn: 0 0 28px rgba(37, 99, 235, 0.45);

  --maxw: 1180px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: rgba(37, 99, 235, 0.4); color: #fff; }

/* Fundo decorativo: grid sutil global */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 80%);
  mask: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 80%);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   LOGO MARK (recriação CSS do logo OmniCore)
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; flex: none; }
.site-footer .logo-img { height: 36px; }
.mark { position: relative; flex: none; width: 34px; height: 34px; }
.mark .ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 150deg,#5c646f,#eef2f6,#aab2bd,#454b54,#d6dde4,#7e8690,#9aa3ae,#3c424b,#cfd6de,#5c646f);
  -webkit-mask: radial-gradient(closest-side, transparent 62%, #000 64%);
  mask: radial-gradient(closest-side, transparent 62%, #000 64%);
}
.mark .beam {
  position: absolute; top: 50%; left: -30%; right: -30%; height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--primary-strong) 28%, #bfe4ff 50%, var(--primary-strong) 72%, transparent);
  box-shadow: 0 0 12px 1px rgba(37,99,235,.7); border-radius: 2px;
}
.mark .core {
  position: absolute; top: 50%; left: 50%; width: 24%; height: 24%; transform: translate(-50%,-50%);
  border-radius: 50%; background: radial-gradient(circle at 50% 38%, #f0f9ff, #2ea3ff 52%, #0e3f86 100%);
  box-shadow: 0 0 14px 3px rgba(37,99,235,.8), inset 0 0 5px rgba(255,255,255,.7);
}
.brand .name {
  font-family: var(--font-heading); font-weight: 800; font-size: 19px;
  letter-spacing: 0.01em; white-space: nowrap;
}
.brand .name b { color: #fff; font-weight: 800; }
.brand .name span { color: #7FB0FF; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 15, 30, 0.78); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 15px; color: var(--muted); padding: 9px 14px; border-radius: 9px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--foreground); }
.nav-links a.active { color: #7FB0FF; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 11px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s, box-shadow .25s, background .2s, border-color .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.12) inset; }
.btn-primary:hover { background: var(--primary-strong); box-shadow: var(--glow-btn); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--primary); background: rgba(37,99,235,.08); transform: translateY(-1px); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { font-size: 16px; padding: 14px 26px; }
.btn-block { width: 100%; }

/* Hamburger / mobile */
.hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 9px; width: 42px; height: 42px; color: var(--foreground); cursor: pointer; align-items: center; justify-content: center; }
.hamburger svg { width: 20px; height: 20px; }

.sheet-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(3,6,12,.6); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.sheet-overlay.open { opacity: 1; visibility: visible; }
.sheet {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 320px); z-index: 61;
  background: var(--card); border-left: 1px solid var(--border); padding: 24px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 6px;
}
.sheet.open { transform: translateX(0); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sheet-close { background: none; border: none; color: var(--muted); cursor: pointer; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.sheet-close:hover { background: rgba(255,255,255,.05); color: #fff; }
.sheet a { font-size: 17px; color: var(--foreground); padding: 13px 12px; border-radius: 10px; }
.sheet a:hover { background: rgba(37,99,235,.1); }
.sheet a.active { color: #7FB0FF; }
.sheet .btn { margin-top: 14px; }

/* ============================================================
   BADGE / EYEBROW
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  color: #9FC2FF; border: 1px solid var(--border-strong); border-radius: 100px;
  padding: 7px 16px; background: rgba(37,99,235,.06);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 9px 1px rgba(37,99,235,.9); }

.eyebrow { font-family: var(--font-heading); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #7FB0FF; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.sec { padding: 92px 0; }
.sec-tight { padding: 72px 0; }
.sec-head { max-width: 660px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 16px 0 14px; }
.sec-head p { font-size: 17px; color: var(--muted); }

.grad-dark { background: linear-gradient(135deg, #0A0F1E 0%, #0D1526 60%, #0A1535 100%); }
.grad-mid { background: linear-gradient(180deg, #0D1526 0%, #0A0F1E 100%); }
.grad-deep { background: linear-gradient(135deg, #0D1526 0%, #0A1535 100%); }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 88vh; display: flex; align-items: center; padding: 64px 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); margin: 26px 0 22px; }
.hero h1 .accent { color: #7FB0FF; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 54ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-art { display: flex; align-items: center; justify-content: center; }

/* Hero curto (páginas internas) */
.hero-sm { padding: 86px 0 30px; }
.hero-sm h1 { font-size: clamp(34px, 4.8vw, 54px); margin: 22px 0 20px; max-width: 16ch; }
.hero-sm p.lead { font-size: 19px; color: var(--muted); max-width: 60ch; margin-bottom: 30px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: transform .25s, box-shadow .3s, border-color .25s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--glow-card); border-color: var(--border-strong); }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.12); border: 1px solid var(--border-strong); color: #7FB0FF; margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card > p { color: var(--muted); font-size: 15.5px; }

.feature-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--foreground); }
.feature-list li svg { width: 19px; height: 19px; color: var(--primary); flex: none; margin-top: 2px; }

/* Grid de serviços (home) — assimétrico */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }

.arch-card { display: flex; gap: 40px; align-items: center; }
.arch-card .arch-text { flex: 1; }
.tag-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; flex: 1; }
.tag {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px;
  background: rgba(37,99,235,.05); border: 1px solid var(--border); font-size: 14.5px; font-weight: 500;
}
.tag svg { width: 18px; height: 18px; color: #7FB0FF; flex: none; }

/* ============================================================
   BENTO (Diferenciais)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento .card { display: flex; flex-direction: column; }
.bento .card p { margin-top: 12px; }
.bento .primary-tint { background: rgba(37,99,235,.10); border-color: var(--border-strong); }
.bento .radial::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 70%); pointer-events: none;
}

/* ============================================================
   PROCESS STEPS (serviços)
   ============================================================ */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-block.reverse .service-media { order: -1; }
.service-media .card { padding: 30px; }
.process { display: grid; gap: 18px; margin-top: 4px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.process-num {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: rgba(37,99,235,.10); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; color: #7FB0FF; font-size: 15px;
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.process-step p { font-size: 14px; color: var(--muted); }
.svc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.svc-head h2 { font-size: clamp(26px, 3.2vw, 36px); }

/* ============================================================
   VALUES (sobre)
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; transition: border-color .25s, transform .25s; }
.value-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.value-card .card-icon { width: 46px; height: 46px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--muted); }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-split .prose p { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; }
.about-split .prose p strong { color: var(--foreground); font-weight: 600; }

/* ============================================================
   TIMELINE (sobre)
   ============================================================ */
.timeline { position: relative; max-width: 940px; margin: 0 auto; }
.timeline .axis { position: absolute; top: 0; bottom: 0; left: 19px; width: 1px; background: var(--border); }
.tl-item { position: relative; padding-left: 64px; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 2px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(37,99,235,.10); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.tl-dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px 1px rgba(37,99,235,.8); }
.tl-year { display: inline-block; font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: .04em; color: #9FC2FF; background: rgba(37,99,235,.10); border: 1px solid var(--border-strong); padding: 4px 12px; border-radius: 100px; margin-bottom: 10px; }
.tl-item h3 { font-size: 20px; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: 15px; max-width: 52ch; }

@media (min-width: 860px) {
  .timeline.alt .axis { left: 50%; transform: translateX(-50%); }
  .timeline.alt .tl-item { width: 50%; padding-left: 0; padding-right: 56px; text-align: right; }
  .timeline.alt .tl-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 56px; text-align: left; }
  .timeline.alt .tl-dot { left: auto; right: -20px; }
  .timeline.alt .tl-item:nth-child(even) .tl-dot { right: auto; left: -20px; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; overflow: hidden; border-radius: 22px; padding: 64px 56px; border: 1px solid var(--border); }
.cta-final .cta-inner { position: relative; z-index: 2; max-width: 620px; }
.cta-final h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.cta-final p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.cta-final .geo { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); opacity: .2; pointer-events: none; z-index: 1; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* CTA strip (contato) */
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: rgba(37,99,235,.08); border: 1px solid var(--border-strong); border-radius: 18px; padding: 36px 40px; }
.cta-strip h3 { font-size: 24px; }
.cta-strip p { color: var(--muted); margin-top: 4px; }

/* ============================================================
   CONTATO — cards + form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; transition: border-color .25s, transform .2s; }
.contact-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.contact-card .card-icon { margin-bottom: 0; width: 46px; height: 46px; }
.contact-card .cc-label { font-size: 13px; color: var(--faint); }
.contact-card .cc-value { font-size: 16px; font-weight: 600; color: var(--foreground); }

.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: span 2; }
.field label { font-size: 14px; font-weight: 600; color: var(--foreground); }
.field label .opt { color: var(--faint); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--foreground);
  background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237FB0FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: var(--card); color: var(--foreground); }
.field select option:disabled { color: var(--faint); }
.field textarea { resize: vertical; min-height: 130px; }
.form-status { padding: 16px 18px; border-radius: 12px; font-size: 15px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(31,138,91,.12); border: 1px solid rgba(31,138,91,.4); color: #74e0a8; }
.form-status.error { background: rgba(220,60,60,.10); border: 1px solid rgba(220,60,60,.4); color: #f3a3a3; }

.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; color: var(--foreground); font-family: var(--font-heading); font-weight: 700; font-size: 17px; text-align: left; cursor: pointer; }
.faq-q svg { width: 20px; height: 20px; color: #7FB0FF; flex: none; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--card); border-top: 1px solid var(--border); padding: 56px 0 30px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer-brand .tagline { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 38ch; }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--muted); font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #7FB0FF; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: var(--faint); font-size: 14px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 70; max-width: 560px; margin: 0 auto;
  background: rgba(13, 21, 38, .96); backdrop-filter: blur(10px); border: 1px solid var(--border-strong);
  border-radius: 16px; padding: 22px 24px; box-shadow: 0 20px 60px -20px rgba(0,0,0,.8);
  transform: translateY(140%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.cookie p a { color: #7FB0FF; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: 14px; padding: 10px 18px; }

/* ============================================================
   ANIMAÇÕES — scroll reveal (substitui motion/react)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > .reveal { transition-delay: calc(var(--i, 0) * 0.09s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .pulse { animation: none !important; }
}

/* Pulso do NetworkGraphic */
.pulse { animation: netpulse 4s ease-in-out infinite; }
@keyframes netpulse { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { display: none; }
  .hero { min-height: auto; padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .col-2, .col-3 { grid-column: span 1; }
  .arch-card { flex-direction: column; align-items: flex-start; gap: 28px; }
  .tag-grid { width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .bento .col-2 { grid-column: span 1; }
  .service-block { grid-template-columns: 1fr; gap: 28px; }
  .service-block.reverse .service-media { order: 0; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .value-grid { gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-final { padding: 48px 30px; }
  .cta-final .geo { opacity: .1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .sec { padding: 64px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .value-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cookie { left: 14px; right: 14px; bottom: 14px; }
}
