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

:root {
  --bg:         #f7f6f2;
  --bg2:        #f0efe9;
  --bg3:        #e8e7e0;
  --surface:    #ffffff;
  --border:     rgba(0,0,0,0.08);
  --border2:    rgba(0,0,0,0.13);
  --green:      #4cae4c;
  --green-dark: #3d9a3d;
  --green-lt:   #edf7ed;
  --text:       #1a1916;
  --text-mid:   #4a4845;
  --text-muted: #666360;
  --shadow:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLL LINE ── */
.scroll-line {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--green); z-index: 300; width: 0;
  transition: width .1s linear;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,246,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  text-decoration: none; color: inherit;
  display: inline-flex; align-items: flex-end; gap: 6px;
}

.nav-logo-icon {
  height: 40px; width: 40px;
  display: block;
  flex: 0 0 40px;
  image-rendering: auto;
}

.nav-logo-wordmark {
  height: 34px;
  width: auto;
  display: block;
  transform: translateY(2px);
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 400;
  padding: 8px 16px; border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg3); }

.btn-nav {
  background: var(--green) !important; color: #fff !important;
  font-weight: 500 !important; border-radius: 7px !important;
}
.btn-nav:hover { background: var(--green-dark) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-size: 15px; font-weight: 500;
  padding: 13px 26px; border-radius: 8px;
  text-decoration: none; transition: all .22s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(76,174,76,.28);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-size: 15px; font-weight: 400;
  padding: 13px 24px; border-radius: 8px;
  text-decoration: none; border: 1px solid var(--border2);
  transition: all .22s;
}
.btn-ghost:hover { background: var(--bg3); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 20%, transparent 80%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-lt); border: 1px solid rgba(76,174,76,.25);
  color: var(--green-dark); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px; width: fit-content;
  animation: fadeUp .5s ease both;
}
.badge::before { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 800; line-height: 1.02; letter-spacing: .01em;
  color: var(--text); margin-bottom: 22px;
  animation: fadeUp .5s .1s ease both;
}
h1 em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px; font-weight: 300;
  animation: fadeUp .5s .2s ease both;
}

.hero-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp .5s .3s ease both;
}

.hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  animation: fadeUp .5s .4s ease both;
}
.tag {
  font-size: 12px; color: var(--text-muted);
  padding: 4px 12px; border: 1px solid var(--border2); border-radius: 100px;
  background: var(--surface);
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  animation: fadeIn .7s .4s ease both;
}

.hero-watermark {
  position: absolute; right: -50px; top: -60px;
  width: 260px; height: auto;
  opacity: 0.13;
  pointer-events: none; user-select: none;
}

.photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.photo-main {
  height: 260px; position: relative; overflow: hidden;
}
.photo-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #b8cfe0 0%, #9ab8cc 35%, #7a9ab0 50%,
    #5a6858 50%, #4a5848 65%, #3a4838 100%
  );
}
.photo-main::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to right,
    transparent 0%, transparent 8%, #2a3428 8%, #2a3428 12%,
    transparent 12%, transparent 18%, #232820 18%, #232820 28%,
    transparent 28%, transparent 34%, #1e2418 34%, #1e2418 46%,
    transparent 46%, transparent 52%, #2a3428 52%, #2a3428 64%,
    transparent 64%, transparent 72%, #232820 72%, #232820 80%,
    transparent 80%
  );
  clip-path: polygon(
    0% 100%, 8% 100%, 8% 40%, 12% 40%, 12% 100%,
    18% 100%, 18% 20%, 28% 20%, 28% 100%,
    34% 100%, 34% 10%, 46% 10%, 46% 100%,
    52% 100%, 52% 30%, 64% 30%, 64% 100%,
    72% 100%, 72% 15%, 80% 15%, 80% 100%,
    100% 100%
  );
}

.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.45));
}

.photo-geo {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 10px 14px;
  font-size: 12px; color: var(--text-mid);
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.photo-geo strong { font-weight: 600; font-size: 13px; color: var(--text); }
.photo-geo div { display: flex; align-items: center; gap: 5px; }

.photo-ts {
  position: absolute; top: 16px; right: 16px;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 100px;
}

/* CSS drop-pin — no emoji */
.photo-pin {
  position: absolute; bottom: 65px; right: 75px;
  width: 22px; height: 28px;
  animation: pinFloat 2.5s ease infinite;
}
.photo-pin::before {
  content: '';
  display: block; width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(76,174,76,.55);
}

@keyframes pinFloat {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

.photo-caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
}

.photo-tag-pill {
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 100px;
}

.photo-user { display: flex; align-items: center; gap: 7px; }
.photo-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #6ac06a, #3a8c3a);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #fff; font-weight: 600;
}
.photo-user-name { font-size: 12px; color: rgba(255,255,255,.8); }

.photo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.photo-thumb {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  cursor: pointer; transition: opacity .2s;
}
.photo-thumb:hover { opacity: .85; }
.photo-thumb-bg { position: absolute; inset: 0; }
.photo-thumb:nth-child(1) .photo-thumb-bg { background: linear-gradient(135deg, #d4c4a8, #b8a888); }
.photo-thumb:nth-child(2) .photo-thumb-bg { background: linear-gradient(135deg, #a8c4d4, #88a8b8); }
.photo-thumb:nth-child(3) .photo-thumb-bg { background: linear-gradient(135deg, #c4d4a8, #a8b888); }

.photo-thumb-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  opacity: .75;
}
.photo-thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  font-size: 10px; color: rgba(255,255,255,.85); font-weight: 500;
  padding: 6px 8px 5px;
}

.photo-meta {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.photo-meta-item { font-size: 12px; color: var(--text-muted); }
.live-dot {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: #16a34a;
}
.live-dot::before {
  content:''; width:7px; height:7px;
  background:#22c55e; border-radius:50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.35; transform:scale(.7); }
}

.float-stat {
  position: absolute; bottom: -18px; left: -20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 3s ease infinite;
}
@keyframes floatCard {
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-5px); }
}
.float-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--green); line-height: 1;
}
.float-stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.3; }

/* ── SEZIONI COMUNI ── */
section { padding: 96px 48px; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content:''; width:20px; height:2px; background:var(--green); border-radius:2px; }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700; letter-spacing: .01em; line-height: 1.1;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px; color: var(--text-muted);
  font-weight: 300; line-height: 1.7; max-width: 480px;
}

.h-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
}

/* ── COME FUNZIONA ── */
.steps-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 56px;
}

.step-row {
  display: flex; gap: 20px; padding: 22px 20px;
  border-radius: 12px; cursor: pointer;
  transition: background .2s, border-color .2s;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
}
.step-row:hover { background: var(--surface); border-color: var(--border); border-left-color: var(--border2); }
.step-row.active {
  background: var(--surface);
  border-color: var(--border); border-left-color: var(--green);
  box-shadow: var(--shadow);
}

.step-circle {
  width: 34px; height: 34px; min-width: 34px;
  background: var(--green-lt); border: 1.5px solid rgba(76,174,76,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; color: var(--green-dark);
  margin-top: 2px;
}
.step-row.active .step-circle { background: var(--green); color: #fff; border-color: var(--green); }

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 700; letter-spacing: .01em;
  margin-bottom: 5px; color: var(--text);
}
.step-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.step-visual { position: sticky; top: 96px; }
.step-frame {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative; aspect-ratio: 4/3;
}

.step-img { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; }
.step-img.active { opacity: 1; }

.scene-field {
  width: 100%; height: 100%;
  background: linear-gradient(175deg, #d0e4f0 0%, #b0c8dc 35%, #7a9aac 50%, #5a7050 50%, #4a6040 65%, #3c5030 100%);
  position: relative;
}
/* CSS phone frame — replaces 📱 emoji */
.scene-field::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 75px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.scene-geo {
  width: 100%; height: 100%;
  background: #e4f0e4;
  position: relative; overflow: hidden;
}
.scene-geo::before {
  content:''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(76,174,76,.15) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(76,174,76,.15) 40px);
}
/* CSS drop-pin on map — replaces 📍 emoji */
.scene-geo::after {
  content: '';
  position: absolute; top: 36%; left: 46%;
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(76,174,76,.5);
  animation: pinFloat 2.5s ease infinite;
}

.scene-archive {
  width: 100%; height: 100%;
  background: var(--bg2);
  display: flex; flex-direction: column;
  padding: 24px; gap: 10px;
}
.archive-row {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-mid);
}
.archive-thumb { width: 40px; height: 32px; border-radius: 5px; flex-shrink: 0; }
.archive-thumb.t1 { background: linear-gradient(135deg, #d4c4a8, #b8a888); }
.archive-thumb.t2 { background: linear-gradient(135deg, #a8c4d4, #88a8b8); }
.archive-thumb.t3 { background: linear-gradient(135deg, #c4d4a8, #a8b888); }
.archive-info { flex: 1; }
.archive-tag {
  background: var(--green-lt); color: var(--green-dark);
  font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px;
  margin-left: auto;
}

.step-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  padding: 24px 20px 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.step-caption-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: #fff;
}
.step-caption-meta { font-size: 11px; color: rgba(255,255,255,.6); text-align: right; }

/* ── GALLERY ── */
.gallery-section { padding: 0; background: var(--bg2); border-top: 1px solid var(--border); }

.gallery-header {
  padding: 80px 48px 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}

.gallery-scroll {
  display: flex; gap: 16px; padding: 48px 48px 64px;
  overflow-x: auto; scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gcard {
  flex: 0 0 240px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer; scroll-snap-align: start;
}
.gcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.gcard-img {
  height: 150px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gcard:nth-child(1) .gcard-img { background: linear-gradient(135deg, #c8d4c0, #a0b498); }
.gcard:nth-child(2) .gcard-img { background: linear-gradient(135deg, #c0ccd8, #98acbc); }
.gcard:nth-child(3) .gcard-img { background: linear-gradient(135deg, #d8ccc0, #bcaa98); }
.gcard:nth-child(4) .gcard-img { background: linear-gradient(135deg, #c0d8d0, #98bcb4); }
.gcard:nth-child(5) .gcard-img { background: linear-gradient(135deg, #d0c8d8, #aca4bc); }
.gcard:nth-child(6) .gcard-img { background: linear-gradient(135deg, #d8d0c0, #bcb4a0); }

.gcard-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: .55; flex-shrink: 0;
}

.gcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.35));
}

.gcard-pill {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 100px;
}

.gcard-body { padding: 14px; }
.gcard-loc {
  font-size: 13px; font-weight: 500; margin-bottom: 3px;
  display: flex; align-items: center; gap: 5px;
}
.gcard-time { font-size: 11px; color: var(--text-muted); }

/* ── VALORE ── */
.valore-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 56px;
}

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-item {
  display: flex; gap: 14px; padding: 16px;
  border-radius: 10px; border: 1px solid transparent;
  transition: all .25s; cursor: default;
}
.benefit-item:hover { background: var(--surface); border-color: var(--border); box-shadow: var(--shadow); }

.b-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--green-lt); color: var(--green-dark);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.b-text strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; color: var(--text); }
.b-text span { font-size: 13px; color: var(--text-muted); }

.stats-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.stat-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 800; color: var(--green);
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--text-muted); }

/* ── FEATURES ── */
.features-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 56px;
}

.fcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px;
  transition: all .25s;
}
.fcard:hover {
  border-color: rgba(76,174,76,.25); transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.fcard.wide {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(135deg, var(--green-lt), var(--surface));
  border-color: rgba(76,174,76,.18);
}

.f-icon {
  color: var(--green-dark);
  margin-bottom: 14px;
  display: flex;
}
.f-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 700; letter-spacing: .01em; margin-bottom: 8px;
}
.f-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

.tag-demo {
  background: var(--bg2); border-radius: 10px; padding: 20px;
  border: 1px solid var(--border);
}
.tag-demo-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.tag-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.tp { font-size: 12px; padding: 4px 12px; border-radius: 100px; font-weight: 500; }
.tp-active { background: var(--green-lt); color: var(--green-dark); border: 1px solid rgba(76,174,76,.3); }
.tp-default { background: var(--bg3); color: var(--text-muted); border: 1px solid var(--border); }
.tp-add { background: transparent; color: var(--text-muted); border: 1px dashed var(--border2); }

/* ── PRICING ── */
.pricing-section {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.pricing-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow); min-height: 320px;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.price-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: rgba(76,174,76,.3);
}
.price-card.featured {
  border-color: rgba(76,174,76,.5); border-width: 2px;
  background: linear-gradient(180deg, #f0faf0 0%, #ffffff 45%);
  box-shadow: 0 16px 48px rgba(76,174,76,.18);
  transform: translateY(-4px);
}

.price-badge {
  position: absolute; top: -13px; right: 20px;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 16px;
  box-shadow: 0 4px 12px rgba(76,174,76,.3);
}

.price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.price-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; line-height: 1; }
.price-code {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--text-muted);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 10px;
}

.price-value { font-size: 30px; font-weight: 700; color: var(--text); line-height: 1; }
.price-value span { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  color: var(--text-mid); font-size: 14px; padding-top: 4px;
}
.price-features li { display: flex; align-items: center; gap: 8px; line-height: 1.3; }
.price-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-lt); color: var(--green-dark);
  font-size: 12px; font-weight: 700; flex: 0 0 18px;
}
.price-features strong { color: var(--text); font-weight: 600; }
.price-cta { margin-top: auto; justify-content: center; width: 100%; padding: 12px 16px; border-radius: 10px; }
.price-loading { min-height: 180px; justify-content: center; }
.price-desc { color: var(--text-muted); font-size: 14px; max-width: 40ch; }

/* ── CTA ── */
.cta-section {
  background: #1a2e1a; color: #f0f7f0;
  text-align: center; padding: 110px 48px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content:'';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,174,76,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content:'';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }

.badge-dark {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(76,174,76,.15); border: 1px solid rgba(76,174,76,.35);
  color: #7fd87f; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px; width: fit-content; margin-left: auto; margin-right: auto;
}
.badge-dark::before { content:''; width:6px; height:6px; background:#7fd87f; border-radius:50%; }

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800; letter-spacing: .01em; line-height: 1.05;
  max-width: 580px; margin: 0 auto 18px; color: #f0f7f0;
}
.cta-title em { font-style: normal; color: #7fd87f; }

.cta-sub {
  font-size: 15px; color: rgba(240,247,240,.5);
  font-weight: 300; max-width: 400px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(240,247,240,.65);
  font-size: 15px; padding: 13px 24px; border-radius: 8px;
  text-decoration: none; border: 1px solid rgba(255,255,255,.15);
  transition: all .22s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.07); color: #f0f7f0; }

/* ── FOOTER — light theme ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 34px;
}

.footer-logo-wordmark {
  height: 28px;
  width: auto;
  display: block;
  transform: translateY(1px);
}
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); opacity: .7; }

/* ── ANIMATE ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-logo-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .nav-logo-wordmark { height: 26px; }
  .hero { grid-template-columns:1fr; padding: 100px 24px 60px; gap: 48px; }
  section { padding: 64px 24px; }
  .steps-section { padding: 64px 24px; }
  .steps-layout { display: flex; flex-direction: column; gap: 36px; }
  #stepsList { order: 2; }
  .step-visual { order: 1; position: static; }
  .gallery-header { padding: 64px 24px 0; }
  .gallery-scroll { padding: 36px 24px 48px; }
  .valore-layout { grid-template-columns:1fr; gap: 36px; }
  .features-section { padding: 64px 24px; }
  .features-grid { grid-template-columns:1fr; }
  .fcard.wide { grid-column: span 1; grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 24px; }
  footer { flex-direction: column; text-align: center; padding: 28px 24px; }
  .footer-logo { justify-content: center; }
  .float-stat { display: none; }
  .hero-watermark { display: none; }
}

/* ── UTILITY CLASSES ── */
.photo-geo-sub { color: #6a6a6a; font-size: 11px; }
.archive-date-label { font-size: 12px; font-weight: 600; color: var(--text-mid); padding: 0 0 6px; }
.archive-row-title  { font-weight: 500; font-size: 13px; }
.archive-row-meta   { font-size: 11px; color: var(--text-muted); }
.step-caption--light {
  background: linear-gradient(transparent, rgba(240,239,233,.95));
  padding-bottom: 20px;
}
.step-caption-title--dark { color: var(--text); }
.step-caption-meta--dark  { color: var(--text-muted); }
.section-sub--mb { margin-bottom: 36px; }
.stats-eyebrow { font-size: 13px; color: var(--text-muted); font-weight: 300; margin: 0 0 4px; }

/* ── FOCUS VISIBLE ── */
:focus-visible {
  outline: 3px solid rgba(76,174,76,.5);
  outline-offset: 3px;
  border-radius: 4px;
}
