:root {
  --bg: #ffffff;
  --bg-alt: #f4f5f8;
  --surface: #ffffff;
  --border: rgba(10, 12, 20, 0.09);
  --border-strong: rgba(10, 12, 20, 0.16);
  --text: #0d0e13;
  --text-muted: #55585f;
  --text-faint: #8a8d94;
  --accent: #3450ff;
  --accent-bright: #2947e0;
  --accent-dim: rgba(52, 80, 255, 0.08);
  --success: #1a7a4c;
  --success-dim: rgba(26, 122, 76, 0.1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-w: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

section { position: relative; z-index: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }

h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 620px;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 12.5px;
  font-weight: 700;
}

.lang-toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-faint);
  cursor: pointer;
  background: transparent;
  border: none;
  font: inherit;
  transition: all 0.2s ease;
}

.lang-toggle button.active {
  background: var(--accent);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); }

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-faint); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  padding: 190px 0 120px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(52,80,255,0.16) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-content { max-width: 1000px; margin: 0 auto; text-align: center; }

.hero h1 {
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1.16;
  margin-bottom: 24px;
}

.hero .lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

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

/* ---------- Credibility band ---------- */
.credibility { padding: 20px 0 60px; overflow: hidden; }

.credibility::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -180px;
  width: 700px;
  height: 480px;
  background: radial-gradient(circle, rgba(52,80,255,0.14) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.credibility-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.credibility-card .avatar { margin-bottom: 0; }
.credibility-card h2 { font-size: 22px; margin-bottom: 10px; }
.credibility-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin: 0; }

@media (max-width: 480px) {
  .credibility-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- Positioning / pain points ---------- */
.positioning {
  padding: 40px 0 100px;
  overflow: hidden;
}

.positioning::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -160px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,80,255,0.13) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.positioning .section-head { margin-bottom: 44px; }
.positioning .section-head h2 { max-width: 900px; font-size: clamp(26px, 3.6vw, 38px); }

.positioning-rows { display: flex; flex-direction: column; }

.positioning-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--border);
}
.positioning-row:last-child { border-bottom: 1px solid var(--border); }

.positioning-row .pain {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.positioning-row .resolve {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Services ---------- */
.services { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }

.services::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -160px;
  width: 750px;
  height: 550px;
  background: radial-gradient(circle, rgba(52,80,255,0.11) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.service-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.service-card .icon svg { width: 22px; height: 22px; }

.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- Security ---------- */
.security { padding: 100px 0; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---------- Process ---------- */
.process { padding: 100px 0; }

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

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 1px solid var(--border); }

.process-step .step-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}

.process-step h3 { font-size: 19px; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 15px; max-width: 560px; }

/* ---------- Who we serve ---------- */
.who {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.who::before {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,80,255,0.12) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.who h2 { max-width: 560px; }
.who .section-sub { max-width: 560px; margin-bottom: 0; }

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.fit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.fit-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fit-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fit-good .fit-label { color: var(--success); }
.fit-good .fit-label::before { background: var(--success); }
.fit-bad .fit-label { color: var(--text-faint); }
.fit-bad .fit-label::before { background: var(--text-faint); }

.fit-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.fit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.fit-good .fit-icon { background: var(--success-dim); color: var(--success); }
.fit-bad .fit-icon { background: var(--bg-alt); color: var(--text-faint); }

/* ---------- Team & Advisors ---------- */
.team { padding: 160px 0 100px; overflow: hidden; }

.team::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -160px;
  width: 750px;
  height: 550px;
  background: radial-gradient(circle, rgba(52,80,255,0.1) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.team-intro {
  max-width: 680px;
}

.team-intro p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.team-intro p:first-child { color: var(--text); }
.team-intro p:last-child { color: var(--text-muted); margin-bottom: 0; }

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ---------- Case studies listing ---------- */
.case-studies-page { padding: 160px 0 100px; }

.case-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.case-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.case-card-tag {
  display: inline-flex;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}

.case-card h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 14px; max-width: 640px; }

.case-card p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 20px;
}

.case-card-cta { font-size: 14.5px; font-weight: 600; color: var(--accent-bright); }
.case-card-cta::after { content: " \2192"; }

/* ---------- Engagement ---------- */
.engagement { padding: 100px 0; overflow: hidden; }

.engagement::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -180px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,80,255,0.1) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.plan-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(52,80,255,0.08), transparent 60%);
}

.plan-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
}

.plan-card h3 { font-size: 22px; margin-bottom: 12px; }
.plan-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; overflow: hidden; }

.faq::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -160px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,80,255,0.11) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

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

.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 640px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0 120px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -160px;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,80,255,0.12) 0%, rgba(52,80,255,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info .section-sub { margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.contact-detail:last-child { border-bottom: 1px solid var(--border); }
.contact-detail .label { color: var(--text-faint); width: 90px; flex-shrink: 0; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-detail a:hover { color: var(--accent-bright); }

.contact-book {
  margin: 28px 0 32px;
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(52, 80, 255, 0.18);
  border-radius: var(--radius-md);
}
.contact-book-label { color: var(--text); font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.contact-book-btn { padding: 16px 30px; font-size: 16px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px;
}

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

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; color: var(--text-muted); margin-bottom: 9px; }

.field input, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15.5px;
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 14px; }

/* Honeypot: visually hidden but still readable by simple bots that ignore
   display:none. Kept out of tab order and hidden from screen readers. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field input.field-invalid { border-color: #e65100; }

.form-success, .form-error, .form-fallback {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  margin-top: 14px;
}
/* Colors below verified for WCAG AA (>=4.5:1) at implementation time. */
.form-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.form-error { background: #fff3e0; border: 1px solid #ffcc80; color: #e65100; }
.form-fallback { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text); }
.form-fallback a { color: var(--accent-bright); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

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

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 13.5px; color: var(--text-faint); }

.footer-legal {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-legal a { font-size: 13px; color: var(--text-faint); }
.footer-legal a:hover { color: var(--text-muted); }

/* ---------- Legal pages ---------- */
.legal {
  padding: 160px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.legal .legal-updated {
  color: var(--text-faint);
  font-size: 13.5px;
  margin-bottom: 40px;
}
.legal h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  margin-bottom: 12px;
}
.legal h2 {
  font-size: 21px;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal p { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.legal ul { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin: 0 0 16px 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent-bright); text-decoration: underline; }
.legal strong { color: var(--text); }

/* ---------- Coming-soon / thank-you pages ---------- */
.comingsoon-page { padding: 180px 0 120px; }
.comingsoon-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 56px 40px;
}
.comingsoon-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comingsoon-icon svg { width: 28px; height: 28px; }
.comingsoon-card h1 { font-size: clamp(24px, 3.5vw, 30px); margin-bottom: 12px; }
.comingsoon-card p { color: var(--text-muted); font-size: 15.5px; line-height: 1.65; margin-bottom: 24px; }
.comingsoon-card p:last-child { margin-bottom: 0; }
.comingsoon-card a:not(.btn) { color: var(--accent-bright); text-decoration: underline; }
.comingsoon-card .btn { display: inline-flex; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .positioning-row { grid-template-columns: 1fr; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .process-step { grid-template-columns: 50px 1fr; }
  .hero { padding: 150px 0 80px; }
  .nav-actions > .lang-toggle { display: none; }
}

@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ---------- Narrow phones ---------- */
@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .nav .container { height: 68px; }
  .logo img { height: 24px; }
  .nav-actions { gap: 10px; }
  .nav-actions > .btn-primary { display: none; }
  .lang-toggle button { padding: 5px 9px; font-size: 12px; }

  .hero { padding: 110px 0 56px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 68px); margin-bottom: 18px; }
  .hero .lede { font-size: 16px; margin-bottom: 28px; }
  .eyebrow { font-size: 12px; margin-bottom: 14px; }

  .positioning,
  .services,
  .process,
  .who,
  .engagement { padding-top: 56px; padding-bottom: 56px; }
  .team { padding: 110px 0 56px; }
  .contact { padding-top: 56px; padding-bottom: 72px; }

  .section-head { margin-bottom: 32px; }
  h2 { font-size: clamp(24px, 7vw, 44px); }

  .service-card, .plan-card { padding: 24px; }
  .contact-form { padding: 28px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 32px 28px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 20px; }
.mobile-menu .lang-toggle {
  align-self: flex-start;
  margin: 16px 4px 4px;
}
.mobile-menu .lang-toggle button {
  padding: 10px 18px;
  font-size: 14px;
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: -200px;
  max-width: 620px;
  margin: 0 auto;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(20, 21, 31, 0.14);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: bottom 0.4s ease;
}
.cookie-banner.show { bottom: 20px; }

.cookie-banner p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  flex: 1 1 260px;
}
.cookie-banner p a { color: var(--accent-bright); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 10px 18px;
  font-size: 13.5px;
}

@media (max-width: 560px) {
  .cookie-banner { left: 12px; right: 12px; padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}
