/* ============================================================
   AVERSA GOMME S.R.L. - Main Stylesheet
   Palette: White/Red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --red: #d92929;
  --red-dark: #b81f1f;
  --red-soft: #ffe7e7;
  --red-glow: rgba(217, 41, 41, 0.18);
  --ink: #1d232c;
  --ink-soft: #4e5968;
  --ink-muted: #718094;
  --line: #e6e9ee;
  --line-strong: #d8dde5;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --surface-alt: #eef2f6;
  --success: #1e9b55;
  --wa: #25d366;
  --nav-h: 72px;
  --shadow-sm: 0 14px 30px rgba(29, 35, 44, 0.08);
  --shadow-md: 0 22px 60px rgba(29, 35, 44, 0.12);
  --shadow-lg: 0 35px 90px rgba(29, 35, 44, 0.14);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(217, 41, 41, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 45%, #f5f7fa 100%);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface-soft);
}

::-webkit-scrollbar-thumb {
  background: rgba(217, 41, 41, 0.45);
  border-radius: 999px;
}

.page-shell {
  position: relative;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 41, 41, 0.1);
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 20px 45px rgba(29, 35, 44, 0.08);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo .brand-logo {
  display: block;
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 2rem;
  background: var(--wa);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #1ebe5d !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.25);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
  border-radius: 999px;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(217, 41, 41, 0.12);
  box-shadow: 0 24px 40px rgba(29, 35, 44, 0.08);
  padding: 1.4rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--red);
}

.nav-mobile .nav-cta {
  margin-left: 0;
  justify-content: center;
  margin-top: 0.5rem;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 5% 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 36%, rgba(255, 255, 255, 0.56) 64%, rgba(255, 255, 255, 0.82) 100%),
    radial-gradient(circle at 82% 22%, rgba(217, 41, 41, 0.14), transparent 28%),
    url('../assets/hero-garage-bg.svg');
  background-position: center, 82% 22%, 72% center;
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
  transform: scale(1.03);
  transform-origin: center;
  opacity: 0.98;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.18) 68%, rgba(245, 247, 250, 0.95) 100%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 41, 41, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 41, 41, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 60px 60px, 60px 60px;
  }
}

.hero-wheel {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(60vw, 680px);
  opacity: 0.1;
  z-index: 1;
  animation: wheelSpin 30s linear infinite;
  pointer-events: none;
}

@keyframes wheelSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  background: var(--red);
  opacity: 0.5;
}

.hero-lines::before {
  width: 3px;
  height: 56%;
  left: 5%;
  top: 22%;
  animation: linePulse 3s ease-in-out infinite;
}

.hero-lines::after {
  width: 110px;
  height: 3px;
  left: calc(5% + 14px);
  top: 22%;
  animation: linePulse 3s ease-in-out infinite 0.5s;
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-left: 2rem;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1.4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(217, 41, 41, 0.08);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 36px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 6rem 5%;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--red);
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 248, 251, 0.98) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.about-visual {
  position: relative;
}

.about-big-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 41, 41, 0.18);
  user-select: none;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 1.5rem;
  border-radius: 22px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.stat-box:hover {
  border-color: rgba(217, 41, 41, 0.24);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

.about-text p {
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-info-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.about-info-row svg {
  color: var(--red);
}

.about-info-row strong {
  color: var(--ink);
  min-width: 80px;
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-preview {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-bottom: 3px solid transparent;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--red);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.service-card:hover .service-icon,
.service-card-full:hover .service-icon {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  background: linear-gradient(180deg, rgba(247, 248, 251, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.55;
}

.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-wheel-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 251, 0.9) 100%);
  box-shadow: var(--shadow-lg);
}

.why-wheel-svg {
  width: 100%;
  height: 100%;
  animation: wheelSpin 20s linear infinite;
}

.why-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-center-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}

.why-center-text span:last-child {
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #d92929 0%, #c11f1f 100%);
  padding: 3.8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 26%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2,
.cta-band p,
.cta-band .btn,
.cta-band > div {
  position: relative;
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.cta-band p {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.cta-band .btn {
  background: #fff;
  color: var(--red);
}

.cta-band .btn:hover {
  background: #fff6f6;
  color: var(--red-dark);
}

/* ============================================================
   LOCATION + MAPS
   ============================================================ */
.location {
  background: transparent;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.hours-block,
.contact-form,
.contact-info-block,
.legal-card,
.cookie-banner,
.map-placeholder {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hours-block {
  padding: 2rem;
  border-radius: 24px;
}

.hours-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(113, 128, 148, 0.12);
  font-size: 0.92rem;
}

.hours-row .day {
  color: var(--ink-soft);
}

.hours-row .time {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.hours-row.closed .time {
  color: var(--red);
}

.contact-quick {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-quick a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-quick a:hover {
  background: #fff;
  transform: translateX(4px);
  border-color: rgba(217, 41, 41, 0.2);
}

.contact-quick a svg {
  color: var(--red);
  flex-shrink: 0;
}

.contact-quick a.wa svg {
  color: var(--wa);
}

.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
}

.map-consent {
  min-height: 100%;
}

.map-consent iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

.map-placeholder {
  min-height: 380px;
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 248, 251, 0.98) 100%),
    radial-gradient(circle at top right, rgba(217, 41, 41, 0.08), transparent 28%);
}

.map-placeholder h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.map-placeholder p {
  color: var(--ink-soft);
  max-width: 540px;
}

.map-placeholder-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 5% 4rem;
  background:
    radial-gradient(circle at top right, rgba(217, 41, 41, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 250, 1) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 41, 41, 0.12);
}

.page-hero::after {
  content: attr(data-title);
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 41, 41, 0.12);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--red);
}

.breadcrumb span {
  color: var(--ink-muted);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--ink);
}

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

/* ============================================================
   SERVICES FULL
   ============================================================ */
.services-full {
  background: transparent;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card-full {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.service-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  transition: height 0.4s;
}

.service-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 41, 41, 0.18);
}

.service-card-full:hover::before {
  height: 100%;
}

.service-card-full .service-icon {
  margin-bottom: 1.5rem;
}

.service-card-full h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card-full p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-detail-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1rem;
  position: relative;
}

.service-detail-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: transparent;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-form {
  padding: 2.5rem;
  border-top: 3px solid var(--red);
  border-radius: 28px;
}

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-form .form-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface-soft);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 0.9rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(217, 41, 41, 0.4);
  box-shadow: 0 0 0 4px rgba(217, 41, 41, 0.1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select option {
  background: #fff;
}

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  margin-top: 1rem;
  font-weight: 500;
}

.form-feedback.success {
  background: rgba(30, 155, 85, 0.08);
  border: 1px solid rgba(30, 155, 85, 0.28);
  color: var(--success);
  display: block;
}

.form-feedback.error {
  background: rgba(217, 41, 41, 0.08);
  border: 1px solid rgba(217, 41, 41, 0.24);
  color: var(--red);
  display: block;
}

.btn-loading {
  opacity: 0.75;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block {
  padding: 2rem;
  border-radius: 28px;
}

.contact-info-block h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--ink);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(113, 128, 148, 0.12);
  font-size: 0.92rem;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item a {
  color: var(--ink-soft);
  transition: color 0.2s;
}

.info-item a:hover {
  color: var(--red);
}

.info-item .info-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 0.1rem;
}

.direct-cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.direct-cta a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.direct-cta a.phone {
  background: var(--surface-soft);
  border-color: var(--line-strong);
}

.direct-cta a.phone:hover {
  border-color: rgba(217, 41, 41, 0.3);
  color: var(--red);
}

.direct-cta a.phone svg {
  color: var(--red);
}

.direct-cta a.whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: #1f9b52;
}

.direct-cta a.whatsapp:hover {
  background: var(--wa);
  color: #fff;
}

.direct-cta a.email {
  background: var(--surface-soft);
  border: 1px solid var(--line-strong);
}

.direct-cta a.email:hover {
  border-color: rgba(29, 35, 44, 0.2);
}

.direct-cta a.email svg {
  color: var(--ink-soft);
}

/* ============================================================
   LEGAL
   ============================================================ */
.legal-page {
  padding: 4rem 5% 6rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.legal-card {
  border-radius: 28px;
  padding: 2.2rem;
}

.legal-card + .legal-card {
  margin-top: 1.5rem;
}

.legal-card h2,
.legal-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.legal-card h2 {
  font-size: 1.5rem;
}

.legal-card h3 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.legal-card strong {
  color: var(--ink);
}

.legal-meta {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--red-soft);
  color: var(--red-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-brand-mark .brand-logo {
  width: min(100%, 212px);
  height: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 280px;
}

.footer-brand .piva {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 1px;
}

.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer-links a {
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-links .footer-link-button {
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  text-align: left;
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-links .footer-link-button:hover {
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

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

.footer-contact a {
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.footer-bottom a {
  color: var(--ink-soft);
}

.footer-bottom a:hover,
.footer-link-button:hover {
  color: var(--red);
}

.footer-link-button {
  background: none;
  border: none;
  color: var(--ink-soft);
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 995;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
  animation: none;
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  }

  50% {
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.42);
  }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner-wrap {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: none;
}

.cookie-banner-wrap.visible {
  display: block;
}

.cookie-banner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 1.5rem;
}

.cookie-banner-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.cookie-banner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.cookie-banner p a {
  color: var(--red);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.cookie-banner-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: none;
}

.cookie-banner-meta.open {
  display: block;
}

.cookie-banner-meta strong {
  color: var(--ink);
}

.cookie-banner-meta p + p {
  margin-top: 0.6rem;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .why-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .services-full-grid {
    grid-template-columns: 1fr;
  }

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

  .legal-meta {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .nav-logo {
    max-width: 160px;
  }

  .nav-logo .brand-logo {
    width: 150px;
  }

  section {
    padding: 4rem 5%;
  }

  .hero::before {
    background-position: center, 82% 18%, 68% center;
    background-size: cover, auto, auto 100%;
  }

  .hero-content {
    padding-left: 0;
    max-width: 100%;
  }

  .services-grid,
  .about-stats,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero::after {
    display: none;
  }

  .why-wheel-wrap {
    width: 220px;
    height: 220px;
  }

  .cookie-banner-main {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
    padding-top: calc(var(--nav-h) + 1rem);
  }

  .hero::before {
    background-position: center, 86% 14%, 74% center;
    background-size: cover, auto, auto 100%;
  }

  .hero-wheel {
    right: -32%;
    width: min(94vw, 520px);
    opacity: 0.08;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .nav-logo .brand-logo {
    width: 136px;
  }

  .hero-btns,
  .map-placeholder-actions,
  .cookie-banner-actions {
    flex-direction: column;
  }

  .hero-btns .btn,
  .map-placeholder-actions .btn,
  .cookie-banner-actions .btn {
    width: 100%;
  }

  .contact-form,
  .contact-info-block,
  .legal-card,
  .cookie-banner {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .map-placeholder {
    padding: 1.4rem;
    min-height: 320px;
  }

  .wa-float {
    bottom: 1rem;
    right: 1rem;
  }
}
