:root {
  --paper:   #FBF8F3;
  --paper-2: #FFFFFF;
  --ink:     #17130F;
  --ink-soft:#6B625A;
  --red:     #FF3C1F;
  --red-deep:#DE2E12;
  --line:    rgba(23,19,15,0.10);
  --c-pink:  #FCE4DC;
  --c-green: #E4EFDE;
  --c-yellow:#F8ECC9;
  --c-blue:  #E0E9F1;
  --char:    #1C1712;
  --font: 'Hanken Grotesk', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;
  --r: 22px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font); background: var(--paper); color: var(--ink); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--ink-soft); }
:focus-visible { outline: 2.5px solid var(--red); outline-offset: 3px; border-radius: 6px; }

nav { position: sticky; top: 0; z-index: 50; background: rgba(251,248,243,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 1.18rem; }
.brand .mark { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: none; }
.nav-mid { display: flex; gap: 34px; }
.nav-mid a { font-size: .95rem; font-weight: 600; color: #2b2620; opacity: .82; transition: opacity .15s; }
.nav-mid a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .95rem; border-radius: 999px; padding: 11px 22px; transition: transform .15s, background .15s, box-shadow .15s; cursor: pointer; border: 1.5px solid transparent; white-space: nowrap; }
.btn-ghost { border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(255,60,31,.28); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,60,31,.34); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

.hero { position: relative; overflow: hidden; padding: 92px 0 64px; text-align: center; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 46px 46px; background-position: center top; }
.hero::after { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 70% 62% at 50% 30%, transparent 55%, var(--paper) 100%); pointer-events:none; }
.hero-in { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: .82rem; font-weight: 600; color: #3b352e; margin-bottom: 26px; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.03; text-wrap: balance; }
h1 .hl { color: var(--red); }
.sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 620px; margin: 24px auto 0; text-wrap: balance; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-note { margin-top: 16px; font-size: .84rem; color: var(--ink-soft); }

.float { position: absolute; z-index: 1; width: 62px; height: 62px; border-radius: 16px; background: var(--paper-2); border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(23,19,15,.09); display: grid; place-items: center; animation: bob 6s ease-in-out infinite; }
.float svg { width: 30px; height: 30px; }
.f1 { top: 12%; left: 7%; animation-delay: 0s; } .f2 { top: 30%; left: 15%; animation-delay: .8s; }
.f3 { top: 62%; left: 9%; animation-delay: 1.6s; } .f4 { top: 14%; right: 8%; animation-delay: .4s; }
.f5 { top: 40%; right: 14%; animation-delay: 1.2s; } .f6 { top: 66%; right: 7%; animation-delay: 2s; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@media (prefers-reduced-motion: reduce) { .float { animation: none; } }
@media (max-width: 860px) { .float { display: none; } }

.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.stats-in { display: grid; grid-template-columns: repeat(3,1fr); }
.stat { padding: 34px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; }
.stat .l { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-top: 4px; font-weight: 600; }
@media (max-width: 720px) { .stats-in { grid-template-columns: 1fr; } .stat { border-right: none; border-bottom: 1px solid var(--line); } .stat:last-child { border-bottom: none; } }

section.blk { padding: 88px 0; }
.head { max-width: 640px; margin-bottom: 44px; }
.head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; text-wrap: balance; margin-top: 12px; }
.head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; max-width: 540px; }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card { border-radius: var(--r); padding: 34px; border: 1px solid rgba(23,19,15,.06); display: flex; flex-direction: column; min-height: 300px; }
.card.pink { background: var(--c-pink); } .card.green { background: var(--c-green); }
.card.yellow { background: var(--c-yellow); } .card.blue { background: var(--c-blue); }
.card h3 { font-size: 1.42rem; font-weight: 800; letter-spacing: -.02em; }
.card p { color: #4b433b; margin-top: 10px; font-size: 1rem; max-width: 40ch; }
.card .mini { margin-top: auto; }
.shot { background: var(--paper-2); border: 1px solid rgba(23,19,15,.08); border-radius: 14px; padding: 14px; box-shadow: 0 8px 22px rgba(23,19,15,.06); margin-top: 26px; }
.shot .row { display: flex; align-items: center; gap: 10px; padding: 8px 4px; border-bottom: 1px solid var(--line); }
.shot .row:last-child { border-bottom: none; }
.chip { font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.chip.ok { background: #E4EFDE; color: #2f6b31; } .chip.wait { background: #F8ECC9; color: #8a6d1e; } .chip.err { background: #FADAD3; color: #b23219; }
.plat { width: 22px; height: 22px; border-radius: 6px; flex: none; display:grid; place-items:center; }
.plat svg { width: 13px; height: 13px; }
.bar { height: 8px; border-radius: 6px; background: rgba(23,19,15,.1); flex: 1; }
.bar.sm { max-width: 120px; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: s; }
.step { padding: 30px; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper-2); position: relative; }
.step .num { counter-increment: s; font-size: .82rem; font-weight: 800; color: var(--red); letter-spacing: .1em; }
.step .num::before { content: "0" counter(s); }
.step h4 { font-size: 1.22rem; font-weight: 800; letter-spacing: -.02em; margin: 12px 0 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.prices { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper-2); padding: 32px; display: flex; flex-direction: column; }
.price.pop { border: 2px solid var(--red); box-shadow: 0 16px 40px rgba(255,60,31,.14); }
.price .tag { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--red); }
.price .name { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-top: 6px; }
.price .amt { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; margin: 14px 0 4px; }
.price .amt span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.price ul { list-style: none; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.price li { display: flex; gap: 10px; font-size: .96rem; color: #3b352e; }
.price li svg { flex: none; margin-top: 3px; }
.price .btn { justify-content: center; margin-top: auto; }
@media (max-width: 820px) { .prices { grid-template-columns: 1fr; } }

.band { background: var(--c-green); border-radius: 28px; padding: 60px 40px; text-align: center; }
.band h2 { font-size: clamp(1.8rem,4vw,2.7rem); font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }
.band p { color: #46503f; margin: 14px auto 28px; max-width: 480px; }

footer { background: var(--char); color: #E9E3DB; margin-top: 40px; }
.foot-in { padding: 64px 0 34px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
footer .brand { color: #fff; }
.foot-col h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: #9a9088; margin-bottom: 16px; font-weight: 700; }
.foot-col a { display: block; color: #cfc7bd; font-size: .95rem; padding: 6px 0; opacity: .85; }
.foot-col a:hover { opacity: 1; color: #fff; }
.foot-lede { color: #b7afa5; font-size: .95rem; max-width: 260px; margin-top: 16px; }
.foot-bot { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; font-size: .85rem; color: #9a9088; flex-wrap: wrap; gap: 10px; }
@media (max-width: 820px) { .foot-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .nav-mid { display: none; } }

/* Pagine legali (privacy / termini) */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; }
.legal h1 { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin: 12px 0 6px; }
.legal .updated { font-size: .85rem; color: var(--ink-soft); padding-bottom: 24px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.legal h2 { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; margin: 36px 0 10px; }
.legal p { color: #4b433b; margin-bottom: 14px; line-height: 1.7; }
.legal ul { padding-left: 1.2rem; margin-bottom: 14px; color: #4b433b; }
.legal li { margin-bottom: 6px; line-height: 1.7; }
.legal a { color: var(--red); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal .info-box { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 12px; padding: 16px 20px; margin: 18px 0; font-size: .92rem; color: #4b433b; }
