/* palette: bg=#FFFFFF fg=#14212E accent=#1B9DE0 */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;            /* dominant near-white background (Apple product page) */
  --bg-alt: #F3F7FB;        /* alternating light blue-grey section */
  --bg-tint: #EAF3FB;       /* soft azure tint */
  --fg: #14212E;            /* primary near-black navy text */
  --fg-soft: #34485A;       /* slightly lighter foreground */
  --muted: #6B7C8C;         /* secondary text */
  --accent: #1B9DE0;        /* Enquizit-style azure/cyan accent */
  --accent-deep: #0F76AE;   /* darker accent for hover */
  --accent-soft: #7CC6ED;   /* light accent */
  --line: rgba(20, 33, 46, 0.10);
  --border: rgba(20, 33, 46, 0.12);
  --card: #FFFFFF;

  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1240px;
  --pad: 32px;
  --radius: 18px;
  --shadow-sm: 0 4px 24px -4px rgba(20, 33, 46, 0.08);
  --shadow-lg: 0 18px 60px -14px rgba(15, 60, 100, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 12vw, 156px) 0; }
.section--tight { padding: clamp(60px, 8vw, 104px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  letter-spacing: -0.03em;
  margin-top: 22px;
}
.section-head p { margin-top: 22px; color: var(--fg-soft); font-size: 19px; line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px -8px rgba(27, 157, 224, 0.7); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(15, 118, 174, 0.55); }
.btn--dark { background: var(--fg); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #0b1620; }
.btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent-deep);
  transition: gap 0.3s var(--ease);
}
.arrow-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.arrow-link:hover { gap: 12px; }
.arrow-link:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(20, 33, 46, 0.06), 0 10px 30px -18px rgba(20, 33, 46, 0.25);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.nav { display: none; align-items: center; gap: 34px; }
.nav a { font-size: 15px; color: var(--fg-soft); font-weight: 450; transition: color 0.25s var(--ease); position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); border-radius: 2px;
}
.header__cta { display: none; align-items: center; gap: 18px; }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
}
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--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); }

.mobile-menu {
  position: fixed; inset: 72px 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 32px var(--pad) 48px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -0.02em; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 26px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(27, 157, 224, 0.16) 0%, rgba(27, 157, 224, 0) 55%),
    radial-gradient(90% 80% at 8% 90%, rgba(124, 198, 237, 0.14) 0%, rgba(124, 198, 237, 0) 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F9FD 100%);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.05;
  background-size: cover; background-position: center;
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
.hero__copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(3.1rem, 9vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-top: 26px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { margin-top: 30px; font-size: 19px; line-height: 1.72; color: var(--fg-soft); max-width: 540px; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__trust { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; color: var(--muted); font-size: 13.5px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Hero visual — CSS composed cloud dashboard */
.hero__visual { position: relative; z-index: 2; display: none; }
.panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.panel--main { padding: 22px; }
.panel__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.panel__dot { display: flex; gap: 6px; }
.panel__dot i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: block; }
.panel__dot i:first-child { background: var(--accent-soft); }
.panel__tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.panel__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.metric { background: var(--bg-alt); border-radius: 12px; padding: 14px 16px; }
.metric .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.metric .v { font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: -0.02em; margin-top: 4px; }
.metric .v b { color: var(--accent); font-weight: 500; }
.chart { display: flex; align-items: flex-end; gap: 7px; height: 88px; padding-top: 8px; }
.chart span { flex: 1; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%); border-radius: 5px 5px 0 0; opacity: 0.9; }
.panel--float {
  position: absolute; left: -34px; bottom: 42px;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.panel--float .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-tint); display: grid; place-items: center; color: var(--accent-deep); flex: none; }
.panel--float .t { font-size: 12px; color: var(--muted); }
.panel--float .n { font-family: var(--serif); font-size: 17px; font-weight: 500; }

/* ---------- Trust / logos strip ---------- */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.logos__inner { display: flex; flex-direction: column; gap: 26px; padding: 40px 0; align-items: center; text-align: center; }
.logos__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 44px; align-items: center; }
.logos__row span { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; color: var(--fg-soft); opacity: 0.7; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(27, 157, 224, 0.35); }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent-deep); }
.card__ico {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(150deg, var(--bg-tint), #fff);
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--accent-deep);
  margin-bottom: 24px;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px; }
.card p { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }
.card__list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 9px; }
.card__list li { font-size: 14.5px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.card__list li::before { content: ""; width: 15px; height: 1px; background: var(--accent); flex: none; }

/* ---------- Manifesto dark band ---------- */
.manifesto {
  background: var(--fg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 85% 0%, rgba(27, 157, 224, 0.28) 0%, rgba(27, 157, 224, 0) 55%);
}
.manifesto .container { position: relative; z-index: 1; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__quote em { font-style: normal; color: var(--accent-soft); }
.manifesto__mark { font-family: var(--serif); font-size: 90px; line-height: 0.5; color: var(--accent); display: block; margin-bottom: 8px; text-align: center; }
.manifesto__by { text-align: center; margin-top: 40px; color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Stats bar ---------- */
.stats { background: var(--bg-alt); }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
.stat__v { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 7vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__v b { color: var(--accent); font-weight: 500; }
.stat__k { margin-top: 12px; color: var(--fg-soft); font-size: 15px; line-height: 1.5; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
.step { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 30px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); letter-spacing: 0.08em; }
.step h3 { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.step p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.7; max-width: 620px; }

/* ---------- Resources / case cards ---------- */
.res { display: grid; grid-template-columns: 1fr; gap: 26px; }
.res__card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.res__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.res__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.res__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.res__card:hover .res__media img { transform: scale(1.06); }
.res__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.92); color: var(--accent-deep); padding: 6px 12px; border-radius: 9999px;
}
.res__body { padding: 26px 28px 30px; }
.res__body h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px; }
.res__body p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; margin-bottom: 20px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 22px; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
}
.quote p { font-size: 17.5px; line-height: 1.65; color: var(--fg); letter-spacing: -0.01em; }
.quote__foot { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  font-family: var(--serif); font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
}
.quote__who .n { font-weight: 600; font-size: 15px; }
.quote__who .r { color: var(--muted); font-size: 13.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 500; letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-weight: 300; font-size: 30px; color: var(--accent-deep); transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.72; padding: 0 44px 28px 0; max-width: 720px; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 60%, #3AB0EA 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 10% 100%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 55%); }
.cta .container { position: relative; z-index: 1; text-align: center; }
.cta h2 { font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 400; letter-spacing: -0.03em; max-width: 820px; margin: 0 auto; }
.cta p { margin: 22px auto 0; max-width: 560px; font-size: 18px; color: rgba(255,255,255,0.9); }
.cta__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta .btn--light { color: var(--accent-deep); }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--fg-soft); letter-spacing: 0.01em; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(27, 157, 224, 0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form__note { font-size: 13px; color: var(--muted); }
.contact-aside { display: flex; flex-direction: column; gap: 28px; }
.contact-block { }
.contact-block .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-block .v { font-size: 17px; color: var(--fg); line-height: 1.6; }
.contact-block .v a:hover { color: var(--accent-deep); }

/* ---------- Prose (legal + about) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); letter-spacing: -0.02em; margin: 48px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 32px 0 12px; font-weight: 500; }
.prose p { color: var(--fg-soft); margin-bottom: 18px; line-height: 1.78; font-size: 16.5px; }
.prose ul { color: var(--fg-soft); padding-left: 22px; margin-bottom: 18px; line-height: 1.75; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.page-head { padding: clamp(120px, 16vw, 180px) 0 clamp(40px, 6vw, 64px); background: linear-gradient(180deg, #F4F9FD 0%, #FFFFFF 100%); }
.page-head .eyebrow { margin-bottom: 22px; }
.page-head h1 { font-size: clamp(2.8rem, 8vw, 5.4rem); font-weight: 400; letter-spacing: -0.035em; line-height: 1.03; max-width: 900px; }
.page-head p { margin-top: 26px; font-size: 19px; color: var(--fg-soft); max-width: 640px; line-height: 1.7; }

/* ---------- Split feature (about) ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.value h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px; }
.value p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; }

/* ---------- Footer ---------- */
.footer { background: var(--fg); color: rgba(255,255,255,0.72); padding: 72px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { max-width: 340px; }
.footer__brand .brand { color: #fff; margin-bottom: 18px; }
.footer__brand p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: rgba(255,255,255,0.72); margin-bottom: 11px; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent-soft); }
.footer__bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 30px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__bottom a { color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: var(--accent-soft); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: center; padding: 24px; background: rgba(10,20,30,0.42); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; line-height: 1.65; color: var(--fg-soft); }
.cookie-popup__card p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); border-radius: 9999px; cursor: pointer; font-size: 14px; font-weight: 500; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .panel--float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 680px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .res { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .res { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero__visual { display: block; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev .split__media { order: 2; }
  .contact-grid { grid-template-columns: 1.3fr 0.7fr; }
  .footer__top { grid-template-columns: 1.2fr 2fr; }
  .steps { grid-template-columns: 1fr; }
  .step { grid-template-columns: 220px 1fr; align-items: baseline; gap: 32px; }
}
@media (min-width: 1100px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  :root { --pad: 20px; }
}
