  :root{
    --ink:#0B1930;
    --ink-soft:#3A4A63;
    --blue:#1541C4;
    --blue-deep:#0E2E8F;
    --amber:#D9793B;
    --amber-soft:#F3D9C4;
    --green:#1C7A4A;
    --mist:#F4F5FB;
    --mist-2:#EAEDF7;
    --white:#FFFFFF;
    --line:#DCE0EE;
    --shadow: 0 20px 50px -20px rgba(11,25,48,0.25);
    --radius:18px;
    --font-display:'Space Grotesk', sans-serif;
    --font-body:'Manrope', sans-serif;
    --font-mono:'JetBrains Mono', monospace;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
    .phone-slide{opacity:0 !important;}
    .phone-slide:first-of-type{opacity:1 !important;}
    .ct{opacity:0 !important;}
    .chip-cycle .ct:first-of-type{opacity:1 !important;}
  }

  body{
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--mist);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  img,svg{display:block; max-width:100%;}
  button{font-family:inherit; cursor:pointer;}
  input,textarea{font-family:inherit;}

  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-family:var(--font-mono);
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
  }
  .eyebrow.blue{color:var(--blue);}
  .eyebrow.amber{color:var(--amber);}
  .eyebrow.on-dark{color:#8FB2FF;}
  .eyebrow::before{
    content:"";
    width:7px; height:7px; border-radius:50%;
    background:currentColor;
    box-shadow:0 0 0 4px color-mix(in srgb, currentColor 18%, transparent);
  }

  .matrix-badge{
    position:relative; display:inline-block; border-radius:100px; overflow:hidden;
    background:var(--mist-2); padding:2px;
  }
  .matrix-badge-canvas{position:absolute; inset:0; width:100%; height:100%; display:block;}
  .matrix-badge .eyebrow{position:relative; z-index:1; padding:7px 16px;}

  h1,h2,h3,h4{font-family:var(--font-display); font-weight:600; letter-spacing:-0.01em; color:var(--ink);}

  :focus-visible{outline:2.5px solid var(--blue); outline-offset:3px; border-radius:4px;}

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:14px 26px;
    border-radius:100px;
    font-weight:700;
    font-size:15px;
    border:1.5px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space:nowrap;
  }
  .btn-primary{background:var(--blue); color:#fff; box-shadow:0 12px 24px -10px rgba(21,65,196,0.55);}
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(21,65,196,0.6);}
  .btn-ghost{background:transparent; color:var(--ink); border-color:var(--line);}
  .btn-ghost:hover{border-color:var(--blue); color:var(--blue);}
  .btn-ghost.on-dark{color:#fff; border-color:rgba(255,255,255,0.28);}
  .btn-ghost.on-dark:hover{border-color:#fff;}

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:18px 0;
    transition:background .25s ease, box-shadow .25s ease, padding .25s ease;
  }
  header.scrolled{
    background:rgba(244,245,251,0.86);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 1px 0 var(--line);
    padding:12px 0;
  }
  .nav-inner{display:flex; align-items:center; justify-content:space-between; gap:24px;}
  .brand{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:20px; color:var(--ink);}
  .brand-mark{width:32px; height:32px; flex-shrink:0; border-radius:8px; object-fit:cover; display:block;}
  .nav-links{display:flex; align-items:center; gap:30px; font-size:14.5px; font-weight:600;}
  .nav-links a{color:var(--ink-soft); transition:color .2s;}
  .nav-links a:hover{color:var(--blue);}
  .nav-cta{display:flex; align-items:center; gap:14px;}
  .nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;}
  .nav-toggle span{width:24px; height:2.5px; background:var(--ink); border-radius:2px; transition:transform .2s, opacity .2s;}

  .mobile-menu{
    position:fixed; inset:0; z-index:99; background:var(--white);
    display:flex; flex-direction:column; gap:0; padding:100px 32px 40px;
    transform:translateX(100%); transition:transform .3s ease;
  }
  .mobile-menu.open{transform:translateX(0);}
  .mobile-menu a{display:block; padding:16px 0; font-size:20px; font-weight:600; border-bottom:1px solid var(--line);}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:168px 0 100px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
  }
  .hero h1{font-size:clamp(36px, 4.6vw, 60px); line-height:1.05; margin:18px 0 22px;}
  .hero h1 .accent{color:var(--blue);}
  .hero p.lead{font-size:18px; color:var(--ink-soft); max-width:480px; margin-bottom:34px;}
  .hero-ctas{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:38px;}
  .hero-stats{display:flex; gap:34px; flex-wrap:wrap;}
  .hero-stat b{display:block; font-family:var(--font-display); font-size:24px; color:var(--ink);}
  .hero-stat span{font-size:13px; color:var(--ink-soft);}

  .hero-visual{position:relative; height:560px; overflow:hidden; max-width:100%;}
  .route-svg{position:absolute; inset:-40px -20px auto -20px; width:calc(100% + 40px); height:640px; z-index:0;}
  .route-path{
    fill:none; stroke:var(--blue); stroke-width:2.5; stroke-dasharray:9 9;
    opacity:0.55;
    stroke-dashoffset:0;
    animation:dashmove 26s linear infinite;
  }
  @keyframes dashmove{ to{ stroke-dashoffset:-1000; } }
  .route-dot{fill:var(--amber);}
  .route-dot.b{fill:var(--green);}
  .stop-chip{
    position:absolute; display:flex; align-items:center; gap:7px;
    background:#fff; border:1px solid var(--line); border-radius:100px;
    padding:7px 12px 7px 7px; font-size:12px; font-weight:700; color:var(--ink);
    box-shadow:var(--shadow);
    animation:float 5s ease-in-out infinite;
    z-index:3;
  }
  .stop-chip i{width:22px; height:22px; border-radius:50%; background:var(--mist-2); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .stop-chip svg{width:13px; height:13px;}
  @keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

  .chip-cycle{position:relative; display:inline-block; height:14px; width:106px; overflow:hidden;}
  .ct{
    position:absolute; left:0; top:0; white-space:nowrap; opacity:0;
    animation-duration:24s; animation-iteration-count:infinite; animation-timing-function:linear;
  }
  @keyframes phaseFade1{0%,30%{opacity:1;}34%,100%{opacity:0;}}
  @keyframes phaseFade2{0%,34%{opacity:0;}38%,63%{opacity:1;}67%,100%{opacity:0;}}
  @keyframes phaseFade3{0%,67%{opacity:0;}71%,96%{opacity:1;}100%{opacity:0;}}

  .phone{
    position:relative; z-index:2; width:270px; margin:0 auto;
    background:var(--ink); border-radius:38px; padding:10px;
    box-shadow:0 40px 70px -25px rgba(11,25,48,0.45);
  }
  .phone-screen{
    background:var(--mist); border-radius:28px; overflow:hidden; height:520px;
    display:flex; flex-direction:column;
  }
  .phone-status{height:26px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .phone-status::before{content:""; width:70px; height:16px; background:var(--ink); border-radius:10px;}
  .phone-slides{position:relative; flex:1; overflow:hidden;}
  .phone-slide{
    position:absolute; inset:0; opacity:0; display:flex; flex-direction:column; overflow-y:auto;
    animation-duration:28s; animation-iteration-count:infinite; animation-timing-function:linear;
  }
  @keyframes slideFade1{0%,11%{opacity:1;}14%,100%{opacity:0;}}
  @keyframes slideFade2{0%,14%{opacity:0;}17%,26%{opacity:1;}29%,100%{opacity:0;}}
  @keyframes slideFade3{0%,29%{opacity:0;}32%,40%{opacity:1;}43%,100%{opacity:0;}}
  @keyframes slideFade4{0%,43%{opacity:0;}46%,54%{opacity:1;}57%,100%{opacity:0;}}
  @keyframes slideFade5{0%,57%{opacity:0;}60%,68%{opacity:1;}71%,100%{opacity:0;}}
  @keyframes slideFade6{0%,71%{opacity:0;}74%,83%{opacity:1;}86%,100%{opacity:0;}}
  @keyframes slideFade7{0%,86%{opacity:0;}89%,97%{opacity:1;}100%{opacity:0;}}

  .phone-header{padding:16px 14px 2px; flex-shrink:0;}
  .phone-eyebrow{font-family:var(--font-mono); font-size:8.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--blue); font-weight:700;}
  .phone-eyebrow.amber{color:var(--amber);}
  .phone-title{font-family:var(--font-display); font-weight:700; font-size:16px; color:var(--ink); margin-top:2px;}

  .phone-chip-row{display:flex; flex-wrap:wrap; gap:6px; padding:12px 14px 4px; flex-shrink:0;}
  .phone-pill{background:#fff; border:1px solid var(--line); border-radius:100px; padding:6px 11px; font-size:9.5px; font-weight:700; color:var(--ink);}

  .phone-toggle{display:flex; gap:6px; margin:14px 14px 4px; background:var(--mist-2); border-radius:100px; padding:4px; flex-shrink:0;}
  .phone-toggle-item{flex:1; text-align:center; font-size:10px; font-weight:700; color:var(--ink-soft); padding:7px 0; border-radius:100px;}
  .phone-toggle-item.active{background:#fff; color:var(--ink); box-shadow:0 2px 6px rgba(11,25,48,0.12);}

  .phone-radio{display:flex; align-items:center; justify-content:space-between; background:#fff; border:1.5px solid var(--line); border-radius:12px; padding:10px 12px; margin-bottom:8px;}
  .phone-radio.selected{border-color:var(--blue); background:#EEF2FD;}
  .phone-radio b{font-size:11px; display:block;}
  .phone-radio small{font-size:9px; color:var(--ink-soft);}
  .dot-radio{width:15px; height:15px; border-radius:50%; border:2px solid var(--line); flex-shrink:0;}
  .phone-radio.selected .dot-radio{border-color:var(--blue); background:radial-gradient(circle, var(--blue) 0 5px, transparent 6px);}

  .phone-route{margin:16px 14px 0; background:#fff; border:1px solid var(--line); border-radius:14px; padding:14px; flex-shrink:0;}
  .route-point{display:flex; align-items:flex-start; gap:10px;}
  .route-point small{font-size:8.5px; color:var(--ink-soft); display:block;}
  .route-point b{font-size:11px; display:block; margin-top:1px;}
  .route-dot-mini{width:9px; height:9px; border-radius:50%; margin-top:3px; flex-shrink:0; display:block;}
  .route-dot-mini.a{background:var(--green);}
  .route-dot-mini.b{background:var(--blue);}
  .route-line-mini{width:1.6px; height:20px; background:var(--line); margin-left:4px;}
  .phone-cta{margin:16px 14px 0; background:var(--blue); color:#fff; text-align:center; padding:12px; border-radius:12px; font-size:12px; font-weight:700; flex-shrink:0;}

  .phone-days{display:flex; gap:7px; padding:16px 14px 4px; flex-wrap:wrap; flex-shrink:0;}
  .phone-daypill{padding:7px 11px; border-radius:100px; font-size:9.5px; font-weight:700; border:1px solid var(--line); background:#fff; color:var(--ink-soft);}
  .phone-daypill.active{background:var(--blue); color:#fff; border-color:var(--blue);}
  .phone-note{margin:16px 14px 0; background:var(--mist-2); border-radius:12px; padding:12px; font-size:10px; color:var(--ink-soft); line-height:1.5;}

  .phone-offer{background:#fff; border:1.5px solid var(--line); border-radius:12px; padding:11px 12px; margin-bottom:8px; display:flex; flex-direction:column; gap:6px;}
  .phone-offer.active{border-color:var(--blue); background:#EEF2FD;}
  .phone-offer-top{display:flex; align-items:center; justify-content:space-between;}
  .phone-offer-top b{font-size:11.5px;}
  .phone-offer-top .price{font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--ink);}
  .phone-offer-rating{font-size:9px; color:var(--ink-soft); letter-spacing:0.02em;}
  .phone-negotiate-btn{
    align-self:flex-start; background:var(--blue); color:#fff; font-size:9.5px; font-weight:700;
    padding:6px 13px; border-radius:100px; display:inline-flex; align-items:center; gap:5px;
  }

  .phone-card-dark{
    margin:14px; background:var(--ink); border-radius:16px; padding:16px; color:#fff; flex-shrink:0;
  }
  .phone-card-dark .tag{font-family:var(--font-mono); font-size:9px; letter-spacing:0.12em; color:var(--amber); text-transform:uppercase; display:flex; align-items:center; gap:6px; margin-bottom:10px;}
  .phone-card-dark .tag::before{content:""; width:5px; height:5px; border-radius:50%; background:var(--amber);}
  .phone-row{display:flex; align-items:center; gap:10px; padding:9px 0;}
  .phone-row + .phone-row{border-top:1px solid rgba(255,255,255,0.12);}
  .phone-row i{width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .phone-row svg{width:15px; height:15px; stroke:#fff;}
  .phone-row b{font-size:12.5px; display:block;}
  .phone-row small{font-size:10px; color:#9FB3D6;}
  .phone-list{margin:0 14px 14px; display:flex; flex-direction:column; gap:9px;}
  .phone-item{
    background:#fff; border:1px solid var(--line); border-radius:13px; padding:11px 12px;
    display:flex; align-items:center; gap:10px;
  }
  .phone-item i{width:28px; height:28px; border-radius:50%; background:var(--mist-2); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .phone-item svg{width:14px; height:14px; stroke:var(--blue);}
  .phone-item b{font-size:11.5px; display:block;}
  .phone-item small{font-size:9.5px; color:var(--ink-soft);}
  .phone-item.dashed{border-style:dashed; border-color:var(--blue); border-width:1.6px; justify-content:space-between;}
  .phone-item.dashed b{color:var(--blue); font-size:12px;}

  /* ---------- JOURNEY ANIMATION ---------- */
  .journey-section{padding:64px 0 100px; background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .journey-head{max-width:640px; margin-bottom:44px;}
  .journey-head h2{font-size:clamp(24px,2.8vw,34px); margin-top:14px; line-height:1.15;}
  .journey-head p{color:var(--ink-soft); font-size:15.5px; margin-top:14px;}

  .journey{position:relative; height:190px; margin-top:10px;}
  .journey-road{
    position:absolute; left:0; right:0; top:96px; height:2px;
    background:repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
  }
  .journey-road::before, .journey-road::after{
    content:""; position:absolute; top:-4px; width:10px; height:10px; border-radius:50%;
  }
  .journey-road::before{left:0; background:var(--amber);}
  .journey-road::after{right:0; background:var(--green);}

  .station{
    position:absolute; top:0; width:80px; margin-left:-40px; text-align:center;
    display:flex; flex-direction:column; align-items:center;
  }
  .station .dot{
    width:44px; height:44px; border-radius:50%; background:var(--mist-2); border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    margin-top:74px; margin-bottom:10px;
  }
  .station .dot svg{width:20px; height:20px; stroke:var(--blue);}
  .station .label{
    font-size:11px; font-weight:700; color:var(--ink-soft); line-height:1.3;
  }
  .station:nth-child(1) .dot svg{stroke:var(--amber);}
  .station:last-of-type .dot{background:#E9F6EE;}
  .station:last-of-type .dot svg{stroke:var(--green);}

  .car-track{position:absolute; top:60px; left:0; right:0; height:80px;}
  .car{
    position:absolute; top:0; width:54px; height:54px; margin-left:-27px;
    animation:carMove 22s ease-in-out infinite;
  }
  .car-wiggle{width:100%; height:100%; animation:carWiggle 1.1s ease-in-out infinite;}
  .car-wiggle svg{width:100%; height:100%; stroke:var(--ink); fill:none; stroke-width:1.7;}

  .journey-chip{
    position:absolute; top:-34px; left:50%; transform:translateX(-50%);
    display:flex; align-items:center; gap:7px; white-space:nowrap;
    background:var(--ink); color:#fff; border-radius:100px; padding:7px 13px 7px 8px;
    font-size:11.5px; font-weight:700; box-shadow:var(--shadow); opacity:0;
    animation-duration:22s; animation-iteration-count:infinite; animation-timing-function:linear;
  }
  .journey-chip i{width:20px; height:20px; border-radius:50%; background:rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .journey-chip svg{width:11px; height:11px; stroke:#fff;}
  .journey-chip.final{background:var(--green);}

  @keyframes carMove{
    0%{left:5%;} 6%{left:5%;}
    14%{left:20%;} 20%{left:20%;}
    28%{left:35%;} 34%{left:35%;}
    42%{left:50%;} 48%{left:50%;}
    56%{left:65%;} 62%{left:65%;}
    70%{left:80%;} 76%{left:80%;}
    84%{left:95%;} 100%{left:95%;}
  }
  @keyframes carWiggle{0%,100%{transform:translateY(0) rotate(0deg);}50%{transform:translateY(-3px) rotate(-1.5deg);}}

  @keyframes chipFade1{0%,6%{opacity:1;}10%,100%{opacity:0;}}
  @keyframes chipFade2{0%,10%{opacity:0;}14%,20%{opacity:1;}24%,100%{opacity:0;}}
  @keyframes chipFade3{0%,24%{opacity:0;}28%,34%{opacity:1;}38%,100%{opacity:0;}}
  @keyframes chipFade4{0%,38%{opacity:0;}42%,48%{opacity:1;}52%,100%{opacity:0;}}
  @keyframes chipFade5{0%,52%{opacity:0;}56%,62%{opacity:1;}66%,100%{opacity:0;}}
  @keyframes chipFade6{0%,66%{opacity:0;}70%,76%{opacity:1;}80%,100%{opacity:0;}}
  @keyframes chipFade7{0%,80%{opacity:0;}84%,100%{opacity:1;}}

  @media (max-width:700px){
    .journey{height:200px;}
    .station{width:52px; margin-left:-26px;}
    .station .label{font-size:9.5px;}
    .journey-chip{font-size:10px; padding:6px 10px 6px 6px;}
  }

  /* ---------- MINI PROCESS SCHEMA ---------- */
  .mini-process{padding:90px 0 30px;}
  .mini-process-row{display:flex; align-items:flex-start; gap:0; max-width:820px; margin:0 auto;}
  .mini-step{flex:1; text-align:center; display:flex; flex-direction:column; align-items:center; padding:0 10px;}
  .mini-icon{
    width:60px; height:60px; border-radius:50%; background:var(--mist-2); border:2px solid var(--blue);
    display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  }
  .mini-icon svg{width:24px; height:24px;}
  .mini-step h4{font-size:15px; margin-bottom:6px;}
  .mini-step p{font-size:12.5px; color:var(--ink-soft); max-width:170px; line-height:1.5;}
  .mini-connector{
    flex:0 0 64px; height:2px; margin-top:30px; position:relative;
    background:repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  }
  .mini-dot{
    position:absolute; top:50%; left:0; width:9px; height:9px; border-radius:50%;
    background:var(--blue); transform:translateY(-50%);
    animation:miniFlow 2.6s linear infinite;
  }
  @keyframes miniFlow{0%{left:0%; opacity:0;}10%{opacity:1;}88%{opacity:1;}100%{left:100%; opacity:0;}}

  /* ---------- SECTION BASE ---------- */
  section{padding:110px 0;}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head h2{font-size:clamp(28px,3.4vw,42px); margin-top:14px; line-height:1.12;}
  .section-head p{color:var(--ink-soft); font-size:16.5px; margin-top:16px;}

  .reveal{opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in-view{opacity:1; transform:translateY(0);}

  /* ---------- SERVICES ---------- */
  .services-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:18px;}
  .service-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:26px 20px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent;}
  .service-card i{
    width:46px; height:46px; border-radius:13px; background:var(--mist-2);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .service-card svg{width:22px; height:22px; stroke:var(--blue);}
  .service-card.urgent i{background:#FBE7D8;}
  .service-card.urgent svg{stroke:var(--amber);}
  .service-card h3{font-size:16.5px; margin-bottom:8px;}
  .service-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.5;}

  /* ---------- HOW IT WORKS ---------- */
  .how{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .flow-tabs{display:inline-flex; background:var(--mist-2); padding:5px; border-radius:100px; margin-bottom:44px;}
  .flow-tab{
    padding:11px 24px; border-radius:100px; border:none; background:transparent;
    font-weight:700; font-size:14px; color:var(--ink-soft); transition:all .2s;
  }
  .flow-tab.active{background:var(--ink); color:#fff;}
  .flow-panel{display:none;}
  .flow-panel.active{display:block;}
  .flow-steps{display:grid; grid-template-columns:repeat(5,1fr); gap:14px; position:relative;}
  .flow-step{
    position:relative; text-align:left;
    border:1.5px solid var(--blue); border-radius:16px; background:#fff;
    padding:22px 16px 20px;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .flow-step:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
  .flow-panel[data-flow="usta"] .flow-step{border-color:var(--amber);}
  .flow-step .num{
    width:46px; height:46px; border-radius:50%; background:var(--white); border:2px solid var(--blue);
    color:var(--blue); font-family:var(--font-display); font-weight:700; font-size:16px;
    display:flex; align-items:center; justify-content:center; position:relative; z-index:1; margin-bottom:18px;
  }
  .flow-panel[data-flow="usta"] .flow-step .num{border-color:var(--amber); color:var(--amber);}
  .flow-note{
    margin-top:40px; display:flex; align-items:flex-start; gap:14px;
    background:var(--mist); border-left:3px solid var(--amber); border-radius:10px;
    padding:16px 20px;
  }
  .flow-note i{width:32px; height:32px; border-radius:9px; background:#FBE7D8; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .flow-note svg{width:16px; height:16px; stroke:var(--amber);}
  .flow-note p{font-size:13.5px; color:var(--ink-soft); line-height:1.6;}
  .flow-note p b{color:var(--ink); font-weight:700;}
  .flow-step h4{font-size:14.5px; margin-bottom:7px;}
  .flow-step p{font-size:12.5px; color:var(--ink-soft); line-height:1.5;}

  /* ---------- TRUST ---------- */
  .trust{background:var(--ink); color:#fff; position:relative; overflow:hidden;}
  .trust::before{
    content:""; position:absolute; width:600px; height:600px; border-radius:50%;
    background:radial-gradient(circle, rgba(21,65,196,0.35), transparent 70%);
    top:-260px; right:-200px;
  }
  .trust .section-head p{color:#B7C3DC;}
  .trust-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; position:relative; z-index:1;}
  .trust-card{
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius);
    padding:26px 22px;
  }
  .trust-card i{width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
  .trust-card svg{width:20px; height:20px; stroke:#8FB2FF;}
  .trust-card h4{color:#fff; font-size:15.5px; margin-bottom:8px; font-family:var(--font-display);}
  .trust-card p{font-size:13px; color:#AEB9D1; line-height:1.55;}

  /* ---------- LEGAL ---------- */
  .legal-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
  .legal-card{
    background:#fff; border:1px solid var(--line); border-radius:14px; padding:20px;
    display:flex; align-items:center; gap:14px; text-align:left; width:100%;
    transition:border-color .2s, box-shadow .2s;
  }
  .legal-card:hover{border-color:var(--blue); box-shadow:var(--shadow);}
  .legal-card i{width:38px; height:38px; border-radius:10px; background:var(--mist-2); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .legal-card svg{width:18px; height:18px; stroke:var(--blue);}
  .legal-card b{display:block; font-size:14px; margin-bottom:3px;}
  .legal-card span{font-size:12px; color:var(--ink-soft);}

  /* ---------- CONTACT ---------- */
  .contact{background:var(--white); border-top:1px solid var(--line);}
  .contact-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px;}
  .contact-info-card{
    background:var(--ink); color:#fff; border-radius:var(--radius); padding:36px 30px;
  }
  .contact-info-card h3{color:#fff; font-size:20px; margin-bottom:10px;}
  .contact-info-card p{color:#AEB9D1; font-size:14px; margin-bottom:26px;}
  .contact-line{display:flex; align-items:center; gap:12px; padding:12px 0; border-top:1px solid rgba(255,255,255,0.12);}
  .contact-line:last-child{border-bottom:1px solid rgba(255,255,255,0.12);}
  .contact-line i{width:34px; height:34px; border-radius:10px; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .contact-line svg{width:16px; height:16px; stroke:#8FB2FF;}
  .contact-line b{font-size:13.5px; display:block;}
  .contact-line span{font-size:12px; color:#9FB3D6;}

  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  .field{margin-bottom:16px; grid-column:span 1;}
  .field.full{grid-column:1 / -1;}
  .field label{display:block; font-size:12.5px; font-weight:700; margin-bottom:7px; color:var(--ink-soft);}
  .field input, .field textarea{
    width:100%; padding:13px 15px; border-radius:11px; border:1.5px solid var(--line);
    background:var(--mist); font-size:14.5px; color:var(--ink); transition:border-color .2s, background .2s;
  }
  .field input:focus, .field textarea:focus{outline:none; border-color:var(--blue); background:#fff;}
  .field textarea{resize:vertical; min-height:120px;}
  .form-success{
    display:none; align-items:center; gap:12px; background:#E9F6EE; border:1px solid #BFE3CC;
    color:var(--green); padding:16px 18px; border-radius:12px; font-size:14px; font-weight:600; margin-top:8px;
  }
  .form-success.show{display:flex;}
  .form-success svg{width:18px; height:18px; stroke:var(--green); flex-shrink:0;}

  /* ---------- FOOTER ---------- */
  footer{background:var(--ink); color:#B7C3DC; padding-top:80px;}
  .footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,0.12);}
  .footer-brand .brand{color:#fff; margin-bottom:14px;}
  .footer-brand p{font-size:13.5px; color:#9FB3D6; max-width:280px; line-height:1.6;}
  .footer-col h5{font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:#7C8EB2; margin-bottom:16px;}
  .footer-col a{display:block; font-size:13.5px; color:#C7D1E8; padding:6px 0; transition:color .2s;}
  .footer-col a:hover{color:#fff;}

  .footer-badges{padding:36px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; border-bottom:1px solid rgba(255,255,255,0.12);}
  .store-badges{display:flex; gap:12px; flex-wrap:wrap; align-items:center;}
  .store-badge-img{display:block; line-height:0; border-radius:8px; overflow:hidden; transition:transform .18s ease, opacity .18s ease;}
  .store-badge-img:hover{transform:translateY(-2px); opacity:0.9;}
  .store-badge-img .store-svg{height:40px; width:auto; display:block;}

  .pay-badges{display:flex; align-items:center; gap:10px; flex-wrap:wrap;}
  .pay-badge{
    display:flex; align-items:center; gap:6px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.16);
    border-radius:9px; padding:8px 12px; font-size:11.5px; font-weight:700; color:#DCE3F2;
  }
  .pay-badge svg{width:15px; height:15px; stroke:#8FB2FF;}
  .pay-badge.logo-band-badge{
    background:#fff; padding:9px 16px; border-color:transparent;
  }
  .pay-badge.logo-band-badge svg.pay-logo-band{width:170px; height:auto; stroke:none;}

  .footer-bottom{padding:26px 0 34px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:12.5px; color:#7C8EB2;}
  .footer-bottom .socials{display:flex; gap:10px;}
  .footer-bottom .socials a{
    width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.07); display:flex; align-items:center; justify-content:center;
    border:1px solid rgba(255,255,255,0.14);
  }
  .footer-bottom .socials svg{width:14px; height:14px; stroke:#C7D1E8;}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .hero-grid{grid-template-columns:1fr; text-align:center;}
    .hero p.lead{margin-left:auto; margin-right:auto;}
    .hero-ctas, .hero-stats{justify-content:center;}
    .hero-visual{height:480px; margin-top:20px;}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .flow-steps{grid-template-columns:1fr; gap:26px;}
    .trust-grid{grid-template-columns:1fr 1fr;}
    .legal-grid{grid-template-columns:1fr 1fr;}
    .contact-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr 1fr;}
    .stop-chip{font-size:10.5px; padding:6px 10px 6px 6px;}
    .stop-chip i{width:18px; height:18px;}
    .stop-chip svg{width:11px; height:11px;}
    .chip-cycle{width:88px; height:13px;}
  }
  @media (max-width: 700px){
    .wrap{padding:0 20px;}
    .nav-links, .nav-cta .btn-ghost{display:none;}
    .nav-toggle{display:flex;}
    .nav-cta{gap:10px;}
    .nav-cta .btn-primary{padding:9px 16px; font-size:13px;}
    .brand{font-size:17px; gap:8px;}
    .brand-mark{width:28px; height:28px;}
    section{padding:76px 0;}
    .services-grid{grid-template-columns:1fr;}
    .trust-grid{grid-template-columns:1fr;}
    .legal-grid{grid-template-columns:1fr;}
    .form-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;}
    .footer-badges{flex-direction:column; align-items:flex-start;}
    .phone{width:230px;}
    .phone-screen{height:460px;}
    .stop-chip:nth-of-type(2){top:1% !important; left:0 !important; right:auto !important;}
    .stop-chip:nth-of-type(3){top:26% !important; right:0 !important; left:auto !important;}
    .stop-chip:nth-of-type(4){bottom:24% !important; left:0 !important; right:auto !important;}
    .stop-chip:nth-of-type(5){bottom:1% !important; right:0 !important; left:auto !important;}
    .mini-process-row{flex-direction:column; align-items:center; gap:2px;}
    .mini-connector{width:2px; height:34px; flex-basis:34px; margin:0;
      background:repeating-linear-gradient(180deg, var(--line) 0 8px, transparent 8px 14px);}
    .mini-dot{top:0; left:50%; transform:translateX(-50%); animation-name:miniFlowV;}
  }
  @keyframes miniFlowV{0%{top:0%; opacity:0;}10%{opacity:1;}88%{opacity:1;}100%{top:100%; opacity:0;}}

  /* ============================================================
     LEGAL / DOKÜMAN SAYFALARI
     ============================================================ */
  body.legal{background:var(--mist);}

  .legal-nav{
    position:sticky; top:0; z-index:100;
    background:rgba(244,245,251,0.9);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
  }
  .legal-nav .nav-inner{padding:14px 0;}
  .legal-nav .back-link{
    display:inline-flex; align-items:center; gap:7px;
    font-size:14px; font-weight:700; color:var(--ink-soft); transition:color .2s;
  }
  .legal-nav .back-link:hover{color:var(--blue);}
  .legal-nav .back-link svg{width:16px; height:16px; stroke:currentColor;}

  .legal-hero{
    background:var(--ink); color:#fff; padding:56px 0 46px; position:relative; overflow:hidden;
  }
  .legal-hero::before{
    content:""; position:absolute; width:520px; height:520px; border-radius:50%;
    background:radial-gradient(circle, rgba(21,65,196,0.35), transparent 70%);
    top:-280px; right:-160px;
  }
  .legal-hero .wrap{position:relative; z-index:1;}
  .legal-hero .eyebrow{color:#8FB2FF;}
  .legal-hero h1{color:#fff; font-size:clamp(26px,3.4vw,40px); line-height:1.14; margin:14px 0 10px; max-width:820px;}
  .legal-hero .effective{font-family:var(--font-mono); font-size:12.5px; color:#9FB3D6; letter-spacing:0.02em;}

  .legal-body{padding:56px 0 90px;}
  .legal-layout{display:grid; grid-template-columns:250px 1fr; gap:50px; align-items:start;}

  .legal-side{position:sticky; top:90px;}
  .legal-side h5{
    font-family:var(--font-mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--ink-soft); margin-bottom:14px;
  }
  .legal-side a{
    display:block; font-size:13.5px; color:var(--ink-soft); padding:9px 12px; border-radius:9px;
    line-height:1.4; transition:background .18s, color .18s;
  }
  .legal-side a:hover{background:var(--mist-2); color:var(--ink);}
  .legal-side a.current{background:var(--blue); color:#fff; font-weight:700;}

  .legal-doc{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:44px 48px; box-shadow:var(--shadow); max-width:100%;
  }
  .legal-doc .intro{
    font-size:15px; color:var(--ink-soft); line-height:1.7; margin-bottom:8px;
    padding:16px 18px; background:var(--mist); border-left:3px solid var(--blue); border-radius:10px;
  }
  .legal-doc h2{
    font-family:var(--font-display); font-size:19px; color:var(--ink); line-height:1.3;
    margin:34px 0 14px; padding-top:22px; border-top:1px solid var(--line); scroll-margin-top:80px;
  }
  .legal-doc h2:first-of-type{border-top:none; padding-top:0; margin-top:22px;}
  .legal-doc h3{font-family:var(--font-display); font-size:15.5px; color:var(--ink); margin:22px 0 10px;}
  .legal-doc p{font-size:14.5px; color:#2C3A52; line-height:1.72; margin-bottom:13px;}
  .legal-doc ul, .legal-doc ol{margin:0 0 15px; padding-left:4px;}
  .legal-doc li{
    font-size:14.5px; color:#2C3A52; line-height:1.65; margin-bottom:9px;
    padding-left:24px; position:relative; list-style:none;
  }
  .legal-doc li::before{
    content:""; position:absolute; left:4px; top:9px;
    width:7px; height:7px; border-radius:2px; background:var(--blue); transform:rotate(45deg);
  }
  .legal-doc ol{counter-reset:legal-ol;}
  .legal-doc ol > li{padding-left:30px;}
  .legal-doc ol > li::before{
    counter-increment:legal-ol; content:counter(legal-ol);
    width:auto; height:auto; background:none; border-radius:0; transform:none;
    top:0; left:0; font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--blue); min-width:20px;
  }
  .legal-doc strong, .legal-doc b{color:var(--ink); font-weight:700;}
  .legal-doc a{color:var(--blue); font-weight:600; text-decoration:underline; text-underline-offset:2px;}
  .legal-doc .fill{background:#FBE7D8; color:var(--amber); padding:1px 6px; border-radius:5px; font-weight:600;}

  .info-box{background:var(--mist); border:1px solid var(--line); border-radius:12px; padding:18px 20px; margin:8px 0 18px;}
  .info-box dl{display:grid; grid-template-columns:auto 1fr; gap:6px 16px; margin:0;}
  .info-box dt{font-size:13px; font-weight:700; color:var(--ink-soft); white-space:nowrap;}
  .info-box dd{font-size:13.5px; color:var(--ink); margin:0;}

  .legal-doc .effective-foot{
    margin-top:30px; padding-top:18px; border-top:1px solid var(--line);
    font-family:var(--font-mono); font-size:12.5px; color:var(--ink-soft);
  }
  .legal-doc .disclaimer{margin-top:16px; font-size:12.5px; color:var(--ink-soft); line-height:1.6; font-style:italic;}

  .legal-foot{background:var(--ink); color:#7C8EB2; padding:34px 0; font-size:12.5px;}
  .legal-foot .wrap{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;}
  .legal-foot a{color:#C7D1E8;}
  .legal-foot a:hover{color:#fff;}

  @media (max-width:900px){
    .legal-layout{grid-template-columns:1fr; gap:26px;}
    .legal-side{position:static;}
    .legal-side-nav{display:flex; flex-wrap:wrap; gap:8px;}
    .legal-side-nav a{padding:8px 12px; border:1px solid var(--line); border-radius:100px; font-size:12.5px;}
    .legal-side-nav a:hover{background:var(--mist-2);}
    .legal-doc{padding:30px 22px;}
    .info-box dl{grid-template-columns:1fr;}
    .info-box dt{margin-top:6px;}
  }

  /* ---- hesap silme / bilgi sayfaları ---- */
  .legal-single{max-width:820px; margin:0 auto;}
  .legal-doc .callout{
    border-radius:12px; padding:15px 18px; font-size:14px; line-height:1.62;
    margin:18px 0; border:1px solid;
  }
  .legal-doc .callout.note{background:#EEF2FD; border-color:#C3D0F5; color:#12328C;}
  .legal-doc .callout.warn{background:#FBECE3; border-color:#EFC6A8; color:#8F421A;}
  .legal-doc .callout b{color:inherit;}
  .legal-doc .callout a{color:inherit;}
  .method-card{
    background:var(--mist); border:1px solid var(--line); border-radius:14px;
    padding:22px 24px; margin:14px 0 20px;
  }
  .method-card .method-head{
    display:flex; align-items:center; gap:12px; margin-bottom:12px;
  }
  .method-card .method-num{
    width:34px; height:34px; border-radius:50%; flex-shrink:0;
    background:var(--blue); color:#fff; font-family:var(--font-display); font-weight:700; font-size:15px;
    display:flex; align-items:center; justify-content:center;
  }
  .method-card .method-head h3{margin:0; font-size:16px;}
  .method-card .badge-rec{
    font-family:var(--font-mono); font-size:10px; letter-spacing:0.08em; text-transform:uppercase;
    background:#E9F6EE; color:var(--green); padding:3px 9px; border-radius:100px; font-weight:700;
  }
  .method-card ol{margin:0 0 12px;}
  .method-card p:last-child{margin-bottom:0;}
