/* ===== LUMOS Film & Kaplama – Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:    #09060a;
  --bg-surface:    #100a0e;
  --bg-card:       #170c12;
  --bg-card-hover: #1e1018;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(212,168,67,0.3);
  --gold:          #d4a843;
  --gold-light:    #e8c86a;
  --gold-dark:     #a07c28;
  --crimson:       #8b1527;
  --crimson-light: #b01e34;
  --crimson-glow:  rgba(139,21,39,0.12);
  --blue:          #3b82f6;
  --blue-light:    #60a5fa;
  --green:         #22c55e;
  --red:           #ef4444;
  --text-primary:  #f5eeee;
  --text-secondary:#9988aa;
  --text-muted:    #4a3d46;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.45);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.55);
  --shadow-glow:   0 0 40px rgba(212,168,67,0.15);
  --shadow-crimson:0 0 60px rgba(139,21,39,0.2);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%,   rgba(139,21,39,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 100% 0%,   rgba(120,14,30,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 50% 50%,   rgba(100,10,22,0.04) 0%, transparent 70%);
}
body > * { position: relative; z-index: 1; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: rgba(139,21,39,0.5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { color: var(--text-secondary); line-height: 1.7; }

.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* ── Section Headers ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  font-size: 1.05rem;
  max-width: 600px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(139,21,39,0.08);
}
.card-media { padding: 0; overflow: hidden; }
.card-media .card-body { padding: 20px; }
.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.card-media:hover img { transform: scale(1.04); }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(9,6,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139,21,39,0.18);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(9,6,10,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(139,21,39,0.2);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(9,9,16,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(212,168,67,0.05); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 60% 50%, rgba(212,168,67,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(59,130,246,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(139,21,39,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(139,21,39,0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title { margin-bottom: 24px; }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.stat-value span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  z-index: 1;
  opacity: 0.9;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: var(--bg-primary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* ── Service Cards ── */
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  border: 1px solid rgba(212,168,67,0.15);
}
.service-title { font-size: 1.1rem; margin-bottom: 8px; }
.service-desc { font-size: 0.88rem; margin-bottom: 16px; }
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }

/* ── Preview Teaser ── */
.preview-teaser {
  background:
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(139,21,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 0%,    rgba(139,21,39,0.07) 0%, transparent 55%),
    var(--bg-surface);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding: 140px 0;
}
.preview-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.preview-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.preview-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.preview-step:hover { border-color: var(--border-accent); }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.step-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.step-text p { font-size: 0.82rem; margin: 0; }

/* ── Gallery / Before-After ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: var(--bg-card);
}
.ba-container { position: relative; width: 100%; height: 100%; overflow: hidden; }
.ba-before, .ba-after { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.ba-label {
  position: absolute;
  top: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ba-before .ba-label { left: 12px; background: rgba(0,0,0,0.6); color: #aaa; }
.ba-after .ba-label { right: 12px; background: var(--gold); color: #000; }
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover .ba-after { clip-path: inset(0 0% 0 0); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  left: 50%;
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}
.gallery-item:hover .ba-divider { left: 100%; }
.ba-car-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.ba-before .ba-car-mock { background: linear-gradient(135deg, #1a1a2a, #111120); }
.ba-after .ba-car-mock  { background: linear-gradient(135deg, #0a1520, #0d1b30); }
.gallery-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 3;
}
.gallery-meta h4 { font-size: 0.88rem; margin-bottom: 2px; }
.gallery-meta span { font-size: 0.75rem; color: var(--gold); }

/* ── Gallery Carousel ── */
.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
  cursor: grab;
}
.gallery-carousel:active { cursor: grabbing; }
.gallery-carousel::-webkit-scrollbar { display: none; }
.gallery-carousel .gallery-item {
  min-width: clamp(200px, 22vw, 260px);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.carousel-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.carousel-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  width: 100%;
}

/* ── Filter Bar ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ── Trust Section ── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trust-item:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.trust-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.trust-title { font-size: 1rem; margin-bottom: 8px; }
.trust-desc { font-size: 0.85rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: #000; border-color: var(--gold); transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding-bottom: 20px; font-size: 0.9rem; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(212,168,67,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text small { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail-text strong { display: block; font-size: 0.95rem; color: var(--text-primary); margin-top: 2px; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-placeholder { text-align: center; position: relative; z-index: 1; }
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Consent ── */
.consent-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.consent-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-text { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }
.consent-text a { color: var(--gold); text-decoration: underline; }

/* ── Footer ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding: 100px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; margin: 16px 0 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  color: var(--text-secondary);
}
.social-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.sticky-cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  cursor: pointer;
}
.sticky-cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.sticky-cta-call {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(212,168,67,0.4);
  transition: all var(--transition);
  cursor: pointer;
}
.sticky-cta-call:hover { transform: translateY(-2px); }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-gold { background: rgba(212,168,67,0.15); color: var(--gold); }
.badge-blue { background: rgba(59,130,246,0.15); color: var(--blue-light); }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-red { background: rgba(239,68,68,0.15); color: var(--red); }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Page Header ── */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--bg-primary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%,  rgba(212,168,67,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 0% 100%,  rgba(139,21,39,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 0%,  rgba(139,21,39,0.08) 0%, transparent 55%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header p { font-size: 1.05rem; max-width: 520px; margin: 16px auto 0; }

/* ── Product Cards ── */
.product-card { cursor: pointer; }
.product-badge-row { display: flex; gap: 6px; margin-bottom: 12px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.spec-item {
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.spec-item strong { color: var(--text-primary); }
.price-range {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.price-range small { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* ── Notification Toast ── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.3rem; }
.toast-text { font-size: 0.88rem; }
.toast-text strong { display: block; margin-bottom: 2px; color: var(--text-primary); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-visual { width: 45%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .preview-teaser-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 70px 0; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .sticky-cta-whatsapp span { display: none; }
}
