/* =============================================
   IMPRESA PULIZIE — Premium CSS
   ============================================= */

:root {
  --blue-900: #0a1628;
  --blue-800: #0d1f3c;
  --blue-700: #112a52;
  --blue-600: #1a3a6b;
  --blue-500: #1e4d8c;
  --blue-400: #2563b0;
  --accent: #00c2ff;
  --accent-soft: #38d4ff;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-secondary); }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--blue-900);
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,194,255,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-dark {
  background: var(--blue-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.4);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text { font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.nav-logo-sub { font-size: 0.65rem; font-weight: 500; opacity: 0.7; letter-spacing: 0.06em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--blue-900);
  padding: 24px;
  z-index: 899;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, #0d2f5e 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,194,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,255,0.15);
  border: 1px solid rgba(0,194,255,0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.hero-img-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-img-card-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-img-card-icon svg { width: 20px; height: 20px; color: white; }
.hero-img-card-title { font-size: 0.85rem; font-weight: 700; }
.hero-img-card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── SCHEDULING CARD STRIP ── */
.schedule-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}
.schedule-strip-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.schedule-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.schedule-cards::-webkit-scrollbar { display: none; }
.schedule-card {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 200px;
  transition: var(--transition);
  cursor: default;
}
.schedule-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,194,255,0.12);
  transform: translateY(-2px);
}
.schedule-card-day {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.schedule-card-service {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.schedule-card-type {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.schedule-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.schedule-card-status {
  margin-top: 10px;
  display: inline-block;
  background: rgba(13,148,136,0.1);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ── BENTO SERVICES ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal-light) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.bento-card:hover::before { opacity: 0.04; }
.bento-card-1 { grid-column: span 5; grid-row: span 2; }
.bento-card-2 { grid-column: span 7; }
.bento-card-3 { grid-column: span 4; }
.bento-card-4 { grid-column: span 3; }
.bento-card-5 { grid-column: span 4; }
.bento-card-6 { grid-column: span 4; }
.bento-card-dark {
  background: var(--blue-900);
  border-color: transparent;
  color: var(--white);
}
.bento-card-dark p { color: rgba(255,255,255,0.65); }
.bento-card-dark:hover::before { display: none; }
.bento-card-dark:hover { background: var(--blue-800); }
.bento-card-accent {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 100%);
  border-color: transparent;
}
.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.bento-icon-blue { background: rgba(0,194,255,0.12); color: var(--accent); }
.bento-icon-teal { background: rgba(13,148,136,0.12); color: var(--teal-light); }
.bento-icon-white { background: rgba(255,255,255,0.1); color: var(--white); }
.bento-icon svg { width: 26px; height: 26px; }
.bento-tag {
  display: inline-block;
  background: rgba(0,194,255,0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.bento-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}
.bento-card-1 .bento-img { height: 280px; }
.bento-feature-list { margin-top: 16px; }
.bento-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
}
.bento-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(13,148,136,0.12);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bento-check svg { width: 10px; height: 10px; }

/* ── PROCESS TIMELINE ── */
.process-section { background: var(--blue-900); }
.process-section h2 { color: var(--white); }
.process-section .section-lead { color: rgba(255,255,255,0.65); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--teal-light));
}
.process-step { text-align: center; position: relative; padding: 0 16px; }
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-700);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.process-step h3 { color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* ── GALLERY / MASONRY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.gallery-tall { grid-row: span 2; }

/* ── FAQ ACCORDION ── */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.open { border-color: var(--accent); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 12px;
  user-select: none;
}
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  color: var(--text-secondary);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--blue-900);
}
.faq-chevron svg { width: 14px; height: 14px; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,194,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact-box {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 24px;
}
.cta-contact-box a { color: var(--accent); font-weight: 600; }
.cta-contact-box a:hover { color: var(--accent-soft); }

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-500);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 0.78rem; font-weight: 700; color: var(--gray-400); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.contact-info-value a { color: var(--blue-500); }
.contact-info-value a:hover { color: var(--accent); }

/* ── FORM ── */
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.form-subtitle { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,194,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 12px; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-900);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.sticky-cta-btn:hover {
  background: var(--blue-700);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.sticky-cta-btn svg { width: 18px; height: 18px; }
.sticky-phone-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(13,148,136,0.45);
  text-decoration: none;
}
.sticky-phone-btn:hover {
  background: var(--teal-light);
  transform: scale(1.08);
}
.sticky-phone-btn svg { width: 22px; height: 22px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { color: var(--white); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 300px; line-height: 1.7; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-legal-info { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header .label { margin-bottom: 12px; display: block; }
.section-lead { color: var(--text-secondary); font-size: 1.05rem; margin-top: 12px; }

/* ── LEGAL PAGES ── */
.legal-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 140px 0 80px;
  color: var(--white);
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: 2.4rem; }
.legal-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 1rem; }
.legal-body {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 12px; color: var(--text-primary); }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 8px; color: var(--text-primary); }
.legal-body p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.8; }
.legal-body ul { margin: 0 0 14px 20px; list-style: disc; }
.legal-body ul li { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.7; }
.legal-body a { color: var(--blue-500); }
.legal-body a:hover { color: var(--accent); }
.legal-update { display: inline-block; background: var(--gray-100); color: var(--text-secondary); font-size: 0.8rem; padding: 4px 12px; border-radius: 50px; margin-bottom: 40px; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,0.75); font-size: 0.85rem; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--accent); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--accent);
  color: var(--blue-900);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--accent-soft); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-card-1 { grid-column: span 12; }
  .bento-card-2 { grid-column: span 12; }
  .bento-card-3 { grid-column: span 6; }
  .bento-card-4 { grid-column: span 6; }
  .bento-card-5 { grid-column: span 6; }
  .bento-card-6 { grid-column: span 6; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { height: 320px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .bento-card-3, .bento-card-4, .bento-card-5, .bento-card-6 { grid-column: span 12; }
  .process-timeline { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-cta { bottom: 20px; right: 16px; }
  .contact-form { padding: 24px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .bento-card { padding: 24px; }
}
