:root{
    --navy:#11111f;
    --navy-2:#181933;
    --cyan:#59cbe8;
    --cyan-deep:#2f9fc4;
    --white:#ffffff;
    --offwhite:#f5f8fb;
    --ink:#14141f;
    --mist:#7c8494;
    --line: rgba(17,17,31,0.09);
    --line-dark: rgba(255,255,255,0.14);
    --radius: 26px;
    --maxw: 1180px;

    /* brand-mapped tokens (kept these names so the rest of the CSS below
       — written generically — automatically inherits brand colors) */
    --cream:#ffffff;
    --cream-2:#f2f9fc;
    --blush:#eaf7fc;
    --blush-deep:#bfe9f5;
    --terracotta:#59cbe8;
    --terracotta-deep:#2f9fc4;
    --espresso:#11111f;
    --espresso-2:#181933;
    --warm-line: rgba(17,17,31,0.08);
    --warm-line-dark: rgba(255,255,255,0.14);
    --warm-ink:#14141f;
    --warm-mist:#7c8494;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Barlow', sans-serif;
    color:var(--warm-ink);
    background:var(--cream);
    font-size:17px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}

  h1,h2,h3,h4{font-family:'Poppins', sans-serif; font-weight:700; line-height:1.12; letter-spacing:-0.01em;}
  .eyebrow{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    font-size:13px;
    color:var(--terracotta-deep);
  }
  .eyebrow.on-dark{color:var(--cyan-deep);}

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

  /* ---------- BUTTONS ---------- */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    font-family:'Poppins', sans-serif; font-weight:600; font-size:16px;
    padding:16px 30px; border-radius:100px; border:2px solid transparent;
    cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn:focus-visible{outline:3px solid var(--cyan); outline-offset:3px;}
  .btn-primary{
    background:var(--cyan); color:var(--navy);
    box-shadow:0 10px 24px -8px rgba(89,203,232,0.55);
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 28px -8px rgba(89,203,232,0.65);}
  .btn-outline{border-color:rgba(17,17,31,0.18); color:var(--navy); background:rgba(255,255,255,0.6);}
  .btn-outline:hover{background:var(--white); border-color:var(--navy);}
  .btn-block{width:100%;}

  /* ---------- ANNOUNCEMENT BAR ---------- */
  .announce{background:var(--terracotta-deep); color:var(--white);}
  .announce-inner{
    display:flex; align-items:center; justify-content:center; gap:28px; flex-wrap:wrap;
    padding:9px 28px; font-size:12.5px; font-weight:500; letter-spacing:.01em;
  }
  .announce-inner span{white-space:nowrap;}
  @media (max-width:700px){ .announce-inner{gap:14px; font-size:11.5px;} .announce-inner span:nth-child(3){display:none;} }

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{display:flex; align-items:center; height:72px;}
  .logo{display:flex; align-items:center; gap:10px; font-family:'Poppins',sans-serif; font-weight:700; font-size:20px; color:var(--navy); flex:0 0 auto;}
  .logo svg{width:26px; height:26px;}
  .logo-img{height:34px; width:auto; display:block;}
  .footer-brand .logo-img{height:32px;}
  @media (max-width:520px){ .logo-img{height:28px;} }
  .nav-center{flex:1; display:flex; align-items:center; justify-content:center; gap:24px; min-width:0;}
  .nav-links{display:flex; gap:32px; font-size:15px; color:var(--mist); font-weight:500;}
  .nav-links a:hover{color:var(--cyan-deep);}
  .nav-right{display:flex; align-items:center; gap:18px; flex:0 0 auto;}
  .nav-price{font-family:'Poppins',sans-serif; font-weight:600; color:var(--navy); font-size:15px;}
  .nav-price s{color:var(--mist); font-weight:400; margin-right:6px;}
  .lang-switch{display:flex; border:1px solid var(--line); border-radius:100px; overflow:hidden;}
  .lang-switch a{
  border:none; background:none; cursor:pointer;
  font-family:'Barlow Condensed',sans-serif; font-weight:600; letter-spacing:.06em;
  font-size:12.5px; padding:6px 11px; color:var(--mist); transition:all .15s ease;
  }
  .lang-switch a:hover{color:var(--navy);}
  .lang-switch a[aria-current="true"]{background:var(--navy); color:var(--white);}
  .lang-switch a:focus-visible{outline:2px solid var(--cyan-deep); outline-offset:-2px;}
  @media (max-width:520px){ .lang-switch a{padding:5px 9px; font-size:11.5px;} }
  @media (max-width:860px){ .nav-links{display:none;} }

  /* ---------- STARFIELD BG ---------- */
  .starfield{
    position:relative; overflow:hidden;
    background:linear-gradient(180deg, var(--blush) 0%, var(--white) 60%);
  }
  .starfield::before{
    content:''; position:absolute; inset:-15% -10% auto auto; width:55%; height:75%; pointer-events:none;
    background:radial-gradient(circle, var(--blush-deep), transparent 70%);
    opacity:.6; filter:blur(6px);
  }
  .starfield::after{
    content:''; position:absolute; inset:auto auto -20% -10%; width:45%; height:60%; pointer-events:none;
    background:radial-gradient(circle, var(--blush), transparent 70%);
    opacity:.5; filter:blur(6px);
  }

  /* ---------- HERO ---------- */
  .hero{padding:56px 0 90px; color:var(--navy); position:relative;}
  .hero-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; position:relative; z-index:2;}
  .sale-pill{
    display:inline-flex; align-items:center; gap:6px;
    background:var(--navy); color:var(--cyan);
    font-family:'Barlow Condensed', sans-serif; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    font-size:12.5px; padding:7px 16px; border-radius:100px; margin-bottom:16px;
  }
  .hero-copy h1{font-size:clamp(34px, 4.4vw, 54px); color:var(--navy); margin:16px 0 18px;}
  .hero-copy h1 em{font-style:normal; color:var(--cyan-deep);}
  .hero-sub{font-size:18px; color:var(--mist); max-width:520px; margin-bottom:30px;}
  .hero-rating{display:flex; align-items:center; gap:10px; margin-bottom:26px; font-size:14px; color:var(--mist);}
  .stars{color:var(--cyan-deep); letter-spacing:2px; font-size:16px;}
  .hero-cta-row{display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-bottom:26px;}
  .price-block{display:flex; align-items:baseline; gap:10px;}
  .price-now{font-family:'Poppins',sans-serif; font-weight:800; font-size:32px; color:var(--navy);}
  .price-was{font-size:18px; color:var(--mist); text-decoration:line-through;}
  .price-save{font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:13px; letter-spacing:.06em; text-transform:uppercase; background:rgba(47,159,196,0.12); color:var(--cyan-deep); padding:4px 10px; border-radius:100px;}
  .hero-trust{display:flex; gap:22px; flex-wrap:wrap; font-size:13.5px; color:var(--mist);}
  .hero-trust span{display:flex; align-items:center; gap:7px;}
  .hero-trust svg{width:16px; height:16px; color:var(--cyan-deep); flex-shrink:0;}

  .hero-media{position:relative;}
  .hero-media-card{
    background:var(--white);
    border:1px solid var(--line); border-radius:36px; padding:26px;
    box-shadow:0 40px 70px -30px rgba(17,17,31,0.22);
    position:relative;
  }
  .hero-media-card img{border-radius:26px; width:100%;}
  .hero-badge{
    position:absolute; top:-14px; right:-14px;
    background:var(--cyan); color:var(--navy); font-family:'Poppins',sans-serif; font-weight:700;
    font-size:13px; padding:12px 16px; border-radius:16px; box-shadow:0 12px 22px -8px rgba(0,0,0,0.4);
    line-height:1.25; text-align:center;
  }
  .hero-badge small{display:block; font-weight:500; font-size:10.5px; opacity:.8; letter-spacing:.04em;}

  /* Made in Italy seal — bottom-left of the hero card */
  .italy-badge{
    position:absolute; left:-16px; bottom:-16px; z-index:3;
    width:104px; height:104px; border-radius:50%;
    background:var(--white); border:1px solid var(--line);
    box-shadow:0 14px 28px -10px rgba(17,17,31,0.28);
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; overflow:hidden; padding:6px;
  }
  .italy-badge .flag{
    display:flex; width:34px; height:9px; border-radius:2px; overflow:hidden; margin-bottom:7px;
    border:1px solid rgba(17,17,31,0.16);
  }
  .italy-badge .flag i{flex:1;}
  .italy-badge .flag i:nth-child(1){background:#008C45;}
  .italy-badge .flag i:nth-child(2){background:#fff;}
  .italy-badge .flag i:nth-child(3){background:#CD212A;}
  .italy-badge .made{
    font-family:'Barlow Condensed',sans-serif; font-weight:600;
    font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--mist);
    line-height:1;
  }
  .italy-badge .country{
    font-family:'Poppins',sans-serif; font-weight:700;
    font-size:15px; letter-spacing:.01em; color:var(--navy); line-height:1.15; margin-top:3px;
  }
  @media (max-width:940px){
    .italy-badge{width:88px; height:88px; left:-8px; bottom:-8px;}
    .italy-badge .country{font-size:13px;}
    .italy-badge .flag{width:28px; height:7px; margin-bottom:5px;}
  }
  @media (max-width:420px){
    .italy-badge{width:74px; height:74px; left:-4px; bottom:-4px;}
    .italy-badge .country{font-size:11.5px;}
    .italy-badge .made{font-size:8.5px; letter-spacing:.1em;}
  }

  /* ---------- SOCIAL PROOF BAR ---------- */
  .proof-bar{background:var(--cream-2); border-bottom:1px solid var(--warm-line); padding:26px 0;}
  .proof-grid{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:22px;}
  .proof-item{display:flex; align-items:center; gap:12px;}
  .proof-item .num{font-family:'Poppins',sans-serif; font-weight:800; font-size:22px; color:var(--navy);}
  .proof-item .label{font-size:13px; color:var(--mist); line-height:1.3;}
  .proof-item svg{width:22px; height:22px; color:var(--cyan-deep); flex-shrink:0;}

  /* ---------- SECTION SHELL ---------- */
  section{padding:90px 0;}
  .section-head{max-width:640px; margin:0 auto 52px; text-align:center;}
  .section-head .eyebrow{display:block; margin-bottom:12px;}
  .section-head h2{font-size:clamp(28px,3.4vw,40px); margin-bottom:14px;}
  .section-head p{color:var(--warm-mist); font-size:17px;}
  .section-head.left{margin-left:0; text-align:left;}

  /* ---------- PROBLEM / AGITATION ---------- */
  .problem{background:var(--cream);}
  .problem-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;}
  .problem-copy h2{font-size:clamp(26px,3vw,36px); margin-bottom:18px;}
  .problem-copy p{color:var(--warm-mist); margin-bottom:22px; font-size:17px;}
  .problem-list{list-style:none; display:flex; flex-direction:column; gap:14px;}
  .problem-list li{display:flex; gap:12px; align-items:flex-start; font-size:15.5px; color:var(--warm-ink);}
  .problem-list svg{width:20px; height:20px; color:var(--terracotta-deep); flex-shrink:0; margin-top:2px;}
  .problem-img{border-radius:32px; overflow:hidden; border:1px solid var(--warm-line);}

  /* ---------- BENEFITS / CONSTELLATION ---------- */
  .benefits{background:var(--cream-2); position:relative;}
  .benefit-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:18px; position:relative;
  }
  .constellation-line{position:absolute; inset:0; z-index:0; pointer-events:none;}
  .benefit-card{
    position:relative; z-index:1;
    background:var(--white); border:1px solid var(--warm-line); border-radius:22px;
    padding:28px 22px; text-align:center; transition:transform .18s ease, box-shadow .18s ease;
  }
  .benefit-card:hover{transform:translateY(-5px); box-shadow:0 18px 30px -14px rgba(17,17,31,0.16);}
  .benefit-node{
    width:56px; height:56px; border-radius:50%; margin:0 auto 16px;
    background:radial-gradient(circle at 35% 30%, #bfe9f5, var(--terracotta) 60%, var(--terracotta-deep));
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 0 0 6px rgba(89,203,232,0.18);
  }
  .benefit-node svg{width:24px; height:24px; color:var(--white);}
  .benefit-card h3{font-size:15.5px; margin-bottom:8px; font-family:'Poppins',sans-serif;}
  .benefit-card p{font-size:13.5px; color:var(--warm-mist); line-height:1.5;}
  @media (max-width:980px){ .benefit-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .benefit-grid{grid-template-columns:1fr;} }

  /* ---------- POSITIONS INFOGRAPHIC ---------- */
  .positions{margin-top:56px;}
  .pos-group{
    background:var(--white); border:1px solid var(--warm-line); border-radius:24px;
    padding:26px 24px 22px; margin-bottom:18px;
  }
  .pos-group h3{
    font-family:'Barlow Condensed',sans-serif; font-weight:700;
    letter-spacing:.12em; text-transform:uppercase; font-size:15px;
    color:var(--cyan-deep); text-align:center; margin-bottom:20px;
  }
  .pos-row{
    display:grid; grid-template-columns:repeat(auto-fit, minmax(112px, 1fr));
    gap:18px 14px; justify-items:center; align-items:end;
  }
  .pos-item{width:100%; max-width:170px; text-align:center;}
  .pos-item .pos-fig{
    height:96px; display:flex; align-items:flex-end; justify-content:center;
  }
  .pos-item img{max-width:100%; max-height:96px; width:auto; height:auto; display:block;}
  .pos-item span{
    display:block; margin-top:10px;
    font-family:'Barlow Condensed',sans-serif; font-weight:600;
    font-size:12px; letter-spacing:.07em; text-transform:uppercase; color:var(--mist);
    line-height:1.25;
  }
  .pos-duo{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
  .pos-duo .pos-group{margin-bottom:0;}
  @media (max-width:860px){ .pos-duo{grid-template-columns:1fr; gap:18px;} .pos-duo .pos-group{margin-bottom:0;} }
  @media (max-width:520px){
    .pos-row{grid-template-columns:repeat(2,1fr);}
    .pos-item span{font-size:11px;}
    .pos-group{padding:20px 16px 18px; border-radius:20px;}
  }

  /* ---------- HOW IT WORKS ---------- */
  .how{background:var(--cream);}
  .how-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .how-step{position:relative;}
  .how-step .step-num{
    font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:13px; letter-spacing:.1em;
    color:var(--terracotta-deep); margin-bottom:10px; display:block;
  }
  .how-img{border-radius:22px; overflow:hidden; border:1px solid var(--warm-line); margin-bottom:16px; aspect-ratio:4/3;}
  .how-img img{width:100%; height:100%; object-fit:cover;}
  .how-step h3{font-size:16.5px; margin-bottom:6px;}
  .how-step p{font-size:14px; color:var(--warm-mist);}
  @media (max-width:940px){ .how-grid{grid-template-columns:repeat(2,1fr);} }

  /* ---------- USE-CASE GALLERY ---------- */
  .uses{background:var(--cream-2);}
  .uses-tabs{display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:36px;}
  .uses-tab{
    font-family:'Barlow Condensed',sans-serif; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
    font-size:13.5px; padding:10px 20px; border-radius:100px; border:1px solid var(--warm-line);
    background:var(--white); color:var(--warm-mist); cursor:pointer; transition:all .15s ease;
  }
  .uses-tab.active, .uses-tab:hover{background:var(--terracotta-deep); color:var(--white); border-color:var(--terracotta-deep);}
  .uses-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
  .use-card{border-radius:22px; overflow:hidden; position:relative; aspect-ratio:3/4; border:1px solid var(--warm-line);}
  .use-card img{width:100%; height:100%; object-fit:cover;}
  .use-card span{
    position:absolute; left:0; right:0; bottom:0; padding:14px 14px 12px;
    background:linear-gradient(to top, rgba(17,17,31,0.82), transparent);
    color:var(--white); font-family:'Poppins',sans-serif; font-weight:600; font-size:14px;
  }
  @media (max-width:900px){ .uses-grid{grid-template-columns:repeat(2,1fr);} }

  /* ---------- COMPARISON ---------- */
  .compare{background:var(--cream);}
  .compare-table{width:100%; border-collapse:separate; border-spacing:0; border-radius:22px; overflow:hidden; border:1px solid var(--warm-line);}
  .compare-table th, .compare-table td{padding:16px 20px; text-align:center; font-size:14.5px; border-bottom:1px solid var(--warm-line);}
  .compare-table th{font-family:'Poppins',sans-serif; font-size:14.5px; background:var(--cream-2);}
  .compare-table td:first-child, .compare-table th:first-child{text-align:left; font-weight:500;}
  .compare-table tr:last-child td{border-bottom:none;}
  .col-starvion{background:rgba(89,203,232,0.08);}
  th.col-starvion{background:var(--terracotta-deep); color:var(--white);}
  .yes{color:var(--terracotta-deep); font-weight:700;}
  .no{color:#c7cbd6;}

  /* ---------- TESTIMONIALS ---------- */
  .testimonials{background:var(--cream-2); color:var(--navy); position:relative; overflow:hidden;}
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; position:relative; z-index:1;}
  .testi-card{
    background:var(--white); border:1px solid var(--line); border-top:3px solid var(--cyan); border-radius:16px; padding:28px;
    box-shadow:0 16px 32px -22px rgba(17,17,31,0.18);
  }
  .testi-stars{color:var(--cyan-deep); letter-spacing:2px; margin-bottom:14px; font-size:15px;}
  .testi-card p{font-size:15px; color:var(--ink); margin-bottom:20px;}
  .testi-foot{display:flex; align-items:center; gap:12px;}
  .testi-avatar{
    width:38px; height:38px; border-radius:50%; background:var(--blush); color:var(--cyan-deep);
    display:flex; align-items:center; justify-content:center; font-family:'Poppins',sans-serif; font-weight:700; font-size:14px; flex-shrink:0;
  }
  .testi-name{font-family:'Poppins',sans-serif; font-weight:600; font-size:14px; color:var(--navy);}
  .testi-meta{font-size:12.5px; color:var(--mist);}
  @media (max-width:900px){ .testi-grid{grid-template-columns:1fr;} }

  /* ---------- SPECS ---------- */
  .specs{background:var(--cream-2);}
  .specs-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;}
  .specs-img{border-radius:32px; overflow:hidden; border:1px solid var(--warm-line);}
  .specs-list{border-top:1px solid var(--warm-line);}
  .spec-row{display:flex; justify-content:space-between; gap:20px; padding:16px 0; border-bottom:1px solid var(--warm-line); font-size:15px;}
  .spec-row dt{color:var(--warm-mist);}
  .spec-row dd{font-weight:600; text-align:right; font-family:'Poppins',sans-serif; font-size:14.5px;}

  /* ---------- GUARANTEE ---------- */
  .guarantee{background:linear-gradient(120deg, var(--blush), var(--blush-deep)); color:var(--terracotta-deep);}
  .guarantee-inner{display:flex; align-items:center; gap:28px; justify-content:center; text-align:center; flex-direction:column;}
  .guarantee-icon{width:64px; height:64px; border-radius:50%; background:var(--terracotta-deep); display:flex; align-items:center; justify-content:center;}
  .guarantee-icon svg{width:30px; height:30px; color:var(--white);}
  .guarantee h2{font-size:clamp(24px,3vw,32px); margin-bottom:10px;}
  .guarantee p{max-width:560px; font-size:16px; opacity:.85;}
  .trust-pills{display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:22px;}
  .trust-pill{
    display:flex; align-items:center; gap:8px;
    background:var(--white); color:var(--navy);
    font-family:'Poppins',sans-serif; font-weight:600; font-size:13.5px;
    padding:10px 18px; border-radius:100px; box-shadow:0 8px 18px -10px rgba(17,17,31,0.18);
  }
  .trust-pill svg{width:16px; height:16px; color:var(--cyan-deep); flex-shrink:0;}

  /* ---------- FAQ ---------- */
  .faq{background:var(--cream);}
  .faq-list{max-width:760px; margin:0 auto; border-top:1px solid var(--warm-line);}
  .faq-item{border-bottom:1px solid var(--warm-line);}
  .faq-q{
    width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
    background:none; border:none; text-align:left; padding:22px 4px; cursor:pointer;
    font-family:'Poppins',sans-serif; font-weight:600; font-size:16px; color:var(--warm-ink);
  }
  .faq-q:focus-visible{outline:2px solid var(--cyan-deep); outline-offset:4px;}
  .faq-icon{width:22px; height:22px; flex-shrink:0; position:relative;}
  .faq-icon::before, .faq-icon::after{
    content:''; position:absolute; background:var(--terracotta-deep); border-radius:2px; transition:transform .25s ease, opacity .25s ease;
  }
  .faq-icon::before{width:100%; height:2px; top:50%; left:0; transform:translateY(-50%);}
  .faq-icon::after{height:100%; width:2px; left:50%; top:0; transform:translateX(-50%);}
  .faq-item.open .faq-icon::after{opacity:0; transform:translateX(-50%) rotate(90deg);}
  .faq-item.open .faq-q{color:var(--terracotta-deep);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-a p{padding:0 4px 22px; color:var(--warm-mist); font-size:15px; max-width:660px;}

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    color:var(--white); position:relative; padding:100px 0;
    background:radial-gradient(120% 100% at 15% 0%, var(--espresso-2) 0%, var(--espresso) 60%);
  }
  .final-cta .eyebrow{color:var(--cyan);}
  .final-cta-inner{position:relative; z-index:2; text-align:center; max-width:600px; margin:0 auto;}
  .final-cta h2{font-size:clamp(28px,4vw,42px); color:var(--white); margin-bottom:16px;}
  .final-cta p{color:rgba(255,255,255,0.75); font-size:17px; margin-bottom:30px;}
  .timer{display:flex; gap:14px; justify-content:center; margin-bottom:30px;}
  .timer-box{background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.28); border-radius:16px; padding:12px 16px; min-width:68px;}
  .timer-box .t-num{font-family:'Poppins',sans-serif; font-weight:800; font-size:24px; color:var(--white); display:block;}
  .timer-box .t-label{font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,0.7);}
  .final-stock{font-size:13.5px; color:rgba(255,255,255,0.7); margin-top:18px;}

  /* ---------- FOOTER ---------- */
  footer{background:#0b0b16; color:rgba(255,255,255,0.6); padding:56px 0 26px; font-size:14px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; padding-bottom:36px; border-bottom:1px solid var(--line-dark);}
  .footer-brand .logo{margin-bottom:14px;}
  .footer-brand p{max-width:280px; color:var(--mist); font-size:14px;}
  .footer-col h4{font-family:'Poppins',sans-serif; color:var(--white); font-size:14.5px; margin-bottom:16px;}
  .footer-col ul{list-style:none; display:flex; flex-direction:column; gap:10px;}
  .footer-col a:hover{color:var(--cyan);}
  .footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:24px; flex-wrap:wrap; gap:14px; font-size:13px; color:var(--mist);}
  .payment-icons{display:flex; gap:8px;}
  .payment-icons span{border:1px solid var(--line-dark); border-radius:6px; padding:4px 9px; font-size:11px; font-family:'Poppins',sans-serif; font-weight:600;}
  @media (max-width:820px){ .footer-grid{grid-template-columns:1fr 1fr;} }

  /* ---------- STICKY MOBILE BAR ---------- */
  .sticky-bar{
    position:fixed; left:0; right:0; bottom:0; z-index:60;
    background:var(--navy); border-top:1px solid var(--line-dark);
    padding:12px 18px; display:none; align-items:center; justify-content:space-between; gap:16px;
  }
  .sticky-bar .price-now{font-size:18px;}
  @media (max-width:720px){ .sticky-bar{display:flex;} body{padding-bottom:78px;} }

  @media (max-width:940px){
    .hero-grid, .problem-grid, .specs-grid{grid-template-columns:1fr;}
    .how-grid{grid-template-columns:repeat(2,1fr);}
    .testi-grid{grid-template-columns:1fr;}
  }
  @media (max-width:640px){
    section{padding:64px 0;}
    .hero{padding:48px 0 64px;}
  }
  /* =========================================================
     WORDPRESS LAYOUT OVERRIDES
     Block themes wrap <main> content in .is-layout-constrained
     with its own max-width + side padding, which boxes the
     full-bleed sections and leaves gaps on mobile. These rules
     let each section span edge-to-edge; horizontal spacing is
     handled by .wrap inside every section instead.
     ========================================================= */
  html, body{max-width:100%; overflow-x:hidden;}

  /* Kill the theme.json content-width padding/margins on the
     main wrappers so sections go full-bleed. */
  main.wp-block-group,
  .wp-site-blocks > main,
  .wp-block-post-content{
    max-width:none !important;
    padding-left:0 !important;
    padding-right:0 !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  /* Constrained children (from post-content) still need to not
     add their own gutters to our sections. */
  .wp-block-post-content > .alignfull,
  .entry-content > .alignfull{margin-left:0; margin-right:0; max-width:none;}

  /* Our sections are already full width; guarantee it under WP. */
  header, footer,
  .announce, .hero, .proof-bar, .problem, .benefits, .positions,
  .how, .uses, .compare, .testimonials, .specs, .guarantee, .faq,
  .final-cta{
    width:100%;
    max-width:100%;
    margin-left:0;
    margin-right:0;
  }

  /* Tighten the inner gutter on small screens so content uses
     the full width instead of sitting in a narrow column. */
  @media (max-width:600px){
    .wrap{padding:0 18px;}
  }
  @media (max-width:380px){
    .wrap{padding:0 14px;}
  }
