/* ============================================================
   SKY CLEAN — style.css
   Modifica qui per aggiornare tutto il sito in un colpo solo.
   ============================================================ */

/* ── VARIABILI — cambia qui colori e font ── */
:root {
  /* Sfondi */
  --bg:    #0a0c0f;
  --bg2:   #0f1217;
  --bg3:   #141820;

  /* Colore principale (celeste) */
  --gold:     #38bdf8;
  --gold2:    #7dd3fc;
  --gold-dim: rgba(56,189,248,0.12);

  /* Testo */
  --text:       #e8eaf0;
  --text-muted: #7a8396;

  /* Bordi e utility */
  --border: rgba(255,255,255,0.07);
  --radius: 4px;
  --wa:     #25D366;

  /* Font */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Texture noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9;
  opacity: .35;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  display: flex; align-items: center; gap: .75rem;
  background: var(--wa); color: #fff; text-decoration: none;
  padding: .75rem 1.25rem .75rem 1rem; border-radius: 50px;
  font-size: .875rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 48px rgba(37,211,102,.5); }
.wa-float svg  { flex-shrink: 0; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 8px 48px rgba(37,211,102,.65); }
}
@media(max-width:400px) { .wa-label { display: none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,12,15,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; color: #fff; text-decoration: none; }
.logo span { color: var(--gold); }
nav ul  { display: flex; gap: 2.5rem; list-style: none; }
nav a   { color: var(--text-muted); text-decoration: none; font-size: .85rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
nav a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: #fff !important; padding: .55rem 1.4rem; border-radius: var(--radius); font-weight: 500 !important; transition: background .2s, transform .15s !important; }
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }

/* ── HERO VIDEO BACKGROUND ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,12,15,0.85) 0%,
    rgba(10,12,15,0.6) 50%,
    rgba(10,12,15,0.3) 100%
  );
}

/* assicura che il contenuto hero stia sopra il video */
.hero-grid { position: relative; z-index: 1; }
.hero::after { z-index: 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 4rem 5rem;
  position: relative; overflow: clip;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%; min-width: 0;
}
.hero::after {
  content: ''; position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle,rgba(56,189,248,0.08) 0%,transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.zone-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.25);
  color: var(--gold); font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 100px;
  margin-bottom: 1.2rem; opacity: 0; animation: fadeUp .7s .05s forwards;
}
.zone-badge::before { content: '📍'; font-size: .8rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .7s .1s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.8rem,5vw,4.2rem);
  line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .7s .25s forwards;
}
h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); max-width: 480px;
  line-height: 1.75; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp .7s .4s forwards;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .55s forwards; }

/* ── PULSANTI ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #fff; font-weight: 500; font-size: .95rem;
  padding: .9rem 2rem; border-radius: var(--radius); text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(56,189,248,0.25); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--text); font-weight: 400; font-size: .95rem;
  padding: .9rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── DRONE VISUAL ── */
.hero-visual { display: flex; align-items: center; justify-content: center; opacity: 0; animation: fadeIn 1s .6s forwards; }
.drone-wrapper { position: relative; width: 420px; height: 420px; }
.solar-panel-grid { position: absolute; inset: 60px; display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(4,1fr); gap: 3px; border-radius: 8px; overflow: hidden; }
.cell       { background: #1a2a3a; border: 1px solid #1f3348; transition: background 1.5s; }
.cell.dirty { background: #1a1e22; border-color: #252525; }
.cell.clean { background: linear-gradient(135deg,#0d3b5e 0%,#1a5276 50%,#0d3b5e 100%); border-color: #1f5f8a; box-shadow: inset 0 0 12px rgba(30,130,200,.3); }
.drone-svg  { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); animation: droneFly 4s ease-in-out infinite; filter: drop-shadow(0 8px 20px rgba(56,189,248,0.4)); }
.spray-line { position: absolute; top: 80px; left: 50%; transform: translateX(-50%); width: 2px; background: linear-gradient(to bottom,rgba(100,200,255,.7),transparent); animation: spray 4s ease-in-out infinite; }
.ring  { position: absolute; border-radius: 50%; border: 1px solid; animation: pulse 3s ease-in-out infinite; }
.ring1 { width: 300px; height: 300px; top: 60px; left: 60px; border-color: rgba(56,189,248,0.1); }
.ring2 { width: 380px; height: 380px; top: 20px; left: 20px; border-color: rgba(56,189,248,0.05); animation-delay: .5s; }

@keyframes droneFly { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(12px); } }
@keyframes spray    { 0%,100% { height: 0; opacity: 0; } 30%,70% { height: 60px; opacity: 1; } }
@keyframes pulse    { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.02); } }

/* ── STATS BAR ── */
.stats-bar   { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 4rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-val    { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--gold); letter-spacing: -.03em; }
.stat-label  { font-size: .82rem; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; margin-top: .2rem; }

/* ── SECTIONS ── */
section { padding: 6rem 4rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }

h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem,3.5vw,2.8rem); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.5rem; }
h2 span { color: var(--gold); }

/* ── PROBLEMA ── */
.problem-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.loss-meter    { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.loss-row      { margin-bottom: 1.5rem; }
.loss-label    { display: flex; justify-content: space-between; margin-bottom: .5rem; font-size: .85rem; color: var(--text-muted); }
.loss-label strong { color: var(--text); }
.loss-bar-bg   { height: 8px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; }
.loss-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg,#0ea5e9 0%,#38bdf8 100%); width: 0; transition: width 1.5s cubic-bezier(.16,1,.3,1); }
.problem-text p        { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.problem-text p strong { color: var(--text); }

/* ── SERVIZI ── */
#servizi { background: var(--bg2); }
.services-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; margin-top: 3rem; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.service-card   { background: var(--bg); padding: 2.5rem; transition: background .3s; }
.service-card:hover { background: var(--bg3); }
.service-icon   { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; letter-spacing: -.01em; }
.service-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.service-tag    { display: inline-block; margin-top: 1.2rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(56,189,248,0.3); padding: .25rem .6rem; border-radius: 2px; }

/* ── TARGET ── */
.target-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 3rem; }
.target-card { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem; transition: border-color .3s, transform .2s; }
.target-card:hover { border-color: rgba(56,189,248,0.3); transform: translateY(-2px); }
.target-icon   { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; }
.target-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.target-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ── PERCHÉ NOI ── */
#perche { background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-num  { font-family: var(--font-mono); font-size: .72rem; color: var(--gold); background: var(--gold-dim); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; margin-top: .15rem; }
.why-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.why-item p  { font-size: .875rem; color: var(--text-muted); }
.cert-box    { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; }
.cert-box h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cert-item       { display: flex; align-items: center; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.cert-item:last-child { border-bottom: none; }
.cert-dot        { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── PREZZI ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3rem; }
.price-card   { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; transition: border-color .3s, transform .2s; position: relative; }
.price-card:hover  { border-color: rgba(56,189,248,0.3); transform: translateY(-3px); }
.price-card.featured { border-color: var(--gold); background: var(--bg3); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .8rem; border-radius: 100px; font-weight: 500; white-space: nowrap; }
.price-name   { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.price-val    { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .25rem; }
.price-val span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-desc   { font-size: .825rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.price-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--text-muted); }
.price-features li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: .8rem; margin-top: .1rem; }

/* ── FAQ ── */
#faq { background: var(--bg2); }
.faq-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.faq-item     { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(56,189,248,0.2); }
.faq-question { width: 100%; background: none; border: none; color: var(--text); font-family: var(--font-display); font-size: .95rem; font-weight: 700; text-align: left; padding: 1.25rem 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; line-height: 1.4; transition: color .2s; }
.faq-question:hover { color: var(--gold); }
.faq-icon     { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; font-family: monospace; color: var(--gold); transition: transform .3s, background .2s; }
.faq-item.open .faq-icon    { transform: rotate(45deg); background: var(--gold-dim); }
.faq-answer   { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-answer  { max-height: 400px; }
.faq-answer-inner { padding: 1rem 1.5rem 1.5rem; font-size: .875rem; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--border); }

/* ── CTA ── */
.cta-section { background: var(--bg); padding: 6rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(56,189,248,0.06) 0%,transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ── CONTATTI ── */
#contatti { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.cd-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); width: 80px; flex-shrink: 0; }
.contact-detail a { color: var(--text); text-decoration: none; transition: color .2s; }
.contact-detail a:hover { color: var(--gold); }
.contact-form  { display: flex; flex-direction: column; gap: 1rem; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group    { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea { background: var(--bg); border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: .9rem; font-weight: 300; padding: .75rem 1rem; border-radius: var(--radius); outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--gold); color: #fff; border: none; font-family: var(--font-body); font-size: .95rem; font-weight: 500; padding: .9rem 2rem; border-radius: var(--radius); cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; align-self: flex-start; }
.form-submit:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(56,189,248,0.3); }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2rem 4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer p { font-size: .8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
footer a { font-size: .8rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--gold); }

/* ── ANIMAZIONI ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js-ready .reveal.visible { opacity: 1; transform: none; }

/* ── PRIVACY PAGE ── */
.page-header       { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 3.5rem 4rem 2.5rem; }
.page-header-inner { max-width: 800px; margin: 0 auto; }
.page-label        { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.page-label::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); }
.page-meta { font-size: .82rem; color: var(--text-muted); font-family: var(--font-mono); }

.toc       { background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem 2rem; margin: 2.5rem 0; }
.toc h3    { font-family: var(--font-display); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }
.toc ol    { list-style: none; display: flex; flex-direction: column; gap: .4rem; counter-reset: toc; }
.toc li    { counter-increment: toc; display: flex; align-items: baseline; gap: .5rem; }
.toc li::before { content: counter(toc,decimal-leading-zero); font-family: var(--font-mono); font-size: .7rem; color: var(--gold); flex-shrink: 0; }
.toc a     { font-size: .875rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.toc a:hover { color: var(--gold); }

.priv-content  { max-width: 800px; margin: 0 auto; padding: 3rem 4rem 5rem; }
.section-block { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.section-block:last-child { border-bottom: none; }

h2 .sec-num { font-family: var(--font-mono); font-size: .75rem; color: var(--gold); background: rgba(56,189,248,0.1); padding: .2rem .5rem; border-radius: 3px; flex-shrink: 0; }
h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .6rem; color: var(--text); }
p  { color: var(--text-muted); margin-bottom: 1rem; font-size: .95rem; }
p strong { color: var(--text); }
ul, ol { color: var(--text-muted); font-size: .95rem; padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.highlight-box { background: var(--bg2); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.highlight-box p { margin: 0; font-size: .875rem; }

table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .875rem; }
th { background: var(--bg3); color: var(--text); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: .75rem 1rem; text-align: left; border: 1px solid var(--border); }
td { padding: .7rem 1rem; border: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
tr:nth-child(even) td { background: rgba(255,255,255,.02); }

.contact-block   { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem 2rem; margin-top: 1.5rem; }
.contact-block p { margin: .3rem 0; font-size: .9rem; }
.contact-block a { color: var(--gold); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

.cookie-pref    { background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem 2rem; margin-top: 1.5rem; }
.cookie-pref h3 { margin-top: 0; }
.cookie-pref p  { font-size: .875rem; margin-bottom: 1rem; }
.cookie-btn { display: inline-flex; align-items: center; gap: .5rem; background: transparent; border: 1px solid rgba(56,189,248,0.4); color: var(--gold); font-family: var(--font-body); font-size: .85rem; padding: .6rem 1.25rem; border-radius: var(--radius); cursor: pointer; transition: background .2s, border-color .2s; }
.cookie-btn:hover { background: rgba(56,189,248,0.1); }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .hero         { padding: 7rem 2rem 4rem; }
}
@media(max-width:900px) {
  nav           { padding: 1rem 1.5rem; }
  nav ul        { display: none; }
  section       { padding: 4rem 1.5rem; }
  .stats-bar    { padding: 2rem 1.5rem; }
  .stats-inner  { grid-template-columns: repeat(2,1fr); }
  .problem-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .target-grid,
  .faq-grid     { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  footer        { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
  .cta-section  { padding: 4rem 1.5rem; }
  .wa-float     { bottom: 1.2rem; right: 1.2rem; }
  .page-header  { padding: 2.5rem 1.25rem 2rem; }
  .priv-content { padding: 2rem 1.25rem 4rem; }
}
