:root{
    --navy:#1b1a4b;
    --navy-2:#221f5e;
    --coral:#f0396b;
    --coral-2:#f4527d;
    --orange:#f6a721;
    --orange-2:#f9c04c;
    --cream:#fff8f2;
    --pink-tint:#fdeef0;
    --text-dark:#1b1a4b;
    --text-muted:#6b6a8a;
    --border:#eee6f2;
    --radius-lg:24px;
    --radius-md:16px;
    --radius-sm:10px;
    --shadow:0 10px 30px rgba(27,26,75,0.08);
    --shadow-sm:0 4px 14px rgba(27,26,75,0.06);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color:var(--text-dark);
    background:var(--cream);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  .btn svg, .store-badge svg{vertical-align:-3px;}
  .btn{display:inline-flex; align-items:center;}
  .store-badge{display:inline-flex; align-items:center;}
  .panel h2 svg{vertical-align:-4px; margin-right:2px;}
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer;}
  .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
  }
  h1,h2,h3{font-weight:800; letter-spacing:-0.02em;}
  .eyebrow-dash{
    width:40px; height:4px; border-radius:4px;
    background:linear-gradient(90deg,var(--coral),var(--orange));
    margin:10px auto 0;
  }
  .section-title{
    text-align:center;
    font-size:clamp(24px,3vw,34px);
    color:var(--navy);
    margin-bottom:8px;
  }
  .section{
    padding:70px 0;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:999px;
    font-weight:700;
    font-size:15px;
    border:2px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-primary{
    background:linear-gradient(90deg,var(--orange) 0%, var(--coral) 100%);
    color:#fff;
    box-shadow:0 8px 20px rgba(240,57,107,0.28);
  }
  .btn-outline{
    background:#fff;
    color:var(--coral);
    border-color:var(--coral);
  }
  .btn-outline:hover{background:var(--pink-tint);}
  .btn-navy{
    background:var(--orange);
    color:var(--navy);
  }
  .btn-navy:hover{background:var(--orange-2);}

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(255,248,242,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 24px;
    max-width:1200px;
    margin:0 auto;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:22px;
    font-weight:800;
    color:var(--navy);
  }
  .logo .mark{
    width:34px;height:34px;border-radius:50%;
    background:linear-gradient(135deg,var(--orange),var(--coral));
    display:flex;align-items:center;justify-content:center;
    color:#fff; font-size:16px;
  }
  nav.main-links{
    display:flex;
    gap:30px;
  }
  nav.main-links a{
    font-size:15px;
    font-weight:600;
    color:var(--text-dark);
    position:relative;
    padding-bottom:4px;
  }
  nav.main-links a.active{color:var(--coral);}
  nav.main-links a.active::after{
    content:"";
    position:absolute;left:0;right:0;bottom:-6px;
    height:3px;border-radius:3px;
    background:var(--orange);
  }
  .header-cta{
    background:linear-gradient(90deg,var(--orange),var(--coral));
    color:#fff;
    padding:11px 24px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
  }
  .menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;border:none;
  }
  .menu-toggle span{
    width:26px;height:3px;background:var(--navy);border-radius:3px;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    overflow:hidden;
    padding:60px 0 40px;
    background:radial-gradient(ellipse at top right, #fde9dd 0%, var(--cream) 55%);
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(34px,4.4vw,50px);
    line-height:1.1;
    color:var(--navy);
  }
  .hero h1 .accent{color:var(--coral);}
  .hero p{
    margin-top:20px;
    font-size:17px;
    color:var(--text-muted);
    max-width:480px;
  }
  .hero-actions{
    margin-top:28px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  .hero-image-wrap{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .hero-image-frame{
    width:100%;
    max-width:420px;
    aspect-ratio:1/1;
    border-radius:50% 50% 44% 44% / 55% 55% 45% 45%;
    background:linear-gradient(160deg,#fbd9a5,#f8c66b 60%, #f6a721);
    overflow:hidden;
    display:flex;align-items:center;justify-content:center;
    position:relative;
    box-shadow:var(--shadow);
    overflow:hidden;
  }
  .hero-image-frame img{width:100%; height:100%; object-fit:cover;}
  .float-badge{
    position:absolute;
    background:#fff;
    border-radius:14px;
    padding:8px 12px;
    font-size:11px;
    font-weight:700;
    color:var(--navy);
    box-shadow:var(--shadow-sm);
    display:flex;align-items:center;gap:6px;
  }
  .float-badge .dot{width:22px;height:22px;border-radius:50%;background:var(--coral);display:flex;align-items:center;justify-content:center;color:#fff;font-size:12px;}
  .badge-1{top:6%; left:-4%;}
  .badge-2{bottom:8%; right:-6%;}

  .hero-side-cards{
    display:flex;
    flex-direction:column;
    gap:14px;
    position:absolute;
    right:0;
    top:0;
  }
  .info-card{
    background:#fff;
    border-radius:16px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:var(--shadow-sm);
    min-width:190px;
  }
  .info-card .ic{
    width:38px;height:38px;border-radius:10px;
    display:flex;align-items:center;justify-content:center;
    font-size:18px; flex:none;
  }
  .info-card .txt{font-size:13px; font-weight:700; color:var(--navy); line-height:1.25;}
  .ic-orange{background:#fdeccb; color:var(--orange);}
  .ic-coral{background:#fde1ea; color:var(--coral);}
  .ic-blue{background:#e2eefd; color:#3a7ee8;}
  .ic-yellow{background:#fef6d8; color:#e8b100;}

  .hero-right-col{
    display:flex; flex-direction:column; gap:14px;
  }

  /* stats bar */
  .stats-bar{
    margin-top:50px;
    background:var(--navy);
    border-radius:20px;
    padding:26px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    color:#fff;
    box-shadow:0 16px 34px rgba(27,26,75,0.28);
  }
  .stats-bar .trusted{
    display:flex; align-items:center; gap:12px;
    font-weight:700; font-size:15px;
  }
  .stats-bar .trusted .heart{
    width:36px;height:36px;border-radius:50%;
    background:rgba(255,255,255,0.12);
    display:flex;align-items:center;justify-content:center;
    color:var(--coral-2); font-size:16px;
  }
  .stat-item{
    display:flex; align-items:center; gap:10px;
    font-size:14px;
  }
  .stat-item .num-wrap{display:flex; flex-direction:column;}
  .stat-item .num{font-size:19px; font-weight:800;}
  .stat-item .lbl{font-size:12px; color:#c9c8e6;}
  .stat-item .stat-ic{
    width:34px;height:34px;border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;align-items:center;justify-content:center;
    color:var(--orange); font-size:15px;
  }

  /* ---------- SERVICES ---------- */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    margin-top:40px;
  }
  .service-card{
    border-radius:18px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    min-height:250px;
    box-shadow:var(--shadow-sm);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
  .service-card .thumb{
    height:110px;border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;
  }
  .service-card .thumb img{
    width:100%; height:100%; object-fit:cover; border-radius:12px;
  }
  .service-card h3{font-size:16px; color:var(--navy);}
  .service-card p{font-size:13px; color:var(--text-muted); flex:1;}
  .service-card .book{font-size:13px; font-weight:700; color:var(--coral);}
  .sc-1{background:#eaf5ee;}
  .sc-1 .thumb{background:#d3ecda;}
  .sc-2{background:#fdeaf0;}
  .sc-2 .thumb{background:#fbd7e3;}
  .sc-3{background:#eaeefb;}
  .sc-3 .thumb{background:#d7ddf7;}
  .sc-4{background:#fdeee0;}
  .sc-4 .thumb{background:#fbdcc0;}
  .sc-5{background:#f3eafc;}
  .sc-5 .thumb{background:#e6d4f7;}
  .sc-6{background:#e6f6f5;}
  .sc-6 .thumb{background:#c9ede9;}
  .sc-6 .book{color:#1f9c8f;}

  /* ---------- STEPS ---------- */
  .steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
    align-items:stretch;
  }
  .step-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:24px 20px;
    position:relative;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .step-num{
    width:30px;height:30px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-weight:800; font-size:13px; color:#fff;
  }
  .step-1 .step-num{background:var(--coral);}
  .step-2 .step-num{background:var(--orange);}
  .step-3 .step-num{background:#9b59d0;}
  .step-4 .step-num{background:#3a7ee8;}
  .step-card h3{font-size:15px; color:var(--navy);}
  .step-card p{font-size:13px; color:var(--text-muted);}
  .step-icon{font-size:22px; margin-top:4px;}
  .step-arrow{
    position:absolute;
    right:-30px; top:50%; transform:translateY(-50%);
    color:#c8c6e6; font-size:20px;
  }

  /* ---------- WHY CHOOSE ---------- */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    margin-top:40px;
  }
  .why-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:22px 16px;
    text-align:center;
    display:flex;flex-direction:column;align-items:center;gap:10px;
  }
  .why-card .wic{
    width:52px;height:52px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:22px;
  }
  .why-card h4{font-size:14px; color:var(--navy);}
  .why-card p{font-size:12.5px; color:var(--text-muted);}
  .w1{background:#fde3ea;color:var(--coral);}
  .w2{background:#fdecd0;color:var(--orange);}
  .w3{background:#efe3fb;color:#9b59d0;}
  .w4{background:#e2eefd;color:#3a7ee8;}
  .w5{background:#dff5ea;color:#22a35d;}
  .w6{background:#fdecd0;color:#e8b100;}

  /* ---------- BECOME BANNER ---------- */
  .become-banner{
    background:linear-gradient(120deg,var(--navy) 0%, var(--navy-2) 100%);
    border-radius:26px;
    padding:50px;
    color:#fff;
    display:grid;
    grid-template-columns:0.9fr 1.5fr;
    align-items:center;
    gap:30px;
    position:relative;
    overflow:hidden;
  }
  .become-banner::before{
    content:"";
    position:absolute; inset:0;
    background-image:radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
    background-size:16px 16px;
    opacity:.5;
  }
  .become-photo{
    width:170px;height:170px;border-radius:50%;
    background:linear-gradient(160deg,var(--orange),var(--orange-2));
    display:flex;align-items:center;justify-content:center;
    margin:0 auto;
    position:relative; z-index:1;
    overflow:hidden;
  }
  .become-photo img{width:100%; height:100%; object-fit:cover;}
  .become-content{position:relative; z-index:1;}
  .become-content h2{font-size:clamp(22px,3vw,30px); margin-bottom:10px;}
  .become-content > p{color:#c9c8e6; margin-bottom:22px; max-width:520px;}
  .become-feats{
    display:flex;
    gap:26px;
    flex-wrap:wrap;
    margin-bottom:26px;
  }
  .become-feat{
    display:flex; align-items:center; gap:8px;
    font-size:13px; font-weight:600;
  }
  .become-feat .fi{
    width:30px;height:30px;border-radius:50%;
    border:1px solid rgba(255,255,255,0.3);
    display:flex;align-items:center;justify-content:center;
    color:var(--orange);
  }

  /* ---------- TESTIMONIALS + CITIES ---------- */
  .two-col{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:24px;
  }
  .panel{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
  }
  .panel h2{font-size:22px; color:var(--navy); display:flex; align-items:center; gap:10px; margin-bottom:20px;}
  .testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .testimonial-card{
    background:var(--cream);
    border-radius:14px;
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .stars{color:var(--orange); font-size:13px; letter-spacing:2px;}
  .testimonial-card p{font-size:13px; color:var(--text-dark); font-style:italic; flex:1;}
  .reviewer{display:flex; align-items:center; gap:10px;}
  .avatar{
    width:34px;height:34px;border-radius:50%;
    background:linear-gradient(135deg,var(--coral),var(--orange));
    display:flex;align-items:center;justify-content:center;
    color:#fff; font-weight:700; font-size:13px;
    overflow:hidden;
    flex:none;
  }
  .avatar img{width:100%; height:100%; object-fit:cover;}
  .reviewer .who{font-size:12px; font-weight:700; color:var(--navy);}
  .reviewer .loc{font-size:11px; color:var(--text-muted);}

  .cities-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .city-chip{
    display:flex; align-items:center; gap:10px;
    background:var(--cream);
    border-radius:12px;
    padding:12px 14px;
    font-size:13px; font-weight:700; color:var(--navy);
  }
  .city-chip .ci{font-size:16px;}
  .more-cities-btn{
    margin-top:16px; width:100%; text-align:center;
    background:var(--navy); color:#fff;
    padding:12px; border-radius:12px; font-weight:700; font-size:13px;
    display:block;
  }

  /* ---------- SAFETY + FAQ ---------- */
  .safety-card{
    display:flex;
    align-items:center;
    gap:30px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
  }
  .safety-icon{
    width:90px;height:90px;border-radius:50%;
    background:#e2eefd;
    display:flex;align-items:center;justify-content:center;
    font-size:40px; flex:none;
  }
  .safety-card h3{font-size:20px; color:var(--navy); margin-bottom:14px;}
  .safety-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 20px;
  }
  .safety-list li{
    font-size:13px; color:var(--text-dark);
    display:flex; align-items:center; gap:8px;
  }
  .safety-list li::before{
    content:"✓";
    color:#22a35d; font-weight:800;
  }

  .faq-item{
    border-bottom:1px solid var(--border);
    padding:14px 0;
  }
  .faq-item summary{
    display:flex; justify-content:space-between; align-items:center;
    font-size:14px; font-weight:700; color:var(--navy);
    cursor:pointer; list-style:none;
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary .plus{
    color:var(--coral); font-size:18px; font-weight:800;
  }
  .faq-item p{
    margin-top:10px; font-size:13px; color:var(--text-muted);
  }

  /* ---------- BOTTOM CTA ---------- */
  .bottom-cta{
    background:linear-gradient(90deg,var(--orange) 0%, var(--coral) 100%);
    border-radius:20px;
    padding:26px 36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    color:#fff;
  }
  .bottom-cta h3{font-size:20px;}
  .bottom-cta .avatars-strip{
    display:flex;
  }
  .bottom-cta .avatars-strip .av{
    width:44px;height:44px;border-radius:50%;
    border:3px solid #fff;
    margin-left:-12px;
    background:rgba(255,255,255,0.25);
    display:flex;align-items:center;justify-content:center;
    font-size:16px;
  }
  .bottom-cta .avatars-strip .av:first-child{margin-left:0;}
  .bottom-cta-left{display:flex; align-items:center; gap:18px;}
  .bottom-cta-actions{display:flex; gap:12px; flex-wrap:wrap;}
  .bottom-cta .btn-outline{background:#fff; border-color:#fff;}
  .bottom-cta .btn-primary{background:var(--navy); box-shadow:none;}

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--navy);
    color:#c9c8e6;
    padding:60px 0 24px;
    margin-top:10px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1.1fr;
    gap:30px;
  }
  .footer-logo{
    display:flex; align-items:center; gap:8px;
    font-size:20px; font-weight:800; color:#fff; margin-bottom:12px;
  }
  .footer-col h4{color:#fff; font-size:14px; margin-bottom:16px;}
  .footer-col ul li{margin-bottom:10px; font-size:13px;}
  .footer-col ul li a:hover{color:#fff;}
  .footer-desc{font-size:13px; max-width:260px; margin-bottom:16px;}
  .socials{display:flex; gap:10px;}
  .socials a{
    width:34px;height:34px;border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;align-items:center;justify-content:center;
    font-size:14px; color:#fff;
  }
  .store-badges{display:flex; flex-direction:column; gap:10px;}
  .store-badge{
    display:flex; align-items:center; gap:8px;
    background:rgba(255,255,255,0.06);
    border-radius:10px; padding:8px 14px;
    font-size:12px; color:#fff; width:fit-content;
  }
  .footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    font-size:12px;
    color:#8f8db0;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:1080px){
    .hero-side-cards{position:static; flex-direction:row; margin-top:20px; flex-wrap:wrap;}
    .hero-image-wrap{order:-1;}
  }
  @media (max-width:960px){
    nav.main-links{display:none;}
    .menu-toggle{display:flex;}
    .hero-grid{grid-template-columns:1fr;}
    .hero p{max-width:100%;}
    .stats-bar{justify-content:center; text-align:center;}
    .services-grid{grid-template-columns:repeat(3,1fr);}
    .steps-grid{grid-template-columns:repeat(2,1fr);}
    .step-arrow{display:none;}
    .why-grid{grid-template-columns:repeat(3,1fr);}
    .become-banner{grid-template-columns:1fr; text-align:center;}
    .become-feats{justify-content:center;}
    .two-col{grid-template-columns:1fr;}
    .testimonials-grid{grid-template-columns:1fr 1fr;}
    .footer-grid{grid-template-columns:1fr 1fr; row-gap:36px;}
    .safety-card{flex-direction:column; text-align:center;}
    .safety-list{grid-template-columns:1fr;}
  }
  @media (max-width:640px){
    .container{padding:0 18px;}
    .section{padding:50px 0;}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .steps-grid{grid-template-columns:1fr;}
    .testimonials-grid{grid-template-columns:1fr;}
    .cities-grid{grid-template-columns:1fr;}
    .stats-bar{flex-direction:column; align-items:flex-start;}
    .header-cta{display:none;}
    .footer-grid{grid-template-columns:1fr;}
    .bottom-cta{flex-direction:column; align-items:flex-start;}
    .bottom-cta-left{flex-direction:column; align-items:flex-start;}
  }

  /* ---------- SUPPORT MODALS ---------- */
  .modal-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(27,26,75,0.55);
    z-index:1000;
    align-items:center;
    justify-content:center;
    padding:24px;
  }
  .modal-overlay.open{
    display:flex;
  }
  .modal-box{
    display:none;
    background:#fff;
    border-radius:20px;
    max-width:560px;
    width:100%;
    max-height:85vh;
    overflow-y:auto;
    padding:32px;
    position:relative;
    box-shadow:0 30px 60px rgba(27,26,75,0.35);
    animation:modalIn .22s ease;
  }
  .modal-box.active{display:block;}
  @keyframes modalIn{
    from{opacity:0; transform:translateY(16px) scale(0.98);}
    to{opacity:1; transform:translateY(0) scale(1);}
  }
  .modal-close{
    position:absolute;
    top:18px; right:18px;
    width:34px; height:34px;
    border-radius:50%;
    border:none;
    background:var(--cream);
    color:var(--navy);
    font-size:20px;
    line-height:1;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:background .15s ease;
  }
  .modal-close:hover{background:#f0e5da;}
  .modal-icon{
    width:52px;height:52px;border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
  }
  .mi-help{background:#fdecd0; color:var(--orange);}
  .mi-safety{background:#e2eefd; color:#3a7ee8;}
  .mi-terms{background:#efe3fb; color:#9b59d0;}
  .mi-privacy{background:#dff5ea; color:#22a35d;}
  .mi-contact{background:#fde3ea; color:var(--coral);}
  .modal-box h3{
    font-size:22px;
    color:var(--navy);
    margin-bottom:4px;
  }
  .modal-sub{
    font-size:13.5px;
    color:var(--text-muted);
    margin-bottom:20px;
  }
  .modal-body h4{
    font-size:14.5px;
    color:var(--navy);
    margin:18px 0 8px;
  }
  .modal-body h4:first-child{margin-top:0;}
  .modal-body p{
    font-size:13.5px;
    color:var(--text-dark);
    line-height:1.6;
  }
  .modal-body ul{
    margin:0;
    padding-left:18px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .modal-body ul li{
    font-size:13.5px;
    color:var(--text-dark);
    line-height:1.55;
    list-style:disc;
  }
  .contact-row{
    font-size:13.5px;
    color:var(--text-dark);
    padding:8px 0;
    border-bottom:1px solid var(--border);
  }
  .contact-row:last-of-type{border-bottom:none;}
  .footer-col ul li a{cursor:pointer;}
  .mi-auth{background:#fdecd0; color:var(--orange);}
  .auth-label{
    display:block;
    font-size:13px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:8px;
  }
  .auth-input{
    width:100%;
    padding:12px 14px;
    border-radius:10px;
    border:1.5px solid var(--border);
    font-size:14px;
    font-family:inherit;
    color:var(--text-dark);
    outline:none;
    transition:border-color .15s ease;
  }
  .auth-input:focus{border-color:var(--coral);}
  .auth-error{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:12px;
    padding:10px 14px;
    background:#fde3ea;
    color:#c0265a;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
  }
  .auth-error::before{
    content:"!";
    width:18px;height:18px;border-radius:50%;
    background:#c0265a;color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:12px; font-weight:800; flex:none;
  }
  .auth-submit{
    width:100%;
    justify-content:center;
    margin-top:18px;
    border:none;
  }
  @media (max-width:640px){
    .modal-box{padding:24px 20px; max-height:90vh;}
  }
