/* ===================== HERO ===================== */
.hero{
    padding:150px 0 90px;
    background:
      radial-gradient(700px 500px at 88% -8%, rgba(0,142,203,0.16), transparent 60%),
      radial-gradient(600px 500px at -6% 30%, rgba(255,206,7,0.14), transparent 60%),
      var(--off-white);
    overflow:hidden;
  }
  .hero__grid{
    display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;
  }
  .hero__copy h1{
    font-size:clamp(34px,5.2vw,56px);
    font-weight:800;
    margin-top:18px;
    letter-spacing:-0.01em;
  }
  .hero__copy h1 .hl{
    color:var(--blue-primary);
    position:relative;
    display:inline-block;
  }
  .hero__copy h1 .hl::after{
    content:'';
    position:absolute;left:-2px;right:-2px;bottom:6px;height:12px;
    background:var(--yellow);
    z-index:-1;border-radius:4px;
    transform:scaleX(0);transform-origin:left;
    animation:underline 1s var(--ease) .9s forwards;
  }
  @keyframes underline{to{transform:scaleX(1);}}
  .hero__copy p.sub{
    font-size:18px;color:var(--gray-dark);max-width:480px;margin-top:20px;line-height:1.6;
  }
  .checklist{margin-top:26px;display:grid;grid-template-columns:1fr 1fr;gap:12px 20px;max-width:480px;}
  .checklist li{
    display:flex;align-items:center;gap:9px;font-family:var(--font-ui);font-weight:600;font-size:14.5px;color:var(--navy-deep);
  }
  .checklist svg{width:19px;height:19px;flex-shrink:0;color:var(--blue-light);}
  .hero__ctas{display:flex;gap:16px;margin-top:34px;flex-wrap:wrap;}
  .trust-strip{margin-top:40px;}
  .trust-strip .label{
    font-family:var(--font-ui);font-weight:700;font-size:12px;letter-spacing:.08em;color:var(--gray-dark);
    text-transform:uppercase;
  }
  .chip-row{display:flex;flex-wrap:wrap;gap:9px;margin-top:12px;}
  .chip{
    font-family:var(--font-ui);font-size:13px;font-weight:600;color:var(--navy-deep);
    background:#fff;border:1px solid rgba(9,76,161,0.15);padding:7px 14px;border-radius:999px;
    display:flex;align-items:center;gap:6px;
  }
  .chip svg{width:13px;height:13px;color:var(--blue-primary);}

  /* PHONE MOCK */
  .hero__visual{position:relative;display:flex;justify-content:center;}
  .blob{
    position:absolute;width:420px;height:420px;border-radius:50%;
    background:radial-gradient(circle at 35% 30%, rgba(9,76,161,0.35), transparent 70%);
    filter:blur(10px);
    top:-40px;right:-60px;z-index:0;
    animation:float 9s ease-in-out infinite;
  }
  @keyframes float{0%,100%{transform:translate(0,0);}50%{transform:translate(-14px,18px);}}
  .phone{
    position:relative;z-index:2;
    width:290px;height:592px;
    background:var(--ink);
    border-radius:42px;
    padding:12px;
    box-shadow:var(--shadow-soft), 0 0 0 2px rgba(255,255,255,0.6) inset;
    animation:phoneIn 1s var(--ease) both;
  }
  @keyframes phoneIn{from{opacity:0;transform:translateY(30px) rotate(2deg);}to{opacity:1;transform:translateY(0) rotate(0);}}
  .phone__notch{
    position:absolute;top:12px;left:50%;transform:translateX(-50%);
    width:110px;height:22px;background:var(--ink);border-radius:0 0 16px 16px;z-index:3;
  }
  .phone__screen{
    width:100%;height:100%;background:#e9edf5;border-radius:32px;overflow:hidden;
    display:flex;flex-direction:column;position:relative;
  }
  .phone__header{
    background:var(--blue-primary);color:#fff;padding:16px 16px 12px;
    display:flex;align-items:center;gap:10px;
    font-family:var(--font-ui);
  }
  .phone__header .avatar{
    width:32px;height:32px;border-radius:50%;background:var(--yellow);
    display:flex;align-items:center;justify-content:center;color:var(--navy-deep);font-weight:700;font-size:13px;
  }
  .phone__header .name{font-weight:700;font-size:14.5px;}
  .phone__header .status{font-size:11px;opacity:.85;display:flex;align-items:center;gap:5px;}
  .phone__header .status::before{content:'';width:6px;height:6px;background:#5ee27a;border-radius:50%;}
  .phone__body{
    flex:1;padding:14px 12px;display:flex;flex-direction:column;gap:9px;overflow:hidden;
    background:
      repeating-linear-gradient(135deg, rgba(9,76,161,0.03) 0 2px, transparent 2px 40px);
  }
  .bubble{
    max-width:78%;padding:9px 12px;border-radius:14px;font-family:var(--font-ui);font-size:12.5px;line-height:1.4;
    opacity:0;transform:translateY(10px) scale(.97);
    transition:opacity .4s var(--ease), transform .4s var(--ease);
  }
  .bubble.show{opacity:1;transform:translateY(0) scale(1);}
  .bubble.in{background:#fff;color:var(--ink);align-self:flex-start;border-bottom-left-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,0.05);}
  .bubble.out{background:#d9f2c4;color:var(--ink);align-self:flex-end;border-bottom-right-radius:4px;}
  .bubble.card{background:#fff;align-self:flex-start;border-bottom-left-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,0.08);width:78%;}
  .bubble.card .row{display:flex;align-items:center;gap:8px;}
  .bubble.card .av{width:26px;height:26px;border-radius:50%;background:var(--blue-primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;}
  .bubble.card .meta{font-size:10.5px;color:var(--gray-dark);margin-top:4px;}
  .bubble.card .pin{margin-top:6px;font-weight:700;color:var(--blue-primary);display:flex;align-items:center;gap:6px;}
  .bubble.system{align-self:center;background:rgba(9,76,161,0.08);color:var(--blue-primary);font-weight:600;font-size:11px;padding:6px 12px;border-radius:20px;}
  .typing{
    align-self:flex-start;background:#fff;padding:10px 14px;border-radius:14px;border-bottom-left-radius:4px;
    display:flex;gap:4px;opacity:0;transition:opacity .3s;box-shadow:0 2px 6px rgba(0,0,0,0.05);
  }
  .typing.show{opacity:1;}
  .typing span{width:6px;height:6px;background:#9aa7bd;border-radius:50%;animation:bounce 1.2s infinite;}
  .typing span:nth-child(2){animation-delay:.15s;}
  .typing span:nth-child(3){animation-delay:.3s;}
  @keyframes bounce{0%,60%,100%{transform:translateY(0);opacity:.5;}30%{transform:translateY(-4px);opacity:1;}}
  .phone__input{
    padding:10px 12px;background:#e9edf5;display:flex;align-items:center;gap:8px;
  }
  .phone__input .field{flex:1;background:#fff;border-radius:20px;height:32px;}
  .phone__input .mic{width:32px;height:32px;border-radius:50%;background:var(--blue-primary);display:flex;align-items:center;justify-content:center;}
  .phone__input .mic svg{width:14px;height:14px;color:#fff;}
  .floating-badge{
    position:absolute;bottom:26px;left:-28px;z-index:4;
    background:#fff;border-radius:16px;padding:10px 16px;box-shadow:var(--shadow-card);
    display:flex;align-items:center;gap:10px;
    animation:pulseBadge 3s ease-in-out infinite;
  }
  @keyframes pulseBadge{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}
  .floating-badge .ic{width:36px;height:36px;background:var(--tint);border-radius:10px;display:flex;align-items:center;justify-content:center;}
  .floating-badge .ic svg{width:19px;height:19px;color:var(--blue-primary);}
  .floating-badge .txt{font-family:var(--font-ui);}
  .floating-badge .txt b{display:block;font-size:13.5px;color:var(--navy-deep);}
  .floating-badge .txt span{font-size:11px;color:var(--gray-dark);}

  /* ===================== RESPONSIVE ===================== */
  @media (max-width:1024px){
    .nav__links{display:none;}
    .burger{display:flex;}
    .hero__grid{grid-template-columns:1fr;text-align:center;}
    .hero__copy p.sub{margin-left:auto;margin-right:auto;}
    .checklist{margin-left:auto;margin-right:auto;}
    .hero__ctas{justify-content:center;}
    .trust-strip .chip-row{justify-content:center;}
    .hero__visual{margin-top:50px;}
    .stats__grid{grid-template-columns:repeat(2,1fr);gap:28px 20px;}
    .stat:nth-child(2){border-right:none;}
    .flow__row{grid-template-columns:repeat(3,1fr);gap:24px 0;}
    .flow__progress{display:none;}
    .flow__label{flex-direction:column;align-items:flex-start;}
    .flow__preview{width:100%;max-width:none;}
    .how-stage{grid-template-columns:1fr;}
    .scene{max-width:420px;margin:0 auto;}
    .benefit-grid{grid-template-columns:repeat(2,1fr);}
    .loc-grid{grid-template-columns:repeat(3,1fr);}
    .footer__grid{grid-template-columns:1fr 1fr;}
    .t-arrow{display:none;}
  }
  @media (max-width:640px){
    .hero{padding:120px 0 60px;}
    .checklist{grid-template-columns:1fr;}
    .stats__grid{grid-template-columns:repeat(2,1fr);}
    .flow__row{grid-template-columns:1fr 1fr;}
    .how-tabs{gap:8px;}
    .how-tab{padding:10px 16px;font-size:13px;flex:1;justify-content:center;}
    .benefit-grid{grid-template-columns:1fr;}
    .loc-grid{grid-template-columns:repeat(2,1fr);}
    .footer__grid{grid-template-columns:1fr 1fr;}
    .footer__brand{grid-column:1/-1;}
    .cta-banner__inner{flex-direction:column;text-align:center;}
    .cta-banner__actions{flex-direction:column;}
    .phone{width:250px;height:512px;}
    .sticky-cta{display:block;}
    .hero__ctas .btn{width:100%;}
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }