/* ============================================================
   DELLO STRITTO AUTOMOTIVE — Main Stylesheet
   ============================================================ */

/* ── Google Fonts are loaded in HTML <head> ── */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --clr-bg:          #0a0a0a;
  --clr-surface-1:   #141414;
  --clr-surface-2:   #1e1e1e;
  --clr-surface-3:   #282828;
  --clr-border:      #2a2a2a;
  --clr-accent:      #ff6b35;
  --clr-accent-dark: #e85a25;
  --clr-accent-glow: rgba(255, 107, 53, 0.18);
  --clr-yellow:      #ffd60a;
  --clr-white:       #ffffff;
  --clr-text:        #e0e0e0;
  --clr-text-muted:  #888888;
  --clr-text-dim:    #555555;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;

  /* Spacing scale (8px base) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.6);
  --shadow-accent: 0 8px 32px rgba(255,107,53,0.25);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;

  /* Layout */
  --container-max:  1200px;
  --nav-height:     116px;
  --section-pad:    100px;
}

/* ============================================================
   2. CSS RESET & NORMALIZE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-accent) var(--clr-surface-1);
}

::-webkit-scrollbar               { width: 6px; }
::-webkit-scrollbar-track          { background: var(--clr-surface-1); }
::-webkit-scrollbar-thumb          { background: var(--clr-accent); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover    { background: var(--clr-accent-dark); }

::selection {
  background: var(--clr-accent);
  color: var(--clr-white);
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.section-pad {
  padding: var(--section-pad) 0;
}

.text-accent   { color: var(--clr-accent); }
.text-yellow   { color: var(--clr-yellow); }
.text-muted    { color: var(--clr-text-muted); }
.text-center   { text-align: center; }
.text-upper    { text-transform: uppercase; letter-spacing: 0.12em; }

.gradient-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-yellow));
  border-radius: var(--radius-full);
  margin: var(--sp-2) 0 var(--sp-3);
}

.gradient-line--center {
  margin: var(--sp-2) auto var(--sp-3);
}

/* ============================================================
   4. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal--left  { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX(40px); }
.reveal.reveal--scale { transform: scale(0.92); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   5. TYPOGRAPHY
   ============================================================ */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--clr-white);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-white);
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-white);
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: var(--sp-2);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.4);
}

.btn-secondary {
  background: var(--clr-yellow);
  color: #000;
}

.btn-secondary:hover {
  background: #e6c109;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

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

.btn-ghost {
  background: transparent;
  color: var(--clr-accent);
  padding: 14px 0;
}

.btn-ghost::after { display: none; }

.btn-ghost:hover { color: var(--clr-accent-dark); }

.btn svg, .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-md);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.navbar__logo-img {
  height: 104px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.navbar__logo:hover .navbar__logo-img { opacity: 0.85; }

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.navbar__link {
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  border-radius: var(--radius-full);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-white);
  background: var(--clr-accent-glow);
}

.navbar__link.active::after,
.navbar__link:hover::after {
  transform: scaleX(1);
}

/* Phone CTA in navbar */
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
}

.navbar__phone svg {
  width: 14px;
  height: 14px;
}

.navbar__phone:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--clr-surface-2);
  transition: background var(--transition-fast);
  cursor: pointer;
  border: 1px solid var(--clr-border);
}

.navbar__hamburger:hover { background: var(--clr-surface-3); }

.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
  z-index: 999;
}

.navbar__mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile-link {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active {
  color: var(--clr-white);
  background: var(--clr-surface-2);
  border-left-color: var(--clr-accent);
}

.navbar__mobile-phone {
  margin-top: var(--sp-2);
  padding: 14px 16px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-align: center;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============================================================
   8. HERO — HOME PAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}

/* Geometric background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(255,107,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255,214,10,0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
}

/* Decorative grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

/* Decorative geometric shapes */
.hero__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__deco-circle-1 {
  right: 8%;
  top: 15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,53,0.15);
}

.hero__deco-circle-2 {
  right: 10%;
  top: 13%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,53,0.1);
}

.hero__deco-ring {
  right: 13%;
  top: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
}

.hero__deco-line-1 {
  right: 0;
  top: 0;
  width: 1px;
  height: 45%;
  background: linear-gradient(180deg, transparent, var(--clr-accent), transparent);
  transform: translateX(-120px);
}

.hero__deco-line-2 {
  right: 0;
  top: 20%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent);
}

.hero__deco-number {
  right: 5%;
  bottom: 20%;
  font-family: var(--font-heading);
  font-size: 18rem;
  color: rgba(255,107,53,0.04);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.02em;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--sp-10)) var(--sp-4) var(--sp-10);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__tag::before,
.hero__tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clr-accent);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.92;
  color: var(--clr-white);
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero__title span {
  color: var(--clr-accent);
  display: block;
}

.hero__subtitle-word {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  margin-top: var(--sp-1);
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero__desc {
  margin-top: var(--sp-3);
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 480px;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.55s both;
}

.hero__cta {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  animation: fadeInUp 0.8s ease 0.65s both;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  z-index: 2;
  animation: fadeIn 1s ease 1.2s both;
}

.hero__scroll-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--clr-text-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--clr-accent), transparent);
  animation: fadeInUp 1s ease 1.4s both;
}

/* ============================================================
   9. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--clr-surface-1);
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255,107,53,0.06) 0%, transparent 60%);
}

.page-hero__bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 14rem);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
}

.page-hero__breadcrumb a {
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover { color: var(--clr-accent); }

.page-hero__breadcrumb span {
  color: var(--clr-accent);
}

.page-hero__breadcrumb::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--clr-accent);
  border-radius: 50%;
  margin-right: 4px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  line-height: 1;
}

.page-hero__subtitle {
  margin-top: var(--sp-2);
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 520px;
}

/* ============================================================
   10. SERVICE CARDS (home preview)
   ============================================================ */
.services-preview {
  background: var(--clr-bg);
}

.section-header {
  margin-bottom: var(--sp-8);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-label {
  justify-content: center;
}

.section-header--center .section-label::before { display: none; }

.section-header--center .section-label::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-3);
}

.service-card {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  transition: transform var(--transition-base), border-color var(--transition-base),
              box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,53,0.3);
  box-shadow: var(--shadow-accent);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: rgba(255,107,53,0.25);
  border-color: rgba(255,107,53,0.4);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-accent);
}

.service-card__number {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================================================
   11. SERVICE CARDS — FULL (servizi.html)
   ============================================================ */
.service-card--full {
  padding: var(--sp-6) var(--sp-5);
}

.service-card--full .service-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: var(--sp-4);
}

.service-card--full .service-card__icon svg {
  width: 34px;
  height: 34px;
}

.service-card--full .service-card__title {
  font-size: 1.8rem;
  margin-bottom: var(--sp-2);
}

.service-card--full .service-card__desc {
  font-size: 0.95rem;
  margin-bottom: var(--sp-3);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.service-card__feature::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   12. WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--clr-surface-1);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.why-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-4px);
}

.why-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  position: relative;
}

.why-card__icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,53,0.1);
}

.why-card__icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--clr-accent);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.why-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================================================
   13. OPENING HOURS BANNER
   ============================================================ */
.hours-banner {
  background: var(--clr-bg);
}

.hours-card {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-8);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-6);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-yellow), var(--clr-accent));
}

.hours-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--clr-border), transparent);
}

.hours-block {
  text-align: center;
}

.hours-block__day {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.hours-block__time {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  line-height: 1.2;
}

.hours-block__time small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hours-block--closed .hours-block__time {
  color: var(--clr-text-dim);
}

/* ============================================================
   14. STATS / NUMBERS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin: var(--sp-10) 0;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: 0.04em;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-muted);
  margin-top: 6px;
}

/* ============================================================
   15. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--clr-surface-1);
  border-top: 1px solid var(--clr-border);
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-inner .section-label::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
}

.cta-inner .section-title { margin-bottom: var(--sp-3); }

.cta-inner p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* ============================================================
   16. PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent), transparent, var(--clr-accent));
  pointer-events: none;
}

.process-card {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.process-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-4px);
}

.process-card__step {
  width: 64px;
  height: 64px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  position: relative;
  z-index: 1;
}

.process-card__step span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-white);
  letter-spacing: 0.04em;
}

.process-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.process-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ============================================================
   17. VALUES SECTION (chi-siamo.html)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.value-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  border-top: 3px solid var(--clr-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-accent-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.value-card__icon svg { width: 26px; height: 26px; color: var(--clr-accent); }

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.value-card__desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* Story section */
.story-section {
  background: var(--clr-bg);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.story-text p {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--sp-3);
}

.story-text p:last-child { margin-bottom: 0; }

.story-visual {
  position: relative;
  padding: var(--sp-4);
}

.story-badge {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-yellow));
}

.story-badge__number {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: 0.04em;
}

.story-badge__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-text-muted);
  margin-top: 8px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.highlight-item {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-3);
  text-align: center;
  transition: border-color var(--transition-base);
}

.highlight-item:hover { border-color: var(--clr-accent); }

.highlight-item svg {
  width: 28px;
  height: 28px;
  color: var(--clr-accent);
  margin: 0 auto var(--sp-2);
}

.highlight-item span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-6);
  align-items: start;
}

/* Contact Form */
.contact-form-card {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-3);
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-muted);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-dim);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-accent-glow);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option { background: var(--clr-surface-2); }

.form-submit-wrap {
  margin-top: var(--sp-5);
}

.form-success {
  display: none;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--radius-md);
  color: var(--clr-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: var(--sp-3);
}

.form-success.visible { display: block; }

/* Contact Info Card */
.contact-info-card {
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-3));
}

.contact-info-card__header {
  background: var(--clr-accent);
  padding: var(--sp-5) var(--sp-5);
}

.contact-info-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.contact-info-card__header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-info-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 42px;
  height: 42px;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg { width: 20px; height: 20px; color: var(--clr-accent); }

.contact-info-item__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-text-dim);
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  color: var(--clr-white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-item__value a {
  color: var(--clr-accent);
  transition: color var(--transition-fast);
}

.contact-info-item__value a:hover { color: var(--clr-accent-dark); }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--clr-border);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 9px 0;
  font-size: 0.84rem;
}

.hours-table td:first-child {
  color: var(--clr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--clr-white);
  font-weight: 500;
}

.hours-table .closed td:last-child {
  color: var(--clr-text-dim);
}

/* Map */
.map-section {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(90%) contrast(90%);
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--clr-surface-1);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-10);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--clr-border);
}

.footer__logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.footer__logo-main span { color: var(--clr-accent); }

.footer__logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-3);
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-3);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer__link {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding: 4px 0;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width var(--transition-fast);
}

.footer__link:hover {
  color: var(--clr-accent);
}

.footer__link:hover::before { width: 12px; }

.footer__contact-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  margin-bottom: var(--sp-2);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.footer__contact-item a {
  color: var(--clr-accent);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover { color: var(--clr-accent-dark); }

.footer__siteby {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity var(--transition-base);
  flex-shrink: 0;
}

.footer__siteby:hover { opacity: 1; }

.footer__siteby-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer__siteby-text {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer__siteby-text strong {
  color: var(--clr-white);
  font-weight: 600;
}

.footer__bottom {
  padding: var(--sp-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
}

.footer__copyright span { color: var(--clr-accent); }

.footer__bottom-links {
  display: flex;
  gap: var(--sp-4);
}

.footer__bottom-link {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover { color: var(--clr-accent); }

/* ============================================================
   20. GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
}

/* ============================================================
   21. DIVIDER
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 0 var(--sp-4);
}

/* ============================================================
   22. BADGE / TAG
   ============================================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
}

/* ============================================================
   23. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .hours-card {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    padding: var(--sp-5);
  }

  .hours-divider { display: none; }

  .story-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .story-visual { padding: 0; }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   24. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  /* Nav */
  .navbar__nav,
  .navbar__phone {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__deco-circle-1,
  .hero__deco-circle-2,
  .hero__deco-ring,
  .hero__deco-number { display: none; }

  .hero__cta { flex-direction: column; align-items: flex-start; }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

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

  .process-grid::before { display: none; }

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

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-2);
  }

  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Hours */
  .hours-card {
    padding: var(--sp-4);
  }

  /* Page hero */
  .page-hero__bg-text { display: none; }

  /* Stats */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--sp-6) 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-3); }

  .hero__title {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .btn {
    padding: 13px 24px;
    font-size: 0.82rem;
  }

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

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  width: 100%;
  max-width: 560px;
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transform: scale(0.95) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible .cookie-banner__inner {
  transform: scale(1) translateY(0);
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.cookie-banner__desc {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__desc a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.cookie-banner__btn--primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
}

.cookie-banner__btn--secondary:hover {
  border-color: var(--clr-text-muted);
  color: var(--clr-text);
}

@media (max-width: 480px) {
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}
