:root {
  --bg: #F7F8FC;
  --ink: #171A26;
  --muted: #5B6172;
  --indigo: #4F46E5;
  --grad-a: #6366F1;
  --grad-b: #8B5CF6;
  --card: #FFFFFF;
  --line: #E6E8F0;
  --r-lg: 20px;
  --r-md: 16px;
  --shadow-1: 0 1px 2px rgba(23, 26, 38, 0.05), 0 10px 30px rgba(23, 26, 38, 0.07);
  --shadow-2: 0 2px 6px rgba(23, 26, 38, 0.06), 0 22px 56px rgba(79, 70, 229, 0.14);
  --font-head: 'Sora', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--indigo);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.55rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

.container {
  width: min(1180px, 100% - clamp(32px, 8vw, 72px));
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.05rem;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 999px;
  padding: 7px 16px;
}

.label--light {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.grad-text {
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--indigo);
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.32);
}

.btn--primary:hover {
  background: #4338CA;
}

.btn--soft {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-1);
}

.btn--white {
  background: #FFFFFF;
  color: var(--indigo);
  box-shadow: 0 12px 28px rgba(23, 26, 38, 0.18);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* Header / floating pill nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px clamp(16px, 4vw, 32px);
  background: rgba(247, 248, 252, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-pill {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 10px 9px 22px;
  box-shadow: var(--shadow-1);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 18px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(79, 70, 229, 0.07);
}

.nav-link.is-active {
  color: var(--indigo);
  background: rgba(79, 70, 229, 0.1);
}

.nav-link--cta {
  background: var(--ink);
  color: #FFFFFF;
  margin-left: 6px;
}

.nav-link--cta:hover {
  background: #2A2F42;
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #FFFFFF;
  cursor: pointer;
  padding: 0 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero-copy .label {
  margin-bottom: 22px;
}

.hero-copy h1 {
  margin-bottom: 20px;
}

.hero-copy h1 em {
  font-style: normal;
}

.hero-copy > p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 54ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-blob {
  position: relative;
  min-height: 440px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 12% 18%, #6366F1 0%, rgba(99, 102, 241, 0) 55%),
    radial-gradient(110% 110% at 88% 12%, #8B5CF6 0%, rgba(139, 92, 246, 0) 55%),
    radial-gradient(130% 130% at 72% 92%, #4F46E5 0%, rgba(79, 70, 229, 0) 62%),
    radial-gradient(90% 90% at 28% 82%, #A5B4FC 0%, rgba(165, 180, 252, 0) 58%),
    linear-gradient(160deg, #EEF0FE 0%, #F3EFFE 100%);
  box-shadow: var(--shadow-2);
}

.hero-blob::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 60% 40%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  animation: blobPulse 7s ease-in-out infinite alternate;
}

@keyframes blobPulse {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

.blob-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  padding: 14px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}

.blob-chip small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.78rem;
}

.blob-chip--a { top: 12%; left: 8%; }
.blob-chip--b { bottom: 16%; right: 8%; }

.blob-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  box-shadow: 0 30px 70px rgba(79, 70, 229, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 20px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card .label {
  align-self: flex-start;
}

.bento-card p {
  color: var(--muted);
}

.bento-card--intro {
  grid-column: span 5;
  grid-row: span 2;
  justify-content: center;
}

.bento-card--intro h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.bento-card--team {
  grid-column: span 4;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.bento-card--promise {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  border-color: transparent;
  color: #FFFFFF;
}

.bento-card--promise p {
  color: rgba(255, 255, 255, 0.88);
}

.bento-card--note {
  grid-column: span 3;
}

.bento-card--city {
  grid-column: span 7;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.bento-card--ops {
  grid-column: span 5;
  justify-content: center;
}

.bento-cover {
  position: absolute;
  inset: 0;
}

.bento-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cover__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(23, 26, 38, 0.58);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-size: 0.92rem;
}

.bento-cover__caption strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
}

/* Stats strip */
.stats-band {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-1);
  padding: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Corridor text section */
.corridor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.corridor h2 {
  margin-bottom: 18px;
}

.corridor p {
  color: var(--muted);
}

.corridor p + p {
  margin-top: 14px;
}

/* Feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: clamp(48px, 7vw, 80px);
}

.feature-row--flip .feature-media {
  order: 2;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}

.feature-copy .label {
  margin-bottom: 16px;
}

.feature-copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 14px;
}

.feature-copy > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.97rem;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
}

/* How we engage */
.engage {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.engage-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 18px;
}

.step__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--grad-a) 0%, var(--grad-b) 100%);
  border-radius: 28px;
  padding: clamp(44px, 6vw, 72px);
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 15% 0%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(50% 80% at 85% 100%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  margin-bottom: 14px;
}

.cta-band p {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(44px, 6vw, 72px) 0 clamp(28px, 4vw, 44px);
}

.page-hero .label {
  margin-bottom: 20px;
}

.page-hero h1 {
  max-width: 20ch;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

/* Prose (policies / about) */
.prose {
  max-width: 780px;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 34px 0 12px;
}

.prose h3 {
  font-size: 1.1rem;
  margin: 26px 0 10px;
}

.prose p {
  color: #33384A;
  margin-bottom: 14px;
}

.prose ul {
  margin: 0 0 16px 22px;
  color: #33384A;
}

.prose ul li + li {
  margin-top: 6px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 0.93rem;
}

.prose th, .prose td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose th {
  background: #F1F2F9;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
}

.updated-stamp {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 26px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 26px;
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: clamp(26px, 4vw, 40px);
}

.service-card__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(79, 70, 229, 0.18);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  color: var(--indigo);
}

.service-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: clamp(26px, 4vw, 38px);
}

.contact-card h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-item__label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item a, .contact-item address {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--indigo);
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: clamp(26px, 4vw, 38px);
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin: 14px 0 22px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.16);
  background: #FFFFFF;
}

.map-wrap {
  margin-top: clamp(40px, 6vw, 60px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

.map-embed {
  width: 100%;
  border: 0;
  min-height: 360px;
  display: block;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--card);
  margin-top: clamp(56px, 8vw, 96px);
  padding: clamp(48px, 6vw, 72px) 0 28px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.93rem;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.94rem;
  padding: 5px 0;
}

.footer-col a:hover {
  color: var(--indigo);
}

.footer-col address {
  font-style: normal;
  color: var(--ink);
  font-size: 0.94rem;
  padding: 5px 0 8px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-policies a {
  color: var(--muted);
  text-decoration: none;
}

.footer-policies a:hover {
  color: var(--indigo);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--ink);
  color: #F7F8FC;
  padding: 18px clamp(16px, 4vw, 32px);
  box-shadow: 0 -12px 40px rgba(23, 26, 38, 0.3);
}

.cookie-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cookie-banner p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(247, 248, 252, 0.88);
}

.cookie-banner a {
  color: #FFFFFF;
  font-weight: 500;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 11px 24px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b));
  color: #FFFFFF;
}

.cookie-btn--decline {
  background: transparent;
  color: #F7F8FC;
  border-color: rgba(247, 248, 252, 0.4);
}

/* Responsive */
@media (max-width: 1020px) {
  .bento-card--intro { grid-column: span 12; }
  .bento-card--team { grid-column: span 6; }
  .bento-card--promise { grid-column: span 6; }
  .bento-card--note { grid-column: span 6; }
  .bento-card--city { grid-column: span 12; }
  .bento-card--ops { grid-column: span 12; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-2);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 18px;
  }

  .nav-link--cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .corridor,
  .feature-row,
  .engage-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-row--flip .feature-media {
    order: 0;
  }

  .hero-blob {
    min-height: 320px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .engage-media img,
  .about-media img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .bento {
    grid-auto-rows: auto;
  }

  .bento-card--team,
  .bento-card--promise,
  .bento-card--note,
  .bento-card--city,
  .bento-card--ops {
    grid-column: span 12;
  }

  .bento-card--team,
  .bento-card--city {
    min-height: 260px;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
