/* ============================================================
   Leadcrafts Media — landing page
   Direction: "Quiet Confidence" · Clearbit-inspired palette
   ============================================================ */

:root {
  /* colours */
  --paper:        #ffffff;
  --paper-2:      #f7f7f7;
  --paper-3:      #f4f5f9;
  --ink:          #0a1f44;
  --ink-2:        #2c3e63;
  --ink-3:        #6b7a96;
  --ink-4:        #9ea7bc;
  --rule:         #e3e7ef;
  --rule-soft:    #eef1f7;

  --accent:       #2e5bff;
  --accent-hover: #244ee6;
  --accent-soft:  #eef2ff;
  --accent-tint:  rgba(46, 91, 255, 0.08);

  /* typography */
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* layout */
  --container: 1280px;
  --pad:       32px;
  --radius:    12px;
  --radius-sm: 8px;

  --shadow-card:    0 1px 2px rgba(10, 31, 68, 0.04), 0 8px 24px -8px rgba(10, 31, 68, 0.08);
  --shadow-card-lg: 0 1px 3px rgba(10, 31, 68, 0.06), 0 24px 60px -16px rgba(10, 31, 68, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--accent); color: #fff; }

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

/* ── Typography ──────────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}

.display .hl {
  display: inline-block;
  background-image: linear-gradient(
    180deg,
    transparent 0 calc(100% - 14px),
    var(--accent) calc(100% - 14px) calc(100% - 6px),
    transparent calc(100% - 6px)
  );
  background-repeat: no-repeat;
  padding: 0 2px;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--accent-soft);
  border: 1px solid var(--accent-tint);
  padding: 6px 12px;
  border-radius: 999px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-tint);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sec-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--ink);
  text-wrap: balance;
}

.sec-aside-lede {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.btn:active { transform: translateY(1px); }

.btn .arrow {
  font-family: var(--font-mono);
  font-weight: 400;
  transition: transform .2s ease;
}

.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(10, 31, 68, 0.08), 0 6px 16px -6px rgba(46, 91, 255, 0.55);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.btn-ghost:hover { border-color: var(--ink-3); }

/* ── Nav ─────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}

.nav.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.logo-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #7a52ff 100%);
}

.logo-mark-inner {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.logo-word-light { color: var(--ink-3); font-weight: 500; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .15s ease;
}

.nav-link:hover { color: var(--ink); }

.lang-toggle {
  display: inline-flex;
  background: var(--paper-3);
  border-radius: 7px;
  padding: 3px;
}

.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.lang-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(10, 31, 68, 0.08);
}

/* ── Hero ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(72px);
  z-index: -1;
}

.hero-blob-1 {
  width: 720px;
  height: 720px;
  right: -120px;
  top: -180px;
  background: radial-gradient(circle at 30% 30%, #b18bff 0%, #7a52ff 35%, transparent 70%);
  opacity: 0.55;
}

.hero-blob-2 {
  width: 540px;
  height: 540px;
  right: 140px;
  top: 80px;
  background: radial-gradient(circle at 50% 50%, #ff8fb1 0%, #d166ff 50%, transparent 75%);
  opacity: 0.35;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 96px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.trust-list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}

.trust-list li + li::before {
  content: "·";
  position: absolute;
  left: -16px;
  color: var(--ink-4);
}

/* Floating mockup cards */

.hero-stack {
  position: relative;
  min-height: 480px;
}

.mock-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-lg);
  padding: 18px 20px;
  font-size: 13px;
  color: var(--ink-2);
}

@keyframes lc-float-a {
  0%, 100% { transform: rotate(-1deg) translateY(0px); }
  50%       { transform: rotate(-1deg) translateY(-12px); }
}

@keyframes lc-float-b {
  0%, 100% { transform: rotate(1.5deg) translateY(0px); }
  50%       { transform: rotate(1.5deg) translateY(-10px); }
}

.mock-card-1 {
  top: 20px;
  left: 0;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: lc-float-a 5s ease-in-out infinite;
}

.mock-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.mock-card-head .mono-label { font-size: 10.5px; flex: 1; }

.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot-violet { background: linear-gradient(135deg, var(--accent), #7a52ff); }

.mock-pill {
  font-size: 9.5px;
  background: #fde9ef;
  color: #c63864;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.mock-pill-soft {
  background: var(--accent-soft);
  color: var(--accent);
}

.mock-card-subject {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mock-card-preview {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mock-card-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
}

.mock-stat { display: flex; flex-direction: column; gap: 2px; }

.mock-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mock-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.mock-card-2 {
  top: 200px;
  right: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: lc-float-b 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

.mock-pill-live {
  background: #fde9ef;
  color: #d83a5a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mock-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea3a5a;
  box-shadow: 0 0 0 0 rgba(234, 58, 90, 0.5);
  animation: lc-pulse 1.8s infinite;
}

@keyframes lc-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(234, 58, 90, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(234, 58, 90, 0); }
  100% { box-shadow: 0 0 0 0   rgba(234, 58, 90, 0); }
}

.mock-spark {
  margin: 4px -4px 0;
  position: relative;
}

.mock-card-divider {
  height: 1px;
  background: var(--rule-soft);
  margin: 2px 0;
}

.mock-deliv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-deliv-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

.mock-deliv-left .dot-green { width: 8px; height: 8px; }

.mock-deliv-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}

.mock-deliv-pct {
  font-size: 14px;
  color: var(--ink-3);
  margin-left: 2px;
  font-weight: 600;
}

.mock-trend {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Hero marquee */

.hero-marquee {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.hero-marquee .mono-label { justify-content: center; }

.marquee {
  display: flex;
  gap: 56px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  opacity: 0.7;
  transition: opacity .2s ease, color .2s ease;
}

.marquee-item:hover { opacity: 1; color: var(--ink); }

.marquee-single { justify-content: center; }

/* ── Sections (numbered asymmetric layout) ───────────────────── */

.sec {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}

.sec-numbers {
  background:
    radial-gradient(ellipse 90% 90% at 105% -10%, rgba(122, 82, 255, 0.18) 0%, rgba(122, 82, 255, 0.06) 35%, transparent 65%),
    radial-gradient(ellipse 70% 80% at -5% 110%, rgba(209, 102, 255, 0.10) 0%, rgba(209, 102, 255, 0.04) 40%, transparent 70%),
    var(--paper-2);
}

.sec-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 96px;
  align-items: start;
}

.sec-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Activity ────────────────────────────────────────────────── */

.activity-list { display: flex; flex-direction: column; }

.activity-row {
  display: grid;
  grid-template-columns: 60px 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}

.activity-row:last-child { border-bottom: 1px solid var(--rule); }

.activity-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-tint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}

.activity-text h3 {
  margin: 4px 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.activity-text p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 62ch;
}

/* ── Stats ───────────────────────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}

.stat-num-wide {
  font-size: clamp(48px, 5vw, 64px);
  letter-spacing: -0.03em;
}

.stat-num-suffix {
  font-size: 0.55em;
  color: var(--accent);
  margin-left: 4px;
}

.stat-explain {
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 15.5px;
  max-width: 36ch;
  line-height: 1.5;
}

/* ── Verticals ───────────────────────────────────────────────── */

#verticals {
  background:
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(46, 91, 255, 0.10) 0%, rgba(46, 91, 255, 0.03) 50%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(122, 82, 255, 0.10) 0%, rgba(122, 82, 255, 0.03) 50%, transparent 70%),
    var(--paper);
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vertical-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.vertical-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-lg);
  border-color: transparent;
}

.vc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
}

.dot-green {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  flex-shrink: 0;
}

.vc-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}

.vc-desc {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  flex: 1;
}

.vc-foot {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--paper-3);
  color: var(--ink-2);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ── Contact ─────────────────────────────────────────────────── */

.sec-contact { background: var(--paper-2); }

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.contact-email {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.05;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  transition: color .15s ease, border-color .15s ease;
}

.contact-email:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--rule);
  padding: 12px 0;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
}

.form-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-tint);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────────────── */

.foot {
  background: #061735;
  color: #aab3c7;
  padding: 80px 0 32px;
  border-top: 1px solid var(--rule);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.foot-brand .logo { color: #fff; }
.foot-brand .logo-word-light { color: #8694b1; }

.foot-tag {
  margin: 16px 0 0;
  font-size: 14px;
  color: #8694b1;
  max-width: 32ch;
}

.foot-col .mono-label {
  color: #6b7a96;
  margin-bottom: 14px;
  display: block;
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #c2c9d8;
}

.foot-col a {
  color: #c2c9d8;
  transition: color .15s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.foot-col a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  color: #6b7a96;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Reveal-on-scroll ────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
  .hero-stack { min-height: 540px; max-width: 480px; margin: 0 auto; }
  .sec-grid { grid-template-columns: 1fr; gap: 48px; }
  .sec-aside { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-inner { gap: 12px; }
  .nav-link:not(.nav-cta), .nav-cta { display: none; }
  .lang-toggle { margin-left: auto; }

  .hero { padding: 56px 0 32px; }
  .hero-grid { padding-bottom: 48px; }
  .display { font-size: 44px; }
  .marquee { gap: 24px; row-gap: 16px; justify-content: flex-start; }
  .marquee-item { font-size: 16px; }

  .sec { padding: 72px 0; }
  .activity-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .activity-row .activity-icon { grid-row: span 2; }
  .activity-row > .mono-label { grid-column: 1 / -1; }

  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-num { font-size: 72px; }

  .verticals-grid { grid-template-columns: 1fr; }
  .vertical-card { min-height: 0; }

  .form-row { grid-template-columns: 1fr; }
  .contact-email { font-size: 32px; word-break: break-all; }

  .foot { padding: 56px 0 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
}
