:root {
  --bg: #090d18;
  --bg-2: #0f1526;
  --surface: #121a2d;
  --surface-soft: #182238;
  --text: #f6f7fb;
  --muted: #a9b2c6;
  --line: rgba(255,255,255,.1);
  --accent: #d6ff3f;
  --accent-2: #94f5c7;
  --dark-text: #0c1220;
  --light-bg: #f4f6f9;
  --light-card: #ffffff;
  --light-muted: #667085;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.page-shell { overflow: hidden; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  border: 1px solid rgba(214,255,63,.42);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(145deg, rgba(214,255,63,.18), rgba(148,245,199,.04));
}
.brand-mark span { width: 3px; border-radius: 99px; background: var(--accent); }
.brand-mark span:nth-child(1) { height: 11px; }
.brand-mark span:nth-child(2) { height: 22px; }
.brand-mark span:nth-child(3) { height: 15px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: "Sora", sans-serif; font-size: .84rem; letter-spacing: .08em; }
.brand-copy small { color: var(--muted); font-size: .72rem; margin-top: 5px; }
.nav-links { display: flex; gap: 28px; color: #ccd3e1; font-size: .9rem; }
.nav-links a:hover { color: var(--accent); }

.section-pad { padding: 110px max(24px, calc((100vw - 1180px)/2)); }
.section-light { background: var(--light-bg); color: var(--dark-text); }
.section-accent {
  background:
    radial-gradient(circle at 15% 20%, rgba(214,255,63,.15), transparent 25%),
    radial-gradient(circle at 85% 70%, rgba(148,245,199,.12), transparent 28%),
    #0d1425;
}

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-top: 86px;
  background:
    radial-gradient(circle at 80% 15%, rgba(83,116,255,.16), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(214,255,63,.08), transparent 25%),
    var(--bg);
}
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #44602a; }
.eyebrow.light { color: var(--accent); }
.eyebrow.centered { justify-content: center; }
.hero h1, .section-heading h2, .deliverables-copy h2, .contact-copy h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.03;
  margin: 0;
}
.hero h1 { font-size: clamp(3.4rem, 6vw, 5.8rem); max-width: 760px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { color: #b8c0d1; font-size: 1.13rem; max-width: 660px; margin: 28px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #101609; box-shadow: 0 15px 38px rgba(214,255,63,.16); }
.button-primary:hover { box-shadow: 0 20px 44px rgba(214,255,63,.24); }
.button-outline { border: 1px solid rgba(255,255,255,.18); color: #f4f6fb; background: rgba(255,255,255,.03); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .86rem; }
.button-full { width: 100%; }
.text-link { color: #e6e9f0; font-weight: 700; }
.text-link span { color: var(--accent); margin-left: 5px; }
.trust-row { display: flex; gap: 38px; margin-top: 56px; }
.trust-row div { display: grid; }
.trust-row strong { font-family: "Sora", sans-serif; font-size: 1rem; color: #f7f8fb; }
.trust-row span { color: #7f8aa1; font-size: .78rem; margin-top: 4px; }

.hero-visual { position: relative; min-height: 590px; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 270px; height: 270px; background: rgba(214,255,63,.12); top: 40px; right: 30px; }
.orb-two { width: 220px; height: 220px; background: rgba(93,119,255,.13); bottom: 30px; left: 10px; }
.funnel-card {
  position: absolute;
  background: rgba(19,27,47,.91);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 22px;
}
.card-ad { width: 280px; left: 0; top: 20px; padding: 15px; transform: rotate(-4deg); }
.card-topline { display: flex; align-items: center; gap: 8px; color: #aeb7c9; font-size: .72rem; margin-bottom: 12px; }
.dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.ad-photo {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), transparent),
    linear-gradient(150deg, #314b3e, #18243b 60%, #172035);
}
.court-line { position: absolute; background: rgba(255,255,255,.63); }
.court-line-a { height: 2px; width: 120%; left: -10%; top: 54%; transform: rotate(-12deg); }
.court-line-b { width: 2px; height: 130%; top: -10%; left: 58%; transform: rotate(15deg); }
.ball { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); position: absolute; right: 38px; top: 48px; box-shadow: 0 12px 30px rgba(214,255,63,.3); }
.ad-copy { display: grid; gap: 2px; margin-top: 13px; }
.ad-copy strong { font-size: .95rem; }
.ad-copy span { color: #99a5bb; font-size: .78rem; }
.card-form { width: 245px; right: 8px; top: 150px; padding: 22px; }
.mini-label { color: var(--accent); font-size: .67rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 10px; }
.card-form > strong { display: block; margin-bottom: 16px; }
.field-line { height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; margin: 9px 0; }
.field-line.short { width: 72%; }
.mini-button { height: 40px; border-radius: 10px; background: var(--accent); color: #11150d; font-weight: 800; font-size: .68rem; display: grid; place-items: center; margin-top: 13px; }
.card-chat { width: 300px; left: 100px; bottom: 0; padding: 18px; transform: rotate(3deg); }
.chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.08); }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-2); color: #0d1914; display: grid; place-items: center; font-weight: 800; }
.chat-head div { display: grid; line-height: 1.2; }
.chat-head small { color: #7f8aa1; }
.bubble { max-width: 86%; padding: 11px 13px; border-radius: 14px; font-size: .75rem; line-height: 1.4; margin-top: 13px; }
.bubble-in { background: #202b42; }
.bubble-out { background: rgba(214,255,63,.13); margin-left: auto; }
.connector { position: absolute; z-index: 10; color: var(--accent); font-size: 1.8rem; font-weight: 800; }
.connector-one { top: 110px; left: 282px; transform: rotate(-9deg); }
.connector-two { top: 345px; right: 120px; transform: rotate(72deg); }

.section-heading { max-width: 850px; margin-bottom: 54px; }
.section-heading.narrow { max-width: 760px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .deliverables-copy h2, .contact-copy h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); }
.section-heading p, .deliverables-copy p, .contact-copy p { font-size: 1.05rem; color: var(--light-muted); margin-top: 22px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card { background: var(--light-card); border-radius: var(--radius); padding: 32px; box-shadow: 0 18px 50px rgba(16,24,40,.06); border: 1px solid #eaecf0; }
.problem-number { color: #70883a; font-weight: 800; font-size: .74rem; letter-spacing: .12em; }
.problem-card h3 { margin: 42px 0 10px; font-size: 1.2rem; }
.problem-card p { margin: 0; color: var(--light-muted); }

.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-icon { width: 54px; height: 54px; border-radius: 16px; background: rgba(214,255,63,.1); color: var(--accent); display: grid; place-items: center; font-weight: 800; }
.step h3 { margin: 0 0 8px; font-size: 1.3rem; }
.step p { margin: 0; color: var(--muted); max-width: 780px; }

.deliverables { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.deliverables-copy p { color: #abb5c8; max-width: 520px; }
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.deliverable { min-height: 72px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.035); }
.deliverable span { color: var(--accent); font-weight: 900; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-card { background: #fff; border-radius: var(--radius); padding: 34px; border: 1px solid #eaecf0; }
.fit-card.positive { box-shadow: inset 0 4px 0 #aacb30; }
.fit-card.neutral { box-shadow: inset 0 4px 0 #98a2b3; }
.fit-card h3 { margin-top: 0; }
.fit-card ul { padding-left: 20px; color: var(--light-muted); }
.fit-card li + li { margin-top: 12px; }

.pricing-card { max-width: 820px; margin: 0 auto; background: linear-gradient(145deg, #141d31, #0f1627); border: 1px solid rgba(255,255,255,.13); border-radius: 30px; padding: 38px; box-shadow: var(--shadow); position: relative; }
.pricing-badge { display: inline-flex; background: var(--accent); color: #0e1409; font-size: .72rem; font-weight: 900; letter-spacing: .11em; border-radius: 999px; padding: 9px 14px; }
.pricing-main { display: flex; justify-content: space-between; gap: 30px; align-items: end; padding: 36px 0 28px; }
.pricing-label { color: var(--accent); font-weight: 800; }
.pricing-main h3 { margin: 7px 0 8px; font-size: 1.8rem; }
.pricing-main p { color: var(--muted); max-width: 470px; margin: 0; }
.price { display: grid; justify-items: end; }
.old-price { color: #7d879a; text-decoration: line-through; }
.price strong { font-family: "Sora", sans-serif; font-size: 4.3rem; line-height: .95; }
.price small { color: #8993a5; }
.payment-split { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.payment-split div:not(.split-line) { display: grid; justify-items: center; }
.payment-split strong { font-size: 1.35rem; }
.payment-split span { color: #8993a5; font-size: .8rem; }
.split-line { width: 1px; height: 45px; background: var(--line); }
.pricing-note { color: #98a3b7; font-size: .84rem; line-height: 1.6; margin: 24px 0; }

.faq-list { max-width: 900px; }
details { border-top: 1px solid #d9dee8; padding: 22px 0; }
details:last-child { border-bottom: 1px solid #d9dee8; }
summary { cursor: pointer; font-weight: 800; list-style: none; position: relative; padding-right: 42px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: -3px; font-size: 1.5rem; color: #6d803c; }
details[open] summary::after { content: "−"; }
details p { color: var(--light-muted); max-width: 780px; margin-bottom: 0; }

.contact { background: linear-gradient(180deg, #0c1220, #080c15); }
.contact-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; background: #121a2b; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; padding: 52px; box-shadow: var(--shadow); }
.contact-copy p { color: #aab3c6; }
.lead-form { background: #f8f9fb; color: var(--dark-text); border-radius: 24px; padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.lead-form label { display: grid; gap: 7px; font-size: .8rem; font-weight: 800; color: #344054; }
.full-width { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #d0d5dd; border-radius: 12px; padding: 13px 14px; background: #fff; color: #101828; outline: none; }
input:focus, select:focus, textarea:focus { border-color: #8ba52e; box-shadow: 0 0 0 4px rgba(139,165,46,.12); }
textarea { resize: vertical; }
.privacy-check { display: flex !important; grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; margin: 18px 0; font-weight: 600 !important; line-height: 1.45; }
.privacy-check input { width: 17px; height: 17px; margin-top: 2px; }
.form-note { color: #667085; font-size: .72rem; text-align: center; margin: 11px 0 0; }
.form-status { min-height: 24px; font-size: .82rem; margin-top: 8px; text-align: center; }
.form-status.error { color: #b42318; }
.form-status.success { color: #39741f; }

.site-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 35px 0 48px; display: flex; justify-content: space-between; gap: 24px; color: #8791a5; font-size: .8rem; border-top: 1px solid var(--line); }
.site-footer > div:first-child { display: grid; gap: 3px; }
.site-footer strong { color: #f1f3f7; }
.footer-legal { max-width: 640px; display: grid; gap: 7px; }
.footer-legal .footer-company { color: #6f7a90; font-size: .74rem; line-height: 1.55; }
.footer-legal a { color: #8791a5; }
.footer-legal a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 22px; align-items: flex-start; }
.footer-links a:hover { color: var(--accent); }

/* Accessibilità: focus visibile da tastiera */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
.section-light :focus-visible,
.section-accent :focus-visible { outline-color: #8ba52e; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--accent); color: var(--dark-text);
  padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: .85rem;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

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

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 560px; max-width: 620px; width: 100%; margin: 0 auto; }
  .deliverables, .contact-card { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { width: min(100% - 28px, 1180px); min-height: 74px; }
  .site-header > .button { display: none; }
  .brand-copy small { display: none; }
  .section-pad { padding: 82px 20px; }
  .hero { padding-top: 66px; gap: 46px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .text-link { text-align: center; }
  .trust-row { gap: 18px; flex-wrap: wrap; }
  .trust-row div { flex: 1 1 130px; }
  .hero-visual { min-height: 620px; transform: scale(.92); transform-origin: top center; margin-bottom: -50px; }
  .card-ad { width: 245px; }
  .card-form { width: 215px; top: 220px; right: -10px; }
  .card-chat { left: 12px; width: 270px; }
  .connector-one { left: 240px; }
  .connector-two { right: 70px; top: 400px; }
  .deliverables-grid, .fit-grid, .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .pricing-card, .contact-card { padding: 26px; }
  .pricing-main { flex-direction: column; align-items: flex-start; }
  .price { justify-items: start; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 460px) {
  .hero-visual { transform: scale(.82); margin-left: -7%; width: 114%; min-height: 560px; }
  .trust-row { display: grid; grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 14px; }
  .step-icon { width: 48px; height: 48px; }
  .payment-split { grid-template-columns: 1fr; gap: 14px; }
  .split-line { width: 80px; height: 1px; }
}
