/* ============================================================
   SWAPPO — style.css  (v2 "impact")
   ============================================================ */

/* ============ Fonts ============ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/landing/fonts/Inter-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(/landing/fonts/Baloo2-latin.woff2) format('woff2');
}

:root {
  --green: #148873;
  --green-dark: #0C5A4B;
  --green-deep: #083D33;
  --green-night: #062B24;
  --neon: #2BD9AE;
  --ink: #0A2E27;
  --mint: #EAF6EF;
  --mint-2: #D8EFE3;
  --yellow: #F6C453;
  --white: #ffffff;
  --muted: #5B7A70;
  --radius: 28px;
  --font-display: "Baloo 2", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 10px 40px rgba(8, 61, 51, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--ink); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* ============ Icone ============ */
.icon-sprite { display: none; }
.ico {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-solid { fill: currentColor; stroke: none; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: #fff; color: var(--green-dark);
  padding: 12px 20px; border-radius: 0 0 14px 14px;
  font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(20,136,115,.35); }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-yellow { background: var(--yellow); color: #4a3500; box-shadow: 0 8px 28px rgba(246,196,83,.35); }
.btn-yellow:hover { background: #ffd36b; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green);
  transition: box-shadow .2s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(8,61,51,.25); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 42px; height: auto; }
.brand-logo { height: 42px; width: auto; display: block; }
.brand-logo-big { height: 58px; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; color: #fff; letter-spacing: .5px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  color: #fff; font-weight: 600; font-size: .98rem; opacity: .92;
  transition: opacity .15s ease;
}
.nav a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-header { padding: 10px 22px; font-size: .95rem; }

.lang-switch {
  display: flex; background: rgba(255,255,255,.16);
  border-radius: 999px; padding: 3px;
}
.lang-btn {
  border: none; background: transparent; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  padding: 6px 12px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-btn.active { background: #fff; color: var(--green-dark); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--green) 0%, #107361 55%, var(--green-dark) 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 0;
  text-align: center;
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .5;
  will-change: transform;
}
.hero-blobs.paused .blob { animation-play-state: paused; }
.blob-1 { width: 480px; height: 480px; background: #2BD9AE; top: -180px; right: -140px; animation: blobmove 14s ease-in-out infinite alternate; }
.blob-2 { width: 380px; height: 380px; background: #0C5A4B; bottom: 40px; left: -160px; animation: blobmove 18s ease-in-out infinite alternate-reverse; }
.blob-3 { width: 260px; height: 260px; background: var(--yellow); opacity: .18; top: 30%; left: 12%; animation: blobmove 16s ease-in-out infinite alternate; }
@keyframes blobmove {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 20px; border-radius: 999px;
  font-weight: 600; font-size: .92rem; margin-bottom: 30px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: 26px;
  text-shadow: 0 6px 30px rgba(0,0,0,.18);
}
.rotator-wrap {
  display: inline-block;
  position: relative;
  color: var(--yellow);
}
.rotator { display: inline-block; }
.rotator.swap-out { animation: wordOut .28s ease forwards; }
.rotator.swap-in { animation: wordIn .32s ease forwards; }
@keyframes wordOut { to { opacity: 0; transform: translateY(-.35em) rotate(-2deg); } }
@keyframes wordIn { from { opacity: 0; transform: translateY(.4em) rotate(2deg); } to { opacity: 1; transform: none; } }

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  opacity: .93; max-width: 620px; margin-bottom: 34px;
}

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badges.center { justify-content: center; }
.store-badge {
  display: flex; align-items: center; gap: 12px;
  background: #0A1F1B; color: #fff;
  padding: 11px 22px; border-radius: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.35); }
.store-icon { width: 26px; height: 26px; }
.store-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-text small { font-size: .68rem; opacity: .8; }
.store-text strong { font-family: var(--font-display); font-size: 1.05rem; }

/* Hero stage: two phones + chips */
.hero-stage {
  position: relative;
  margin-top: 60px;
  height: 560px;
  width: 100%;
  max-width: 900px;
}
.phone {
  position: relative;
  width: 280px; aspect-ratio: 280/547;
  background: #10231F;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4);
}
.phone-notch { display: none; }
.phone-screen-img {
  position: absolute; inset: 10px;
  border-radius: 36px; overflow: hidden;
  object-fit: cover; width: calc(100% - 20px); height: calc(100% - 20px); z-index: 2;
}

.phone-back, .phone-front { position: absolute; top: 0; }
.phone-back {
  left: 50%; transform: translateX(-92%) rotate(-7deg);
  opacity: .96;
}
.phone-front {
  left: 50%; transform: translateX(-8%) rotate(6deg);
  z-index: 2;
}

.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  border-radius: 16px; padding: 11px 17px;
  box-shadow: 0 16px 40px rgba(4,30,25,.35);
  animation: floaty 5s ease-in-out infinite;
}
.fc-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--mint); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-ico svg { width: 22px; height: 22px; }
.chip-txt { display: flex; flex-direction: column; text-align: left; }
.float-chip b { font-size: .87rem; line-height: 1.2; white-space: nowrap; }
.float-chip i { font-style: normal; font-size: .73rem; color: var(--muted); white-space: nowrap; }
.chip-1 { top: 4%; left: 4%; animation-delay: 0s; }
.chip-2 { top: 30%; right: 2%; animation-delay: 1.4s; }
.chip-3 { bottom: 26%; left: 8%; animation-delay: 2.8s; }
.chip-4 { bottom: 16%; right: 9%; animation-delay: 4.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

/* ============ Marquee band ============ */
.marquee-band {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  transform: rotate(-2deg) scale(1.04);
}
.marquee {
  background: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(8,61,51,.18);
}
.marquee-track {
  display: flex; gap: 44px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.12rem;
  color: #4a3500;
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-item::after { content: "✦"; margin-left: 34px; opacity: .5; }
.mi-ico { display: inline-flex; }
.mi-ico svg { width: 22px; height: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  text-align: center;
  color: var(--green-dark);
  line-height: 1.08;
  margin-bottom: 14px;
}
.section-title.left { text-align: left; }
.section-title.light { color: #fff; }
.section-sub {
  text-align: center; color: var(--muted);
  max-width: 640px; margin: 0 auto 56px;
  font-size: 1.1rem;
}

/* Come funziona */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  position: relative;
  background: var(--mint);
  border-radius: var(--radius);
  padding: 42px 30px 34px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.step-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.4rem; color: var(--green); opacity: .16;
}
.step-ico {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-ico svg { width: 30px; height: 30px; }
.step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--green-dark); margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: .98rem; }

/* Modalità: di persona o spedizione */
.section-modes { padding-top: 10px; }
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mode-card {
  position: relative;
  border-radius: var(--radius);
  padding: 46px 40px;
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.mode-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.mode-local { background: var(--mint); }
.mode-ship { background: linear-gradient(140deg, var(--green), var(--green-dark)); color: #fff; }
.mode-ico {
  width: 66px; height: 66px; border-radius: 20px;
  background: #fff; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(8,61,51,.08);
}
.mode-ico svg { width: 34px; height: 34px; }
.mode-ico-ship { background: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.mode-card h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.8rem; margin-bottom: 10px;
  color: var(--green-dark);
}
.mode-ship h3 { color: #fff; }
.mode-card p { color: var(--muted); margin-bottom: 24px; font-size: 1rem; }
.mode-ship p { color: rgba(255,255,255,.88); }
.mode-card .check-list { margin-bottom: 0; }
.mode-card .check-list li { font-size: .96rem; }
.mode-badge {
  position: absolute; top: 26px; right: 26px;
  background: var(--yellow); color: #4a3500;
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  padding: 7px 16px; border-radius: 999px;
  transform: rotate(3deg);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* Pagamenti protetti */
.section-pay { padding-top: 0; }
.pay-wrap {
  position: relative;
  background: var(--mint);
  border-radius: 48px;
  padding: 74px 54px 60px;
  text-align: center;
}
.pay-shield {
  width: 74px; height: 74px; border-radius: 24px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 30px rgba(20,136,115,.35);
}
.pay-shield svg { width: 38px; height: 38px; }
.pay-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.pay-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 26px 30px;
  text-align: left;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pay-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pay-num {
  position: absolute; top: 16px; right: 22px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.8rem; color: var(--green); opacity: .16;
}
.pay-ico {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--mint); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pay-ico svg { width: 27px; height: 27px; }
.pay-step h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; color: var(--green-dark); margin-bottom: 8px;
}
.pay-step p { color: var(--muted); font-size: .95rem; }
.pay-note {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600; font-size: .95rem;
  color: var(--green-dark);
}

/* Mappa — dark section */
.section-map {
  position: relative;
  background: var(--green-night);
  color: #fff;
  overflow: hidden;
}
.map-glow {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,217,174,.16), transparent 65%);
  top: 50%; left: 70%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.map-inner {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 60px; align-items: center;
}
.map-copy p { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 24px; max-width: 540px; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li { padding-left: 36px; position: relative; margin-bottom: 13px; font-weight: 500; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.check-list.light li::before { background: var(--neon); color: var(--green-night); }
.map-visual { display: flex; justify-content: center; }
.phone-small { width: 280px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }

/* Vantaggi — bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-card {
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.bento-card:hover { transform: translateY(-8px) rotate(.5deg); box-shadow: var(--shadow); }
.bento-big { grid-column: span 2; }
.bento-ico {
  width: 56px; height: 56px; border-radius: 17px;
  background: #fff; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(8,61,51,.07);
}
.bento-ico svg { width: 28px; height: 28px; }
.bg-green .bento-ico, .bg-dark .bento-ico { background: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.bg-yellow .bento-ico { background: rgba(255,255,255,.55); color: #6b4d00; box-shadow: none; }
.bento-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 8px; }
.bento-card p { font-size: .97rem; color: var(--muted); }
.bg-green { background: linear-gradient(140deg, var(--green), var(--green-dark)); color: #fff; }
.bg-green h3 { color: #fff; }
.bg-green p { color: rgba(255,255,255,.88); }
.bg-dark { background: var(--green-deep); color: #fff; }
.bg-dark h3 { color: #fff; }
.bg-dark p { color: rgba(255,255,255,.82); }
.bg-mint { background: var(--mint); }
.bg-yellow { background: var(--yellow); }
.bg-yellow h3 { color: #6b4d00; }
.bg-yellow p { color: #7a5c10; }

/* Categorie */
.section-categories { padding-top: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; list-style: none; }
.chip-ico { display: inline-flex; }
.chip-ico svg { width: 21px; height: 21px; }
.chip:hover .chip-ico { color: #fff; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 2px solid var(--mint-2);
  border-radius: 999px; padding: 13px 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--green-dark);
  transition: all .18s ease;
  cursor: default;
}
.chip:hover { border-color: var(--green); transform: translateY(-4px) rotate(-1deg); background: var(--green); color: #fff; }

/* Download CTA */
.section-download { padding-top: 30px; }
.download-card {
  position: relative;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 48px;
  text-align: center;
  color: #fff;
  padding: 90px 40px;
  box-shadow: 0 30px 70px rgba(8,61,51,.35);
  overflow: hidden;
}
.download-watermark {
  position: absolute;
  width: 560px; right: -140px; bottom: -160px;
  opacity: .07; transform: rotate(-12deg);
  pointer-events: none;
}
.download-mark { width: 80px; margin: 0 auto 22px; position: relative; }
.download-card h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.08;
  text-transform: uppercase;
  max-width: 760px; margin: 0 auto 14px;
  position: relative;
}
.download-card > p { opacity: .92; margin-bottom: 36px; font-size: 1.12rem; position: relative; }

/* Contatti — stile sito originale (fondo verde pieno, form centrato) */
.section-contact {
  background: var(--green);
  color: #fff;
  padding-bottom: 110px;
}
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-sub {
  color: rgba(255,255,255,.88);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.contact-form {
  width: min(560px, 100%);
  display: flex; flex-direction: column; gap: 16px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.contact-form input, .contact-form textarea {
  border: 2px solid transparent;
  background: rgba(8,61,51,.35);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body); font-size: .98rem; color: #fff;
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.65); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: rgba(255,255,255,.85);
  background: rgba(8,61,51,.5);
}
.contact-form .btn-light { margin-top: 8px; }
.form-status { font-size: .95rem; font-weight: 600; color: #fff; min-height: 1.4em; text-align: center; }

/* Footer — stile sito originale (verde brand, tutto centrato) */
.footer { background: var(--green); color: #fff; padding: 40px 0 0; }
.footer-top {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 56px;
}
.footer-brand-big { justify-content: center; }
.footer-claim {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 18px 0 26px;
}
.footer-legal {
  display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
  margin: 36px 0 46px;
}
.footer-legal a { font-size: 1.02rem; opacity: .95; transition: opacity .15s ease; }
.footer-legal a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom-row {
  border-top: 1px solid rgba(255,255,255,.22);
  padding: 20px 0 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.footer-mark-small { width: 40px; }
.footer-copy { font-size: .88rem; opacity: .85; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.28); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .blob, .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .map-inner, .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .section-title.left { text-align: center; }
  .map-copy { text-align: center; }
  .map-copy p { margin-inline: auto; }
  .check-list { display: inline-block; text-align: left; }
  .contact-copy { text-align: center; }
  .contact-copy p { margin-inline: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-big { grid-column: span 2; }
  .map-glow { left: 50%; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed; top: 70px; left: 16px; right: 16px;
    background: var(--green-dark);
    border-radius: 20px;
    flex-direction: column; gap: 0;
    padding: 12px;
    display: none;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 18px; border-radius: 12px; }
  .nav a:hover { background: rgba(255,255,255,.08); }
  .burger { display: flex; }
  .btn-header { display: none; }
  .section { padding: 70px 0; }
  .hero { padding-top: 56px; }
  .hero-stage {
    height: auto; margin-top: 44px; padding-bottom: 44px;
    display: flex; justify-content: center; align-items: flex-start;
  }
  .phone { width: 190px; border-radius: 34px; padding: 8px; aspect-ratio: 190/369; }
  .phone-screen-img { width: calc(100% - 16px); height: calc(100% - 16px); }
  .phone-notch { width: 76px; height: 17px; top: 15px; }
  .phone-screen-img { inset: 8px; border-radius: 28px; }
  .phone-back, .phone-front { position: relative; left: auto; top: auto; }
  .phone-back { transform: rotate(-7deg) translateY(10px); margin-right: -48px; }
  .phone-front { transform: rotate(6deg); }
  .float-chip { display: none; }
  .marquee-band { margin-top: -24px; }
  .steps { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .mode-card { padding: 36px 26px; }
  .pay-wrap { padding: 50px 22px 44px; border-radius: 34px; }
  .pay-steps { grid-template-columns: 1fr; }
  .pay-note { padding: 12px 18px; }
  .bento { grid-template-columns: 1fr; }
  .bento-big { grid-column: span 1; }
  .download-card { padding: 60px 24px; border-radius: 34px; }
  .footer-bottom-row { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { gap: 20px; }
}

.note-ico { display: inline-flex; color: var(--green); }
.note-ico svg { width: 20px; height: 20px; }
.g-recaptcha-wrap{display:flex;justify-content:center;margin-top:4px}
