/* ===========================================================
   GeoScaling.ai — Homepage styles
   Dark theme, mobile-first, responsive breakpoints at 640 / 960 / 1200
   =========================================================== */

:root{
  --bg: #05060a;
  --bg-alt: #0a0c14;
  --card: #10121c;
  --card-hover: #14172400;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);
  --text: #f8fafc;
  --text-soft: #b6bfd1;
  --text-muted: #7c8698;

  --purple: #8b5cf6;
  --indigo: #6366f1;
  --blue: #3b82f6;
  --green: #22c55e;
  --green-2: #10b981;
  --red: #f43f5e;
  --amber: #f59e0b;
  --pink: #ec4899;

  --grad: linear-gradient(135deg, #6366f1 0%, #a855f7 60%, #d946ef 100%);
  --grad-soft: linear-gradient(135deg, rgba(99,102,241,.15), rgba(168,85,247,.15));
  --grad-green: linear-gradient(135deg, #10b981, #22c55e);

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;

  --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px rgba(99,102,241,.25);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:inherit;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}
.container-narrow{max-width:820px;}

/* ---------- typography ---------- */
h1,h2,h3{font-weight:800;letter-spacing:-0.02em;margin:0;color:var(--text);}
h1{font-size:clamp(2rem,5vw,3.4rem);line-height:1.08;}
h2{font-size:clamp(1.7rem,4vw,2.6rem);line-height:1.15;}
h3{font-size:1.05rem;line-height:1.3;margin-bottom:8px;}
.lead{color:var(--text-soft);font-size:clamp(.95rem,1.6vw,1.1rem);max-width:720px;}
.gradient-text{
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 22px;border-radius:999px;font-weight:600;font-size:.95rem;
  border:1px solid transparent;cursor:pointer;white-space:nowrap;transition:transform .15s ease,opacity .15s ease;
}
.btn:hover{opacity:.92;transform:translateY(-1px);}
.btn-primary{background:var(--grad);color:#fff;box-shadow:0 8px 24px -8px rgba(139,92,246,.6);}
.btn-outline{background:transparent;border-color:var(--border-strong);color:var(--text);}
.btn-lg{padding:14px 26px;font-size:1rem;}
.btn-block{width:100%;}
.btn-nav{display:none;}
.btn[disabled]{cursor:default;opacity:.85;}

/* ---------- badges ---------- */
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 16px;border-radius:999px;font-size:.72rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:18px;
}
.badge-dot{background:rgba(99,102,241,.12);border:1px solid rgba(99,102,241,.35);color:#c4b5fd;}
.badge-dot .dot{width:7px;height:7px;border-radius:50%;background:var(--indigo);box-shadow:0 0 8px var(--indigo);}
.badge-solid{background:rgba(139,92,246,.12);border:1px solid rgba(139,92,246,.3);color:#c4b5fd;}
.badge-outline{background:rgba(255,255,255,.03);border:1px solid var(--border-strong);color:var(--text-soft);}
.badge-warning{background:rgba(244,63,94,.1);border:1px solid rgba(244,63,94,.3);color:#fda4af;}
.icon-sm{width:14px;height:14px;stroke:currentColor;stroke-width:2.2;fill:none;stroke-linecap:round;stroke-linejoin:round;}
.icon-sm.inline{display:inline-block;vertical-align:-2px;margin-right:4px;}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(5,6,10,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:72px;gap:24px;
}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:1.15rem;flex-shrink:0;}
.logo-word{white-space:nowrap;}
.accent-text{
  background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent;
}
.main-nav{display:none;align-items:center;gap:28px;font-size:.92rem;font-weight:500;color:var(--text-soft);}
.main-nav a:hover{color:var(--text);}

.nav-toggle{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:38px;height:38px;border:1px solid var(--border-strong);border-radius:8px;
  background:transparent;cursor:pointer;padding:0;flex-shrink:0;
}
.nav-toggle span{width:16px;height:2px;background:var(--text);margin:0 auto;transition:transform .2s ease,opacity .2s ease;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-menu{
  display:flex;flex-direction:column;gap:2px;
  max-height:0;overflow:hidden;
  background:var(--bg-alt);
  border-bottom:1px solid var(--border);
  transition:max-height .3s ease;
}
.mobile-menu.open{max-height:420px;}
.mobile-menu a{padding:14px 20px;border-bottom:1px solid var(--border);font-weight:500;color:var(--text-soft);}
.mobile-menu .btn{margin:14px 20px;}

/* ---------- hero ---------- */
.hero{padding:56px 0 40px;position:relative;}
.hero::before{
  content:"";position:absolute;inset:0;height:600px;
  background:radial-gradient(ellipse 900px 500px at 30% -10%, rgba(99,102,241,.18), transparent 60%);
  pointer-events:none;z-index:-1;
}
.hero-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;margin-bottom:44px;}
.hero-copy h1{margin-bottom:18px;}
.hero-features{display:flex;flex-direction:column;gap:12px;margin:24px 0;}
.hero-features li{display:flex;align-items:center;gap:10px;color:var(--text-soft);font-size:.95rem;font-weight:500;}
.hero-features .icon{width:19px;height:19px;stroke:var(--purple);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin:22px 0;}
.check-row{display:flex;flex-wrap:wrap;gap:10px 22px;margin-top:22px;}
.check-row li{display:flex;align-items:center;gap:7px;font-size:.85rem;color:var(--text-muted);}
.icon-check{width:16px;height:16px;stroke:var(--green);fill:none;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

.hero-visual{min-width:0;}
.hero-visual-label{
  display:flex;align-items:center;gap:8px;
  font-size:.85rem;color:var(--text-muted);margin-bottom:14px;
}
.icon-spark{width:16px;height:16px;stroke:var(--purple);fill:none;stroke-width:2;stroke-linecap:round;}
.chat-card{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
  padding:20px;box-shadow:var(--shadow-glow);
}
.chat-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;}
.chat-badge{
  display:inline-flex;align-items:center;gap:6px;padding:5px 12px;border-radius:8px;
  font-size:.8rem;font-weight:700;background:rgba(16,163,127,.15);color:#6ee7b7;
}
.chat-time{font-size:.78rem;color:var(--text-muted);}
.chat-bubble{padding:14px 16px;border-radius:12px;font-size:.88rem;line-height:1.5;margin-bottom:12px;}
.chat-bubble.user{background:rgba(255,255,255,.04);color:var(--text-soft);border:1px solid var(--border);}
.chat-bubble.ai{background:rgba(34,197,94,.07);border:1px solid rgba(34,197,94,.25);color:var(--text-soft);margin-bottom:0;}
.chat-bubble.ai strong{color:var(--text);}
.source-chip{
  display:inline-block;margin-top:12px;padding:5px 12px;border-radius:8px;
  background:rgba(34,197,94,.14);color:#4ade80;font-size:.78rem;font-weight:600;
}

.stats-row{
  display:grid;grid-template-columns:repeat(2,1fr);gap:16px;
  margin-top:36px;padding-top:28px;border-top:1px solid var(--border);
}
.stat{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius-sm);
  padding:20px 16px;text-align:center;
}
.stat-icon{
  width:38px;height:38px;border-radius:10px;margin:0 auto 10px;
  display:flex;align-items:center;justify-content:center;
}
.stat-icon svg{width:19px;height:19px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.stat-icon.purple{background:linear-gradient(135deg,#8b5cf6,#a855f7);}
.stat-icon.blue{background:linear-gradient(135deg,#3b82f6,#6366f1);}
.stat-icon.indigo{background:linear-gradient(135deg,#6366f1,#8b5cf6);}
.stat-icon.green{background:linear-gradient(135deg,#10b981,#22c55e);}
.stat-value{font-size:1.4rem;font-weight:800;margin-bottom:2px;}
.stat-label{font-size:.78rem;color:var(--text-muted);}
.fineprint{font-size:.76rem;color:var(--text-muted);margin-top:16px;}
.fineprint.center{text-align:center;margin-top:22px;}

/* ---------- generic sections ---------- */
.section{padding:64px 0;border-top:1px solid var(--border);}
.section-head{max-width:760px;margin:0 auto 40px;text-align:center;}
.section-head .lead{margin:16px auto 0;}
.section-head .badge{display:inline-flex;}
.section-head h2{margin-bottom:0;}

.grid{display:grid;gap:20px;}
.grid-3{grid-template-columns:1fr;}
.grid-4{grid-template-columns:1fr;}

.card{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
  padding:26px 22px;
}
.card-icon{
  width:44px;height:44px;border-radius:12px;margin-bottom:16px;
  display:flex;align-items:center;justify-content:center;
}
.card-icon svg{width:21px;height:21px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.card-icon.small{width:34px;height:34px;border-radius:9px;margin-bottom:0;}
.card-icon.small svg{width:16px;height:16px;}
.card-icon.red{background:rgba(244,63,94,.12);color:#fb7185;}
.card-icon.purple{background:rgba(139,92,246,.14);color:#a78bfa;}
.card-icon.blue{background:rgba(59,130,246,.14);color:#60a5fa;}
.card-icon.green{background:rgba(34,197,94,.14);color:#4ade80;}
.card-icon.indigo{background:rgba(99,102,241,.14);color:#818cf8;}
.card-icon.amber{background:rgba(245,158,11,.14);color:#fbbf24;}
.card-icon.pink{background:rgba(236,72,153,.14);color:#f472b6;}
.card-icon-number{
  font-size:1.5rem;font-weight:800;margin-bottom:14px;
  width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;
}
.card-icon-number.green{background:rgba(34,197,94,.14);color:#4ade80;}
.card-icon-number.blue{background:rgba(59,130,246,.14);color:#60a5fa;}
.card h3{margin-top:0;}
.card p{color:var(--text-soft);font-size:.9rem;margin:0 0 14px;}

.tag{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;border-radius:8px;font-size:.76rem;font-weight:700;
}
.tag svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;}
.tag-red{background:rgba(244,63,94,.1);color:#fb7185;}
.tag-purple{background:rgba(139,92,246,.12);color:#a78bfa;}
.tag-blue{background:rgba(59,130,246,.12);color:#60a5fa;}
.tag-green{background:rgba(34,197,94,.12);color:#4ade80;}

/* problem cards keep tag pinned bottom */
.problem-card{display:flex;flex-direction:column;}
.problem-card p{flex:1;}

/* ---------- banners ---------- */
.banner{
  display:flex;align-items:center;gap:20px;
  background:var(--card);border:1px solid var(--border-strong);border-radius:var(--radius);
  padding:26px 28px;margin-top:32px;
}
.banner-icon{
  width:52px;height:52px;border-radius:14px;flex-shrink:0;
  background:var(--grad-soft);border:1px solid rgba(139,92,246,.3);
  display:flex;align-items:center;justify-content:center;
}
.banner-icon svg{width:24px;height:24px;stroke:#c4b5fd;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.banner p{margin:0;font-size:1.05rem;font-weight:700;line-height:1.4;}

/* ---------- timeline (metodo) ---------- */
.timeline{position:relative;display:grid;grid-template-columns:1fr;gap:36px;}
.timeline-line{display:none;}
.timeline-step{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;}
.timeline-num{
  width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1.2rem;color:#fff;flex-shrink:0;z-index:1;
  border:3px solid var(--bg);box-shadow:0 0 0 2px currentColor;
}
.timeline-num.purple{background:linear-gradient(135deg,#8b5cf6,#a855f7);color:#a78bfa;}
.timeline-num.blue{background:linear-gradient(135deg,#3b82f6,#6366f1);color:#60a5fa;}
.timeline-num.green{background:linear-gradient(135deg,#10b981,#22c55e);color:#4ade80;}
.timeline-step .card{text-align:left;width:100%;}

.trust-strip{
  display:flex;flex-direction:column;gap:14px;align-items:center;
  margin-top:40px;padding:22px;border:1px solid var(--border);border-radius:var(--radius);
  background:rgba(34,197,94,.04);
}
.trust-strip span{display:flex;align-items:center;gap:8px;font-size:.9rem;font-weight:600;color:var(--text-soft);}
.icon-check-circle{width:18px;height:18px;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.icon-check-circle.green{stroke:var(--green);}

/* ---------- summary bar (cosa include) ---------- */
.summary-bar{
  display:grid;grid-template-columns:1fr;gap:16px;margin-top:32px;
  padding:24px;border:1px solid var(--border);border-radius:var(--radius);background:var(--card);
}
.summary-bar div{display:flex;flex-direction:column;gap:4px;text-align:center;}
.summary-bar strong{font-size:1rem;}
.summary-bar span{font-size:.82rem;color:var(--text-muted);}

/* ---------- compare (GEO vs SEO) ---------- */
.compare-grid{display:grid;grid-template-columns:1fr;gap:20px;}
.compare-card{border-radius:var(--radius);padding:26px;border:1px solid var(--border);background:var(--card);}
.compare-card h3{display:flex;align-items:center;gap:12px;font-size:1.15rem;margin-bottom:20px;}
.compare-icon{
  width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.compare-icon svg{width:16px;height:16px;stroke:#fff;fill:none;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round;}
.compare-icon.bad{background:var(--red);}
.compare-icon.good{background:var(--green);}
.compare-bad{border-color:rgba(244,63,94,.25);}
.compare-good{border-color:rgba(34,197,94,.25);}
.compare-card ul{display:flex;flex-direction:column;gap:14px;}
.compare-card li{display:flex;align-items:center;gap:12px;font-size:.92rem;color:var(--text-soft);padding:10px 0;border-top:1px solid var(--border);}
.compare-card li:first-child{border-top:none;}
.compare-dot{
  width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.85rem;flex-shrink:0;
}
.compare-dot svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.compare-dot.bad{background:rgba(244,63,94,.14);color:#fb7185;}
.compare-dot.good{background:rgba(34,197,94,.14);color:#4ade80;}

.banner-quote{justify-content:center;text-align:center;flex-direction:column;}
.banner-quote .banner-icon{margin-bottom:6px;}

/* ---------- guarantees / prezzi ---------- */
.guarantee-card{text-align:left;}
.guarantee-check{
  display:flex;align-items:center;gap:8px;font-size:.85rem;font-weight:600;color:#4ade80;
}

.access-box{
  margin-top:36px;padding:26px;border:1px solid var(--border);border-radius:var(--radius);background:var(--card);
}
.access-head{display:flex;gap:16px;align-items:flex-start;margin-bottom:24px;}
.access-head h3{margin-bottom:6px;}
.access-strong{color:var(--text);}
.access-head p{margin:0;color:var(--text-soft);font-size:.9rem;}
.access-steps{display:flex;flex-direction:column;gap:18px;align-items:stretch;}
.access-step{display:flex;gap:14px;align-items:flex-start;}
.access-num{
  width:30px;height:30px;border-radius:50%;background:var(--grad);color:#fff;font-weight:700;font-size:.85rem;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.access-step strong{display:block;margin-bottom:3px;font-size:.92rem;}
.access-step p{margin:0;color:var(--text-muted);font-size:.85rem;}
.access-arrow{display:none;color:var(--text-muted);font-size:1.2rem;align-self:center;}

.reviews-bar{
  display:flex;flex-direction:column;gap:20px;margin-top:24px;
  padding:22px 26px;border:1px solid var(--border);border-radius:var(--radius);
}
.reviews-text{display:flex;gap:14px;align-items:flex-start;}
.reviews-text p{margin:0;font-size:.9rem;color:var(--text-soft);}
.reviews-text strong{color:var(--text);}
.reviews-score{display:flex;align-items:center;gap:16px;}
.avatars{display:flex;}
.avatars span{
  width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#6366f1,#a855f7);
  border:2px solid var(--bg);margin-left:-8px;font-size:.7rem;color:#fff;display:flex;align-items:center;justify-content:center;
}
.avatars span:first-child{margin-left:0;}
.stars{color:#fbbf24;font-size:1rem;letter-spacing:2px;}
.stars span{display:block;color:var(--text-muted);font-size:.75rem;letter-spacing:normal;margin-top:2px;}

/* ---------- order / payment placeholder ---------- */
.section-order{background:linear-gradient(180deg, rgba(99,102,241,.05), transparent 30%);}
.order-form{
  max-width:640px;margin:0 auto;padding:30px 26px;
  background:var(--card);border:1px solid var(--border-strong);border-radius:var(--radius);
  box-shadow:var(--shadow-glow);
}
.order-grid{display:grid;grid-template-columns:1fr;gap:16px;}
.field{margin-bottom:16px;}
.field label{display:block;font-size:.72rem;font-weight:700;letter-spacing:.05em;color:var(--text-muted);margin-bottom:7px;}
.field input{
  width:100%;padding:12px 14px;border-radius:10px;border:1px solid var(--border-strong);
  background:rgba(255,255,255,.02);color:var(--text);font-size:.9rem;
}
.field input::placeholder{color:var(--text-muted);}
.field input[disabled]{opacity:.6;cursor:not-allowed;}
.field select{
  width:100%;padding:12px 14px;border-radius:10px;border:1px solid var(--border-strong);
  background:rgba(255,255,255,.02);color:var(--text);font-size:.9rem;
  appearance:none;-webkit-appearance:none;cursor:pointer;
  color-scheme:dark; /* rende scuro il menu a tendina nativo */
}
/* Opzioni del dropdown: sfondo/colore solidi (altrimenti popup bianco illeggibile) */
.field select option,.field select optgroup{
  background-color:var(--card);color:var(--text);
}
.field input:focus,.field select:focus{outline:none;border-color:var(--indigo);}
.field input:invalid:not(:placeholder-shown){border-color:#ef4444;}

.plan-option{
  display:flex;gap:14px;padding:18px;border-radius:12px;border:1px solid var(--border-strong);
  margin-bottom:14px;cursor:pointer;transition:border-color .15s,background .15s;
}
.plan-option input[type="radio"]{position:absolute;opacity:0;width:0;height:0;pointer-events:none;}
.plan-body{flex:1;min-width:0;}
.plan-selected{border-color:var(--indigo);background:rgba(99,102,241,.06);}
.radio-dot{
  width:18px;height:18px;border-radius:50%;border:2px solid var(--border-strong);margin-top:2px;flex-shrink:0;position:relative;
}
.plan-selected .radio-dot{border-color:var(--indigo);}
.plan-selected .radio-dot::after{
  content:"";position:absolute;inset:3px;border-radius:50%;background:var(--indigo);
}
.plan-title{font-weight:700;font-size:.95rem;margin-bottom:8px;display:flex;flex-wrap:wrap;align-items:center;gap:8px;}
.plan-list{display:flex;flex-direction:column;gap:6px;margin-bottom:6px;}
.plan-list li{display:flex;align-items:center;gap:8px;font-size:.85rem;color:var(--text-soft);}
.plan-note{margin:0;font-size:.8rem;color:var(--text-muted);}

.order-form .btn-block{margin-top:8px;}

.order-trust{
  display:grid;grid-template-columns:1fr;gap:16px;max-width:900px;margin:36px auto 0;
}
.order-trust > div{
  text-align:center;display:flex;flex-direction:column;align-items:center;gap:8px;
  padding:18px;border:1px solid var(--border);border-radius:var(--radius-sm);background:var(--card);
}
.order-trust strong{font-size:.88rem;}
.order-trust span{font-size:.78rem;color:var(--text-muted);}

/* ---------- FAQ accordion ---------- */
.accordion{display:flex;flex-direction:column;gap:12px;}
.accordion-item{border:1px solid var(--border);border-radius:12px;overflow:hidden;background:var(--card);}
.accordion-trigger{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 20px;background:transparent;border:none;color:var(--text);
  font-size:.95rem;font-weight:600;text-align:left;cursor:pointer;
}
.accordion-icon{
  width:26px;height:26px;border-radius:50%;border:1px solid var(--border-strong);
  display:flex;align-items:center;justify-content:center;color:var(--purple);flex-shrink:0;
  font-size:1.1rem;font-weight:400;transition:transform .2s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon{transform:rotate(45deg);}
.accordion-panel{max-height:0;overflow:hidden;transition:max-height .25s ease;}
.accordion-panel p{margin:0;padding:0 20px 20px;color:var(--text-soft);font-size:.9rem;line-height:1.6;}

/* ---------- footer ---------- */
.site-footer{border-top:1px solid var(--border);padding:36px 0;}
.footer-inner{display:flex;flex-direction:column;gap:20px;align-items:center;text-align:center;}
.footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;font-size:.88rem;color:var(--text-soft);}
.footer-copy{font-size:.8rem;color:var(--text-muted);margin:0;}

/* ===========================================================
   RESPONSIVE — TABLET (>=640px)
   =========================================================== */
@media (min-width:640px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .stats-row{grid-template-columns:repeat(4,1fr);}
  .compare-grid{grid-template-columns:1fr 1fr;}
  .order-grid{grid-template-columns:1fr 1fr;}
  .summary-bar{grid-template-columns:repeat(3,1fr);}
  .order-trust{grid-template-columns:repeat(2,1fr);}
  .trust-strip{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:28px;}
}

/* ===========================================================
   RESPONSIVE — DESKTOP (>=960px)
   =========================================================== */
@media (min-width:960px){
  .main-nav{display:flex;}
  .btn-nav{display:inline-flex;}
  .nav-toggle{display:none;}
  .mobile-menu{display:none;}

  .hero-grid{grid-template-columns:1.1fr .9fr;gap:56px;}
  .hero-copy h1{margin-bottom:20px;}

  .grid-4{grid-template-columns:repeat(4,1fr);}
  .grid-3{grid-template-columns:repeat(3,1fr);}

  .timeline{grid-template-columns:repeat(4,1fr);gap:24px;}
  .timeline-line{
    display:block;position:absolute;top:26px;left:12.5%;right:12.5%;height:2px;
    background:linear-gradient(90deg,#8b5cf6,#8b5cf6,#3b82f6,#22c55e);
  }

  .access-steps{flex-direction:row;align-items:flex-start;}
  .access-step{flex:1;flex-direction:column;text-align:left;}
  .access-arrow{display:block;margin-top:6px;}

  .reviews-bar{flex-direction:row;align-items:center;justify-content:space-between;}

  .order-trust{grid-template-columns:repeat(4,1fr);}
}

@media (min-width:1200px){
  .container{padding:0 32px;}
}

/* ---------- small-screen refinements ---------- */
@media (max-width:400px){
  .hero-cta{flex-direction:column;}
  .hero-cta .btn{width:100%;}
  .stats-row{grid-template-columns:1fr 1fr;}
}
