/* =========================================================
   Ravniqor — feuille de style statique (sans framework)
   Palette inspirée Primer. Tout est local, aucune dépendance.
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #f8f7f4;
  --foreground: #1c1c1e;
  --card: #ffffff;
  --primary: #0d2b55;
  --primary-dark: #0a2044;
  --secondary: #1a4a8a;
  --muted: #f0ede7;
  --muted-foreground: #6b7280;
  --accent: #c9a84c;
  --border: #e5e0d8;
  --radius: 0.5rem;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --shadow-sm: 0 2px 16px rgba(13, 43, 85, 0.08);
  --shadow-lg: 0 8px 32px rgba(13, 43, 85, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

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

img,
svg {
  display: block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1rem;
}
.container-narrow {
  max-width: 48rem; /* max-w-3xl */
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.bg-cream {
  background-color: var(--background);
}
.bg-white {
  background-color: #ffffff;
}
.bg-navy {
  background-color: var(--primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, background-color 0.15s ease, transform 0.1s ease;
  text-align: center;
}
.btn:active {
  transform: scale(0.97);
}
.btn-gold {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.btn-gold:hover {
  opacity: 0.9;
}
.btn-navy {
  background-color: var(--primary);
  color: #fff;
}
.btn-navy:hover {
  opacity: 0.9;
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--border);
  color: var(--primary);
  font-weight: 500;
}
.btn-outline-dark:hover {
  background-color: #fff;
}
.btn-lg {
  padding: 1rem 1.75rem;
  min-height: 52px;
}
.btn-block {
  width: 100%;
}
@media (min-width: 640px) {
  .btn-sm-auto {
    width: auto;
  }
}

/* ---------- Cards ---------- */
.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.card-gold-top {
  border-top: 3px solid var(--accent);
}
.card-pad {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .card-pad-lg {
    padding: 2.5rem;
  }
}

/* ---------- Section header (eyebrow + title) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow .line {
  height: 1px;
  width: 2rem;
  background-color: var(--accent);
}
.eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  .section-subtitle {
    font-size: 1.125rem;
  }
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}
.gold {
  color: var(--accent);
}
.muted {
  color: var(--muted-foreground);
}
.hero-pattern {
  background-image: repeating-linear-gradient(
      45deg,
      rgba(201, 168, 76, 0.05) 0px,
      rgba(201, 168, 76, 0.05) 1px,
      transparent 1px,
      transparent 44px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(201, 168, 76, 0.05) 0px,
      rgba(201, 168, 76, 0.05) 1px,
      transparent 1px,
      transparent 44px
    );
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--primary);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(13, 43, 85, 0.18);
}
.header-accent {
  height: 3px;
  width: 100%;
  background-color: var(--accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}
.brand-name .cap {
  color: #fff;
}
.brand-name .smart {
  color: var(--accent);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-desktop a:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
}
.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.header-cta .login {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}
.header-cta .login:hover {
  color: #fff;
}
.header-cta .btn {
  padding: 0.5rem 1rem;
  min-height: 40px;
  font-size: 0.875rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle.open .icon-open {
  display: none;
}
.menu-toggle.open .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}
.nav-mobile.open {
  display: block;
}
.nav-mobile .inner {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile a {
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-mobile a:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
}
.nav-mobile .divider {
  height: 1px;
  margin: 0.5rem 0;
  background-color: rgba(201, 168, 76, 0.2);
}
.nav-mobile .btn {
  min-height: 48px;
}

@media (min-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }
  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  opacity: 0.1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 4rem;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-fineprint {
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.4);
}
.hero-fineprint a {
  text-decoration: underline;
}
.hero-fineprint a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.hero-visual {
  display: none;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}
.hero-card-inner {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.hero-card-top .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.125rem;
}
.hero-card-top .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-serif);
}
.hero-card-years {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.hero-card-years span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: var(--primary-dark);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}
.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #4ade80;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-reassurance {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--background);
}
.hero-reassurance .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: 1rem 0;
}
.hero-reassurance .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}
.hero-reassurance .item svg {
  color: var(--accent);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 6rem;
  }
  .hero-content {
    padding-bottom: 6rem;
  }
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-lead {
    font-size: 1.125rem;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-reassurance .row {
    justify-content: space-between;
  }
}

/* =========================================================
   FEATURE / VALUE / TEAM CARDS
   ========================================================= */
.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 43, 85, 0.06);
  color: var(--primary);
  flex-shrink: 0;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- How it works ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.step-bubble {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  background-color: var(--primary);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}
.step p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 20rem;
}
.steps-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(16.67% + 2rem);
    right: calc(16.67% + 2rem);
    height: 1px;
    background-color: var(--border);
  }
}

/* =========================================================
   CHART SECTION
   ========================================================= */
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.chart-legend .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.chart-legend .swatch {
  width: 2rem;
  height: 2px;
}
.chart-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  padding: 0 1rem;
  color: #9ca3af;
}
.chart-svg {
  width: 100%;
  height: auto;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
}
.stat .num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}
.stat .lbl {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.stats-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat .num {
    font-size: 3rem;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars {
  display: flex;
  gap: 2px;
}
.testimonial blockquote {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  color: var(--foreground);
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  background-color: var(--primary);
  color: var(--accent);
}
.avatar-lg {
  width: 5rem;
  height: 5rem;
  font-size: 1.125rem;
  font-family: var(--font-serif);
}
.testimonial-author .name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.testimonial-author .role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.testimonial .disclaimer {
  font-size: 10px;
  line-height: 1.5;
  color: #9ca3af;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-sans);
}
.faq-q .chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q .chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a-inner {
  padding: 0.75rem 1.25rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-block {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.cta-divider {
  width: 4rem;
  height: 2px;
  margin: 0 auto 2rem;
  background-color: var(--accent);
}
.cta-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.cta-block p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
.cta-trust svg {
  color: var(--accent);
}
.cta-risk {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  color: #9ca3af;
}
@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .cta-block h2 {
    font-size: 2.25rem;
  }
  .cta-block p {
    font-size: 1.125rem;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--primary);
  color: #fff;
}
.footer-accent {
  height: 2px;
  width: 100%;
  background-color: var(--accent);
}
.footer-inner {
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand .brand {
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-badge svg {
  color: var(--accent);
}
.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-risk {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}
.footer-risk strong {
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-legal .copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal nav a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .footer-inner {
    padding: 4rem 0;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background-color: var(--primary);
  box-shadow: 0 8px 32px rgba(13, 43, 85, 0.35);
  padding: 1.25rem;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.cookie-inner > svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.cookie-body {
  flex: 1;
}
.cookie-body .title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.cookie-body .text {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.cookie-body .text a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.cookie-actions .btn {
  min-height: 40px;
  font-size: 0.875rem;
  flex: 1;
}
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
}
.cookie-close:hover {
  color: #fff;
}
@media (min-width: 640px) {
  .cookie-actions {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 28rem;
  }
}

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero {
  background-color: var(--primary);
  padding: 4rem 0;
}
.page-hero .eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0;
  }
  .page-hero h1 {
    font-size: 3rem;
  }
  .page-hero p {
    font-size: 1.125rem;
  }
}

/* =========================================================
   ABOUT / MISSION
   ========================================================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.mission-grid h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.mission-grid p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.pie-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1rem;
}
.pie-legend .item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--foreground);
}
.pie-legend .dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid h2 {
    font-size: 1.875rem;
  }
}
.value-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.value-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.value-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.team-card .name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.team-card .role {
  font-size: 0.75rem;
  margin-top: 0.125rem;
  color: var(--muted-foreground);
}

/* =========================================================
   PRICING
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.plan.highlight {
  border-color: var(--accent);
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 40px rgba(13, 43, 85, 0.18);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.plan-badge span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  background-color: var(--accent);
  color: var(--primary);
}
.plan-body {
  padding: 1.5rem;
}
.plan.highlight .plan-body {
  padding-top: 2rem;
}
.plan h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.plan .desc {
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.plan-price .amount {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-serif);
}
.plan-price .period {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--muted-foreground);
}
.plan .min {
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  color: #9ca3af;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.plan-features svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.plan-foot {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}
.plan-foot .btn {
  min-height: 48px;
  font-size: 0.875rem;
}
.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 2rem;
  color: #9ca3af;
}
.pricing-note a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}
.field .req {
  color: #cf222e;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: #fff;
  color: var(--foreground);
  font-family: var(--font-sans);
  min-height: 44px;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.35);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.consent input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.consent label {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.consent label a {
  text-decoration: underline;
}
.form-note {
  font-size: 0.75rem;
  text-align: center;
  color: #9ca3af;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  text-align: center;
}
.form-success[hidden] {
  display: none;
}
.form-success svg {
  color: #1a7f4b;
}
.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.form-success p {
  font-size: 0.875rem;
  max-width: 20rem;
  color: var(--muted-foreground);
}
.contact-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-info svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-info .k {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}
.contact-info .v {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.info-box {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
}
.info-box .k {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.info-box p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb .current {
  color: var(--accent);
}
.legal-updated {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--foreground);
}
.legal-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.legal-body section > p {
  color: var(--muted-foreground);
}
.legal-body a {
  color: var(--secondary);
  text-decoration: underline;
}
.legal-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}
.legal-body ul {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted-foreground);
}
.legal-body ul.plain {
  list-style: none;
  padding-left: 0;
}
.legal-body ul.plain li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--muted);
}
.legal-body ul.plain .key {
  font-weight: 600;
  color: var(--primary);
  width: 50%;
}
.legal-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  background-color: var(--muted);
  color: var(--muted-foreground);
}
.legal-note a {
  text-decoration: underline;
}
.legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border-left: 4px solid var(--accent);
  background-color: rgba(201, 168, 76, 0.08);
}
.legal-callout svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.legal-callout p {
  font-weight: 600;
  color: var(--primary);
}
.legal-fine {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pulse-dot {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
