
  /* ══ Design Tokens ══════════════════════════════════════════════ */
  :root {
    --ink:     #0B1420;
    --ink2:    #1E2D45;
    --cobalt:  #1646C8;
    --cobalt2: #2557E0;
    --ice:     #EEF3FF;
    --mint:    #0FBF8E;
    --amber:   #F4A118;
    --cream:   #FAFAF7;
    --white:   #FFFFFF;
    --g50:     #F8F9FC;
    --g100:    #EFF1F7;
    --g200:    #D8DCEC;
    --g400:    #8D97B4;
    --g600:    #4E5872;
    --g800:    #1E2640;
    --r-sm:    10px;
    --r-md:    18px;
    --r-lg:    28px;
    --r-xl:    40px;
    --sh:      0 4px 40px rgba(11,20,32,.09);
    --sh-lg:   0 16px 64px rgba(11,20,32,.15);
    --sh-col:  0 8px 40px rgba(22,70,200,.22);
  }

  /* ══ Reset ══════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  /* ══ Typography ═════════════════════════════════════════════════ */
  h1,h2,h3,h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.12;
    letter-spacing: -.02em;
  }
  h1 { font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 800; }
  h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); font-weight: 600; }
  h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 600; }
  p  { color: var(--g600); font-weight: 400; line-height: 1.75; }

  /* ══ Layout ══════════════════════════════════════════════════════ */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
  .section    { padding: 108px 0; }
  .section-sm { padding: 60px 0; }

  /* ══ Atoms ══════════════════════════════════════════════════════ */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ice); color: var(--cobalt);
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; border-radius: 50px;
    padding: 5px 16px; margin-bottom: 20px;
    border: 1px solid rgba(22,70,200,.15);
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .9rem; font-weight: 600;
    cursor: pointer; border: none;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s, background .18s;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-3px); }
  .btn-sm { padding: 9px 18px; font-size: .82rem; }
  .btn-primary {
    background: var(--cobalt); color: #fff;
    box-shadow: var(--sh-col);
  }
  .btn-primary:hover { background: var(--cobalt2); box-shadow: 0 12px 48px rgba(22,70,200,.35); }
  .btn-outline {
    background: transparent; color: var(--ink2);
    border: 2px solid var(--g200);
  }
  .btn-outline:hover { border-color: var(--cobalt); color: var(--cobalt); }
  .btn-ghost-white {
    background: rgba(255,255,255,.12); color: #fff;
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
  }
  .btn-ghost-white:hover { background: rgba(255,255,255,.22); }
  .btn-mint {
    background: var(--mint); color: #fff;
    box-shadow: 0 8px 32px rgba(15,191,142,.28);
  }
  .btn-mint:hover { box-shadow: 0 12px 40px rgba(15,191,142,.38); filter: brightness(1.05); }

  /* ══ Reveal ══════════════════════════════════════════════════════ */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: .1s; }
  .reveal-d2 { transition-delay: .2s; }
  .reveal-d3 { transition-delay: .3s; }
  .reveal-d4 { transition-delay: .4s; }

  /* ══ Nav ══════════════════════════════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--g100);
    transition: box-shadow .3s, background .3s;
  }
  nav.scrolled {
    box-shadow: 0 4px 28px rgba(11,20,32,.07);
    background: rgba(255,255,255,.96);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }
  .nav-logo {
    font-family: 'Fraunces', serif; font-weight: 800;
    font-size: 1.4rem; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
    letter-spacing: -.03em;
  }
  .logo-mark {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--cobalt), var(--cobalt2));
    border-radius: 9px; display: flex; align-items: center;
    justify-content: center; font-size: .9rem; color: #fff;
    box-shadow: 0 4px 14px rgba(22,70,200,.3);
    font-family: 'Fraunces', serif;
  }
  .nav-links {
    display: flex; align-items: center; gap: 28px;
  }
  .nav-links a {
    font-size: .84rem; font-weight: 500; color: var(--g600);
    transition: color .18s;
  }
  .nav-links a:hover { color: var(--cobalt); }
  .nav-right { display: flex; align-items: center; gap: 10px; }

  /* Language select */
  .lang-wrap { position: relative; display: flex; align-items: center; }
  .lang-select {
    appearance: none; -webkit-appearance: none;
    padding: 7px 30px 7px 12px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--g200);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%238D97B4' d='M5 7L0.5 2.5h9z'/%3E%3C/svg%3E") no-repeat right 9px center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .8rem; font-weight: 600; color: var(--g600);
    cursor: pointer; outline: none; min-width: 68px;
    transition: border-color .18s, box-shadow .18s;
  }
  .lang-select:hover, .lang-select:focus {
    border-color: var(--cobalt);
    box-shadow: 0 0 0 3px rgba(22,70,200,.1);
    color: var(--cobalt);
  }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; border: none; background: none;
  }
  .hamburger span {
    width: 22px; height: 2px; background: var(--ink);
    border-radius: 2px; transition: all .3s;
    display: block;
  }
  .mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--g100);
    padding: 28px; flex-direction: column; gap: 20px;
    box-shadow: 0 12px 40px rgba(11,20,32,.1); z-index: 199;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: .95rem; font-weight: 500; color: var(--g600); padding: 4px 0; }
  .mobile-menu a:hover { color: var(--cobalt); }
  .mob-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

  /* ══ Hero ══════════════════════════════════════════════════════ */
  .hero {
    padding: 150px 0 100px;
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .hero-bg-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(22,70,200,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(22,70,200,.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 30%, transparent 80%);
  }
  .hero-blob1 {
    position: absolute; top: -160px; right: -100px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22,70,200,.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-blob2 {
    position: absolute; bottom: -120px; left: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(15,191,142,.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center; position: relative;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--g200);
    border-radius: 50px; padding: 7px 18px;
    font-size: .78rem; font-weight: 600; color: var(--g600);
    margin-bottom: 28px; box-shadow: 0 2px 16px rgba(11,20,32,.06);
    animation: fadeUp .5s ease both;
  }
  .hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 3px rgba(15,191,142,.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(15,191,142,.2); }
    50%      { box-shadow: 0 0 0 6px rgba(15,191,142,.1); }
  }
  .hero h1 {
    margin-bottom: 24px;
    animation: fadeUp .6s .1s ease both;
  }
  .hero h1 em {
    font-style: italic; color: var(--cobalt);
    display: block;
  }
  .hero-lead {
    font-size: clamp(.95rem, 1.9vw, 1.08rem);
    margin-bottom: 40px; max-width: 460px;
    animation: fadeUp .6s .2s ease both;
    line-height: 1.75;
  }
  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    animation: fadeUp .6s .3s ease both;
  }
  .hero-trust {
    display: flex; align-items: center; gap: 14px;
    margin-top: 36px; font-size: .82rem; color: var(--g400);
    animation: fadeUp .6s .4s ease both;
  }
  .trust-avatars { display: flex; }
  .trust-avatars span {
    width: 30px; height: 30px; border-radius: 50%;
    border: 2.5px solid var(--cream);
    background: linear-gradient(135deg, var(--g200), var(--g100));
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 700; color: var(--g600);
    margin-left: -8px;
  }
  .trust-avatars span:first-child { margin-left: 0; }

  /* Hero visual — dashboard mockup */
  .hero-visual {
    animation: fadeUp .7s .15s ease both;
    position: relative;
  }
  .dashboard-card {
    background: #fff; border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--g100);
    overflow: hidden;
  }
  .dash-topbar {
    background: var(--ink); padding: 16px 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6);
    margin-left: 6px;
  }
  .dash-body { padding: 28px; }
  .dash-row {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
    margin-bottom: 24px;
  }
  .dash-stat {
    background: var(--g50); border-radius: var(--r-sm);
    padding: 16px; border: 1px solid var(--g100);
  }
  .dash-stat-val {
    font-family: 'Fraunces', serif; font-size: 1.6rem;
    font-weight: 800; color: var(--ink); letter-spacing: -.03em;
    line-height: 1;
  }
  .dash-stat-val.green { color: var(--mint); }
  .dash-stat-val.blue  { color: var(--cobalt); }
  .dash-stat-label {
    font-size: .7rem; font-weight: 600; color: var(--g400);
    text-transform: uppercase; letter-spacing: .07em; margin-top: 4px;
  }
  .dash-table { width: 100%; border-collapse: collapse; }
  .dash-table th {
    font-size: .68rem; font-weight: 700; color: var(--g400);
    text-transform: uppercase; letter-spacing: .08em;
    padding: 0 0 10px; text-align: left;
    border-bottom: 1px solid var(--g100);
  }
  .dash-table td {
    font-size: .8rem; padding: 10px 0;
    border-bottom: 1px solid var(--g100);
    color: var(--g800);
  }
  .dash-table tr:last-child td { border-bottom: none; }
  .badge-ok {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(15,191,142,.12); color: var(--mint);
    border-radius: 50px; padding: 2px 10px;
    font-size: .68rem; font-weight: 700;
  }
  .hero-float-1 {
    position: absolute; bottom: -16px; left: -20px;
    background: #fff; border-radius: var(--r-md);
    padding: 14px 18px; box-shadow: var(--sh);
    border: 1px solid var(--g100);
    font-size: .78rem; font-weight: 600; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
    animation: floatY 3s ease-in-out infinite;
  }
  .hero-float-2 {
    position: absolute; top: -14px; right: -14px;
    background: var(--cobalt); color: #fff;
    border-radius: var(--r-md); padding: 12px 16px;
    font-size: .78rem; font-weight: 600;
    box-shadow: var(--sh-col);
    animation: floatY 3.5s .5s ease-in-out infinite;
  }
  @keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ══ Stats Bar ══════════════════════════════════════════════════ */
  .stats-bar {
    background: var(--ink); border-top: none;
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0;
  }
  .stat-item {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-val {
    font-family: 'Fraunces', serif; font-size: 2.4rem;
    font-weight: 800; color: #fff; letter-spacing: -.04em;
    line-height: 1;
  }
  .stat-val.accent { color: var(--mint); }
  .stat-label {
    font-size: .75rem; font-weight: 500;
    color: rgba(255,255,255,.45);
    text-transform: uppercase; letter-spacing: .07em;
    margin-top: 6px;
  }

  /* ══ Problem ════════════════════════════════════════════════════ */
  .problem { background: var(--g50); }
  .prob-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .prob-card {
    background: #fff; border-radius: var(--r-md);
    padding: 28px; box-shadow: var(--sh);
    border: 1px solid var(--g100);
    display: flex; gap: 20px; margin-bottom: 18px;
    transition: transform .25s, box-shadow .25s;
  }
  .prob-card:hover { transform: translateX(8px); box-shadow: var(--sh-lg); }
  .prob-icon {
    width: 50px; height: 50px; border-radius: var(--r-sm);
    background: var(--ice); display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; flex-shrink: 0;
  }
  .prob-card h3 { margin-bottom: 5px; color: var(--ink); font-size: 1rem; }
  .comp-box {
    background: #fff; border-radius: var(--r-lg);
    padding: 36px; border: 1.5px solid var(--g200);
    box-shadow: var(--sh);
  }
  .comp-box h3 { margin-bottom: 6px; font-size: 1.1rem; }
  .comp-bar-wrap { margin: 22px 0; display: flex; flex-direction: column; gap: 16px; }
  .comp-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
  .comp-label span:first-child { font-size: .88rem; font-weight: 600; color: var(--g600); }
  .comp-bar { height: 8px; background: var(--g100); border-radius: 50px; overflow: hidden; }
  .comp-bar-fill { height: 100%; border-radius: 50px; transition: width 1.2s cubic-bezier(.22,1,.36,1); }
  .comp-sep { height: 1px; background: var(--g100); margin: 4px 0; }

  /* ══ Features ═══════════════════════════════════════════════════ */
  .features { background: var(--white); }
  .features-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
  .features-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  }
  .feat-card {
    background: var(--g50); border-radius: var(--r-lg);
    padding: 40px 32px; border: 1.5px solid var(--g100);
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    position: relative; overflow: hidden;
  }
  .feat-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(22,70,200,.04), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .feat-card:hover {
    border-color: var(--cobalt);
    box-shadow: var(--sh-lg), 0 0 0 1px rgba(22,70,200,.15);
    transform: translateY(-10px);
  }
  .feat-card:hover::before { opacity: 1; }
  .feat-icon {
    width: 58px; height: 58px; background: var(--ice);
    border-radius: var(--r-md); display: flex; align-items: center;
    justify-content: center; font-size: 1.7rem; margin-bottom: 24px;
    transition: transform .3s;
  }
  .feat-card:hover .feat-icon { transform: scale(1.1) rotate(-5deg); }
  .feat-card h3 { margin-bottom: 10px; font-size: 1.1rem; }

  /* ══ How It Works ═══════════════════════════════════════════════ */
  .how-section {
    background: linear-gradient(170deg, var(--ink) 0%, var(--ink2) 100%);
    position: relative; overflow: hidden;
  }
  .how-noise {
    position: absolute; inset: 0; pointer-events: none; opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .how-header { text-align: center; max-width: 580px; margin: 0 auto 72px; position: relative; }
  .how-header h2 { color: #fff; }
  .how-header p { color: rgba(255,255,255,.6); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 28px; position: relative;
  }
  .steps-connector {
    position: absolute; top: 30px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(22,70,200,.4), rgba(255,255,255,.08));
  }
  .step-item { position: relative; z-index: 2; }
  .step-num {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--cobalt), var(--cobalt2));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.3rem;
    color: #fff; margin-bottom: 28px;
    box-shadow: 0 8px 28px rgba(22,70,200,.4);
    border: 4px solid rgba(255,255,255,.1);
  }
  .step-item h3 { color: #fff; margin-bottom: 10px; font-size: 1.05rem; }
  .step-item p  { color: rgba(255,255,255,.55); font-size: .9rem; }

  /* ══ Legal / Compliance ═════════════════════════════════════════ */
  .legal-section { background: var(--cream); }
  .legal-layout {
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 72px; align-items: center;
  }
  .legal-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
  .legal-item { display: flex; gap: 20px; }
  .legal-item-icon {
    width: 46px; height: 46px; background: var(--white);
    border-radius: var(--r-sm); box-shadow: var(--sh);
    border: 1px solid var(--g100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .legal-item h4 { margin-bottom: 4px; font-size: 1rem; }
  .legal-panel {
    background: linear-gradient(160deg, var(--ink), var(--ink2));
    border-radius: var(--r-xl); padding: 40px;
    box-shadow: var(--sh-lg);
    position: relative; overflow: hidden;
  }
  .legal-panel::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22,70,200,.3), transparent 70%);
  }
  .legal-panel-title { color: #fff; font-size: 1rem; font-family: 'Fraunces', serif; font-weight: 600; margin-bottom: 4px; }
  .legal-panel-sub { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 28px; }
  .field-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .84rem; color: rgba(255,255,255,.75);
  }
  .field-row:last-child { border-bottom: none; }
  .field-ok {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(15,191,142,.18); color: var(--mint);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700; flex-shrink: 0;
  }

  /* ══ Pricing ════════════════════════════════════════════════════ */
  .pricing-section { background: var(--white); }
  .pricing-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }

  /* ── 3-column pricing grid ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
    align-items: start;
  }
  .price-card {
    background: #fff; border-radius: var(--r-xl);
    box-shadow: var(--sh-lg), 0 0 0 1.5px var(--g200);
    overflow: visible;
    display: flex; flex-direction: column;
    position: relative;
  }
  /* Highlighted Unlimited card */
  .price-card--unlimited {
    box-shadow: var(--sh-lg), 0 0 0 2.5px var(--cobalt);
  }
  .price-popular-badge {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--cobalt); color: #fff;
    font-size: .7rem; font-weight: 800;
    letter-spacing: .1em; padding: 5px 18px;
    border-radius: 50px; white-space: nowrap;
    z-index: 2;
  }
  .price-card-top {
    background: linear-gradient(135deg, var(--cobalt), var(--cobalt2));
    padding: 36px 32px 32px; text-align: center; position: relative; overflow: hidden;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }
  .price-card-top::before {
    content: ''; position: absolute; bottom: -40px; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,.06);
  }
  .price-plan-name {
    font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.75);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 10px; margin-top: 14px;
  }
  .price-badge {
    display: inline-block; background: rgba(255,255,255,.18);
    color: #fff; border-radius: 50px; padding: 5px 16px;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.25);
  }
  .price-amount {
    font-family: 'Fraunces', serif; font-size: 4.2rem; font-weight: 800;
    color: #fff; line-height: 1; letter-spacing: -.06em;
    display: flex; align-items: flex-start; justify-content: center; gap: 4px;
    margin-top: 6px;
  }
  .price-eur { font-size: 1.8rem; margin-top: .4rem; }
  .price-period { font-size: 1.1rem; font-weight: 400; margin-top: 1.1rem; opacity: .7; }
  .price-note-top {
    font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 8px;
  }
  .price-card-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
  .pf-row {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 14px;
  }
  .pf-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(15,191,142,.15); color: var(--mint);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
  }
  .pf-row p { color: var(--g600); font-size: .9rem; font-weight: 500; line-height: 1.4; }
  .price-cta-wrap { margin-top: auto; padding-top: 24px; }
  .price-tax-note {
    text-align: center; font-size: .8rem; color: var(--g400);
    margin-top: 28px; line-height: 1.5;
  }
  /* ══ FAQ ════════════════════════════════════════════════════════ */
  .faq-section { background: var(--g50); }
  .faq-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: #fff; border-radius: var(--r-md);
    border: 1.5px solid var(--g100);
    overflow: hidden; transition: border-color .22s, box-shadow .22s;
  }
  .faq-item.open { border-color: var(--cobalt); box-shadow: 0 4px 20px rgba(22,70,200,.1); }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 22px 28px; background: none; border: none;
    cursor: pointer; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem; font-weight: 600; color: var(--ink);
    transition: color .18s;
  }
  .faq-q:hover { color: var(--cobalt); }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--ice); color: var(--cobalt);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 400; flex-shrink: 0;
    transition: transform .25s, background .2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cobalt); color: #fff; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    padding: 0 28px;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 28px 24px; }
  .faq-a p { font-size: .9rem; }

  /* ══ CTA Banner ═════════════════════════════════════════════════ */
  .cta-section {
    background: linear-gradient(135deg, var(--cobalt) 0%, #0E36A4 100%);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
  }
  .cta-section::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(15,191,142,.15), transparent 65%);
  }
  .cta-inner { text-align: center; position: relative; z-index: 2; }
  .cta-inner h2 { color: #fff; font-size: clamp(1.6rem,4vw,2.8rem); margin-bottom: 16px; }
  .cta-inner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 40px; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ══ Footer ═════════════════════════════════════════════════════ */
  footer {
    background: var(--ink);
    padding: 72px 0 40px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 56px;
  }
  .footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
  .footer-brand p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
  .footer-col h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.4);
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .18s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
  .footer-langs {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .footer-langs a {
    font-size: .72rem; font-weight: 600;
    color: rgba(255,255,255,.35); transition: color .18s;
    padding: 3px 8px; border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
  }
  .footer-langs a:hover { color: #fff; border-color: rgba(255,255,255,.3); }

  /* ══ Responsive ══════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero-grid    { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual  { max-width: 560px; margin: 0 auto; }
    .prob-layout  { grid-template-columns: 1fr; gap: 48px; }
    .legal-layout { grid-template-columns: 1fr; gap: 48px; }
    .features-grid{ grid-template-columns: repeat(2,1fr); }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  }
  @media (max-width: 768px) {
    .nav-links    { display: none; }
    .hamburger    { display: flex; }
    .nav-right > .btn { display: none; }
    .nav-right > .lang-wrap { display: flex; }
    .stats-grid   { grid-template-columns: repeat(2,1fr); }
    .steps-grid   { grid-template-columns: repeat(2,1fr); }
    .steps-connector { display: none; }
    .features-grid{ grid-template-columns: 1fr; }
    .dash-row     { grid-template-columns: 1fr 1fr; }
    .price-card-top { padding: 36px 28px 32px; }
    .price-card-body { padding: 32px 28px; }
  }
  @media (max-width: 540px) {
    .hero-grid    { gap: 36px; }
    .stats-grid   { grid-template-columns: 1fr 1fr; }
    .stat-item    { padding: 24px 16px; }
    .steps-grid   { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .cta-actions  { flex-direction: column; align-items: center; }
    .price-amount { font-size: 4rem; }
  }
  