:root {
  --blue: #38b6ff;
  --blue-dark: #0d92df;
  --blue-soft: #eaf7ff;
  --ink: #080a0d;
  --ink-2: #15191f;
  --text: #20262d;
  --muted: #66707c;
  --line: #e5e9ee;
  --surface: #f7f9fb;
  --white: #ffffff;
  --success: #14804a;
  --danger: #bd2c2c;
  --shadow-sm: 0 10px 34px rgba(9, 17, 28, 0.08);
  --shadow-md: 0 26px 80px rgba(7, 14, 24, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--blue); color: var(--ink); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--surface); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.text-accent { color: var(--blue-dark); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: height .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(8, 10, 13, .08);
  box-shadow: 0 8px 28px rgba(10, 18, 28, .05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; padding-top: 4px; }
.brand img { width: 148px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}
.site-nav > a:not(.button) {
  position: relative;
  color: #2d333a;
  transition: color .2s ease;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -7px;
  background: var(--blue);
  border-radius: 999px;
  transition: right .25s var(--ease);
}
.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active { color: var(--ink); }
.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).is-active::after { right: 0; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .24s var(--ease), box-shadow .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(56,182,255,.35); outline-offset: 3px; }
.button--small { min-height: 44px; padding-inline: 17px; font-size: 13px; border-radius: 12px; }
.button--primary { background: var(--blue); color: #03111a; box-shadow: 0 12px 26px rgba(56, 182, 255, .26); }
.button--primary:hover { background: #4bbdff; box-shadow: 0 15px 34px rgba(56, 182, 255, .33); }
.button--ghost { color: var(--ink); border-color: #cfd6dd; background: rgba(255,255,255,.7); }
.button--ghost:hover { border-color: #aeb8c2; background: #fff; }
.button--dark { background: var(--ink); color: #fff; box-shadow: 0 14px 30px rgba(8,10,13,.18); }
.button--dark:hover { background: #171a1f; }
.button--light { background: #fff; color: var(--ink); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.button--light:hover { background: var(--blue-soft); }
.button--whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .28);
}
.button--whatsapp:hover {
  background: #20c45d;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .34);
}
.button--call {
  background: var(--blue);
  color: #03111a;
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(56, 182, 255, .26);
}
.button--call:hover {
  background: #4bbdff;
  border-color: #4bbdff;
  box-shadow: 0 15px 34px rgba(56, 182, 255, .33);
}

/* Hero */
.hero {
  min-height: 760px;
  padding-top: calc(var(--header-h) + 86px);
  padding-bottom: 82px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 84% 20%, rgba(56, 182, 255, .12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(8,10,13,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,10,13,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4e5965;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 24px; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(56,182,255,.12); }

.hero h1 {
  margin: 0;
  max-width: 740px;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.01;
  letter-spacing: -.052em;
  font-weight: 820;
}

.hero-lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: #59636f;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; align-items: center; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 31px;
  color: #737d87;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-proof i { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; }

.hero-visual { position: relative; min-height: 540px; }
.hero-photo-card {
  position: absolute;
  inset: 44px 20px 36px 18px;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,102,170,.28) 0%, rgba(20,84,136,.18) 32%, rgba(7,12,18,.62) 100%);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 420px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(9,14,20,.42);
  backdrop-filter: blur(14px);
  color: #fff;
}
.photo-badge {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(56,182,255,.18);
  color: #cceeff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-photo-overlay strong {
  display: block;
  margin-top: 12px;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.hero-photo-overlay p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.65;
}
.visual-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  right: 0;
  top: 32px;
  border-radius: 50%;
  background: rgba(56,182,255,.17);
  filter: blur(70px);
}

.dashboard-card {
  position: absolute;
  top: 70px;
  left: 8px;
  width: min(100%, 550px);
  border: 1px solid rgba(8,10,13,.09);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}
.dashboard-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid #edf0f3;
  background: #fbfcfd;
}
.dash-dot { width: 7px; height: 7px; border-radius: 50%; background: #d5dae0; }
.dash-title { margin-left: 8px; color: #8a929c; font-size: 10px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.dashboard-body { padding: 24px; }
.metric-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.metric-label { display: block; margin-bottom: 5px; color: #89919a; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.metric-line strong { display: block; max-width: 330px; color: var(--ink); font-size: 19px; line-height: 1.3; }
.status-pill { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: #e9f9f0; color: #178451; font-size: 10px; font-weight: 800; }
.chart-shell { margin-top: 13px; }
.chart-shell svg { width: 100%; height: auto; }
.chart-grid { fill: none; stroke: #edf0f2; stroke-width: 1; }
.chart-area { fill: url(#areaGradient); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; }
.chart-point { fill: #fff; stroke: var(--blue); stroke-width: 4; }
.dashboard-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mini-stat { padding: 12px 12px 13px; background: #f7f9fb; border: 1px solid #edf0f2; border-radius: 13px; }
.mini-stat span { display: block; color: #8a929b; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.mini-stat strong { display: block; margin-top: 3px; color: #1b2026; font-size: 12px; }

.dashboard-chips { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 8px; }
.dashboard-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f8fc;
  border: 1px solid #e5eef4;
  color: #4b5560;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.campaign-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.campaign-tile {
  padding: 13px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #e4ebf1;
}
.campaign-tile small { display: block; color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.campaign-tile strong { display: block; margin-top: 4px; color: var(--ink); font-size: 13px; }
.campaign-tile span { display: block; margin-top: 4px; color: #78828c; font-size: 11px; line-height: 1.5; }
.floating-icon--dark { background: var(--ink); color: var(--blue); }
.floating-card--ads { right: 12px; bottom: 160px; padding: 12px 14px; animation: floatC 6.4s ease-in-out infinite; }
.floating-card--content { left: 32px; top: 22px; padding: 12px 14px; animation: floatD 7.2s ease-in-out infinite; }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(.5deg); } 50% { transform: translateY(-7px) rotate(-1deg); } }
@keyframes floatD { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8,10,13,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 45px rgba(10,19,31,.15);
}
.floating-card small { display: block; color: #89919b; font-size: 9px; line-height: 1.2; }
.floating-card strong { display: block; margin-top: 3px; color: var(--ink); font-size: 12px; line-height: 1.2; }
.floating-card--search { left: -26px; bottom: 30px; padding: 13px 14px; min-width: 260px; animation: floatA 5.8s ease-in-out infinite; }
.floating-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--blue-soft); color: var(--blue-dark); }
.floating-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.rank-badge { margin-left: auto; padding: 4px 8px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 9px; font-weight: 800; }
.floating-card--social { right: -24px; top: 24px; padding: 13px 15px; animation: floatB 6.8s ease-in-out infinite; }
.social-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--blue); font-size: 15px; font-weight: 900; }
.logo-arrow { position: absolute; border: 2px solid rgba(56,182,255,.36); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; pointer-events: none; }
.logo-arrow::after { content:""; position:absolute; width:0; height:0; border-left:7px solid transparent; border-right:7px solid transparent; border-bottom:13px solid rgba(56,182,255,.55); transform: rotate(38deg); }
.logo-arrow--one { width: 120px; height: 120px; right: -4px; bottom: 8px; transform: rotate(33deg); }
.logo-arrow--one::after { right: 4px; top: 15px; }
.logo-arrow--two { width: 72px; height: 72px; left: 66px; top: 10px; transform: rotate(-135deg); border-color: rgba(8,10,13,.14); border-left-color: transparent; border-bottom-color: transparent; }
.logo-arrow--two::after { right: 0; top: 8px; border-bottom-color: rgba(8,10,13,.28); }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* Shared heading */
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading h2,
.why-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin: 11px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.042em;
}
.section-heading p { margin: 0 0 5px; color: var(--muted); font-size: 16px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 360px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e8ec;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
.service-card::before {
  content:"";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(56,182,255,.08);
  transition: transform .35s var(--ease), background .35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(56,182,255,.42); box-shadow: var(--shadow-sm); }
.service-card:hover::before { transform: scale(1.35); background: rgba(56,182,255,.13); }
.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  transition: transform .3s var(--ease), background .3s ease;
}
.service-card:hover .service-icon { transform: rotate(-4deg) scale(1.05); background: var(--blue); color: var(--ink); }
.service-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-index { position: absolute; top: 27px; right: 26px; color: #b9c0c7; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.service-card h3 { margin: 48px 0 10px; color: var(--ink); font-size: 21px; line-height: 1.23; letter-spacing: -.018em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(56,182,255,.75);
  border-radius: 12px;
  background: #fff;
  color: #11161b;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(10,18,28,.04);
  transition: transform .24s var(--ease), box-shadow .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
}
.card-link:hover {
  transform: translateY(-2px);
  background: #50c0ff;
  border-color: #50c0ff;
  box-shadow: 0 16px 28px rgba(56,182,255,.24);
}
.card-link:focus-visible { outline: 3px solid rgba(56,182,255,.35); outline-offset: 3px; }
.card-link span { display: inline-block; margin-left: 0; color: inherit; transition: transform .2s ease; }
.card-link:hover span { transform: translate(2px,-2px); }

/* Why */
.why { overflow: hidden; }
.why::before {
  content:"";
  position:absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(56,182,255,.14);
  border-radius: 50%;
  right: -280px;
  top: 100px;
}
.why-intro { max-width: 900px; margin-bottom: 52px; }
.why-intro p { max-width: 720px; margin: 18px 0 0; color: var(--muted); }
.why-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 28px; align-items: stretch; }
.why-steps { border-top: 1px solid var(--line); }
.why-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.why-number { color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.why-step h3 { margin: 0 0 6px; color: var(--ink); font-size: 19px; line-height: 1.35; }
.why-step p { margin: 0; max-width: 670px; color: var(--muted); font-size: 14px; }

.local-panel {
  position: relative;
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.local-panel::after {
  content:"";
  position:absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(56,182,255,.12);
  filter: blur(5px);
}
.local-panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.local-chip { display:inline-flex; padding: 7px 10px; border-radius:999px; background: rgba(255,255,255,.08); color:#d6dde3; font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.local-mark { width: 66px; color: var(--blue); }
.local-mark path:first-child { fill: currentColor; }
.local-mark path:last-child { fill:none; stroke:#fff; stroke-width:5; stroke-linecap:round; }
.local-label { margin: 60px 0 8px; color: var(--blue); font-size: 11px; font-weight: 800; text-transform:uppercase; letter-spacing:.08em; }
.local-panel h3 { margin:0; max-width:420px; color:#fff; font-size:30px; line-height:1.14; letter-spacing:-.035em; }
.local-panel > div > p:last-child { margin:16px 0 0; color:#aeb7c1; font-size:14px; }
.local-bottom { position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:8px; margin-top:46px; }
.local-bottom span { padding:8px 10px; border:1px solid rgba(255,255,255,.12); border-radius:10px; color:#d8dee4; font-size:10px; font-weight:750; }

/* About */
.about-layout { display:grid; grid-template-columns: .92fr 1.08fr; gap:84px; align-items:center; }
.about-visual { position:relative; min-height:520px; border-radius:32px; background: #fff; border:1px solid #e4e8ec; overflow:hidden; box-shadow: 0 20px 60px rgba(9,17,28,.07); }
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 460px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 18px 44px rgba(10,18,28,.14);
}
.about-photo-badge {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-photo-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.about-photo-panel p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.about-photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.about-photo-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5ebf0;
  color: #3b4550;
  font-size: 10px;
  font-weight: 800;
}

.about-visual::before {
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(8,10,13,.09) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center,#000,transparent 72%);
}
.about-board {
  position: absolute;
  inset: 42px 52px 120px 52px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #e4e9ee;
  background: rgba(255,255,255,.95);
  box-shadow: 0 22px 48px rgba(8,10,13,.08);
}
.about-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.about-tag {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-board-top strong { color: var(--ink); font-size: 16px; }
.about-board-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.about-board-card {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #e6edf2;
}
.about-board-card small { display: block; color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.about-board-card strong { display: block; margin-top: 6px; color: var(--ink); font-size: 15px; line-height: 1.35; }
.about-board-card p { margin: 8px 0 0; color: #7a8590; font-size: 12px; line-height: 1.55; }
.about-chip {
  position: absolute;
  min-width: 190px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e1e6eb;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 34px rgba(8,10,13,.10);
}
.about-chip small { display: block; color: #87909a; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-chip strong { display: block; margin-top: 4px; color: var(--ink); font-size: 13px; line-height: 1.35; }
.about-chip--strategy { left: 34px; top: 62px; }
.about-chip--creative { right: 28px; bottom: 78px; max-width: 230px; }
.about-chip--support { left: 88px; bottom: 34px; max-width: 220px; }
.about-line {
  position: absolute;
  border-top: 1px dashed rgba(56,182,255,.42);
  opacity: .9;
}
.about-line--one { left: 128px; top: 138px; width: 112px; transform: rotate(7deg); }
.about-line--two { right: 140px; bottom: 126px; width: 110px; transform: rotate(-15deg); }
.about-orbit { position:absolute; border:1px solid rgba(56,182,255,.25); border-radius:50%; }
.about-orbit--one { width:330px; height:330px; left:50%; top:50%; transform:translate(-50%,-50%); }
.about-orbit--two { width:440px; height:440px; left:50%; top:50%; transform:translate(-50%,-50%); border-color:rgba(8,10,13,.10); }
.about-core { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:150px; height:150px; display:flex; flex-direction:column; align-items:center; justify-content:center; border-radius:50%; background:var(--ink); color:#fff; box-shadow:0 18px 48px rgba(8,10,13,.22); }
.about-core span { color:var(--blue); font-size:12px; font-weight:900; letter-spacing:.18em; }
.about-core strong { margin-top:5px; font-size:13px; }
.about-node { position:absolute; min-width:128px; padding:13px 15px; border:1px solid #e1e6eb; border-radius:14px; background:#fff; box-shadow:0 12px 30px rgba(8,10,13,.08); }
.about-node small { display:block; color:var(--blue-dark); font-size:9px; font-weight:900; letter-spacing:.08em; }
.about-node strong { display:block; margin-top:3px; color:var(--ink); font-size:13px; }
.node--visibility { left:31px; top:98px; }
.node--image { right:28px; top:190px; }
.node--contact { left:88px; bottom:45px; }
.about-arrow { position:absolute; right:-10px; bottom:-12px; width:160px; height:160px; border:22px solid var(--blue); border-left-color:transparent; border-top-color:transparent; border-radius:50%; transform:rotate(-14deg); opacity:.9; }
.about-arrow::after { content:""; position:absolute; right:-26px; top:2px; width:0; height:0; border-left:15px solid transparent; border-right:15px solid transparent; border-bottom:30px solid var(--blue); transform:rotate(45deg); }
.about-copy .about-lead { margin:20px 0 0; color:#303740; font-size:18px; line-height:1.7; }
.about-copy > p:not(.about-lead) { margin:13px 0 0; color:var(--ink); }
.about-points { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:29px 0; }
.about-points .about-quality {
  min-height:112px;
  padding:16px 14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  border:1px solid #e3e8ec;
  border-radius:14px;
  background:#fff;
}
.quality-check {
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue-soft);
  color:var(--blue-dark);
}
.quality-check svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.about-points strong { display:block; color:var(--ink); font-size:13px; }


/* Sectors */
.section-heading--compact { align-items: end; margin-bottom: 28px; }
.sectors { padding-top: 84px; }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sector-card {
  padding: 18px 16px;
  border: 1px solid #e2e7eb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10,18,28,.04);
  transition: transform .24s var(--ease), box-shadow .24s ease, border-color .24s ease;
}
.sector-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,182,255,.48);
  box-shadow: 0 16px 34px rgba(56,182,255,.12);
}
.sector-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.sector-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sector-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

/* CTA */
.cta-band { padding-top:84px; padding-bottom:84px; }
.cta-panel {
  position:relative;
  min-height:330px;
  padding:52px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  border-radius:34px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 72% 20%, rgba(56,182,255,.28), transparent 29%),
    linear-gradient(135deg, #080a0d 0%, #11161c 100%);
  box-shadow:0 30px 80px rgba(8,10,13,.19);
}
.cta-grid { position:absolute; inset:0; opacity:.22; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:44px 44px; mask-image:linear-gradient(90deg,#000,transparent); }
.cta-copy { position:relative; z-index:2; max-width:690px; }
.cta-kicker { color:var(--blue); font-size:11px; font-weight:850; text-transform:uppercase; letter-spacing:.1em; }
.cta-panel h2 { margin:9px 0 11px; color:#fff; font-size:clamp(38px,5vw,58px); line-height:1.02; letter-spacing:-.045em; }
.cta-panel h2 span { color:var(--blue); }
.cta-panel p { margin:0; max-width:600px; color:#aeb7c0; }
.cta-panel .button { position:relative; z-index:2; flex:0 0 auto; }

/* Contact */
.contact { padding-top:92px; }
.contact-layout { display:grid; grid-template-columns:.76fr 1.24fr; gap:78px; align-items:start; }
.contact-copy { position:sticky; top:120px; }
.contact-copy > p { margin:18px 0 0; max-width:520px; color:var(--muted); }
.contact-facts { margin-top:38px; display:grid; gap:18px; }
.contact-fact { display:flex; align-items:center; gap:16px; padding:8px 10px 8px 0; color:inherit; border-radius:16px; transition:transform .2s ease, background .2s ease; }
a.contact-fact:hover { transform:translateX(3px); background:rgba(56,182,255,.05); }
.fact-icon { width:56px; height:56px; display:grid; place-items:center; flex:0 0 auto; border-radius:16px; background:var(--blue-soft); color:var(--blue-dark); }
.fact-icon svg { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.contact-fact strong { display:block; color:var(--ink); font-size:14px; line-height:1.25; }
.contact-fact span:not(.fact-icon) { display:block; margin-top:4px; color:#59636f; font-size:15px; font-weight:650; line-height:1.35; }
.form-card { padding:28px; border:1px solid #e1e6eb; border-radius:28px; background:#fff; box-shadow:0 18px 60px rgba(7,14,24,.08); }
.form-topline { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-bottom:20px; margin-bottom:22px; border-bottom:1px solid #edf0f2; }
.form-topline span:not(.form-status-dot) { display:block; color:#87909a; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.form-topline strong { display:block; margin-top:2px; color:var(--ink); font-size:15px; }
.form-status-dot { width:10px; height:10px; border-radius:50%; background:var(--blue); box-shadow:0 0 0 7px rgba(56,182,255,.12); }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:17px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field--full { grid-column:1/-1; }
.field--honeypot { position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.field label { color:#2a3037; font-size:12px; font-weight:760; }
.field label span { color:var(--blue-dark); }
.field input,
.field select,
.field textarea {
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid #dfe5ea;
  border-radius:12px;
  background:#fbfcfd;
  color:var(--ink);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height:142px; resize:vertical; }
.field select { appearance:none; background-image:linear-gradient(45deg,transparent 50%,#707983 50%),linear-gradient(135deg,#707983 50%,transparent 50%); background-position:calc(100% - 19px) 22px,calc(100% - 14px) 22px; background-size:5px 5px,5px 5px; background-repeat:no-repeat; padding-right:38px; }
.field input::placeholder,
.field textarea::placeholder { color:#a4acb4; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(56,182,255,.12); background:#fff; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color:#e27c7c; box-shadow:0 0 0 3px rgba(189,44,44,.08); }
.field-error { min-height:0; color:var(--danger); font-size:10px; line-height:1.3; }
.field-error:not(:empty) { min-height:13px; }
.consent { display:flex; align-items:flex-start; gap:9px; margin-top:18px; color:#6d7781; font-size:11px; cursor:pointer; }
.consent input { width:17px; height:17px; flex:0 0 auto; margin-top:1px; accent-color:var(--blue-dark); }
.button--submit { width:100%; margin-top:19px; border:0; }
.button--submit[disabled] { opacity:.65; cursor:wait; transform:none; }
.form-feedback { margin-top:13px; min-height:0; border-radius:10px; font-size:12px; font-weight:650; }
.form-feedback.is-success { padding:10px 12px; background:#eaf8f0; color:var(--success); }
.form-feedback.is-error { padding:10px 12px; background:#fff0f0; color:var(--danger); }
.privacy-note { margin:10px 0 0; color:#9aa2aa; font-size:9px; text-align:center; }

/* Footer */
.site-footer { padding:68px 0 22px; background:#07090c; color:#fff; }
.footer-grid { display:grid; grid-template-columns:1.4fr .72fr .92fr .86fr; gap:48px; }
.footer-brand img { width:176px; height:auto; opacity:.96; }
.footer-brand p { max-width:330px; margin:18px 0 0; color:#89939e; font-size:12px; }
.footer-col { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.footer-col h2 { margin:3px 0 10px; color:#fff; font-size:11px; text-transform:uppercase; letter-spacing:.1em; }
.footer-col a,
.footer-col p { margin:0; color:#8e98a3; font-size:12px; transition:color .2s ease; }
.footer-col a:hover { color:var(--blue); }
.footer-cta { margin-top:10px !important; color:#fff !important; font-weight:800; }
.footer-cta span { color:var(--blue); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:52px; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin:0; color:#6f7882; font-size:10px; }

/* Reveal animation */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); transition-delay:var(--delay,0ms); }
.reveal.is-visible { opacity:1; transform:none; }

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline:3px solid rgba(56,182,255,.34); outline-offset:3px; }

/* Tablet */
@media (max-width: 1040px) {
  :root { --header-h: 76px; }
  .section { padding:82px 0; }
  .hero { min-height:auto; padding-top:calc(var(--header-h) + 62px); }
  .hero-layout { grid-template-columns:1fr; gap:34px; }
  .hero-copy { max-width:780px; }
  .hero h1 { max-width:850px; }
  .hero-visual { min-height:500px; width:min(100%,720px); margin-inline:auto; }
  .hero-photo-card { inset: 42px 24px 36px 24px; }
  .floating-card--search { left:3%; }
  .floating-card--social { right:2%; }
  .floating-card--ads { right: 5%; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .section-heading { grid-template-columns:1fr; gap:16px; }
  .section-heading p { max-width:700px; }
  .about-layout { grid-template-columns:1fr; gap:50px; }
  .about-visual { max-width:680px; width:100%; margin-inline:auto; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .about-copy { max-width:780px; }
  .contact-layout { grid-template-columns:1fr; gap:42px; }
  .contact-copy { position:static; max-width:760px; }
  .contact-facts { grid-template-columns:repeat(3,1fr); }
  .contact-fact { align-items:flex-start; }
  .footer-grid { grid-template-columns:1.4fr repeat(3,1fr); gap:30px; }
}

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
    background: #ffffff;
  }
  body.menu-open .site-header {
    background:#fff !important;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    box-shadow: 0 1px 0 rgba(232,237,241,.95);
  }
  .menu-toggle { display:flex; z-index:102; background:#fff; }
  .site-nav {
    position:fixed;
    inset:0;
    z-index:101;
    padding:110px 24px 36px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    background:#fff !important;
    opacity:1;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    transform:translateX(100%);
    visibility:hidden;
    transition:transform .35s var(--ease), visibility .35s;
    box-shadow: 0 30px 60px rgba(7, 12, 18, .08);
  }
  .site-nav.is-open {
    transform:translateX(0);
    visibility:visible;
    background:#fff !important;
  }
  .site-nav > a:not(.button) { padding:15px 4px; color:#11161b; font-size:24px; font-weight:760; letter-spacing:-.025em; border-bottom:1px solid #eef1f3; background:#fff; }
  .site-nav > a:not(.button)::after { display:none; }
  .nav-cta { margin-top:22px; min-height:54px; }
  .footer-grid { grid-template-columns:1.25fr 1fr 1fr; }
  .footer-contact { grid-column:2/4; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --header-h: 70px; }
  .container { width:min(calc(100% - 28px), var(--container)); }
  .section { padding:68px 0; }
  .site-header.is-scrolled { height:64px; }
  .brand img { width:128px; }
  .brand { padding-top: 3px; }
  .menu-toggle { width:42px; height:42px; border-radius:12px; }

  .hero { padding-top:calc(var(--header-h) + 44px); padding-bottom:58px; }
  .hero-grid-lines { background-size:38px 38px; }
  .eyebrow { margin-bottom:18px; font-size:10px; }
  .hero h1 { font-size:clamp(40px,12vw,55px); line-height:1.02; }
  .hero-lead { margin-top:20px; font-size:16px; line-height:1.68; }
  .hero-actions { margin-top:26px; display:grid; grid-template-columns:1fr; gap:10px; }
  .hero-actions .button { width:100%; }
  .hero-proof { margin-top:24px; gap:8px; font-size:10px; }
  .hero-proof i { width:3px; height:3px; }
  .hero-visual { min-height:430px; margin-top:12px; }
  .hero-photo-card { inset: 24px 12px 30px; border-radius: 22px; }
  .hero-photo-overlay { left: 14px; right: 14px; bottom: 14px; padding: 14px; border-radius: 18px; }
  .hero-photo-overlay strong { font-size: 18px; }
  .hero-photo-overlay p { font-size: 12px; }
  .dashboard-topbar { height:40px; }
  .dashboard-body { padding:17px; }
  .metric-line strong { font-size:15px; }
  .status-pill { padding:6px 7px; font-size:8px; }
  .chart-shell { margin-top:5px; }
  .dashboard-mini-grid { gap:6px; }
  .mini-stat { padding:9px 8px; border-radius:9px; }
  .mini-stat span { font-size:7px; }
  .mini-stat strong { font-size:9px; }
  .floating-card--search { left:0; bottom:5px; min-width:220px; padding:10px 11px; }
  .floating-card--social { right:0; top:2px; padding:10px 11px; }
  .floating-card--ads { right: 10px; bottom: 120px; padding: 10px 11px; }
  .floating-card strong { font-size:10px; }
  .floating-icon,.social-avatar { width:32px; height:32px; }
  .rank-badge { font-size:8px; }
  .logo-arrow--one { width:88px; height:88px; right:8px; bottom:5px; }
  .logo-arrow--two { display:none; }

  .section-heading { margin-bottom:30px; }
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 { font-size:clamp(34px,10vw,45px); }
  .section-heading p { font-size:14px; }
  .section-kicker { font-size:10px; }
  .services-grid { grid-template-columns:1fr; gap:12px; }
  .service-card { min-height:320px; padding:22px; }
  .service-card h3 { margin-top:38px; }

  .why-intro { margin-bottom:34px; }
  .why-intro p { font-size:14px; }
  .why-step { grid-template-columns:48px 1fr; gap:10px; padding:20px 0; }
  .why-step h3 { font-size:17px; }
  .why-step p { font-size:13px; }
  .local-panel { min-height:440px; padding:24px; border-radius:24px; }
  .local-mark { width:55px; }
  .local-label { margin-top:56px; }
  .local-panel h3 { font-size:27px; }

  .about-layout { gap:35px; }
  .about-visual { min-height:400px; border-radius:24px; }
  .about-photo-panel { left: 14px; right: 14px; bottom: 14px; padding: 14px; border-radius: 18px; }
  .about-photo-panel strong { font-size: 18px; }
  .about-photo-panel p { font-size: 12px; }
  .about-photo-tags span { font-size: 9px; }
  .about-arrow { width:120px; height:120px; border-width:17px; }
  .sectors { padding-top: 68px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sector-card { padding: 16px 14px; border-radius: 16px; }
  .sector-card h3 { font-size: 14px; }
  .about-copy .about-lead { font-size:16px; }
  .about-points { grid-template-columns:repeat(3,1fr); gap:8px; }
  .about-points .about-quality { min-height:102px; padding:13px 8px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; }
  .quality-check { width:34px; height:34px; }
  .about-points strong { font-size:11px; }
  .about-copy .button { width:100%; }

  .cta-band { padding-top:58px; padding-bottom:58px; }
  .cta-panel { min-height:390px; padding:30px 24px; flex-direction:column; align-items:flex-start; justify-content:flex-end; border-radius:26px; }
  .cta-panel h2 { font-size:clamp(39px,12vw,52px); }
  .cta-panel p { font-size:13px; }
  .cta-panel .button { width:100%; }

  .contact { padding-top:70px; }
  .contact-copy > p { font-size:14px; }
  .contact-facts { grid-template-columns:1fr; gap:15px; }
  .fact-icon { width:52px; height:52px; border-radius:15px; }
  .fact-icon svg { width:23px; height:23px; }
  .contact-fact strong { font-size:13px; }
  .contact-fact span:not(.fact-icon) { font-size:14px; }
  .form-card { padding:20px; border-radius:22px; }
  .form-grid { grid-template-columns:1fr; gap:14px; }
  .field--full { grid-column:auto; }
  .form-topline strong { font-size:13px; }

  .site-footer { padding-top:52px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:34px 24px; }
  .footer-brand { grid-column:1/-1; }
  .footer-contact { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; gap:6px; margin-top:38px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size:39px; }
  .floating-card--social { right:-6px; }
  .floating-card--search { left:-5px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand,.footer-contact { grid-column:auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .reveal { opacity:1; transform:none; }
}

/* Legal pages */
.footer-legal { display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
.footer-legal a { color:#89939e; transition:color .2s ease; }
.footer-legal a:hover { color:var(--blue); }

.legal-page { min-height:100vh; background:#f8fafc; }
.legal-header { background:#fff; border-bottom:1px solid #e8edf1; }
.legal-header .header-inner { min-height:82px; }
.legal-back { color:var(--ink); font-size:13px; font-weight:750; }
.legal-back:hover { color:var(--blue-dark); }
.legal-main { padding:84px 0 100px; }
.legal-shell { max-width:860px; }
.legal-kicker { display:inline-block; margin-bottom:12px; color:var(--blue-dark); font-size:11px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.legal-shell h1 { margin:0; color:var(--ink); font-size:clamp(40px,6vw,64px); line-height:1.02; letter-spacing:-.045em; }
.legal-intro { max-width:720px; margin:20px 0 42px; color:var(--muted); font-size:17px; line-height:1.75; }
.legal-card { padding:30px; margin-top:16px; border:1px solid #e1e7ec; border-radius:24px; background:#fff; box-shadow:0 16px 44px rgba(10,18,28,.05); }
.legal-card h2 { margin:0 0 10px; color:var(--ink); font-size:20px; }
.legal-card p, .legal-card li { color:var(--muted); font-size:14px; line-height:1.75; }
.legal-card p { margin:0; }
.legal-card p + p { margin-top:10px; }
.legal-card ul { margin:10px 0 0; padding-left:20px; }
.legal-card a { color:var(--blue-dark); text-decoration:underline; text-underline-offset:3px; }
.legal-footer { padding:28px 0; background:#07090c; color:#8e98a3; }
.legal-footer-inner { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:12px; }
.legal-footer a { color:#d6dde3; }
.legal-footer a:hover { color:var(--blue); }
@media (max-width:680px) {
  .legal-header .header-inner { min-height:70px; }
  .legal-main { padding:56px 0 72px; }
  .legal-card { padding:22px; border-radius:20px; }
}
