:root {
  --blue:        #1A6DB5;
  --blue-dark:   #0F4E8A;
  --blue-light:  #E8F2FC;
  --accent:      #F5A623;
  --text:        #1A1A2E;
  --text-muted:  #6B7280;
  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFD;
  --border:      #E5E9F0;
  --radius:      10px;
  --radius-md:   14px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(26,109,181,.10);
  --shadow-md:   0 4px 16px rgba(26,109,181,.12);
  --shadow-lg:   0 8px 40px rgba(26,109,181,.16);
  --transition:  .25s ease;
  --max-w:       1200px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

/* Typography */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.25; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.35; margin-bottom: .6rem; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: .4rem; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .5rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 50px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}

/* Layout */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--bg-soft); }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-white p, .text-white h2, .text-white h3 { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover { background: var(--blue-light); border-color: var(--blue-light); color: var(--blue-dark); transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.header-top {
  background: var(--blue-dark);
  color: #fff;
  padding: .4rem 0;
  font-size: .85rem;
  text-align: right;
}
.header-top a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.header-top a:hover { color: var(--accent); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
/* Navbar compatta su desktop medi (1024-1199px) */
@media (max-width: 1199px) {
  .nav-menu { gap: 0; }
  .nav-link { padding: .45rem .55rem; font-size: .82rem; }
  .nav-cta { margin-left: .25rem; }
  .nav-cta .btn { padding: .5rem .9rem; font-size: .82rem; }
}
@media (max-width: 1050px) {
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  .nav-link { padding: .4rem .35rem; font-size: .8rem; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.25rem; }
  .nav-cta { display: none; }
}
.nav-logo img { height: 44px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .85rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-icon { width: 28px; height: 28px; background: var(--blue-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: .85rem; flex-shrink: 0; }

.nav-cta { margin-left: .5rem; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-close { display: none; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   RECENSIONI CAROUSEL
   ============================================================ */
.rev-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}
.rev-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.rev-track .testimonial-card {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  box-sizing: border-box;
}
.rev-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  z-index: 2;
}
.rev-btn:hover { background: var(--blue); color: #fff; }
.rev-prev { left: -18px; }
.rev-next { right: -18px; }
.rev-dots {
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
}
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
}
.rev-dot.active { background: var(--blue); transform: scale(1.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D1B2E;
  color: #9BAFC4;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .92rem; margin-top: .75rem; max-width: 280px; }
.footer-logo { height: 40px; }
.footer-contacts { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.footer-contacts a { color: #9BAFC4; font-size: .88rem; display: flex; align-items: center; gap: .5rem; transition: color var(--transition); }
.footer-contacts a:hover { color: #fff; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #9BAFC4;
  font-size: .85rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--blue); color: #fff; }

.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: #9BAFC4; font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: #6B7B8E;
}
.footer-bottom a { color: #6B7B8E; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* Numero verde footer */
.footer-phone { margin-top: 1rem; }
.footer-numero-verde {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.footer-phone a:hover .footer-numero-verde { opacity: .85; }
.footer-phone .label { font-size: .75rem; color: #9BAFC4; text-transform: uppercase; letter-spacing: .05em; }
.footer-phone .number { font-size: 1.2rem; font-weight: 700; color: #fff; }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: transparent;
  padding: 1.5rem 0 0;
  position: relative;
}
.hero::before {
  content: none;
  display: none;
  background: none;
}
.hero-box {
  background: linear-gradient(135deg, #0F4E8A 0%, #1A6DB5 60%, #2E90D9 100%);
  border-radius: 28px;
  padding: 2.5rem 4rem;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.hero p   { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.hero-checklist li span {
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Checklist su sfondo chiaro */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
  font-size: .95rem;
}
.checklist li::before {
  content: '✓';
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: .75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats-strip {
  padding: .75rem 0 1.25rem;
  background: #fff;
}
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}
.hero-stats > div {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border);
}
.hero-stats > div:last-child { border-right: none; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.hero-stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}


.hero-img { position: relative; }
.hero-img > img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.28));
  transition: transform .35s ease, filter .35s ease;
}
.hero-img > img:hover { transform: translateY(-4px); filter: drop-shadow(0 24px 48px rgba(0,0,0,.32)); }
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
  white-space: nowrap;
}
.hero-img-badge .icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.2rem; }
.hero-img-badge .text strong { display: block; font-size: .95rem; color: var(--text); }
.hero-img-badge .text span  { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
@media (max-width: 768px) {
  .card { border: none; box-shadow: var(--shadow-md); }
}
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: .5rem; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p  { font-size: .9rem; margin-bottom: 1.25rem; }
.card-link { font-size: .9rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: .35rem; }
.card-link svg { transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-align-center { align-items: center; gap: 4rem; }
.grid-align-start  { align-items: start;  gap: 4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ============================================================
   ICON BOX (features/benefits)
   ============================================================ */
.icon-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.icon-box:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }
.icon-box .icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.3rem;
}
.icon-box h3 { font-size: 1rem; margin-bottom: .3rem; }
.icon-box p  { font-size: .88rem; margin-bottom: 0; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--blue); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-num   { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: .35rem; }
.stat-sep   { width: 1px; background: rgba(255,255,255,.2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-soft); }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text  { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-via  { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -150px;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-banner .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .85rem 1.75rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.cta-phone:hover { background: rgba(255,255,255,.22); color: #fff; }
.cta-phone svg { color: var(--accent); }

/* ============================================================
   LANDING PAGE specifics
   ============================================================ */
.lp-hero {
  background: linear-gradient(135deg, #0F4E8A, #1A6DB5);
  padding: 4.5rem 0;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.lp-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.lp-form-box h3 { color: var(--text); margin-bottom: .5rem; }
.lp-form-box .sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Form */
.form-group { margin-bottom: 1rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,181,.12);
}
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-top: .5rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.form-check label { font-size: .8rem; font-weight: 400; color: var(--text-muted); margin-bottom: 0; }
.form-check a { color: var(--blue); }

.lp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.lp-feature {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(255,255,255,.1); border-radius: var(--radius); padding: 1rem;
}
.lp-feature .icon { font-size: 1.4rem; flex-shrink: 0; }
.lp-feature h4 { color: #fff; font-size: .9rem; }
.lp-feature p  { color: rgba(255,255,255,.75); font-size: .82rem; margin-top: .2rem; }

/* EaseproCare steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #8b9fe8);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--blue);
  border-radius: 50%;
  color: #fff; font-weight: 800; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(75,107,218,.3);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 4px solid #f0f4ff;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 100%;
  flex: 1;
}
.step-icon { font-size: 1.75rem; margin-bottom: .6rem; display: block; }
.step-card h3 { font-size: .95rem; margin-bottom: .5rem; color: var(--dark); }
.step-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Detraction banner */
.detraction-bar {
  background: #FFF8E6;
  border: 1px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.detraction-bar .pct { font-size: 2.5rem; font-weight: 800; color: #D97706; line-height: 1; }
.detraction-bar p { margin: 0; color: var(--text); font-size: .95rem; }
.detraction-bar strong { color: var(--text); }

/* Utility responsive */
.mobile-only { display: none; }
.mobile-h1 { font-weight: 800; line-height: 1.15; color: var(--text); }

/* Product hero */
.product-hero {
  background: linear-gradient(135deg, #F8FAFD, #E8F2FC);
  padding: 4.5rem 0;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-hero img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.spec-item {
  background: #fff;
  border-radius: var(--radius);
  padding: .85rem 1rem;
  border: 1px solid var(--border);
}
.spec-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.spec-value { font-size: 1rem; font-weight: 700; color: var(--text); margin-top: .2rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.gallery-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; transition: transform .3s ease; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.02); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 1rem 0;
  font-size: .83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   UTILS
   ============================================================ */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-btn { display: flex; gap: 1rem; flex-wrap: wrap; }
.w-full { width: 100%; text-align: center; justify-content: center; }

/* Numero verde pill */
.verde-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue-light);
  border-radius: 50px;
  padding: .6rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Desktop only: titoli su riga singola */
@media (min-width: 769px) {
  .nowrap-desktop { white-space: nowrap; }
  .section-intro { max-width: none !important; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hero-inner { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
    z-index: 999;
    gap: .5rem;
  }
  .nav-menu.open .nav-cta { display: flex; margin-top: 1rem; }
  .nav-close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
    padding: .25rem;
  }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none; background: var(--bg-soft); margin-top: .25rem; }

  /* Hero mobile fixes */
  .hero-br { display: none; }
  .hero-box { padding: 1.5rem 1.25rem 1.75rem; border-radius: 20px; }
  .hero-badge { font-size: .78rem; padding: .35rem .85rem; }
  .hero-stats { flex-wrap: nowrap; gap: 0; align-items: flex-start; }
  .hero-stats > div { padding: .5rem .6rem; flex: 1; min-width: 0; }
  .hero-stat-num { font-size: 1.15rem; }
  .hero-stat-label { font-size: .65rem; }
  .rev-prev { left: 0; }
  .rev-next { right: 0; }
  .hero-img-badge { bottom: .75rem; left: .75rem; padding: .55rem .85rem; font-size: .8rem; gap: .5rem; }
  .hero-img-badge .icon { width: 32px; height: 32px; font-size: 1rem; }
  .hero-img-badge .text strong { font-size: .82rem; }
  .hero-img-badge .text span   { font-size: .7rem; }

  .hero-inner, .product-hero-inner, .lp-hero-inner { grid-template-columns: 1fr; }
  .product-hero-inner > div:last-child { order: -1; }
  .product-hero-inner { gap: 1.5rem; }
  .mobile-only { display: block; }
  .section-label.mobile-only { display: inline-block; }
  .desktop-only { display: none; }
  /* Mascotte visibile su mobile */
  .hero-img {
    display: block;
    order: -1;
    max-width: 260px;
    margin: 0 auto .5rem;
  }
  .hero-img > img {
    max-height: 200px;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,.28));
  }
  .hero-img-badge { bottom: .5rem; left: .5rem; padding: .55rem .85rem; font-size: .8rem; gap: .5rem; }
  .lp-hero-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-align-center { gap: 2rem; }
  .grid-align-start  { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .lp-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact page */
  .contact-cards { grid-template-columns: 1fr !important; }
  .map-section { grid-template-columns: 1fr !important; }

  /* Chi siamo - team */
  .team-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Detrazioni */
  .agev-grid { grid-template-columns: 1fr !important; }
  .faq-grid { grid-template-columns: 1fr !important; }

  /* Prodotti */
  .product-specs { grid-template-columns: 1fr !important; }
  .product-gallery { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Poltrone relax */
  .cat-grid { grid-template-columns: 1fr !important; }

  /* General */
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  h2 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
  /* Riduce il gap tra titolo sezione e contenuto sottostante */
  .text-center { margin-bottom: 1.5rem !important; }

  /* Detraction bar mobile */
  .detraction-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .detraction-bar .btn { align-self: stretch; text-align: center; white-space: normal !important; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: .9rem 1.5rem; font-size: 1rem; }
}

/* Logo sizing */
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 72px; width: auto; }
.footer-logo { height: 86px; width: auto; }

/* Button no-wrap */
.btn { white-space: nowrap; }

@media (max-width: 480px) {
  .hero-box .btn, .hero-box .btns { white-space: normal; max-width: 100%; text-align: center; }
  .hero-box .btns { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

@media (max-width: 768px) {
  .nav-logo img { height: 64px; }
  .footer-logo { height: 64px; }
}

/* Recensioni mobile — rimuove aspect-ratio quadrato, altezza libera */
@media (max-width: 768px) {
  .rev-track .testimonial-card {
    aspect-ratio: unset;
    height: auto;
  }
}
