/* ================================================================
   SMILE GROUP — style.css
   Palette: #e4680b (arancione) · #fdd005 (giallo) · #111111 (nero)
   ================================================================ */

/* ---- VARIABILI ---- */
:root {
  --orange:       #e4680b;
  --orange-dark:  #c55a0a;
  --orange-light: #fff4ed;
  --yellow:       #fdd005;
  --yellow-dark:  #c9a900;
  --yellow-light: #fffde7;
  --black:        #111111;
  --black-2:      #1e1e1e;
  --black-3:      #2d2d2d;

  --text-primary:   #111111;
  --text-secondary: #4b4b4b;
  --text-muted:     #8a8a8a;
  --surface:        #fafaf8;
  --border:         #e5ddd4;
  --white:          #ffffff;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);

  --nav-h: 70px;
  --max-w: 1180px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange-light);
  color: var(--orange-dark);
  margin-bottom: 14px;
}

.section-label.yellow {
  background: var(--yellow-light);
  color: #7a5f00;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- ANIMATE ON SCROLL ---- */
.animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ---- TAGS / CHIPS ---- */
.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  background: var(--orange-light);
  color: var(--orange-dark);
}
.chip.yellow { background: var(--yellow-light); color: #7a5f00; }
.chip.black  { background: #f0eeeb; color: var(--black); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-chs {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .02em;
}
.logo-smile {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: var(--orange-light);
}
.nav-links .btn { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color .15s, background .15s;
}
.nav-drawer a:hover { color: var(--orange); background: var(--orange-light); }
.nav-drawer .btn { justify-content: center; margin-top: 4px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 60px 0;
  min-height: 720px;

  background-image: url('banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

}
.hero{
  position: relative;
  background-image: url('banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  opacity: .35;
  
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--orange) 0, var(--orange) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}
.hero .container{
  position: relative;
  z-index: 2;
}
.hero-content { position: relative; max-width: 740px; }

.hero-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange-light);
  color: var(--orange-dark);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.hero h1 span { color: var(--orange); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-badge svg { color: var(--orange); flex-shrink: 0; }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--black);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-value span { color: var(--yellow); }

.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ================================================================
   CATEGORIES
   ================================================================ */
.section { padding: 88px 0; }
.section.bg-surface { background: var(--surface); }

.section-head { margin-bottom: 52px; }

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

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

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}

.cat-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.cat-card.featured { border-color: transparent; }
.cat-card.featured:hover { border-color: var(--orange); }

.cat-card-corner {
  position: absolute;
  top: 0; right: 0;
  width: 72px; height: 72px;
  border-bottom-left-radius: 100%;
  opacity: .25;
}

.cat-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.cat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cat-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cat-card p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.cat-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  font-weight: 700;
  transition: gap .15s;
}
.cat-card a:hover { gap: 9px; }

.section-cta { text-align: center; margin-top: 40px; }

.cat-card.small { padding: 26px; }
.cat-card.small .cat-icon { width: 44px; height: 44px; }
.cat-card.small h3 { font-size: .95rem; }

/* ================================================================
   CHI SIAMO
   ================================================================ */
.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.chi-siamo-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.chi-siamo-text p strong { color: var(--text-primary); }

.chi-siamo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kpi-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.kpi-card.dark  { background: var(--black); }
.kpi-card.light { background: var(--orange-light); }

.kpi-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 7px;
}

.kpi-card.dark  .kpi-value { color: var(--yellow); }
.kpi-card.light .kpi-value { color: var(--orange); }

.kpi-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kpi-card.dark  .kpi-label { color: rgba(255,255,255,.5); }
.kpi-card.light .kpi-label { color: var(--orange-dark); }

/* ================================================================
   catalogo smile
   ================================================================ */
.catalogo-smile .area-badge {
  background: #fffde7;
  color: #7a5f00;
}

.catalogo-smile-img {
  width: 320px;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
/* ================================================================
   MARCHI
   ================================================================ */
.section-blue-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.section-blue-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 0, transparent 50%);
  background-size: 22px 22px;
}

.section-blue-header .container { position: relative; }

.section-blue-header .eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.section-blue-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.section-blue-header p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.6;
}

/* Intro text */
.marchi-intro {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.marchi-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 14px;
}

.marchi-intro p + p { margin-bottom: 0; }

/* Featured brands */
.featured-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.brand-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.brand-card-corner {
  position: absolute;
  top: 0; right: 0;
  width: 96px; height: 96px;
  border-bottom-left-radius: 100%;
  opacity: .3;
}

.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.brand-since { font-size: .75rem; color: var(--text-muted); }

.brand-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.brand-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.brand-highlight {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--text-secondary);
}

.brand-highlight svg { flex-shrink: 0; }

.brand-logo {
  display: flex;
  justify-content: center; /* centra orizzontalmente */
  align-items: center;     /* centra verticalmente */
}

/* Historic brands */
.historic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.historic-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  transition: background .2s, box-shadow .2s;
}
.historic-card:hover { background: var(--white); box-shadow: var(--shadow); }


}
.historic-card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.historic-card-top img {
  width: 70px; /* esempio */
}

.historic-card-top h3 {
  display: block;
  max-width: 120px;
  line-height: 1.15;
  white-space: normal;
}

.historic-card-top .title-block {
  display: flex;
  flex-direction: column;
}

.historic-card p {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.historic-card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.historic-card-top .chip {
  margin-left: auto;
}

/* ================================================================
   AREA RISERVATA
   ================================================================ */
.area-riservata {
  padding: 88px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.area-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  padding: 56px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.area-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 340px; height: 340px;
  background: radial-gradient(circle at top right, var(--orange-light), transparent 70%);
  pointer-events: none;
}

.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--yellow);
  margin-bottom: 28px;
}

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

.area-text h2 { margin-bottom: 16px; }

.area-text > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.area-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.area-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.area-features li svg { color: var(--orange); flex-shrink: 0; }

.area-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.area-note {
  font-size: .82rem;
  color: var(--text-muted);
}

.area-note a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Decorative card stack */
.area-visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-card-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.area-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  position: absolute;
  width: 100%;
}

.area-card-back {
  background: var(--yellow-light);
  border: 2px solid #f0e060;
  top: 20px;
  left: 20px;
  transform: rotate(3deg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 180px;
}

.area-card-line {
  height: 8px;
  background: var(--yellow);
  border-radius: 4px;
  opacity: .5;
}
.area-card-line.short   { width: 70%; }
.area-card-line.shorter { width: 45%; }

.area-card-front {
  background: var(--black);
  border: 2px solid var(--black-3);
  top: 0;
  left: 0;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.area-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.area-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.area-card-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.area-card-dots {
  display: flex;
  gap: 6px;
}

.area-card-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .7;
}
.area-card-dots span:first-child { opacity: 1; background: var(--orange); }

@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-visual { height: 200px; }
  .area-inner { padding: 36px 28px; }
}

@media (max-width: 600px) {
  .area-inner { padding: 28px 20px; }
  .area-visual { display: none; }
}

/* 
/* ================================================================
   BRANDS STRIP
   ================================================================ */
.brands-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.brands-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.brand-pill {
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  transition: color .15s, border-color .15s, background .15s;
}
.brand-pill:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-light);
}

.brands-link { text-align: center; }
.brands-link a {
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}
.brands-link a:hover { gap: 9px; }
.brand-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.brand-dropdown summary::-webkit-details-marker {
  display: none;
}
.catalog-list {
  margin-top: 8px;
  padding-top: 8px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  border-top: 1px solid rgba(0,0,0,.06);
}
.catalog-list a {
  display: block !important;

  width: auto;
  padding: 2px 0 !important;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;

  color: #e4680b;
  font-size: .82rem !important;
  font-weight: 500 !important;
  text-decoration: none;

  transition: color .2s ease, transform .2s ease;
}
.catalog-list a:hover {
  color: #c55400;
  transform: translateX(2px);
}
/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-section .hours {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 38px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  padding: 60px 0 0;
  color: rgba(255,255,255,.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-chs { font-size: 1.6rem; }

.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  margin: 14px 0 0;
  color: rgba(255,255,255,.45);
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--yellow); }

.footer-contacts { display: flex; flex-direction: column; gap: 10px; }

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}

.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow); }

.footer-contact a {
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .hamburger { display: flex; }
  .nav-links  { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px; }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }

  .categories-top,
  .categories-bottom { grid-template-columns: 1fr 1fr; }

  .chi-siamo-grid { grid-template-columns: 1fr; gap: 48px; }

  .featured-brands { grid-template-columns: 1fr; }

  .historic-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 72px 0 60px; }
  .section { padding: 60px 0; }

  .categories-top,
  .categories-bottom { grid-template-columns: 1fr; }

  .kpi-grid { grid-template-columns: 1fr 1fr; }

  .historic-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .section-title { font-size: 1.65rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   ACCORDION CHS
   ========================================================= */

.chs-accordion {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.accordion-item {
  border-bottom: 1px solid #e7e2dc;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-align: left;

  font-size: 1.45rem;
  font-weight: 800;
  color: #111111;

  transition: 0.2s ease;
}

.accordion-header:hover {
  color: #e4680b;
}

.accordion-header .icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  background: #fff1e7;
  color: #e4680b;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  font-weight: 400;

  transition: 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding-bottom: 36px;
}

.accordion-content h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
  color: #111111;
}

.accordion-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.accordion-content ul {
  margin: 20px 0;
  padding-left: 22px;
}

.accordion-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {

  .accordion-header {
    font-size: 1.1rem;
    gap: 18px;
  }

  .accordion-content h3 {
    font-size: 1.15rem;
  }

}