:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8f7f5;
  --text: #171717;
  --muted: #626262;
  --border: #ece7e1;
  --accent: #f47c20;
  --accent-dark: #db6b17;
  --shadow: 0 18px 50px rgba(23, 23, 23, 0.08);
  --radius: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }
.soft-bg { background: var(--surface-soft); }
.rounded-xl { border-radius: 28px; }
.topbar {
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px 16px;
  letter-spacing: 0.02em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236,231,225,0.8);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
.brand img { height: 56px; width: auto; }
.desktop-nav { display: flex; gap: 26px; font-size: 15px; }
.desktop-nav a { color: var(--muted); }
.desktop-nav a:hover, .mobile-menu a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(244,124,32,0.24); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-light { background: #fff; color: var(--text); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.hero { padding-top: 58px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow.light { color: rgba(255,255,255,0.85); }
.hero-copy h1, .section-heading h2, .split-copy h2, .gallery-copy h2, .cta-wrap h2 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: .98;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
}
.hero-copy .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 15px; }
.hero-media { position: relative; min-height: 540px; }
.hero-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f0ede9;
}
.main-card { width: 100%; }
.main-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  width: 220px;
  right: -12px;
  bottom: -30px;
}
.trust-strip { padding-top: 24px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-grid > div, .card, .step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(17,17,17,0.03);
}
.trust-grid > div { padding: 22px; }
.trust-grid strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.trust-grid span { color: var(--muted); font-size: 14px; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading p, .split-copy p, .gallery-copy p, .cta-wrap p { color: var(--muted); font-size: 1.05rem; }
.cards-grid { display: grid; gap: 20px; }
.products-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { overflow: hidden; }
.product-card.featured { grid-column: span 1; }
.product-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.card-body { padding: 24px; }
.card-body h3, .kit-card h3, .step-card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.card-body p, .kit-card p, .step-card p, .kit-card li { color: var(--muted); }
.price { margin-top: 18px; font-weight: 700; color: var(--accent-dark); }
.split-grid, .split-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-item {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}
.feature-item h3 { margin: 0 0 6px; font-size: 1.1rem; }
.kit-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.kit-card { padding: 28px; position: relative; }
.kit-card ul { margin: 18px 0 22px; padding-left: 18px; }
.kit-card a { color: var(--accent-dark); font-weight: 700; }
.featured-kit {
  border-color: rgba(244,124,32,0.35);
  box-shadow: 0 18px 40px rgba(244,124,32,0.12);
}
.kit-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(244,124,32,0.12);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { padding: 26px; }
.step-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244,124,32,0.12);
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-band {
  background: linear-gradient(135deg, #121212 0%, #2b2b2b 100%);
  color: #fff;
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-wrap h2 { margin-bottom: 14px; }
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h3 { margin-top: 0; font-size: 1rem; }
.footer-grid p, .footer-grid li, .footer-grid a { color: var(--muted); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-logo { height: 62px; width: auto; margin-bottom: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 1080px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-grid, .split-grid, .split-gallery, .cta-wrap, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .hero-media { min-height: auto; }
  .floating-card { position: static; width: min(260px, 60%); margin: 18px auto 0; }
  .trust-grid, .products-grid, .kit-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-copy h1, .section-heading h2, .split-copy h2, .gallery-copy h2, .cta-wrap h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .trust-grid, .products-grid, .kit-grid, .steps-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .brand img { height: 48px; }
}


.clickable-card {
  display: block;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.clickable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17,17,17,0.08);
  border-color: rgba(244,124,32,0.28);
}
.clickable-card .card-body::after {
  content: 'Apri su WhatsApp';
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--accent-dark);
}
.product-card img {
  background: #f7f6f4;
}
