/* HNITFIRM — navy & electric blue (logo-aligned) */
:root {
  --black: #0c1a2e;
  --black-soft: #152a45;
  --black-pure: #020810;
  --rose-gold: #0066cc;
  --rose-gold-light: #3388e0;
  --rose-gold-bright: #66aae8;
  --rose-gold-deep: #003366;
  --rose-cream: #f0f6fc;
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: #e8f1fa;
  --border: #c3d2e4;
  --border-light: #dce8f4;
  --border-strong: #5a6b82;
  --text: #0c1a2e;
  --text-muted: rgba(12, 26, 46, 0.58);
  --text-secondary: rgba(12, 26, 46, 0.78);
  --accent: #0066cc;
  --accent-strong: #003366;
  --accent-dim: rgba(0, 102, 204, 0.12);
  --accent-border: rgba(0, 51, 102, 0.3);
  --accent-hover-bg: rgba(0, 102, 204, 0.16);
  --accent-focus-ring: rgba(0, 102, 204, 0.55);
  --footer-link: #7eb8ff;
  --footer-link-hover: #b5d6ff;
  --on-brand: #ffffff;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(5, 20, 45, 0.08);
  --shadow-card: 0 1px 3px rgba(5, 20, 45, 0.06);
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text);
  text-decoration: none;
}

.legal-body a,
.contact-direct a,
.footer-email a,
.cookie-banner-privacy {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rose-gold-deep);
}

.legal-body a:hover,
.contact-direct a:hover {
  color: var(--rose-gold-deep);
}

:focus-visible {
  outline: 2px solid var(--rose-gold-deep);
  outline-offset: 2px;
}

button:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.65rem 1rem;
  background: var(--rose-gold);
  color: var(--on-brand);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: max(1.25rem, env(safe-area-inset-left, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: var(--header-h);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  background: var(--bg-elevated);
  color: var(--accent-strong);
  border: 1px solid var(--border);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  color: var(--text-muted);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.lang-link:hover {
  color: var(--text);
  background: var(--bg-elevated);
  text-decoration: none;
}

@media (min-width: 769px) {
  .site-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(14rem, 62vw);
  object-fit: contain;
  object-position: left center;
}

.logo-img--footer {
  height: 2.5rem;
  max-width: min(13rem, 72vw);
}

.logo:hover .logo-img {
  opacity: 0.92;
}

/* Raster logo has a light canvas; frame it on dark footer */
.site-footer .logo-footer {
  align-self: start;
  background: rgba(237, 239, 243, 0.98);
  border-radius: 10px;
  padding: 0.35rem 0.55rem;
  transition: background 0.15s ease;
}

.site-footer .logo-footer:hover {
  background: #eef0f4;
}

.site-footer .logo-footer:hover .logo-img {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-list a:hover {
  text-decoration: none;
}

.nav-list a:hover:not(.nav-cta) {
  color: var(--rose-gold-deep);
}

.nav-cta {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius);
  background: var(--rose-gold);
  color: var(--on-brand) !important;
  border: 1px solid rgba(0, 51, 102, 0.35);
}

.nav-cta:hover {
  background: var(--rose-gold-light);
  color: var(--on-brand) !important;
}

.nav-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  bottom: 0;
  z-index: 99;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  body.nav-open-mobile {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .header-inner .logo {
    order: 1;
  }

  .header-inner .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 0.35rem;
  }

  .header-inner .nav-toggle {
    order: 3;
  }

  .header-inner .site-nav {
    order: 4;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    bottom: 0;
    z-index: 102;
    background: var(--bg-elevated);
    padding: 1rem max(1.25rem, env(safe-area-inset-right, 0px))
      calc(1.25rem + env(safe-area-inset-bottom, 0px))
      max(1.25rem, env(safe-area-inset-left, 0px));
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-top: 1px solid var(--border-light);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    max-width: min(100%, 20rem);
    margin-left: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    -webkit-tap-highlight-color: transparent;
  }

  .nav-list a:hover {
    background: var(--bg-soft);
  }

  .nav-list a:active {
    background: var(--bg-soft);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin-top: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
  }

  .nav-backdrop {
    transition: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--rose-cream) 0%,
    #fbfdff 45%,
    #ffffff 100%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--border-light);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 780;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 2;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-copy {
    order: 1;
  }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin: 0 0 1rem;
}

.hero .eyebrow {
  color: var(--rose-gold-deep);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  color: var(--black);
}

.gradient-text {
  color: var(--rose-gold);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gradient-text {
    background: linear-gradient(
      120deg,
      var(--rose-gold-deep) 0%,
      var(--rose-gold) 50%,
      #1a8cff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero .lead {
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--on-brand);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 51, 102, 0.35);
}

.btn-primary:hover {
  background: var(--rose-gold-light);
  text-decoration: none;
}

.hero .btn-primary {
  background: var(--rose-gold);
  color: var(--on-brand);
  border-color: rgba(0, 51, 102, 0.35);
}

.hero .btn-primary:hover {
  background: var(--rose-gold-light);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--border-strong);
  text-decoration: none;
}

.hero .btn-ghost {
  color: var(--black);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.85);
}

.hero .btn-ghost:hover {
  background: var(--rose-cream);
  border-color: var(--rose-gold-deep);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust li {
  position: relative;
  padding-left: 1rem;
}

.hero-trust li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--rose-gold-deep);
  font-weight: 700;
}

/* Panel */
.panel-card {
  background: var(--bg-elevated);
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--rose-gold-deep);
  border-bottom: 2px solid var(--black);
}

.panel-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--black);
}

.panel-header .dot:nth-child(1) {
  background: #ffffff;
  border-color: var(--black);
}

.panel-header .dot:nth-child(2) {
  background: var(--rose-gold);
  border-color: var(--black);
}

.panel-header .dot:nth-child(3) {
  background: var(--black);
}

.panel-title {
  margin-left: auto;
  font-size: 0.72rem;
  font-family: ui-monospace, "Cascadia Code", monospace;
  color: rgba(255, 255, 255, 0.72);
}

.panel-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.panel-row .label {
  color: var(--text-muted);
}

.panel-row .value {
  font-weight: 500;
  color: var(--text);
}

.panel-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 100px;
  padding-top: 0.5rem;
}

.panel-chart .bar {
  flex: 1;
  min-height: 20%;
  height: var(--h);
  background: var(--rose-gold);
  border-radius: 2px 2px 0 0;
  opacity: 0.95;
  border: 1px solid var(--black);
  border-bottom: none;
}

/* Logos strip */
.logos {
  padding: 2rem 0;
  border-block: 1px solid var(--border-light);
  background: var(--bg-elevated);
}

.logos-inner {
  text-align: center;
}

.logos-label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.logos-strip {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1.02rem);
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.logos-strip .sep {
  opacity: 0.4;
  margin: 0 0.35rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-alt {
  background: var(--rose-cream);
}

.section-why {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border-light);
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-item {
  margin: 0;
  padding: 1.5rem 1.5rem 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-item:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--accent-dim);
  color: var(--accent-strong);
}

.why-item h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.why-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.section-narrow .container {
  max-width: 560px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: none;
}

.card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card);
}

.card-accent {
  background: var(--rose-cream);
  border-color: var(--rose-gold-deep);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: var(--accent-dim);
  color: var(--accent-strong);
}

.card h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.card > p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: auto;
}

.card-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.card-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-elevated);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.steps h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--border-light);
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.about-copy p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose-gold-deep);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  padding: clamp(2.5rem, 5vw, 3.25rem) 0;
  background: linear-gradient(
    125deg,
    var(--rose-gold-deep) 0%,
    #004080 42%,
    var(--rose-gold) 100%
  );
  color: rgba(255, 255, 255, 0.95);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 0.35rem;
  color: #ffffff;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.cta-band .btn-primary {
  background: #ffffff;
  color: var(--rose-gold-deep);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.cta-band .btn-primary:hover {
  background: var(--rose-cream);
  color: var(--rose-gold-deep);
}

/* FAQ */
.section-faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  margin: 0 0 0.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  padding: 1.1rem 1.25rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  color: var(--rose-gold-deep);
}

.faq-item p {
  margin: 0;
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

.section-narrow.section-contact .container {
  max-width: 640px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-focus-ring);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--rose-gold-deep);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-channel:hover {
  border-color: var(--accent-focus-ring);
  box-shadow: 0 0 0 1px var(--accent-dim);
}

.contact-channel-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text-muted);
}

.contact-channel-icon svg {
  display: block;
}

.contact-channel-icon--wa {
  color: #ffffff;
  background: #128c7e;
  border: 1px solid #0e7a6e;
  box-shadow: none;
}

.contact-channel-icon--mail {
  color: var(--black);
  background: var(--rose-cream);
  border: 1px solid var(--border);
}

.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-channel-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.contact-channel-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.contact-direct {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-direct a {
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rose-gold-deep);
}

.contact-direct a:hover {
  color: var(--rose-gold-deep);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--rose-gold-deep);
  min-height: 1.4em;
}

/* Legal pages */
.legal-page {
  max-width: 720px;
  margin-inline: auto;
}

.legal-head {
  text-align: left;
  margin-bottom: 2rem;
}

.legal-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.legal-updated {
  margin: 0;
}

.legal-body h2 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
  color: var(--text);
}

.legal-body p,
.legal-body li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-body ul {
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
}

.legal-body li + li {
  margin-top: 0.5rem;
}

.legal-back {
  margin: 2.5rem 0 0;
}

.site-footer--minimal .footer-inner {
  display: block;
  text-align: center;
}

.site-footer--minimal .footer-copy {
  margin: 0;
  padding-top: 0;
  border-top: none;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0));
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: min(52ch, 100%);
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.cookie-banner-actions .btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.cookie-banner-privacy {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-privacy:hover {
  color: var(--rose-gold-deep);
}

/* Footer */
.site-footer {
  padding: 3rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(0, 102, 204, 0.35);
  background: var(--black-pure);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-email {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

.footer-email a {
  color: var(--footer-link);
  font-weight: 600;
  text-decoration: none;
}

.footer-email a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

.logo-footer .logo-img,
.site-footer .logo-img {
  height: 2.35rem;
  max-width: min(12.5rem, 78vw);
}

.site-footer .logo:hover .logo-img {
  opacity: 0.95;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--footer-link-hover);
  text-decoration: none;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .footer-copy a {
  color: var(--footer-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(126, 184, 255, 0.65);
}

.site-footer .footer-copy a:hover {
  color: var(--footer-link-hover);
}

/* Small screens: touch targets, spacing, readability */
@media (max-width: 640px) {
  .logo-img {
    height: 2.35rem;
    max-width: min(12rem, 64vw);
  }

  .site-footer .logo-img {
    height: 2.1rem;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
    line-height: 1.18;
    text-wrap: balance;
  }

  .hero .lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }

  .hero .btn {
    width: 100%;
    min-height: 3rem;
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .hero-trust li {
    padding-left: 0;
  }

  .hero-trust li::before {
    display: none;
  }

  .section {
    padding: clamp(2.5rem, 8vw, 5rem) 0;
  }

  .section-head {
    margin-bottom: 2rem;
    text-align: left;
  }

  .section-head h2 {
    text-wrap: balance;
  }

  .section-desc {
    font-size: 1rem;
  }

  .logos {
    padding: 1.5rem 0;
  }

  .logos-label {
    line-height: 1.45;
  }

  .logos-strip {
    line-height: 1.5;
  }

  .card {
    padding: 1.35rem 1.25rem;
  }

  .why-item {
    padding: 1.25rem 1.2rem;
  }

  .panel-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .panel-row .value {
    text-align: left;
  }

  .faq-item summary {
    min-height: 3.25rem;
    padding: 1rem 1rem;
    line-height: 1.35;
  }

  .faq-item summary::after {
    align-self: center;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-inner .btn {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
    font-size: 1rem;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    min-height: 3.25rem;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }

  .contact-form input,
  .contact-form select {
    min-height: 3rem;
  }

  .contact-form textarea {
    min-height: 7.5rem;
    padding-top: 0.85rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
    gap: 0.65rem;
  }

  .cookie-banner-actions .btn {
    flex: 1;
    min-height: 3rem;
    justify-content: center;
  }

  .footer-nav {
    gap: 0.75rem 1.25rem;
  }

  .footer-nav a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
}
