
:root{
  --bg:#020817;
  --bg2:#061126;
  --panel:#07172e;
  --panel-2:#0b1f3b;
  --line:rgba(121,180,242,.18);
  --line-strong:rgba(51,171,255,.42);
  --cyan:#1fdcff;
  --blue:#1682ff;
  --blue2:#0e55ff;
  --green:#19d68f;
  --text:#f8fbff;
  --muted:#aebfd5;
  --shadow:0 26px 80px rgba(0,0,0,.34);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 50% -20%,rgba(24,130,255,.14),transparent 34%),
    var(--bg);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select{font:inherit}
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}
.btn{
  min-height:50px;
  padding:0 22px;
  border:0;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#fff;
  font-weight:850;
  cursor:pointer;
  transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.08)}
.btn-primary{
  background:linear-gradient(135deg,#1ccfff,#146dff 55%,#0f4cf3);
  box-shadow:0 14px 32px rgba(17,108,255,.32),inset 0 1px rgba(255,255,255,.24);
}
.btn-outline{
  background:rgba(25,144,255,.08);
  color:#dff7ff;
  border:1px solid rgba(31,220,255,.45);
}
.eyebrow{
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:11px;
  font-weight:900;
  margin-bottom:10px;
}
.section-title{
  margin:0;
  font-size:clamp(28px,3.3vw,43px);
  line-height:1.08;
  letter-spacing:-.045em;
}
.section-copy{
  color:var(--muted);
  line-height:1.65;
  font-size:15px;
}
.center{text-align:center}
.center .section-copy{max-width:760px;margin:12px auto 0}

.site-header{
  position:sticky;
  z-index:90;
  top:0;
  background:rgba(2,8,23,.92);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}
.nav{height:70px;display:flex;align-items:center;justify-content:space-between;gap:26px}
.brand{display:flex;align-items:center;gap:8px;font-size:25px;font-weight:900;letter-spacing:-.045em}
.brand img{width:36px;height:36px}
.nav-links{display:flex;align-items:center;gap:30px;color:#d9e8fa;font-size:13px;font-weight:700}
.nav-links a:hover{color:var(--cyan)}
.mobile-menu{display:none;font-size:27px}

.hero{
  position:relative;
  overflow:hidden;
  padding:48px 0 28px;
  background:
    radial-gradient(circle at 76% 18%,rgba(24,130,255,.22),transparent 30%),
    radial-gradient(circle at 13% 21%,rgba(31,220,255,.12),transparent 26%);
}
.hero::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;height:140px;
  background:linear-gradient(180deg,transparent,var(--bg));
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(330px,.82fr) minmax(520px,1.18fr);
  gap:38px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 18px;
  max-width:480px;
  font-size:clamp(48px,5.6vw,78px);
  line-height:.96;
  letter-spacing:-.064em;
}
.hero-copy h1 .amount{
  display:block;
  color:var(--cyan);
  background:linear-gradient(180deg,#8bf3ff,#1bc9ff 46%,#1682ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 30px rgba(31,220,255,.15);
}
.hero-copy>p{
  max-width:500px;
  margin:0;
  color:#d6e6f8;
  line-height:1.55;
  font-size:16px;
}
.hero-benefits{
  display:flex;
  gap:22px;
  margin:24px 0 20px;
}
.hero-benefit{display:flex;align-items:center;gap:9px;font-size:12px;font-weight:850;color:#eaf5ff}
.hero-benefit img{width:34px;height:34px}

.claim-form{
  width:min(100%,375px);
  margin-top:18px;
  padding:20px;
  border:1px solid rgba(121,180,242,.22);
  border-radius:13px;
  background:linear-gradient(180deg,rgba(9,27,54,.95),rgba(4,17,36,.95));
  box-shadow:0 20px 60px rgba(0,0,0,.27);
}
.form-title{display:flex;align-items:center;gap:9px;margin-bottom:4px}
.form-title img{width:25px;height:25px}
.form-title h2{font-size:21px;margin:0;letter-spacing:-.025em}
.claim-form>p{margin:0 0 14px;color:#aebfd5;font-size:11.5px;line-height:1.5}
.field{margin-bottom:10px}
.field label{display:block;margin-bottom:5px;color:#d9e8fa;font-size:11px;font-weight:800}
.field input,.field select{
  width:100%;
  height:43px;
  color:#fff;
  border:1px solid rgba(121,180,242,.2);
  border-radius:8px;
  outline:none;
  background:#07172e;
  padding:0 12px;
}
.field input::placeholder{color:#8094ad}
.field input:focus,.field select:focus{border-color:var(--cyan);box-shadow:0 0 0 3px rgba(31,220,255,.11)}
.phone-row{display:grid;grid-template-columns:92px 1fr;gap:8px}
.claim-form .btn{width:100%;min-height:46px}
.security-note{text-align:center;color:#93a8c0;font-size:10.5px;margin-top:10px}
.form-legal{text-align:center;color:#7389a5;font-size:9.6px;line-height:1.45;margin:8px 0 0}

.hero-visual{
  position:relative;
  min-height:630px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual::before{
  content:"";
  position:absolute;
  width:78%;
  height:60%;
  border-radius:50%;
  background:rgba(22,130,255,.24);
  filter:blur(90px);
}
.hero-visual>img{
  position:relative;
  z-index:2;
  width:100%;
  max-width:780px;
  border-radius:24px;
  filter:drop-shadow(0 35px 64px rgba(0,0,0,.4));
  animation:floatVisual 6.5s ease-in-out infinite;
}
@keyframes floatVisual{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

.trust-strip{position:relative;z-index:4;padding:0 0 35px}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border:1px solid var(--line);
  border-radius:13px;
  overflow:hidden;
  background:linear-gradient(180deg,#07172e,#051329);
  box-shadow:var(--shadow);
}
.trust-item{
  min-height:80px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:15px 18px;
  border-right:1px solid rgba(255,255,255,.07);
}
.trust-item:last-child{border-right:0}
.trust-item img{width:34px;height:34px}
.trust-item strong{display:block;font-size:14px}
.trust-item small{display:block;color:#8fa4bd;font-size:10.5px;margin-top:3px;line-height:1.3}

section.content{padding:58px 0}
.markets{background:linear-gradient(180deg,#020817,#031024)}
.market-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-top:28px;
}
.market-card{
  min-height:195px;
  padding:17px 15px;
  border:1px solid var(--line);
  border-radius:11px;
  background:linear-gradient(160deg,rgba(11,31,59,.96),rgba(5,18,39,.98));
  transition:.2s ease;
}
.market-card:hover{transform:translateY(-4px);border-color:var(--line-strong);box-shadow:0 18px 40px rgba(0,0,0,.24)}
.market-head{display:flex;align-items:center;gap:9px;margin-bottom:10px}
.market-head img{width:40px;height:40px}
.market-head h3{margin:0;font-size:17px}
.market-card>p{margin:0 0 14px;color:#94a9c2;font-size:11px;line-height:1.45}
.symbols{display:flex;gap:8px;flex-wrap:wrap}
.symbol{
  min-width:46px;
  padding:7px 7px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  border-radius:8px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(121,180,242,.13);
  color:#dcecff;
  font-size:9px;
  font-weight:850;
}
.symbol img{width:25px;height:25px}

.why{background:#020817}
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:24px}
.feature-card{
  min-height:135px;
  padding:17px;
  display:grid;
  grid-template-columns:45px 1fr;
  gap:12px;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(160deg,rgba(11,31,59,.96),rgba(5,18,39,.98));
}
.feature-card img{width:42px;height:42px}
.feature-card h3{margin:2px 0 7px;font-size:14px}
.feature-card p{margin:0;color:#96aac2;font-size:10.5px;line-height:1.45}

.dual-panels{background:linear-gradient(180deg,#020817,#031024)}
.dual-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.rich-panel{
  min-height:355px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:11px;
  background:linear-gradient(160deg,#081b36,#051329);
}
.education-panel{display:grid;grid-template-columns:1.05fr .95fr}
.education-copy{padding:22px}
.education-copy h2,.ai-copy h2{font-size:24px;margin:0 0 15px;letter-spacing:-.035em}
.education-list{display:grid;gap:15px}
.edu-item{display:grid;grid-template-columns:34px 1fr;gap:10px}
.edu-item img{width:32px;height:32px}
.edu-item strong{display:block;font-size:13px}
.edu-item small{display:block;color:#96aac2;font-size:10.5px;line-height:1.45;margin-top:3px}
.education-image{position:relative;min-height:355px}
.education-image img{width:100%;height:100%;object-fit:cover}
.ai-panel{position:relative;padding:22px}
.ai-panel>img{width:100%;margin-top:8px;border-radius:9px}
.ai-copy p{font-size:11px;color:#96aac2;margin:0;line-height:1.5}

.steps{background:#020817}
.step-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
.step-card{
  position:relative;
  min-height:118px;
  padding:18px 18px 18px 76px;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(160deg,#081b36,#051329);
}
.step-icon{
  position:absolute;left:17px;top:22px;
  width:43px;height:43px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid var(--cyan);
  color:#fff;font-weight:900;
}
.step-card h3{margin:0 0 7px;font-size:15px}
.step-card p{margin:0;color:#96aac2;font-size:11px;line-height:1.45}

.faq{background:linear-gradient(180deg,#020817,#031024)}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:22px}
details{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:7px;
  background:#06152d;
}
summary{cursor:pointer;font-size:12px;font-weight:800}
details p{margin:10px 0 0;color:#97abc3;line-height:1.5;font-size:11px}

.final-cta{padding:12px 0 34px;background:#031024}
.cta-box{
  position:relative;
  overflow:hidden;
  min-height:128px;
  padding:24px 28px 24px 190px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:24px;
  border:1px solid rgba(31,220,255,.25);
  border-radius:10px;
  background:
    radial-gradient(circle at 12% 50%,rgba(31,220,255,.28),transparent 30%),
    linear-gradient(135deg,#071c3a,#0b3f7a);
}
.cta-box::after{
  content:"";
  position:absolute;
  width:410px;height:410px;right:-120px;top:-180px;border-radius:50%;
  border:1px solid rgba(31,220,255,.22);
  box-shadow:0 0 0 38px rgba(31,220,255,.04),0 0 0 74px rgba(31,220,255,.025);
}
.cta-gift{
  position:absolute;left:25px;bottom:0;width:145px;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.25));
}
.cta-copy{position:relative;z-index:2}
.cta-copy small{color:#bceeff}
.cta-copy h2{margin:5px 0 5px;font-size:28px;letter-spacing:-.04em}
.cta-copy p{margin:0;color:#c6d8eb;font-size:12px}
.cta-box .btn{position:relative;z-index:2;min-width:240px}

.site-footer{padding:26px 0 82px;background:#020817;border-top:1px solid rgba(255,255,255,.06)}
.footer-grid{display:grid;grid-template-columns:1.2fr repeat(4,.8fr);gap:25px}
.site-footer .brand{font-size:21px}
.site-footer .brand img{width:31px;height:31px}
.footer-intro p,.footer-col a{color:#7f94ad;font-size:10.5px;line-height:1.5}
.footer-col h4{font-size:11px;margin:0 0 10px}
.footer-col a{display:block;margin-bottom:6px}
.disclaimer{
  margin:22px 0 0;
  padding-top:17px;
  border-top:1px solid rgba(255,255,255,.06);
  color:#657b96;
  font-size:9.6px;
  line-height:1.5;
}
.toast{
  position:fixed;z-index:999;left:50%;bottom:22px;
  transform:translate(-50%,120px);opacity:0;
  padding:13px 17px;border-radius:10px;
  color:#fff;background:#06152d;border:1px solid rgba(31,220,255,.35);
  box-shadow:var(--shadow);transition:.25s ease;
}
.toast.show{transform:translate(-50%,0);opacity:1}
.mobile-cta{display:none;position:fixed;left:12px;right:12px;bottom:12px;z-index:80}
.mobile-cta .btn{width:100%}
.reveal{opacity:1;transform:none}
.reveal.visible{opacity:1;transform:none}

@media(max-width:1060px){
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{max-width:700px}
  .hero-visual{min-height:auto}
  .hero-visual>img{max-width:760px}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item{border-bottom:1px solid rgba(255,255,255,.07)}
  .market-grid{grid-template-columns:repeat(2,1fr)}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .dual-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .container{width:min(100% - 24px,1180px)}
  .nav{height:64px}
  .nav-links,.site-header .btn{display:none}
  .mobile-menu{display:block}
  .brand{font-size:21px}
  .brand img{width:32px;height:32px}
  .hero{padding-top:30px}
  .hero-grid{display:flex;flex-direction:column;align-items:stretch;gap:18px}
  .hero-copy{order:1}
  .claim-form{order:2;width:100%;margin-top:18px}
  .hero-visual{order:3}
  .hero-copy h1{font-size:42px}
  .hero-copy h1 .amount{display:inline}
  .hero-benefits{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item{min-height:74px;padding:12px}
  section.content{padding:48px 0}
  .market-grid,.feature-grid,.step-grid,.faq-grid{grid-template-columns:1fr}
  .market-card{min-height:auto}
  .education-panel{grid-template-columns:1fr}
  .education-image{min-height:260px}
  .cta-box{padding:24px;grid-template-columns:1fr;text-align:center}
  .cta-gift{display:none}
  .cta-box .btn{min-width:0}
  .footer-grid{grid-template-columns:1fr}
  .mobile-cta{display:block}
}
@media(max-width:420px){
  .phone-row{grid-template-columns:1fr}
  .hero-copy h1{font-size:36px}
  .hero-benefits,.trust-grid{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
}

/* =========================================================
   French UX + readability + responsive refinement
   ========================================================= */

body{
  font-size:16px;
  line-height:1.58;
}

.nav{
  position:relative;
}
.nav-links{
  font-size:14px;
  gap:24px;
}
.site-header .btn{
  font-size:14px;
  padding-inline:18px;
}

/* Hero */
.eyebrow{
  font-size:12px;
}
.hero-copy>p{
  font-size:17px;
  line-height:1.68;
}
.hero-benefit{
  font-size:13px;
  line-height:1.35;
}
.claim-form{
  width:min(100%,405px);
  padding:22px;
}
.form-title h2{
  font-size:24px;
}
.claim-form>p{
  font-size:14px;
  line-height:1.6;
}
.field label{
  font-size:13px;
}
.field input,
.field select{
  height:50px;
  font-size:16px;
}
.claim-form .btn{
  min-height:52px;
  font-size:15px;
}
.security-note{
  font-size:12px;
  line-height:1.45;
}
.form-legal{
  font-size:11px;
  line-height:1.55;
}

/* Trust strip */
.trust-item strong{
  font-size:15px;
}
.trust-item small{
  font-size:12px;
  line-height:1.45;
}

/* Sections */
.section-copy{
  font-size:17px;
  line-height:1.7;
}
.market-card>p{
  font-size:14px;
  line-height:1.6;
}
.symbol{
  font-size:11.5px;
  min-width:54px;
  padding:8px 9px;
}
.feature-card h3{
  font-size:17px;
}
.feature-card p{
  font-size:14px;
  line-height:1.62;
}
.edu-item strong{
  font-size:15px;
}
.edu-item small{
  font-size:13.5px;
  line-height:1.58;
}
.ai-copy p{
  font-size:14px;
  line-height:1.62;
}
.step-card h3{
  font-size:17px;
}
.step-card p{
  font-size:14px;
  line-height:1.62;
}
summary{
  font-size:15px;
  line-height:1.45;
}
details p{
  font-size:14px;
  line-height:1.65;
}
.cta-copy p{
  font-size:14px;
  line-height:1.6;
}
.footer-intro p,
.footer-col a{
  font-size:12.5px;
  line-height:1.55;
}
.footer-col h4{
  font-size:13px;
}
.disclaimer{
  font-size:11px;
  line-height:1.62;
}

.market-note{
  max-width:620px;
  margin:24px auto 0;
  color:#b9d6f4;
  font-size:15px;
  line-height:1.5;
  font-weight:750;
  text-align:center;
}

/* French card lengths need more room on medium desktops */
@media(max-width:1180px){
  .market-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .trust-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .trust-item{
    border-bottom:1px solid rgba(255,255,255,.07);
  }
}

/* Collapse the French navigation earlier to prevent cramped labels */
@media(max-width:980px){
  .site-header .btn{
    display:none;
  }
  .mobile-menu{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    padding:0;
    border:1px solid rgba(121,180,242,.22);
    border-radius:10px;
    color:#fff;
    background:#07172e;
    cursor:pointer;
  }
  .nav-links{
    display:none;
    position:absolute;
    top:62px;
    left:0;
    right:0;
    z-index:100;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    border:1px solid rgba(121,180,242,.20);
    border-radius:12px;
    background:rgba(4,17,36,.98);
    box-shadow:0 20px 55px rgba(0,0,0,.36);
  }
  .nav-links.open{
    display:flex;
  }
  .nav-links a{
    padding:13px 14px;
    border-radius:9px;
    font-size:15px;
  }
  .nav-links a:hover{
    background:rgba(31,220,255,.07);
  }
  .hero-grid{
    grid-template-columns:1fr;
  }
  .hero-copy{
    max-width:720px;
  }
  .hero-visual{
    min-height:auto;
  }
  .hero-visual>img{
    max-width:780px;
  }
  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .dual-grid{
    grid-template-columns:1fr;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .container{
    width:min(100% - 24px,1180px);
  }
  .nav{
    height:64px;
  }
  .brand{
    font-size:21px;
  }
  .brand img{
    width:32px;
    height:32px;
  }

  .hero{
    padding-top:28px;
  }
  .hero-grid{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:22px;
  }
  .hero-copy{
    order:1;
  }
  .hero-visual{
    order:2;
  }
  .hero-copy h1{
    font-size:40px;
    line-height:1.04;
    letter-spacing:-.05em;
  }
  .hero-copy h1 .amount{
    display:inline;
  }
  .hero-copy>p{
    font-size:16.5px;
    line-height:1.65;
  }
  .hero-benefits{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }
  .hero-benefit{
    font-size:13px;
  }

  .claim-form{
    width:100%;
    margin-top:20px;
    padding:21px;
  }
  .form-title h2{
    font-size:23px;
  }
  .claim-form>p{
    font-size:14.5px;
  }
  .field label{
    font-size:13.5px;
  }
  .field input,
  .field select{
    min-height:54px;
    font-size:16px;
  }
  .claim-form .btn{
    min-height:56px;
    font-size:16px;
  }
  .security-note{
    font-size:12.5px;
  }
  .form-legal{
    font-size:11.5px;
  }

  .hero-visual{
    margin-top:4px;
  }

  .trust-grid{
    grid-template-columns:1fr 1fr;
  }
  .trust-item{
    min-height:80px;
    padding:13px 14px;
  }
  .trust-item strong{
    font-size:15.5px;
  }
  .trust-item small{
    font-size:12px;
  }

  section.content{
    padding:50px 0;
  }
  .section-title{
    font-size:32px;
    line-height:1.12;
  }
  .section-copy{
    font-size:16px;
    line-height:1.68;
  }

  .market-grid,
  .feature-grid,
  .step-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }
  .market-card{
    min-height:auto;
    padding:20px 18px;
  }
  .market-head h3{
    font-size:19px;
  }
  .market-card>p{
    font-size:15px;
  }
  .symbol{
    font-size:12px;
  }

  .feature-card{
    padding:20px;
  }
  .feature-card h3{
    font-size:18px;
  }
  .feature-card p{
    font-size:14.5px;
  }

  .education-panel{
    grid-template-columns:1fr;
  }
  .education-copy{
    padding:22px 20px;
  }
  .education-copy h2,
  .ai-copy h2{
    font-size:26px;
  }
  .edu-item strong{
    font-size:15.5px;
  }
  .edu-item small{
    font-size:14px;
  }
  .education-image{
    min-height:250px;
  }
  .ai-panel{
    padding:20px;
  }
  .ai-copy p{
    font-size:14.5px;
  }

  .step-card{
    min-height:auto;
    padding:22px 20px 22px 76px;
  }
  .step-card h3{
    font-size:18px;
  }
  .step-card p{
    font-size:14.5px;
  }

  details{
    padding:17px;
  }
  summary{
    font-size:15.5px;
  }
  details p{
    font-size:14.5px;
  }

  .cta-box{
    padding:26px 20px;
    grid-template-columns:1fr;
    text-align:center;
  }
  .cta-gift{
    display:none;
  }
  .cta-copy h2{
    font-size:29px;
    line-height:1.12;
  }
  .cta-copy p{
    font-size:15px;
  }
  .cta-box .btn{
    min-width:0;
    min-height:56px;
    font-size:16px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-intro p,
  .footer-col a{
    font-size:13px;
  }
  .disclaimer{
    font-size:11.5px;
  }

  .mobile-cta{
    display:block;
  }
  .mobile-cta .btn{
    min-height:56px;
    font-size:15px;
  }
  .toast{
    bottom:82px;
    width:min(calc(100% - 24px),520px);
    text-align:center;
  }
}

@media(max-width:480px){
  .container{
    width:min(100% - 20px,1180px);
  }
  .hero-copy h1{
    font-size:35px;
  }
  .hero-benefits{
    grid-template-columns:1fr;
  }
  .phone-row{
    grid-template-columns:1fr;
  }
  .trust-grid{
    grid-template-columns:1fr;
  }
  .market-note{
    font-size:14px;
  }
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation:none!important;
    transition:none!important;
  }
}
