/* ============================================================
   MarcoMaps — VERSIONE D "Notte"
   Hero blu notte con tipografia enorme e pin fluttuanti,
   griglia bento con il Giappone in evidenza, banda turchese.
   Flat, morbido, forte. Palette Flat UI "defo".
   ============================================================ */

:root {
  --turquoise: #1abc9c; --green-sea: #16a085;
  --emerald: #2ecc71;   --nephritis: #27ae60;
  --river: #3498db;     --belize: #2980b9;
  --amethyst: #9b59b6;  --wisteria: #8e44ad;
  --asphalt: #34495e;   --midnight: #2c3e50;
  --sunflower: #f1c40f; --orange: #f39c12;
  --carrot: #e67e22;    --pumpkin: #d35400;
  --alizarin: #e74c3c;  --pomegranate: #c0392b;
  --clouds: #ecf0f1;    --silver: #bdc3c7;
  --concrete: #95a5a6;  --asbestos: #7f8c8d;

  --ink: var(--midnight);
  --night: #22313f;
  --radius: 30px;
  --shadow: 0 12px 34px rgba(44, 62, 80, .12);
  --shadow-big: 0 28px 70px rgba(44, 62, 80, .2);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Sora", "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 18px; line-height: 1.6; color: var(--ink);
  background: #fff; overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--belize); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Header scuro (stesso colore dell'hero) con logo bianco ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(34, 49, 63, .96); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding-top: 12px; padding-bottom: 12px;
}

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.45rem; font-weight: 800; letter-spacing: -.5px; text-decoration: none; color: #fff; white-space: nowrap;
}
.logo .mark { width: 40px; height: 37px; color: #fff; flex-shrink: 0; }
.logo em { font-style: normal; color: var(--turquoise); }

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; color: rgba(255, 255, 255, .82); font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: var(--sunflower); }

.badge-free {
  background: var(--sunflower); color: var(--midnight); font-weight: 800; font-size: .8rem;
  letter-spacing: .5px; padding: 7px 16px; border-radius: 999px; text-transform: uppercase; white-space: nowrap;
}

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; min-width: 46px; flex-shrink: 0; height: 44px; padding: 0 10px;
  background: rgba(255, 255, 255, .12); border: none; border-radius: 12px; cursor: pointer;
}
.hamburger span { display: block; height: 3px; border-radius: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--midnight); box-shadow: 0 18px 30px rgba(0, 0, 0, .35); border-radius: 0 0 22px 22px; overflow: hidden;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 16px 24px; text-decoration: none; color: #fff; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.mobile-menu a:active { background: rgba(255, 255, 255, .06); }
.mobile-menu .menu-label { padding: 14px 24px 6px; font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--concrete); }

/* ---------- Bottoni ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 34px; border-radius: 18px; border: none; font-family: inherit;
  font-size: 1.05rem; font-weight: 700; text-decoration: none; cursor: pointer; color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-yellow { background: var(--sunflower); color: var(--midnight); box-shadow: 0 14px 34px rgba(241, 196, 15, .35); }
.btn-yellow:hover { background: #f5cf3a; }
.btn-red { background: var(--alizarin); box-shadow: 0 12px 28px rgba(231, 76, 60, .35); }
.btn-red:hover { background: var(--pomegranate); }
.btn-orange { background: var(--orange); box-shadow: 0 12px 28px rgba(243, 156, 18, .35); }
.btn-orange:hover { background: var(--carrot); }
.btn-blue { background: var(--river); box-shadow: 0 12px 28px rgba(52, 152, 219, .35); }
.btn-blue:hover { background: var(--belize); }
.btn-turquoise { background: var(--turquoise); box-shadow: 0 12px 28px rgba(26, 188, 156, .35); }
.btn-turquoise:hover { background: var(--green-sea); }
.btn-midnight { background: var(--midnight); box-shadow: 0 12px 28px rgba(44, 62, 80, .3); }
.btn-midnight:hover { background: var(--night); }
.btn-outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35); }
.btn-outline-light:hover { box-shadow: inset 0 0 0 2px #fff; background: rgba(255, 255, 255, .06); }

.btn-big { padding: 21px 44px; font-size: 1.2rem; }

/* ---------- Hero notte ---------- */

.hero {
  position: relative; background: var(--night); color: #fff;
  padding: 64px 0 120px; overflow: hidden;
}

/* griglia: testo a sinistra, visual a destra */
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.04fr 1fr; gap: 40px; align-items: center;
}

.hero .btn-big { padding: 17px 26px; font-size: 1.02rem; }

/* griglia di punti flat (texture leggera, niente sfumature) */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.hero-inner { position: relative; text-align: left; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: .88rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  background: rgba(255, 255, 255, .1); padding: 9px 20px; border-radius: 999px; margin-bottom: 30px;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(46, 204, 113, .25); }

h1 {
  font-size: clamp(2.5rem, 4.3vw, 3.9rem); line-height: 1.02; letter-spacing: -2px;
  font-weight: 800; margin-bottom: 24px; color: #fff;
}

.word-turquoise { color: var(--turquoise); }
.word-yellow { color: var(--sunflower); }
.word-red { color: var(--alizarin); }
.word-blue { color: var(--river); }
.word-purple { color: var(--amethyst); }
.word-orange { color: var(--orange); }

.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(255, 255, 255, .8); max-width: 540px; margin: 0 0 32px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; font-weight: 700; color: rgba(255, 255, 255, .7); font-size: .92rem; }
.trust-row span::before { content: "✓ "; color: var(--turquoise); font-weight: 800; }

/* Visual del prodotto: finestra browser + telefono (colonna destra) */
.hero-visual {
  position: relative; z-index: 3; padding: 10px 26px 44px 0;
}

.browser {
  position: relative; border-radius: 20px; overflow: hidden; background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .06);
  transform: rotate(1.5deg);
}
.browser .bar {
  height: 44px; background: #f4f6f8; display: flex; align-items: center; gap: 8px; padding: 0 16px;
  border-bottom: 1px solid #e3e7ea;
}
.browser .bar i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.browser .bar i:nth-child(1) { background: #ff5f57; }
.browser .bar i:nth-child(2) { background: #febc2e; }
.browser .bar i:nth-child(3) { background: #28c840; }
.browser .bar .url {
  margin-left: 14px; flex: 1; max-width: 420px; height: 26px; border-radius: 8px; background: #fff;
  border: 1px solid #e3e7ea; font-size: .78rem; font-weight: 600; color: var(--asbestos);
  display: flex; align-items: center; padding: 0 12px; gap: 6px;
}
.browser > img { width: 100%; height: auto; display: block; aspect-ratio: 2560 / 1500; object-fit: cover; object-position: 30% 0; }

.phone {
  position: absolute; right: -26px; bottom: -44px; width: 31%; max-width: 190px;
  border-radius: 30px; background: var(--night); padding: 7px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  transform: rotate(-6deg);
}
.phone img { width: 100%; height: auto; border-radius: 26px; display: block; aspect-ratio: 860 / 1864; object-fit: cover; }
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 16px; border-radius: 10px; background: var(--night); z-index: 2;
}

/* etichette a lato del visual (decorative, non cliccabili) */
.visual-tag {
  position: absolute; z-index: 4; pointer-events: none;
  background: #fff; color: var(--midnight); border-radius: 999px; padding: 9px 14px;
  font-weight: 800; font-size: .85rem; white-space: nowrap; box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}
.visual-tag.v1 { left: -30px; top: 34%; transform: rotate(-4deg); }
.visual-tag.v2 { left: -14px; bottom: 6%; transform: rotate(3deg); }
.visual-tag em { font-style: normal; color: var(--turquoise); }


/* Onda morbida di chiusura */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

.after-hero { padding-top: 84px; }

/* ---------- Sezioni ---------- */

section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: -1.5px; font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--asphalt); font-size: 1.15rem; }
.section-alt { background: var(--clouds); }

.hl { position: relative; display: inline-block; }
.hl::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 12px; background: var(--sunflower); z-index: -1; border-radius: 6px; }

/* ---------- Bento destinazioni ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.tile {
  position: relative; border-radius: var(--radius); overflow: hidden; color: #fff;
  box-shadow: var(--shadow); min-height: 300px; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease; text-decoration: none;
}
.tile:hover { transform: translateY(-8px); box-shadow: var(--shadow-big); }

/* la foto sta SOPRA il pannello e resta tutta visibile: cresce per riempire
   lo spazio che avanza, il pannello del testo si prende quello che gli serve */
.tile img { position: relative; width: 100%; flex: 1 1 0; min-height: 150px; object-fit: cover; display: block; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.06); }

/* banda a colore pieno (flat) invece di sfumature */
.tile .panel { position: relative; flex: none; padding: 24px 26px 26px; }
.tile-red .panel { background: var(--alizarin); }
.tile-orange .panel { background: var(--orange); }
.tile-blue .panel { background: var(--river); }

.tile .flag { position: absolute; top: 18px; left: 18px; font-size: 1.6rem; background: #fff; border-radius: 12px; padding: 4px 10px; box-shadow: var(--shadow); }
.tile .kicker { font-size: .78rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; opacity: .9; display: block; margin-bottom: 6px; }
.tile h3 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.8px; line-height: 1.05; margin-bottom: 8px; }
.tile p { font-size: .98rem; opacity: .95; margin-bottom: 16px; }
.tile .actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.tile .btn { padding: 13px 22px; font-size: .98rem; background: #fff; }
.tile-red .btn { color: var(--alizarin); }
.tile-orange .btn { color: var(--carrot); }
.tile-blue .btn { color: var(--belize); }
.tile .btn:hover { background: var(--clouds); }
.tile .link-more { color: #fff; font-weight: 700; font-size: .92rem; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255, 255, 255, .5); }
.tile .soon { font-size: .82rem; font-weight: 700; opacity: .85; }

.tile-feature { grid-column: span 2; grid-row: span 2; min-height: 560px; }
.tile-feature h3 { font-size: 2.6rem; }
.tile-feature .panel { padding: 30px 32px 32px; }
.tile-feature p { max-width: 520px; font-size: 1.05rem; }

/* ---------- Cosa trovi in ogni mappa ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.feature {
  background: #fff; border-radius: 24px; padding: 30px 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease;
}
.feature:hover { transform: translateY(-5px); }
.feature .ico {
  width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 6px;
}
.feature:nth-child(6n+1) .ico { background: rgba(231, 76, 60, .14); }
.feature:nth-child(6n+2) .ico { background: rgba(26, 188, 156, .16); }
.feature:nth-child(6n+3) .ico { background: rgba(243, 156, 18, .16); }
.feature:nth-child(6n+4) .ico { background: rgba(155, 89, 182, .14); }
.feature:nth-child(6n+5) .ico { background: rgba(52, 152, 219, .14); }
.feature:nth-child(6n+6) .ico { background: rgba(46, 204, 113, .16); }
.feature h3 { font-size: 1.2rem; font-weight: 800; }
.feature p { color: var(--asphalt); font-size: .98rem; }

/* ---------- Non la solita lista (confronto) ---------- */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }

.compare-col { border-radius: var(--radius); padding: 34px 32px; }
.compare-col.bad { background: #fff; box-shadow: var(--shadow); }
.compare-col.good { background: var(--midnight); color: #fff; box-shadow: var(--shadow-big); }

.compare-col .head { font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.compare-col.bad .head { color: var(--concrete); }
.compare-col.good .head { color: var(--turquoise); }
.compare-col h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 20px; }

.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; line-height: 1.45; }
.compare-col li .ic {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; margin-top: 2px;
}
.compare-col.bad li { color: var(--asphalt); }
.compare-col.bad li .ic { background: rgba(231, 76, 60, .14); color: var(--alizarin); }
.compare-col.good li .ic { background: var(--turquoise); color: #fff; }
.compare-col.good .btn { margin-top: 26px; }

/* ---------- FAQ ---------- */

.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: #fff; border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 14px; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 22px 60px 22px 26px; font-weight: 800; font-size: 1.1rem; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%; background: var(--clouds); color: var(--midnight);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800;
}
.faq details[open] summary::after { content: "–"; background: var(--turquoise); color: #fff; }
.faq .answer { padding: 0 26px 24px; color: var(--asphalt); }

/* ---------- Dentro la mappa: righe funzione + telefono ---------- */

.showcase { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; padding: 34px 0; }
.showcase + .showcase { border-top: 1px solid rgba(44, 62, 80, .08); }
.showcase.flip .showcase-media { order: -1; }

.showcase .kicker { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-sea); margin-bottom: 10px; }
.showcase h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.8px; line-height: 1.12; margin-bottom: 14px; }
.showcase p { color: var(--asphalt); font-size: 1.05rem; margin-bottom: 14px; }
.showcase p:last-child { margin-bottom: 0; }

.showcase-media { display: flex; justify-content: center; }
.phone-solo {
  width: 270px; border-radius: 34px; background: var(--night); padding: 8px;
  box-shadow: 0 30px 70px rgba(44, 62, 80, .28); transform: rotate(-3deg); position: relative;
}
.phone-solo img { width: 100%; height: auto; border-radius: 26px; display: block; aspect-ratio: 860 / 1864; object-fit: cover; }
.phone-solo::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 34%; height: 16px; border-radius: 10px; background: var(--night); z-index: 2; }
.showcase.flip .phone-solo { transform: rotate(3deg); }

/* legenda categorie con i colori veri della mappa */
.cat-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 6px 0 16px; }
.cat-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .98rem; }
.cat-list .dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(44, 62, 80, .06); }
.cat-list .n { color: var(--concrete); font-weight: 600; font-size: .85rem; margin-left: auto; }

/* pillole voto e veg */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #fff; box-shadow: 0 4px 14px rgba(44, 62, 80, .08); font-weight: 800; font-size: .88rem; color: var(--midnight); }
.pill.star { color: #b8860b; }
.pill.top { background: var(--sunflower); color: var(--midnight); }
.pill.veg { color: #1D9E75; }
.pill.gf { color: #b8860b; }

/* "e poi": griglia di funzioni minori */
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.mini {
  background: #fff; border-radius: 20px; padding: 22px 20px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 6px;
}
.mini .ico { font-size: 1.5rem; }
.mini h4 { font-size: 1.02rem; font-weight: 800; }
.mini p { color: var(--asphalt); font-size: .9rem; }

/* ============================================================
   BLOCCHI LANDING PAESE (giappone/, thailandia/, ...)
   ============================================================ */

/* eyebrow con bandiera nell'hero paese */
.eyebrow .flag-big { font-size: 1.15rem; line-height: 1; }

/* strip numeri sotto l'hero */
.stats-strip { position: relative; z-index: 4; margin: -54px auto 0; max-width: var(--container); padding: 0 24px; }
.stats-strip .inner {
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-big);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; overflow: hidden;
}
.stats-strip .s { padding: 22px 18px; text-align: center; border-right: 1px solid var(--clouds); }
.stats-strip .s:last-child { border-right: none; }
.stats-strip .n { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.stats-strip .l { font-size: .82rem; font-weight: 700; color: var(--asbestos); }
.stats-strip .s:nth-child(1) .n { color: var(--alizarin); }
.stats-strip .s:nth-child(2) .n { color: #2E6FAF; }
.stats-strip .s:nth-child(3) .n { color: #1D9E75; }
.stats-strip .s:nth-child(4) .n { color: var(--orange); }
.stats-strip .s:nth-child(5) .n { color: var(--amethyst); }

/* griglia zone: card con foto, conteggio e link diretto alla mappa */
.zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zone {
  position: relative; display: block; border-radius: 22px; overflow: hidden; text-decoration: none; color: #fff;
  min-height: 190px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.zone:hover { transform: translateY(-6px); box-shadow: var(--shadow-big); }
.zone img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.zone:hover img { transform: scale(1.06); }
.zone .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34, 49, 63, 0) 35%, rgba(34, 49, 63, .88) 100%); }
.zone .txt { position: absolute; left: 18px; right: 18px; bottom: 16px; }
.zone h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.4px; margin-bottom: 2px; }
.zone .n { font-size: .85rem; font-weight: 700; opacity: .9; }
.zone .go { position: absolute; top: 14px; right: 14px; background: #fff; color: var(--midnight); font-size: .78rem; font-weight: 800; padding: 6px 10px; border-radius: 999px; box-shadow: var(--shadow); }
.zone.big { grid-column: span 2; min-height: 260px; }
.zone.big h3 { font-size: 1.7rem; }
.zone.big .n { font-size: .95rem; }

/* i posti imperdibili */
.picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pick {
  background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.pick:hover { transform: translateY(-6px); box-shadow: var(--shadow-big); }
.pick .ph { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pick .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pick:hover .ph img { transform: scale(1.06); }
.pick .badge { position: absolute; top: 12px; left: 12px; background: var(--sunflower); color: var(--midnight); font-size: .78rem; font-weight: 800; padding: 6px 10px; border-radius: 999px; }
.pick .cat { position: absolute; bottom: 12px; left: 12px; color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 9px; border-radius: 8px; }
.pick .body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pick h3 { font-size: 1.12rem; font-weight: 800; letter-spacing: -.3px; }
.pick .where { font-size: .82rem; font-weight: 700; color: var(--concrete); }
.pick p { color: var(--asphalt); font-size: .95rem; flex: 1; }
.pick .open { font-size: .88rem; font-weight: 800; color: var(--green-sea); margin-top: 6px; }

/* CTA finale */
.final-cta {
  background: var(--night); color: #fff; border-radius: var(--radius); text-align: center; padding: 72px 40px;
  position: relative; overflow: hidden;
}
.final-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .09) 1.5px, transparent 1.5px); background-size: 28px 28px; pointer-events: none; }
.final-cta > * { position: relative; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, .8); font-size: 1.15rem; max-width: 620px; margin: 0 auto 30px; }
.final-cta .note { display: block; margin-top: 16px; font-weight: 700; color: rgba(255, 255, 255, .7); font-size: .95rem; }

/* barra CTA sticky in basso (compare quando l'hero esce dallo schermo) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: rgba(34, 49, 63, .97); backdrop-filter: blur(10px); color: #fff; padding: 12px 20px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  transform: translateY(120%); transition: transform .3s ease; box-shadow: 0 -8px 30px rgba(0, 0, 0, .3);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .label { font-weight: 700; font-size: 1rem; }
.sticky-cta .label small { display: block; font-weight: 600; color: var(--turquoise); font-size: .8rem; }
.sticky-cta .btn { padding: 12px 26px; font-size: 1rem; }

@media (max-width: 960px) {
  .stats-strip .inner { grid-template-columns: repeat(3, 1fr); }
  .stats-strip .s:nth-child(3n) { border-right: none; }
  .stats-strip .s:nth-child(n+4) { border-top: 1px solid var(--clouds); }
  .zones, .picks { grid-template-columns: 1fr 1fr; }
  .zone.big { grid-column: span 2; }
  .zone { min-height: 170px; }
}
@media (max-width: 640px) {
  .stats-strip { margin-top: -30px; padding: 0 16px; }
  .stats-strip .inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .s { padding: 16px 10px; border-right: none; }
  .stats-strip .s:nth-child(odd) { border-right: 1px solid var(--clouds); }
  .stats-strip .s:nth-child(n+3) { border-top: 1px solid var(--clouds); }
  .stats-strip .n { font-size: 1.5rem; }
  .zones, .picks { grid-template-columns: 1fr; }
  .zone.big { grid-column: span 1; min-height: 220px; }
  .final-cta { padding: 52px 24px; }
  .sticky-cta { gap: 12px; padding: 10px 14px; }
  .sticky-cta .label { font-size: .9rem; }
  .sticky-cta .btn { padding: 12px 18px; font-size: .95rem; white-space: nowrap; }
}

/* ---------- Come funziona ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step { background: #fff; border-radius: var(--radius); padding: 40px 30px 36px; box-shadow: var(--shadow); text-align: left; }
.step .num { font-size: 3.6rem; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 14px; }
.step:nth-child(1) .num { color: var(--turquoise); }
.step:nth-child(2) .num { color: var(--orange); }
.step:nth-child(3) .num { color: var(--amethyst); }
.step h3 { font-size: 1.35rem; margin-bottom: 8px; font-weight: 800; }
.step p { color: var(--asphalt); font-size: 1rem; }

/* ---------- Chi sono ---------- */

.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }

.about .photo-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-big);
}
.about .photo-frame img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about .photo-frame .caption {
  position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: 16px; padding: 10px 16px;
  font-weight: 800; font-size: .95rem; color: var(--midnight); box-shadow: var(--shadow);
}
.about-text h2 { text-align: left; }
.about-text p { color: var(--asphalt); margin-bottom: 18px; font-size: 1.1rem; }
.about-text .btn { margin-top: 8px; }

/* ---------- Banda turchese ---------- */

.band {
  background: var(--turquoise); color: #fff; border-radius: var(--radius);
  padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.band .circ { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .14); pointer-events: none; }
.band .c1 { width: 300px; height: 300px; top: -130px; left: -90px; }
.band .c2 { width: 200px; height: 200px; bottom: -80px; right: 4%; background: rgba(44, 62, 80, .14); }
.band h2 { color: #fff; position: relative; }
.band h2 .word-yellow { color: var(--sunflower); }
.band p { color: rgba(255, 255, 255, .92); max-width: 640px; margin: 0 auto 30px; font-size: 1.15rem; position: relative; }

.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 64px; margin-top: 34px; position: relative; }
.stat .n { font-size: 2.8rem; font-weight: 800; letter-spacing: -1.5px; display: block; color: var(--sunflower); }
.stat .l { font-weight: 700; font-size: .95rem; opacity: .9; }

/* ---------- Footer ---------- */

.site-footer { background: var(--night); color: var(--silver); padding: 48px 0; margin-top: 40px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.site-footer .logo { color: #fff; }
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer a { color: var(--silver); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--turquoise); }
.site-footer .small { font-size: .85rem; width: 100%; color: var(--asbestos); }

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .trust-row { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; padding: 0 30px 30px 0; }
  .visual-tag { display: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tile-feature { grid-column: span 2; grid-row: span 1; min-height: 420px; }
  .steps, .feature-grid { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 28px; }
  .showcase.flip .showcase-media { order: 0; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about .photo-frame { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  section { padding: 56px 0; }
  .bento, .steps, .feature-grid, .mini-grid { grid-template-columns: 1fr; }
  .cat-list { grid-template-columns: 1fr; }
  .phone-solo { width: 230px; }
  .logo { font-size: 1.2rem; gap: 8px; }
  .logo .mark { width: 32px; height: 30px; }
  .places-line { margin-top: 40px; }
  .copy-switch { right: 10px; bottom: 10px; padding: 8px 10px; }
  .compare-col { padding: 28px 22px; }
  .tile-feature { grid-column: span 1; min-height: 380px; }
  .tile-feature h3 { font-size: 2.1rem; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .badge-free { font-size: .7rem; padding: 5px 10px; }
  .site-header .container { gap: 10px; }
  .logo { font-size: 1.25rem; }
  .hero { padding: 56px 0 80px; }
  /* su mobile: stessa composizione del desktop (finestra orizzontale + telefono), più compatta */
  .hero { padding: 48px 0 90px; }
  .hero-visual { padding: 0 8px 34px 0; }
  .browser { border-radius: 14px; transform: rotate(1deg); }
  .browser .bar { height: 30px; padding: 0 10px; gap: 6px; }
  .browser .bar i { width: 9px; height: 9px; }
  .browser .bar .url { display: none; }
  .phone { width: 34%; right: 6px; bottom: -30px; border-radius: 22px; padding: 5px; }
  .phone img { border-radius: 18px; }
  .phone::before { top: 9px; height: 10px; }
  .places-line { margin-top: 30px; }
  h1 { letter-spacing: -1.5px; }
  .btn-big { padding: 18px 34px; font-size: 1.1rem; }
  .band { padding: 52px 24px; }
  .hero-wave svg { height: 40px; }
}
