/* =========================================================
   PlaneoAI — Editorial Enterprise Design System
   Audience: insurance C-suite. Tone: classic, confident,
   sophisticated software firm. Royal navy + serif display.
   ========================================================= */

:root {
  /* Surfaces */
  --c-bg: #ffffff;
  --c-bg-alt: #f4f7fc;       /* alternating section tint */
  --c-bg-soft: #eef3fb;      /* accent areas / subtle blocks */
  --c-bg-deep: #0a1f47;      /* dark CTA backdrop */
  --c-surface: #ffffff;
  --c-border: rgba(10, 23, 51, 0.09);
  --c-border-strong: rgba(10, 23, 51, 0.16);
  --c-divider: rgba(10, 23, 51, 0.12);

  /* Text */
  --c-text: #0a1733;          /* primary deep navy ink */
  --c-text-muted: #4a5878;
  --c-text-dim: #7a8094;
  --c-text-inverse: #ffffff;

  /* Brand */
  --c-brand: #1e4ba3;         /* royal blue — primary accent */
  --c-brand-deep: #0a2e6f;    /* deep navy — hover / heading accent */
  --c-brand-soft: #e8eef9;    /* soft blue tint */
  --c-brand-line: #c8d4ec;    /* muted blue line */

  /* Semantic (used sparingly) */
  --c-success: #1f7a55;
  --c-warn: #b67421;          /* refined gold for awards */
  --c-danger: #b8473a;

  /* Type */
  --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-serif: "Fraunces", "Source Serif Pro", Georgia, "Times New Roman", serif;

  /* Radii / shadows / motion */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(10, 23, 51, 0.04);
  --shadow-md: 0 1px 2px rgba(10, 23, 51, 0.04), 0 8px 24px rgba(10, 23, 51, 0.06);
  --shadow-lg: 0 4px 8px rgba(10, 23, 51, 0.05), 0 24px 48px rgba(10, 23, 51, 0.08);

  --t-fast: 160ms cubic-bezier(0.2, 0.6, 0.2, 1);
  --t-med: 320ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* =========================================================
   Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--c-brand);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--c-brand-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-serif);
  color: var(--c-text);
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  line-height: 1.18;
  font-weight: 500;
  font-variation-settings: "opsz" 96;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 500;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--c-text-muted);
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
  font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 16px; }

.muted {
  color: var(--c-text-dim);
  font-style: italic;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(120deg, var(--c-brand-deep) 0%, var(--c-brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}

/* =========================================================
   Decorative background — calm, no neon
   ========================================================= */

.bg-grid { display: none; }

.bg-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.bg-glow--one {
  background: radial-gradient(circle, rgba(30, 75, 163, 0.10), transparent 70%);
  top: -200px;
  right: -180px;
}

.bg-glow--two { display: none; }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}

.site-header.is-scrolled {
  border-color: var(--c-border);
  box-shadow: 0 1px 0 rgba(10, 23, 51, 0.02);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-weight: 600;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  letter-spacing: -0.015em;
}

.brand:hover { color: var(--c-text); }

.brand__mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  border-radius: 8px;
}

.brand__mark svg {
  width: 20px;
  height: 20px;
}

.brand__accent {
  color: var(--c-brand);
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--c-text-muted);
  font-size: 0.94rem;
  font-weight: 500;
  font-family: var(--ff-sans);
}

.site-nav a:hover { color: var(--c-text); }

.site-nav a[aria-current="page"] {
  color: var(--c-brand-deep);
  font-weight: 600;
}

.site-nav .btn { margin-left: 6px; }

@media (max-width: 820px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.btn) { display: none; }
}

/* =========================================================
   Buttons — classic enterprise
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 8px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast),
    border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.005em;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform var(--t-fast);
}

.btn:hover svg { transform: translateX(3px); }

.btn--sm { padding: 10px 16px; font-size: 0.88rem; }

.btn--primary {
  background: var(--c-brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 23, 51, 0.06), 0 6px 18px rgba(30, 75, 163, 0.18);
}

.btn--primary:hover {
  background: var(--c-brand-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(10, 23, 51, 0.08), 0 10px 22px rgba(30, 75, 163, 0.24);
}

.btn--ghost {
  color: var(--c-text);
  background: transparent;
  border-color: var(--c-border-strong);
}

.btn--ghost:hover {
  color: var(--c-brand-deep);
  background: var(--c-brand-soft);
  border-color: var(--c-brand-line);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(80px, 11vw, 130px);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

/* Desktop: keep copy clear of the absolutely positioned hero image */
@media (min-width: 881px) {
  .hero__inner {
    max-width: min(1180px, 92%);
    padding-right: clamp(280px, 36vw, 580px);
    box-sizing: border-box;
  }

  .hero__title {
    max-width: 720px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-brand-deep) 0%, var(--c-brand) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(30, 75, 163, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.eyebrow__dot {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero__title {
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(8px, 1.5vw, 16px);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero__title .strike {
  position: relative;
  color: var(--c-text-dim);
  font-weight: 400;
  font-style: italic;
}

.hero__title .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 56%;
  height: 1px;
  background: var(--c-text-dim);
  opacity: 0.55;
  transform: rotate(-1.5deg);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--c-text-muted);
  max-width: 600px;
  margin-bottom: 38px;
  line-height: 1.65;
}

.hero__subtitle strong {
  color: var(--c-text);
  font-weight: 600;
}

.hero__subtitle--lead {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 16px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__pills li {
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border-strong);
  color: var(--c-text-muted);
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  position: absolute;
  right: max(4%, calc((100vw - 1180px) / 2 + 8px));
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 46vw);
  z-index: 1;
  pointer-events: none;
}

.hero__illustration {
  display: block;
  width: 100%;
  height: auto;
  animation: floatY 8s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(10, 23, 51, 0.10));
}

@media (max-width: 1100px) {
  .hero__visual {
    opacity: 0.9;
    right: -40px;
    width: min(440px, 52vw);
  }

  .hero--product-shot .hero__visual {
    right: max(4%, calc((100vw - 1180px) / 2));
    top: 58%;
    opacity: 0.9;
  }
}

@media (max-width: 880px) {
  .hero__inner {
    max-width: 760px;
    padding-right: 0;
  }

  .hero__visual {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: min(520px, 92%);
    margin: clamp(28px, 6vw, 48px) auto 0;
    opacity: 1;
    pointer-events: none;
  }

  .hero__illustration {
    animation: none;
  }
}

/* Hero + Company AI Assessment screenshot (1080×880) */
@media (min-width: 881px) {
  .hero--product-shot .hero__inner {
    max-width: min(1180px, 92%);
    padding-right: clamp(280px, 32vw, 480px);
  }

  .hero--product-shot .hero__title {
    max-width: none;
    margin-right: calc(-1 * clamp(280px, 32vw, 480px));
    position: relative;
    z-index: 3;
  }

  .hero--product-shot .hero__subtitle {
    max-width: 460px;
  }

  .hero--product-shot .hero__visual {
    width: min(440px, 36vw);
    right: max(4%, calc((100vw - 1180px) / 2));
    top: 60%;
  }

  .hero--product-shot .hero__cta {
    max-width: 480px;
  }

  .hero--product-shot .hero__support {
    max-width: 480px;
  }
}

/* =========================================================
   Hero product mockups — light, calm, "screenshot" feel
   ========================================================= */

.mock {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  color: var(--c-text);
  animation: floatY 7s ease-in-out infinite;
}

.mock--chat {
  width: 320px;
  top: 0;
  left: 0;
  z-index: 2;
}

.mock--dash {
  width: 340px;
  bottom: 0;
  right: 0;
  animation-delay: -3.5s;
  z-index: 1;
}

@keyframes floatY {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.mock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}

.mock__head--dash { justify-content: space-between; }

.mock__avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  color: #fff;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.mock__title { display: flex; flex-direction: column; line-height: 1.25; }

.mock__title strong {
  font-size: 0.9rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  color: var(--c-text);
}

.mock__title small {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mock__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 3px rgba(31, 122, 85, 0.16);
}

.mock__bubble {
  font-size: 0.84rem;
  line-height: 1.5;
  padding: 9px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  max-width: 88%;
}

.mock__bubble--agent {
  background: var(--c-brand-soft);
  border: 1px solid var(--c-brand-line);
  border-top-left-radius: 4px;
  color: var(--c-brand-deep);
}

.mock__bubble--user {
  background: #f3f5f9;
  border: 1px solid var(--c-border);
  border-top-right-radius: 4px;
  margin-left: auto;
  color: var(--c-text);
}

.mock__bubble--typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px;
}

.mock__bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  opacity: 0.55;
  animation: typing 1.2s infinite ease-in-out;
}
.mock__bubble--typing span:nth-child(2) { animation-delay: 0.15s; }
.mock__bubble--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-3px); opacity: 1; }
}

.mock__badge {
  font-size: 0.66rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(31, 122, 85, 0.1);
  border: 1px solid rgba(31, 122, 85, 0.3);
  color: var(--c-success);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock__head--dash strong {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
}

.mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mock__stat {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fafbfd;
  text-align: center;
}

.mock__stat--high { border-color: rgba(184, 71, 58, 0.3); background: rgba(184, 71, 58, 0.05); }
.mock__stat--med  { border-color: rgba(182, 116, 33, 0.3); background: rgba(182, 116, 33, 0.05); }
.mock__stat--low  { border-color: rgba(31, 122, 85, 0.3); background: rgba(31, 122, 85, 0.05); }

.mock__stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
}

.mock__stat--high .mock__stat-num { color: var(--c-danger); }
.mock__stat--med  .mock__stat-num { color: var(--c-warn); }
.mock__stat--low  .mock__stat-num { color: var(--c-success); }

.mock__stat-label {
  font-size: 0.66rem;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-block;
}

.mock__heat {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  padding: 8px;
  border-radius: 8px;
  background: #f6f8fb;
  border: 1px solid var(--c-border);
  margin-bottom: 12px;
}

.mock__heat span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  opacity: 0.85;
}

.mock__heat span:nth-child(odd) { opacity: 0.55; }

.mock__foot {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mock__foot span {
  font-size: 0.68rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-text-muted);
}

/* =========================================================
   Sections — alternating subtle tint
   ========================================================= */

.section {
  padding: clamp(72px, 9vw, 112px) 0;
  position: relative;
}

.section--solution { background: var(--c-bg-alt); }
.section--plana    { background: var(--c-bg); }
.section--benefits { background: var(--c-bg-alt); }
.section--expertise{ background: var(--c-bg); }
.section--cta      { background: var(--c-bg); padding-bottom: clamp(56px, 8vw, 96px); }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 18px;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.65;
}

/* Solution visual */
.solution-visual {
  max-width: 880px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.solution-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.solution-visual__caption {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin: 16px 0 0;
  letter-spacing: 0.01em;
}

/* Solution flow */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}

.flow__step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  transition: transform var(--t-med), border-color var(--t-med),
    box-shadow var(--t-med);
  box-shadow: var(--shadow-sm);
}

.flow__step:hover {
  transform: translateY(-3px);
  border-color: var(--c-brand-line);
  box-shadow: var(--shadow-md);
}

.flow__num {
  display: inline-block;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--c-brand);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.flow__step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: var(--ff-serif);
  font-weight: 500;
}

.flow__step p {
  font-size: 0.95rem;
  margin: 0;
}

.flow__arrow {
  align-self: center;
  font-size: 1.4rem;
  color: var(--c-brand-line);
}

@media (max-width: 880px) {
  .flow { grid-template-columns: 1fr; }
  .flow__arrow { display: none; }
}

/* =========================================================
   Meet Plana
   ========================================================= */

.plana {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 940px) {
  .plana { grid-template-columns: 1fr; }
}

.plana__card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  padding: clamp(28px, 4vw, 40px);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.plana__card--intro {
  background: linear-gradient(180deg, #ffffff 0%, var(--c-brand-soft) 100%);
  border-color: var(--c-brand-line);
}

.plana__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plana__avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.plana__avatar > span:first-child { line-height: 1; }

.plana__online {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-success);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(31, 122, 85, 0.18);
}

.plana__head h3 {
  font-size: 1.7rem;
  margin: 0 0 2px;
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.plana__role {
  margin: 0;
  font-size: 0.92rem;
  color: var(--c-brand);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.plana__quote {
  margin: 0;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.65);
  border-left: 3px solid var(--c-brand);
  color: var(--c-text);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  font-family: var(--ff-serif);
  font-weight: 400;
}

.plana__list-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin: 0;
}

.plana__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.plana__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.plana__list strong {
  color: var(--c-text);
  font-weight: 600;
  margin-right: 4px;
}

.plana__bullet {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-brand-line);
  color: var(--c-brand);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}

.plana__card--intro .btn {
  margin-top: auto;
  align-self: flex-start;
}

.plana__kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand);
}

.plana__h3 {
  font-size: 1.7rem;
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.plana__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--c-text-muted);
}

.plana__footnote {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  font-size: 0.92rem;
  color: var(--c-text-dim);
  font-style: italic;
  font-family: var(--ff-serif);
}

.qa {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.qa__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: #fafbfd;
  border: 1px solid var(--c-border);
  transition: transform var(--t-med), border-color var(--t-med),
    background var(--t-med);
}

.qa__item:hover {
  transform: translateX(2px);
  border-color: var(--c-brand-line);
  background: #fff;
}

.qa__num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1rem;
}

.qa__item h4 {
  margin: 0 0 6px;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.qa__item p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--c-text-muted);
}

.qa__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c-brand-soft);
  border: 1px solid var(--c-brand-line);
  color: var(--c-brand-deep);
}

/* =========================================================
   Benefits
   ========================================================= */

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

@media (max-width: 980px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

.benefit {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), border-color var(--t-med),
    box-shadow var(--t-med);
}

.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 0%),
    rgba(30, 75, 163, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
}

.benefit:hover {
  transform: translateY(-3px);
  border-color: var(--c-brand-line);
  box-shadow: var(--shadow-md);
}

.benefit:hover::before { opacity: 1; }

.benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  margin-bottom: 22px;
}

.benefit__icon svg { width: 22px; height: 22px; }

.benefit h3 {
  font-size: 1.2rem;
  color: var(--c-text);
  margin-bottom: 12px;
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.benefit p { font-size: 0.96rem; }

.benefit p strong {
  color: var(--c-text);
  font-weight: 600;
}

.benefit__why {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
  font-size: 0.88rem;
  color: var(--c-text-muted);
}

.benefit__why span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 8px;
  font-family: var(--ff-sans);
}

.benefit__why em {
  color: var(--c-text);
  font-style: italic;
}

.benefit--cta {
  background: linear-gradient(140deg, var(--c-brand-soft) 0%, #ffffff 100%);
  border-color: var(--c-brand-line);
  align-items: flex-start;
  justify-content: center;
}

.benefit--cta h3 { font-size: 1.4rem; color: var(--c-brand-deep); }
.benefit--cta p { color: var(--c-text-muted); margin-bottom: 22px; }

/* =========================================================
   Expertise
   ========================================================= */

.expertise {
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  background: #ffffff;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.expertise__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* "Built by Pregiotek" co-brand */
.built-by {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border-strong);
  margin-bottom: 6px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.built-by:hover {
  border-color: var(--c-brand-line);
  background: var(--c-brand-soft);
}

.built-by__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.built-by__logo {
  height: 22px;
  width: auto;
  filter: brightness(0) opacity(0.78);
  transition: filter var(--t-fast);
}

.built-by:hover .built-by__logo {
  filter: brightness(0) opacity(1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 12px;
  border-right: 1px solid var(--c-border);
}

.stat:last-child { border-right: none; }

@media (max-width: 760px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--c-border); }
}

.stat__num {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: var(--c-brand-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat__label {
  font-size: 0.84rem;
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
}

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

@media (max-width: 760px) {
  .expertise__grid { grid-template-columns: 1fr; }
}

.expertise__card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px;
  background: #fafbfd;
  transition: transform var(--t-med), border-color var(--t-med),
    background var(--t-med);
}

.expertise__card:hover {
  transform: translateY(-3px);
  border-color: var(--c-brand-line);
  background: #fff;
}

.expertise__card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--c-text);
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.expertise__card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Trust strip — client logos */
.trust-strip {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
  text-align: center;
}

.trust-strip__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin: 0 0 24px;
}

.trust-strip__logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}

.trust-strip__logos li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-strip__logos img {
  max-height: 56px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--t-fast), opacity var(--t-fast);
}

.trust-strip__logos li:hover img {
  filter: grayscale(0) opacity(1);
}

/* =========================================================
   CTA
   ========================================================= */

.cta-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--r-xl);
  background: var(--c-bg-deep);
  color: var(--c-text-inverse);
  border: 1px solid var(--c-bg-deep);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
  pointer-events: none;
}

@media (max-width: 820px) {
  .cta-card { grid-template-columns: 1fr; }
}

.cta-card .kicker {
  color: #a8baeb;
}

.cta-card h2 {
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-card p {
  color: #c5cee0;
  margin: 0;
}

.cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-card .btn--primary {
  background: #fff;
  color: var(--c-brand-deep);
  box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 8px 22px rgba(0,0,0,0.18);
}

.cta-card .btn--primary:hover {
  background: var(--c-brand-soft);
  color: var(--c-brand-deep);
}

.cta-card .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
}

.cta-card .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

@media (max-width: 820px) {
  .cta-card__actions { flex-direction: row; flex-wrap: wrap; }
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--c-border);
  padding: 36px 0 48px;
  margin-top: 32px;
  background: #fff;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__brand p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--c-text-dim);
}

.site-footer__brand .site-footer__scope-hint {
  margin: 14px 0 0;
  max-width: 42rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text-dim);
  font-size: 0.86rem;
  flex-wrap: wrap;
}

.site-footer__meta .dot { opacity: 0.55; }

/* =========================================================
   Reveal animation
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Innovation page
   ========================================================= */

.page-hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin: 16px auto 24px;
  max-width: 16ch;
}

.page-hero__subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--c-text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.page-hero__awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.award-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border-strong);
  color: var(--c-text);
  font-size: 0.88rem;
  font-weight: 500;
}

.award-pill svg {
  width: 16px;
  height: 16px;
  color: var(--c-warn);
}

.award-pill--soon {
  background: var(--c-brand-soft);
  border-color: var(--c-brand-line);
  color: var(--c-brand-deep);
}

.section--cases { padding-top: clamp(40px, 6vw, 80px); background: var(--c-bg); }

.case {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--c-border);
}

.case:last-child { border-bottom: none; }

.case--reverse .case__meta { order: 2; }

@media (max-width: 880px) {
  .case, .case--reverse { grid-template-columns: 1fr; }
  .case--reverse .case__meta { order: 0; }
}

.case__meta h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin: 14px 0 16px;
  letter-spacing: -0.015em;
}

.case__client {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-right: 12px;
}

.case__year {
  font-size: 0.86rem;
  color: var(--c-text-dim);
  letter-spacing: 0.02em;
}

.case__stats {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.case__stats li {
  background: #fafbfd;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.case__stats li span {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-brand-deep);
  letter-spacing: -0.02em;
}

.case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.case__tags span {
  font-size: 0.78rem;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.case__visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  position: relative;
}

.case__visual::before {
  content: "";
  position: absolute;
  inset: 10% -10%;
  background: radial-gradient(ellipse at center, rgba(30, 75, 163, 0.08), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.case__visual > * { position: relative; z-index: 1; }

/* Phone mockup — realistic device */
.phone {
  width: 280px;
  height: 560px;
  border-radius: 38px;
  background: #1a1d24;
  border: 1px solid #2a2e38;
  box-shadow: 0 30px 60px -15px rgba(10, 23, 51, 0.25),
    inset 0 0 0 6px #0e1015, inset 0 0 0 7px rgba(255, 255, 255, 0.04);
  position: relative;
  padding: 18px 14px;
  animation: floatY 7s ease-in-out infinite;
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0e1015;
  border-radius: 14px;
  z-index: 2;
}

.phone__screen {
  width: 100%;
  height: 100%;
  background: #f6f8fc;
  border-radius: 28px;
  padding: 38px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  color: var(--c-text);
}

.phone__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  padding-bottom: 6px;
}

.phone__brand {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.005em;
}

/* Quick Quote */
.phone__camera {
  position: relative;
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2c3a5a, #1a2440);
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.phone__frame {
  position: absolute;
  inset: 30px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 12px;
}

.phone__scan {
  position: absolute;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  top: 30px;
  animation: scanY 2.4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

@keyframes scanY {
  0%, 100% { top: 30px; }
  50% { top: calc(100% - 32px); }
}

.phone__detect {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--c-brand-soft);
  border: 1px solid var(--c-brand-line);
}

.phone__detect strong { font-size: 0.9rem; color: var(--c-brand-deep); font-family: var(--ff-sans); font-weight: 600; }
.phone__detect small { font-size: 0.72rem; color: var(--c-text-muted); }

.phone__quote {
  margin-top: auto;
  padding: 14px;
  border-radius: 12px;
  background: var(--c-brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone__quote-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.phone__quote-value {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.phone__quote-meta {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Digital ID */
.id-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.id-step--done {
  border-color: rgba(31, 122, 85, 0.35);
  background: rgba(31, 122, 85, 0.06);
}

.id-step--active {
  border-color: var(--c-brand-line);
  background: var(--c-brand-soft);
}

.id-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 0.85rem;
  background: #f0f2f6;
  color: var(--c-text);
}

.id-step--done .id-step__num { background: var(--c-success); color: #fff; }
.id-step--active .id-step__num { background: var(--c-brand); color: #fff; }

.id-step strong { font-size: 0.86rem; display: block; color: var(--c-text); font-family: var(--ff-sans); font-weight: 600; }
.id-step small { font-size: 0.72rem; color: var(--c-text-muted); }

.id-step > div { flex: 1; }

.id-step__check {
  color: var(--c-success);
  font-weight: 700;
  font-size: 1.1rem;
}

.id-status {
  margin-top: auto;
  padding: 12px;
  border-radius: 10px;
  background: #fafbfd;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.id-status__bar {
  height: 4px;
  border-radius: 2px;
  background: var(--c-border-strong);
  overflow: hidden;
}

.id-status__bar span {
  display: block;
  height: 100%;
  width: 70%;
  background: var(--c-brand);
  animation: progress 2.4s ease-in-out infinite;
}

@keyframes progress {
  0% { width: 25%; }
  50% { width: 80%; }
  100% { width: 25%; }
}

/* Athora dashboard mockup */
.dashboard {
  width: min(380px, 100%);
  background: #fff;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: floatY 7s ease-in-out infinite;
}

.dashboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard__head strong {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-text);
}

.dashboard__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dashboard__balance {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  color: #fff;
}

.dashboard__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.dashboard__value {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}

.dashboard__delta {
  font-size: 0.78rem;
  color: #b9d4ff;
  font-weight: 600;
}

.dashboard__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fafbfd;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.dashboard__row span:last-child {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--c-text);
}

.dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  padding: 6px;
  background: #fafbfd;
  border: 1px solid var(--c-border);
  border-radius: 8px;
}

.dashboard__chart span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px;
  background: var(--c-brand);
  opacity: 0.85;
}

.dashboard__chart span:nth-child(odd) { opacity: 0.55; }

/* Bridge section */
.section--bridge { padding-top: clamp(40px, 6vw, 80px); background: var(--c-bg-alt); }

.bridge {
  text-align: center;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  background: #fff;
  padding: clamp(36px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}

.bridge h2 {
  margin: 12px auto 32px;
  max-width: 24ch;
  letter-spacing: -0.015em;
}

.bridge__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

@media (max-width: 880px) {
  .bridge__grid { grid-template-columns: 1fr; }
}

.bridge__item {
  padding: 22px;
  border-radius: var(--r-md);
  background: #fafbfd;
  border: 1px solid var(--c-border);
}

.bridge__item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--c-text);
  font-family: var(--ff-serif);
  font-weight: 500;
}

.bridge__item p {
  font-size: 0.92rem;
  margin: 0;
}

.bridge__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   FAQ (shared; e.g. index2, index3)
   ========================================================= */

.section--faq {
  background: var(--c-bg-alt);
  padding-bottom: clamp(64px, 9vw, 120px);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  background: var(--c-surface);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--ff-serif);
  color: var(--c-text);
  letter-spacing: -0.01em;
  position: relative;
  transition: background var(--t-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-brand);
  border-bottom: 2px solid var(--c-brand);
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--t-med);
}

.faq-item[open] summary {
  background: var(--c-bg-alt);
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-item__body {
  padding: 0 20px 18px;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}

.faq-item__body p {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.faq-item__body p:first-child {
  margin-top: 16px;
}

.faq-item__note {
  font-size: 0.88rem !important;
  padding: 12px 14px;
  margin-top: 14px !important;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--c-border);
}

.faq-item__note span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-brand);
  margin-bottom: 6px;
}

.faq-cta {
  max-width: 720px;
  margin: clamp(32px, 5vw, 48px) auto 0;
  padding: 28px 24px;
  text-align: center;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-strong);
  background: linear-gradient(145deg, var(--c-brand-soft) 0%, #fff 100%);
}

.faq-cta h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.faq-cta p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

/* =========================================================
   index2 — How it works (explanatory step track)
   ========================================================= */

.section--hiw {
  background: var(--c-bg-alt);
}

.hiw-track {
  list-style: none;
  margin: clamp(8px, 2vw, 16px) auto 0;
  padding: 0;
  max-width: 860px;
}

.hiw-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  position: relative;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.hiw-step:last-child {
  padding-bottom: 0;
}

.hiw-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 52px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--c-brand) 0%,
    rgba(30, 75, 163, 0.12) 100%
  );
  border-radius: 1px;
  z-index: 0;
}

.hiw-step__marker {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-brand-deep);
  color: #fff;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.12rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hiw-step__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
}

.hiw-step__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin: 0 0 8px;
}

.hiw-step__card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  letter-spacing: -0.02em;
}

.hiw-step__lead {
  margin: 0 0 18px;
  color: var(--c-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hiw-step__detail {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hiw-step__detail li {
  position: relative;
  padding-left: 1.15em;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--c-text);
}

.hiw-step__detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
}

@media (max-width: 520px) {
  .hiw-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hiw-step__marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hiw-step:not(:last-child)::after {
    display: none;
  }
}

/* =========================================================
   index2.html — EU / dashboard-first layout
   ========================================================= */

.page-home-v2 .hero__subtitle {
  margin-bottom: 16px;
}

.hero__support {
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  color: var(--c-text-muted);
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.page-home-v2 .hero__cta {
  margin-bottom: 28px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(8px, 2vw, 20px);
}

@media (max-width: 900px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

.compliance-footnote {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  max-width: 52rem;
  margin: clamp(24px, 4vw, 40px) 0 0;
  line-height: 1.55;
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
