:root {
    --accent: #B83240;
    --accent-hover: #8B1E2F;
    --accent-soft: rgba(184, 50, 64, 0.08);
    --accent-glass: rgba(184, 50, 64, 0.12);
    --primary: #1E3A5F;
    --primary-soft: rgba(30, 58, 95, 0.08);
    --bg: #F5F5F0;
    --bg-elev: #FBFBF7;
    --surface: #FFFFFF;
    --text: #1A1D2E;
    --text-muted: #5C6275;
    --text-subtle: #8A8F9E;
    --border: rgba(26, 29, 46, 0.08);
    --border-strong: rgba(26, 29, 46, 0.14);
    --shadow-sm: 0 1px 2px rgba(26, 29, 46, 0.04), 0 1px 3px rgba(26, 29, 46, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 29, 46, 0.06), 0 2px 4px rgba(26, 29, 46, 0.04);
    --shadow-lg: 0 24px 48px rgba(26, 29, 46, 0.08), 0 8px 16px rgba(26, 29, 46, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --container: 1200px;
    --header-h: 72px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ========== HEADER ========== */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(245, 245, 240, 0.72);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
  }
  .header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #B83240, #8B1E2F);
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(184, 50, 64, 0.25);
    overflow: hidden;
  }
  .brand-mark svg {
    width: 70%;
    height: 70%;
    display: block;
  }
  .brand-mark span { display: none; }

  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
  }
  .nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.15s ease;
  }
  .nav a:hover { color: var(--text); }

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

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.15s ease;
    white-space: nowrap;
    border: 1px solid transparent;
  }
  .btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 1px 2px rgba(184, 50, 64, 0.2);
  }
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
  }
  .btn-outline:hover { border-color: var(--text); background: rgba(26, 29, 46, 0.03); }
  .btn-ghost {
    background: transparent;
    color: var(--text);
  }
  .btn-ghost:hover { background: rgba(26, 29, 46, 0.04); }
  .btn-light {
    background: white;
    color: var(--accent);
    font-weight: 600;
  }
  .btn-light:hover { background: rgba(255, 255, 255, 0.9); }
  .btn-lg { height: 48px; padding: 0 22px; font-size: 15px; }

  .nav-toggle { display: none; }

  /* ========== HERO ========== */
  .hero {
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glass), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
  }
  .eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
  }
  h1 {
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--primary);
    text-wrap: balance;
    margin-bottom: 20px;
  }
  .hero p.lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
  }
  .hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .trust {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text-subtle);
  }
  .trust-logos {
    display: flex;
    gap: 8px;
  }
  .trust-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
  }

  /* Hero mockup */
  .mockup {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(184, 50, 64, 0.18), rgba(30, 58, 95, 0.12));
    padding: 24px;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
  }
  .mockup-window {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }
  .mockup-bar {
    height: 36px;
    background: #FAFAF7;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 6px;
  }
  .mockup-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
  .mockup-bar .url {
    margin-left: 12px;
    font-size: 11px;
    color: var(--text-subtle);
    font-family: 'SF Mono', Menlo, monospace;
  }
  .mockup-body {
    flex: 1;
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 0;
  }
  .mockup-side {
    background: #FAFAF7;
    border-right: 1px solid var(--border);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mockup-side-item {
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    font-size: 11.5px;
    color: var(--text-muted);
  }
  .mockup-side-item.active {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 500;
  }
  .mockup-side-item .swatch {
    width: 12px; height: 12px; border-radius: 3px;
    background: var(--border-strong);
  }
  .mockup-side-item.active .swatch { background: var(--accent); }
  .mockup-main { padding: 16px; display: flex; flex-direction: column; gap: 12px; min-height: 0; overflow: hidden; }
  .mockup-h {
    display: flex; justify-content: space-between; align-items: center;
  }
  .mockup-title { font-size: 13px; font-weight: 600; color: var(--text); }
  .mockup-pill {
    font-size: 10px; padding: 3px 8px; border-radius: 999px;
    background: var(--primary-soft); color: var(--primary); font-weight: 500;
  }
  .mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mockup-stat {
    background: #FBFBF7; border: 1px solid var(--border);
    padding: 8px 10px; border-radius: 8px;
  }
  .mockup-stat .v { font-size: 16px; font-weight: 600; color: var(--primary); line-height: 1.1; }
  .mockup-stat .l { font-size: 9.5px; color: var(--text-subtle); margin-top: 2px; }
  .mockup-rows { display: flex; flex-direction: column; gap: 6px; }
  .mockup-row {
    display: grid; grid-template-columns: 18px 1fr auto;
    gap: 10px; align-items: center;
    padding: 8px 10px;
    background: #FBFBF7;
    border: 1px solid var(--border);
    border-radius: 6px;
  }
  .mockup-row .pin { width: 14px; height: 14px; border-radius: 4px; }
  .mockup-row .pin.r { background: var(--accent); }
  .mockup-row .pin.b { background: var(--primary); }
  .mockup-row .pin.g { background: #2F8A6B; }
  .mockup-row .lbl { font-size: 11px; color: var(--text); }
  .mockup-row .meta { font-size: 10px; color: var(--text-subtle); }

  /* ========== SECTION SHARED ========== */
  section { position: relative; }
  .section { padding: 96px 0; }
  .section-pad-sm { padding: 56px 0; }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--primary);
    text-wrap: balance;
    margin-bottom: 14px;
  }
  .section-head p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  /* ========== COMMUNE SEARCH ========== */
  .commune-search {
    margin: 4px 0 28px;
    max-width: 520px;
  }
  .commune-search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px 6px 16px;
    background: white;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .commune-search-inner:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  .commune-search-inner svg { color: var(--accent); flex-shrink: 0; }
  .commune-search-inner input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    padding: 10px 0;
    min-width: 0;
  }
  .commune-search-inner input::placeholder { color: var(--text-subtle); }
  .commune-search-inner .btn { height: 40px; padding: 0 16px; }
  .commune-search-hint {
    margin-top: 8px;
    font-size: 12.5px;
    color: var(--text-subtle);
    padding-left: 4px;
  }

  /* ========== PHONE MOCKUP (citizen hero) ========== */
  .phone-mockup {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 17;
    background: #1A1D2E;
    border-radius: 38px;
    padding: 10px;
    box-shadow:
      0 30px 60px rgba(26, 29, 46, 0.18),
      0 12px 24px rgba(26, 29, 46, 0.12),
      inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  }
  .phone-mockup::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 26px;
    background: #1A1D2E;
    border-radius: 999px;
    z-index: 3;
  }
  .phone-screen {
    background: var(--bg);
    border-radius: 30px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .phone-status {
    height: 38px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 28px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
  }
  .phone-status .icons {
    display: flex; gap: 4px; align-items: center;
    color: var(--text);
  }
  .phone-header {
    padding: 14px 18px 12px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border);
    background: white;
  }
  .phone-header .title-block { display: flex; flex-direction: column; gap: 2px; }
  .phone-header .commune { font-size: 10px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.04em; }
  .phone-header .name { font-size: 14px; font-weight: 600; color: var(--primary); }
  .phone-header .avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--accent-soft);
    display: grid; place-items: center;
    color: var(--accent); font-size: 12px; font-weight: 600;
  }
  .phone-content {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
  }
  .phone-section-label {
    font-size: 10px;
    color: var(--text-subtle);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
  }
  .phone-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .phone-card .pin {
    width: 32px; height: 32px; border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
    color: white;
  }
  .phone-card .pin.r { background: var(--accent); }
  .phone-card .pin.b { background: var(--primary); }
  .phone-card .pin.g { background: #2F8A6B; }
  .phone-card .body { flex: 1; min-width: 0; }
  .phone-card .body .t { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3; }
  .phone-card .body .m {
    font-size: 10.5px; color: var(--text-subtle);
    margin-top: 2px;
    display: flex; align-items: center; gap: 4px;
  }
  .phone-card .badge {
    font-size: 9px; font-weight: 600;
    padding: 2px 7px; border-radius: 999px;
    align-self: flex-start;
    flex-shrink: 0;
  }
  .phone-card .badge.resolved { background: rgba(47, 138, 107, 0.12); color: #2F8A6B; }
  .phone-card .badge.progress { background: var(--primary-soft); color: var(--primary); }
  .phone-card .badge.new { background: var(--accent-soft); color: var(--accent); }

  .phone-fab {
    position: absolute;
    bottom: 80px; right: 18px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: grid; place-items: center;
    box-shadow: 0 8px 20px rgba(184, 50, 64, 0.35);
    z-index: 2;
  }
  .phone-tabbar {
    height: 64px;
    background: white;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding-bottom: 12px;
  }
  .phone-tab {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: var(--text-subtle);
    font-size: 9px;
    font-weight: 500;
  }
  .phone-tab.active { color: var(--accent); }

  /* Hero variant for citizen — phone instead of laptop mockup */
  .hero-phone-wrap {
    position: relative;
    display: grid;
    place-items: center;
    padding: 16px 0;
  }
  .hero-phone-wrap::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 80%;
    background: radial-gradient(ellipse at center, var(--accent-glass), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .phone-mockup { position: relative; z-index: 1; }

  /* ========== HOW (citizen 3 steps) ========== */
  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
  }
  .how-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
  }
  .how-step .num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 18px;
  }
  .how-step h3 { font-size: 17px; margin-bottom: 8px; }
  .how-step p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }

  /* ========== CITIZEN SECTION ========== */
  .citizen { background: white; }
  .citizen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  .citizen-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .citizen-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
  }
  .citizen-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--accent);
    color: white;
    display: grid; place-items: center;
    margin-bottom: 16px;
  }
  .citizen-card h3 { font-size: 16px; margin-bottom: 6px; }
  .citizen-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
  .citizen-cta {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 16px 22px;
    text-align: center;
  }
  .citizen-cta-hint {
    font-size: 13.5px;
    color: var(--text-muted);
  }
  .citizen-cta-hint a {
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
  }
  .citizen-cta-hint a:hover { border-bottom-color: var(--accent); }

  /* ========== TRANSITION BAND ========== */
  .transition-band {
    background: var(--primary);
    color: white;
    padding: 36px 0;
  }
  .transition-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  .transition-band .kicker {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
  }
  .transition-band h2 {
    color: white;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .transition-band p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    margin: 0;
  }
  .transition-band .btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
    background: transparent;
  }
  .transition-band .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.06);
  }

  /* ========== VALUE BAND ========== */
  .value-band {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 36px 32px;
    border-right: 1px solid var(--border);
  }
  .value-item:last-child { border-right: none; }
  .value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .value-item h3 { margin-bottom: 4px; font-size: 16px; }
  .value-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

  /* ========== PROBLEM SECTION ========== */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .problem-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.15s ease;
  }
  .problem-card:hover { border-color: var(--border-strong); }
  .problem-x {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 600;
  }
  .problem-card p {
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.55;
    padding-top: 4px;
  }

  /* ========== SOLUTION SECTION ========== */
  .solution { background: white; }
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .addon-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    vertical-align: middle;
    transform: translateY(-1px);
  }
  .langs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-subtle);
  }
  .langs svg { color: var(--primary); opacity: 0.7; }
  .solution-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .solution-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--primary);
    color: white;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
  }
  .solution-card h3 { margin-bottom: 8px; font-size: 16.5px; }
  .solution-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

  /* ========== DEMO STEPS ========== */
  .demo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
  }
  .demo-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .demo-screen {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F0EFEA, #E8E7E1);
    position: relative;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--border);
  }
  .demo-screen.mobile {
    background: linear-gradient(135deg, rgba(184, 50, 64, 0.10), rgba(30, 58, 95, 0.08));
  }
  .device {
    width: 60%;
    background: white;
    border-radius: 18px;
    border: 6px solid #1A1D2E;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
  }
  .device.phone {
    aspect-ratio: 9/17;
    width: 38%;
    border-radius: 22px;
    border-width: 5px;
  }
  .device.desktop {
    aspect-ratio: 16/10;
    width: 80%;
    border-radius: 8px;
    border-width: 4px;
  }
  .device-bar { height: 12px; background: #FAFAF7; border-bottom: 1px solid var(--border); }
  .device-content {
    flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 4px;
    background: white; min-height: 0; overflow: hidden;
  }
  .skeleton-line { height: 6px; border-radius: 3px; background: #ECEAE3; }
  .skeleton-line.w70 { width: 70%; }
  .skeleton-line.w40 { width: 40%; }
  .skeleton-pin {
    width: 14px; height: 14px; border-radius: 50% 50% 50% 0;
    background: var(--accent); transform: rotate(-45deg);
    margin: 6px;
  }
  .skeleton-block { background: #ECEAE3; border-radius: 4px; flex: 1; }
  .skeleton-row { height: 8px; background: #ECEAE3; border-radius: 4px; }
  .skeleton-btn { height: 14px; background: var(--accent); border-radius: 4px; margin-top: 4px; }

  .demo-text { padding: 24px; }
  .demo-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .demo-text h3 { margin-bottom: 6px; font-size: 16.5px; }
  .demo-text p { font-size: 14px; color: var(--text-muted); }

  /* ========== PRICING ========== */
  .pricing { background: white; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  .price-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .price-card.custom .price .amount {
    font-size: 22px;
    line-height: 1.2;
  }
  .price-card.custom .price { gap: 0; }
  .price-card.featured {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.02);
  }
  .price-card.featured h3,
  .price-card.featured .price .amount,
  .price-card.featured .price .currency { color: white; }
  .price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
  }
  .price-card h3 { font-size: 17px; margin-bottom: 4px; }
  .price-tagline { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; }
  .price-card.featured .price-tagline { color: rgba(255, 255, 255, 0.7); }
  .price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .price-card.featured .price { border-bottom-color: rgba(255, 255, 255, 0.15); }
  .price .amount { font-size: 36px; font-weight: 600; color: var(--primary); letter-spacing: -0.02em; line-height: 1; }
  .price .currency { font-size: 16px; font-weight: 500; color: var(--text-muted); }
  .price .period { font-size: 13px; color: var(--text-subtle); margin-left: 2px; }
  .price-card.featured .price .period { color: rgba(255, 255, 255, 0.6); }
  .features { list-style: none; margin-bottom: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
  .features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
  .price-card.featured .features li svg { color: white; }
  .price-card.featured .features li { color: rgba(255, 255, 255, 0.92); }
  .price-card .btn { width: 100%; }
  .price-card.featured .btn-primary { background: var(--accent); }
  .price-card.featured .btn-primary:hover { background: var(--accent-hover); }
  .price-card .btn-outline.dark { color: white; border-color: rgba(255, 255, 255, 0.3); }
  .price-card .btn-outline.dark:hover { border-color: white; background: rgba(255, 255, 255, 0.06); }

  /* Add-on */
  .addon-section { margin-top: 56px; }
  .addon-head { text-align: center; margin-bottom: 24px; }
  .addon-head .kicker { color: var(--text-subtle); }
  .addon-head h3 {
    font-size: 22px; color: var(--primary); font-weight: 600; letter-spacing: -0.01em;
  }
  .addon-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
  }
  .addon-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--accent);
    color: white;
    display: grid; place-items: center;
  }
  .addon-body h4 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
  .addon-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
  .addon-tiers { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; }
  .addon-tier { display: flex; align-items: baseline; gap: 4px; }
  .addon-tier .t { color: var(--text-subtle); }
  .addon-tier .v { color: var(--text); font-weight: 600; }
  .addon-tier-sep { color: var(--border-strong); }

  /* ========== COMPLIANCE ========== */
  .compliance {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.92);
  }
  .compliance h2 { color: white; }
  .compliance .section-head p { color: rgba(255, 255, 255, 0.72); }
  .compliance .kicker { color: rgba(255, 255, 255, 0.6); }
  .compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .compliance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
  }
  .compliance-card .ico {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: grid; place-items: center;
    margin-bottom: 14px;
  }
  .compliance-card h4 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 6px; }
  .compliance-card p { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }
  .compliance-host {
    margin-top: 28px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  }
  .infomaniak-mark {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
  }
  .infomaniak-mark .mk {
    width: 28px; height: 28px; border-radius: 7px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    display: grid; place-items: center;
    font-size: 14px; font-weight: 700;
    font-family: 'Inter', sans-serif;
  }
  .compliance-links {
    display: flex; gap: 20px;
    font-size: 13.5px;
  }
  .compliance-links a {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: color 0.15s ease;
  }
  .compliance-links a:hover { color: white; }

  /* ========== FAQ ========== */
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.15s ease;
  }
  .faq-item[open] { border-color: var(--border-strong); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--accent);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .faq-item[open] .faq-icon { transform: rotate(45deg); }
  .faq-body {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ========== CTA FINAL ========== */
  .cta-final {
    background: var(--accent);
    color: white;
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08), transparent 40%),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06), transparent 40%);
    pointer-events: none;
  }
  .cta-final-inner { position: relative; z-index: 1; }
  .cta-final h2 {
    color: white;
    margin-bottom: 14px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-final p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 28px;
  }
  .cta-final .email {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
  }
  .cta-final .email a {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  /* ========== FOOTER ========== */
  .footer {
    background: #14182A;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 28px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .brand { color: white; margin-bottom: 14px; }
  .footer-brand p { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.6; max-width: 260px; }
  .footer h5 {
    font-size: 12.5px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.15s ease;
  }
  .footer ul a:hover { color: white; }
  .footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
  }
  .footer-base .legal { display: flex; gap: 18px; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero { padding: 56px 0 72px; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-grid { grid-template-columns: repeat(2, 1fr); }
    .citizen-grid { grid-template-columns: repeat(2, 1fr); }
    .transition-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 768px) {
    .nav { display: none; }
    .nav.open {
      display: flex;
      position: absolute;
      top: var(--header-h);
      left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      background: rgba(245, 245, 240, 0.96);
      backdrop-filter: blur(20px) saturate(1.4);
      border-bottom: 1px solid var(--border);
      padding: 16px 24px;
      gap: 0;
    }
    .nav.open a { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav.open a:last-child { border-bottom: none; }
    .nav-toggle {
      display: grid; place-items: center;
      width: 40px; height: 40px;
      border-radius: 8px;
      color: var(--text);
    }
    .nav-toggle:hover { background: rgba(26, 29, 46, 0.04); }
    .header-cta .btn-outline { display: none; }
    .section { padding: 64px 0; }
    .value-grid { grid-template-columns: 1fr; }
    .value-item { border-right: none; border-bottom: 1px solid var(--border); }
    .value-item:last-child { border-bottom: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .citizen-grid { grid-template-columns: 1fr; }
    .demo-steps { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .compliance-grid { grid-template-columns: 1fr; }
    .addon-card { grid-template-columns: 1fr; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    h1 { font-size: 34px; }
    h2 { font-size: 26px; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-base { flex-direction: column; align-items: flex-start; }
  }


/* ==== Real Confedero app mockup (Accueil avec carte) ==== */
.phone-app-header {
    height: 52px;
    background: var(--accent);
    display: flex; align-items: center; gap: 10px;
    padding: 0 12px;
    color: white;
    flex-shrink: 0;
}
.phone-app-logo svg { width: 30px; height: 30px; display: block; }
.phone-app-title { font-weight: 700; font-size: 15px; flex: 1; letter-spacing: 0.2px; }
.phone-app-actions { display: flex; align-items: center; gap: 6px; }
.phone-iconbtn {
    background: rgba(255,255,255,0.16); border: 0; color: white;
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.phone-langpill {
    background: rgba(255,255,255,0.16); color: white;
    border-radius: 8px; padding: 4px 8px; font-size: 11px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 3px;
}

.phone-map-area {
    position: relative; flex: 1; overflow: hidden;
}
.phone-map-bg {
    width: 100%; height: 100%; display: block;
    position: absolute; inset: 0;
}
.phone-map-controls {
    position: absolute; top: 10px; left: 10px;
    display: flex; flex-direction: column; gap: 4px;
}
.phone-mapbtn {
    width: 26px; height: 26px; border-radius: 6px;
    background: white; border: 1px solid rgba(0,0,0,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    color: var(--text);
}
.phone-maplayers {
    position: absolute; top: 10px; right: 10px;
    width: 28px; height: 28px;
}

.phone-pin {
    position: absolute;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    display: inline-flex; align-items: center; justify-content: center;
    transform: translate(-50%, -50%);
}
.phone-pin::after {
    content: ''; width: 9px; height: 9px; border-radius: 50%;
    display: block;
}
.phone-pin-red::after   { background: var(--accent); }
.phone-pin-green::after { background: #2F8A6B; }

.phone-popup {
    position: absolute;
    top: 38%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0,0,0,0.18);
    font-size: 11px;
}
.phone-popup-bar { height: 3px; background: #2F8A6B; }
.phone-popup-head {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 10px 6px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.popup-cat-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2F8A6B; flex-shrink: 0;
}
.popup-cat-label {
    color: #2F8A6B; font-weight: 800; letter-spacing: 0.6px;
    font-size: 10px; flex: 1;
}
.popup-status-pending {
    background: #FEF3C7; color: #92400E;
    font-size: 9px; font-weight: 700;
    padding: 2px 7px; border-radius: 8px;
}
.popup-close {
    background: transparent; border: 0; color: var(--text-muted);
    cursor: pointer; padding: 0; display: inline-flex;
    width: 16px; height: 16px;
}
.phone-popup-body { padding: 8px 10px 10px; }
.phone-popup-body h4 {
    margin: 0 0 2px; font-size: 14px; font-weight: 700; color: var(--text);
}
.popup-desc {
    margin: 0 0 6px; font-size: 11px; color: var(--text-muted);
}
.popup-row {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; color: var(--text-muted);
    margin-bottom: 5px;
}
.popup-row-2 { justify-content: space-between; align-items: center; }
.popup-row-left { display: inline-flex; align-items: center; gap: 5px; }
.popup-status-progress {
    background: #DCFCE7; color: #15803D;
    font-size: 9px; font-weight: 700;
    padding: 2px 7px; border-radius: 6px;
}
.popup-heart {
    display: inline-flex; align-items: center; gap: 3px;
    color: var(--accent); font-weight: 700; font-size: 11px;
}
.popup-actions {
    display: flex; gap: 6px; margin-top: 8px;
}
.popup-btn-outline {
    flex: 1; border: 1.5px solid rgba(0,0,0,0.12); background: white;
    color: var(--text); font-weight: 600; font-size: 11px;
    padding: 7px 10px; border-radius: 8px; cursor: pointer;
}
.popup-btn-primary {
    flex: 1; border: 0; background: var(--primary); color: white;
    font-weight: 700; font-size: 11px;
    padding: 7px 10px; border-radius: 8px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
}

/* 5-tab variant with centered FAB */
.phone-tabbar-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
    display: grid !important;
}
.phone-tab-fab {
    position: relative;
}
.phone-tab-fab .phone-tab-fab-circle {
    position: absolute;
    top: -22px; left: 50%; transform: translateX(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 14px rgba(184,50,64,0.4);
}

/* Override default phone-fab and phone-content for this hero — content area is now the map */
.hero-phone-wrap .phone-fab { display: none; }


/* ==== Citizen secondary services section ==== */
.section-services { padding-top: 8px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}
.service-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}
.service-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}
.service-note {
    font-size: 11px !important;
    font-style: italic;
    color: var(--text-subtle) !important;
    margin-top: 6px !important;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .service-card { padding: 20px 16px; }
}


/* ==== Hero CTA replacement (citizen landing) ==== */
.hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin: 28px 0 14px;
}
.hero-actions .btn {
    display: inline-flex; align-items: center; gap: 8px;
}
.hero-actions-hint {
    font-size: 13px; color: var(--text-muted);
    margin: 0 0 16px;
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}


/* ==== Legal page (CGU / nLPD / Mentions) ==== */
.legal-hero {
    padding: 64px 0 32px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
    border-bottom: 1px solid var(--border);
}
.legal-hero .kicker { color: var(--accent); }
.legal-hero h1 { font-size: 38px; font-weight: 800; margin: 8px 0 12px; color: var(--text); letter-spacing: -0.02em; }
.legal-hero p { font-size: 17px; color: var(--text-muted); max-width: 640px; }

.legal-section { padding: 32px 0 80px; }

.legal-nav {
    display: flex; gap: 8px; flex-wrap: wrap;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 24px;
    position: sticky; top: 80px; z-index: 5;
    backdrop-filter: blur(8px);
}
.legal-tab {
    flex: 1; min-width: 140px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.legal-tab:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.legal-tab.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 6px rgba(184,50,64,0.25);
}

.legal-disclaimer {
    display: flex; gap: 8px; align-items: center;
    background: #FEF3C7; color: #92400E;
    border: 1px solid #FCD34D;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 24px;
}

.legal-content {
    display: none;
    max-width: 760px;
    margin: 0 auto;
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
}
.legal-content.active { display: block; }
.legal-meta {
    font-size: 12px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}
.legal-content h2 {
    font-size: 28px; font-weight: 800; margin: 0 0 24px;
    color: var(--text); letter-spacing: -0.01em;
}
.legal-content h3 {
    font-size: 17px; font-weight: 700; margin: 28px 0 8px;
    color: var(--text);
}
.legal-content p {
    margin: 0 0 12px;
    color: var(--text-muted);
}
.legal-content ul {
    margin: 0 0 16px; padding-left: 22px;
}
.legal-content li {
    margin-bottom: 6px;
    color: var(--text-muted);
}
.legal-content a {
    color: var(--accent);
    border-bottom: 1px solid rgba(184,50,64,0.3);
    text-decoration: none;
}
.legal-content a:hover { border-bottom-color: var(--accent); }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content em { color: var(--text-muted); font-style: italic; }

@media (max-width: 768px) {
    .legal-hero { padding: 48px 0 24px; }
    .legal-hero h1 { font-size: 28px; }
    .legal-nav { position: static; }
    .legal-tab { flex: 1 1 100%; min-width: 0; padding: 10px 8px; font-size: 13px; }
}
