/* ═══════════════════════════════════════════════════════════════
   Kore — korechatbot.com
   assets/css/style.css
   SDB srl · P.IVA IT04109840126
   Base: design originale Serena Dal Bosco
   Modifiche architettura: SDB / Andrea Testa
════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg:        #f5f4ef;
  --bg2:       #eeede6;
  --surface:   #ffffff;
  --border:    #e2e1d9;
  --border2:   #d4d3c9;
  --text:      #111110;
  --muted:     #6b6a63;
  --muted2:    #9e9d95;
  --green:     #a8d120;
  --green-dk:  #6a9a00;
  --green-bg:  rgba(168,209,32,.09);
  --green-bdr: rgba(168,209,32,.25);
  --ink:       #111110;
  --r:         14px;
  --sh:        0 2px 20px rgba(0,0,0,.06);
  --sh-lg:     0 12px 60px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.8; }
a  { text-decoration: none; }

.mono { font-family: 'DM Mono', monospace; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,3rem); }
.section { padding: clamp(5rem,9vw,8rem) 0; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all .22s;
  text-decoration: none;
}
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover  { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--ink); }
.btn-green:hover { background: #c0f020; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,209,32,.3); }

/* ── Nav ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 68px;
  background: rgba(245,244,239,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem,5vw,3.5rem);
}

/* Logo — Syne 800, o verde */
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}
.nav-logo .o { color: var(--green-dk); }
.nav-byline {
  font-family: 'DM Mono', monospace;
  font-size: .58rem; color: var(--muted2);
  letter-spacing: .5px; margin-left: 10px;
  font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: .87rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important; color: #fff !important;
  padding: 9px 22px; border-radius: 100px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dk) !important; color: #fff !important; }

/* Hamburger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(245,244,239,.97);
  backdrop-filter: blur(14px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile a.active { color: var(--green-dk); }
.nav-mobile .nav-cta-mobile {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--ink);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 100px;
}

/* ── Tag ──────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: .68rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green-dk);
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  padding: 5px 13px; border-radius: 100px; margin-bottom: 1.25rem;
}

/* ════════════════════════════════════════════
   HOME — HERO
════════════════════════════════════════════ */
.hero {
  padding: clamp(5rem,10vw,9rem) 0 clamp(4rem,7vw,6rem);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: -160px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168,209,32,.10) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

.hero-kicker {
  font-family: 'DM Mono', monospace; font-size: .7rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted2);
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem;
}
.hero-kicker::before { content: ''; width: 28px; height: 1.5px; background: var(--green); display:block; }

.hero h1 { margin-bottom: 1.5rem; max-width: 760px; }
.hero h1 em { font-style: italic; color: var(--green-dk); }
.hero h1 span { position: relative; display: inline-block; }
.hero h1 span::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: var(--green); border-radius: 2px;
}
.hero-sub { font-size: 1.15rem; max-width: 560px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center;
}

/* Proof strip */
.proof-strip {
  display: flex; gap: 3rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.proof-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--ink); line-height: 1;
}
.proof-lbl {
  font-family: 'DM Mono', monospace; font-size: .68rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted2); margin-top: 5px;
}

/* Chat visual */
.hero-visual { position: relative; }
.chat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; box-shadow: var(--sh-lg); overflow: hidden;
}
.chat-top {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
}
.chat-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-bg); border: 1.5px solid var(--green-bdr);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.chat-name { font-size: .85rem; font-weight: 600; }
.chat-online {
  font-size: .7rem; color: var(--muted2);
  display: flex; align-items: center; gap: 4px;
}
.chat-online::before { content:''; width:6px; height:6px; border-radius:50%; background:#22c55e; display:block; }
.chat-msgs { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.bbl {
  padding: 10px 13px; border-radius: 13px;
  font-size: .82rem; line-height: 1.55; max-width: 85%;
}
.bbl-bot { background: var(--bg2); color: var(--ink); border-bottom-left-radius: 3px; align-self: flex-start; }
.bbl-usr { background: var(--ink); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }
.chat-bar {
  padding: 10px 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.chat-fake-input {
  flex: 1; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 14px;
  font-size: .78rem; color: var(--muted2);
}
.chat-send-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chat-send-btn svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2; }
.badge-float {
  position: absolute; right: -18px; top: 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: var(--sh); font-size: .78rem; line-height: 1.4;
  animation: bfloat 3.5s ease-in-out infinite;
}
.badge-float strong { display: block; font-size: 1.15rem; color: var(--green-dk); font-family: 'Cormorant Garamond', serif; }
@keyframes bfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ── "Tu non devi fare nulla" ─────────── */
.nothing-section {
  background: var(--ink); color: #fff;
  padding: clamp(4rem,8vw,7rem) 0;
}
.nothing-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.nothing-section h2 { color: #fff; }
.nothing-section p  { color: rgba(255,255,255,.55); }
.nothing-section .tag { background: rgba(168,209,32,.12); border-color: rgba(168,209,32,.25); }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 2rem; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.8); }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(168,209,32,.15); border: 1px solid rgba(168,209,32,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0; margin-top: 2px; color: var(--green);
}
.checklist li span { color: rgba(255,255,255,.4); font-style: italic; font-size: .85rem; display: block; margin-top: 2px; }
.you-do-nothing {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 32px;
}
.you-do-nothing-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: #fff; margin-bottom: 20px; }
.ydn-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.ydn-item:last-child { border-bottom: none; }
.ydn-num {
  font-family: 'DM Mono', monospace; font-size: .7rem;
  color: var(--green); background: rgba(168,209,32,.1);
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ydn-item h4 { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.ydn-item p  { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

/* ── Process section ─────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
}
.process-step { text-align: center; padding: 0 8px; position: relative; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700;
  margin: 0 auto 16px; position: relative; z-index: 1; transition: all .2s;
}
.process-step:hover .process-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.process-step h3 { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: .78rem; }

/* ── For who ─────────────────────────── */
.forwhom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.forwhom-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; transition: box-shadow .2s, transform .2s;
}
.forwhom-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
/* Icona settore — box verde tenue con SVG */
.forwhom-icon {
  width: 48px; height: 48px;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--green-dk);
  flex-shrink: 0;
}
.forwhom-icon svg {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.forwhom-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.forwhom-card p { font-size: .875rem; }
.forwhom-examples { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.forwhom-tag {
  font-size: .7rem; font-family: 'DM Mono', monospace;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px; color: var(--muted);
}

/* ── Included grid ───────────────────── */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.included-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
}
.included-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dk);
}
.included-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.included-item h4 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.included-item p  { font-size: .82rem; }

/* ── Testimonials ────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
}
.testi-stars { color: var(--green); margin-bottom: 14px; letter-spacing: 2px; }
.testi-text  { font-size: .9rem; color: var(--ink); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; gap: 12px; align-items: center; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-bg); border: 1.5px solid var(--green-bdr);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; color: var(--green-dk);
  overflow: hidden; flex-shrink: 0;
}
.testi-av img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  display: block;
}
.testi-name { font-size: .875rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.testi-role {
  font-size: .75rem; color: var(--muted2); margin-top: 1px;
}
.testi-role a { color: var(--muted2); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.testi-role a:hover { color: var(--green-dk); }

/* ── CTA band ────────────────────────── */
.cta-band {
  background: var(--ink); border-radius: 22px;
  padding: clamp(3rem,6vw,5rem); text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: clamp(4rem,8vw,7rem);
}
.cta-band::before {
  content: '';
  position: absolute; top:-120px; right:-120px;
  width:480px; height:480px;
  background: radial-gradient(circle, rgba(168,209,32,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { color:#fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.5); margin-bottom: 2rem; }

/* ── FAQ ─────────────────────────────── */
.faq-wrap { max-width: 700px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-arr {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; flex-shrink: 0; transition: transform .25s, background .2s;
}
.faq-item.open .faq-arr { transform: rotate(180deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .88rem; color: var(--muted); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ════════════════════════════════════════════
   COME FUNZIONA
════════════════════════════════════════════ */
.how-hero { padding: clamp(4rem,8vw,6rem) 0 0; }
.how-hero p { max-width: 520px; margin: .75rem auto 0; font-size: 1.05rem; text-align: center; }
.how-hero .tag, .how-hero h2 { text-align: center; display: block; }
.how-hero h2 { display: block; }

.timeline { max-width: 760px; margin: 4rem auto 0; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; }
.tl-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tl-line { flex: 1; width: 1px; background: var(--border); margin-top: 8px; }
.tl-item:last-child .tl-line { display: none; }
.tl-content {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 24px;
}
.tl-you { font-family: 'DM Mono', monospace; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-dk); margin-bottom: 6px; }
.tl-content h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.tl-content p  { font-size: .875rem; }

.access-box {
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  border-radius: var(--r); padding: 28px; margin-top: 4rem;
  display: flex; gap: 20px; align-items: flex-start;
}
.access-icon { font-size: 2rem; flex-shrink: 0; }
.access-box h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--green-dk); }
.access-box p  { font-size: .875rem; color: var(--green-dk); opacity: .8; }

/* ════════════════════════════════════════════
   PREZZI
════════════════════════════════════════════ */
.pricing-hero { padding: clamp(4rem,8vw,6rem) 0 0; }
.pricing-hero p { font-size: 1.05rem; max-width: 520px; }
.pricing-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  border-radius: 100px; padding: 8px 18px;
  font-size: .82rem; color: var(--green-dk);
  font-family: 'DM Mono', monospace; margin-top: 1.5rem;
}

.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 0; align-items: start;
}
.plan {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 24px; position: relative;
  transition: box-shadow .2s, transform .2s;
}
.plan:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.plan.popular {
  background: var(--ink); color: #fff;
  border-color: var(--ink); transform: translateY(-6px);
}
.plan.popular:hover { transform: translateY(-10px); }
.plan-pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--ink);
  font-family: 'DM Mono', monospace; font-size: .65rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.plan-tier {
  font-family: 'DM Mono', monospace; font-size: .65rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 6px;
}
.plan.popular .plan-tier { color: rgba(255,255,255,.4); }
.plan h3 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.plan.popular h3 { color: #fff; }
.plan-price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1; color: var(--ink);
}
.plan.popular .plan-price-val { color: #fff; }
.plan-price-per { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 400; color: var(--muted2); margin-left: 2px; }
.plan.popular .plan-price-per { color: rgba(255,255,255,.4); }
.plan-msgs-badge {
  display: inline-block; margin-top: 10px;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  color: var(--green-dk); border-radius: 100px; padding: 3px 11px;
}
.plan.popular .plan-msgs-badge {
  background: rgba(168,209,32,.15); border-color: rgba(168,209,32,.3); color: var(--green);
}
.plan-div { height: 1px; background: var(--border); margin: 20px 0; }
.plan.popular .plan-div { background: rgba(255,255,255,.08); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-li { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--muted); }
.plan-li::before {
  content: '✓'; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  color: var(--green-dk); font-size: .65rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plan.popular .plan-li { color: rgba(255,255,255,.6); }
.plan.popular .plan-li::before { background: rgba(168,209,32,.15); border-color: rgba(168,209,32,.3); color: var(--green); }
.plan-cta { width: 100%; justify-content: center; display: flex; }
.plan.popular .btn { background: var(--green); color: var(--ink); border: none; }
.plan.popular .btn:hover { background: #c0f020; }

.extras-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px; margin-top: 3rem;
}
.extras-title { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.extras-sub   { font-size: .87rem; margin-bottom: 20px; }
.extras-row   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.extra-card {
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 18px; text-align: center; transition: border-color .2s, transform .2s;
}
.extra-card:hover { border-color: var(--green); transform: translateY(-2px); }
.extra-msgs  { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; }
.extra-price { font-family: 'DM Mono', monospace; font-size: .82rem; color: var(--green-dk); margin-top: 3px; }
.extra-note  { font-size: .75rem; color: var(--muted2); margin-top: 5px; }

/* ════════════════════════════════════════════
   CONTATTI
════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3.5rem; }
.contact-sidebar h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-sidebar p  { font-size: .9rem; margin-bottom: 2rem; }
.c-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.c-item:last-child { border-bottom: none; }
.c-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dk);
}
.c-ico svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.c-lbl { font-family: 'DM Mono', monospace; font-size: .68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted2); margin-bottom: 2px; }
.c-val { font-size: .9rem; font-weight: 500; }
.c-val a { color: var(--green-dk); text-decoration: none; transition: opacity .2s; }
.c-val a:hover { opacity: .75; }
.cform {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
}
.cform-title { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.fg { margin-bottom: 15px; }
.fg label { font-size: .8rem; font-weight: 600; display: block; margin-bottom: 6px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-family: 'DM Sans', sans-serif;
  font-size: .875rem; color: var(--ink); transition: border-color .2s; outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { display: none; }
.consent-block { margin: 12px 0 16px; }
.consent-line {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8rem; color: var(--muted); margin-bottom: 8px;
}
.consent-line input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--green-dk); }
.consent-line a { color: var(--green-dk); text-decoration: underline; }
.form-ok { display: none; text-align: center; padding: 24px 0; }
.form-ok-icon { font-size: 2.8rem; margin-bottom: 12px; }
.form-ok h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; margin-bottom: 8px; }
.form-ok p { font-size: .9rem; }
#form-error { display: none; margin-top: 10px; font-size: .82rem; color: #c0392b; font-family: 'DM Mono', monospace; }

/* ── Footer ──────────────────────────────── */
footer { background: var(--ink); padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.foot-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  letter-spacing: -1px; color: #fff; margin-bottom: 12px;
}
.foot-brand .o { color: var(--green); }
.foot-desc { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 230px; }
.foot-col h4 {
  font-family: 'DM Mono', monospace; font-size: .65rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: .84rem; color: rgba(255,255,255,.45); transition: color .2s; }
.foot-col a:hover { color: var(--green); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.foot-bottom p { font-size: .77rem; color: rgba(255,255,255,.3); }

/* ── Modal ───────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.5); align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--surface); border-radius: 18px; padding: 32px;
  max-width: 500px; width: 100%; max-height: 80vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.modal-box h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; margin-bottom: 12px; }
.modal-box p  { font-size: .85rem; line-height: 1.8; }
.modal-box a  { color: var(--green-dk); text-decoration: underline; }
.modal-close {
  display: block; margin-top: 20px;
  background: var(--ink); color: #fff; border: none; border-radius: 100px;
  padding: 10px 24px; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; cursor: pointer;
}
.modal-close:hover { background: var(--green-dk); }

/* ── Scroll reveal ───────────────────────── */
.rev { opacity:0; transform:translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rev.in { opacity:1; transform:none; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .nothing-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .plan.popular { transform: none; }
  .forwhom-grid, .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .extras-row { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .process-grid, .plans-grid { grid-template-columns: 1fr; }
  .proof-strip { flex-wrap: wrap; gap: 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { border-radius: 14px; }
}
