/* ===== VARIABLES ===== */
:root {
  --bg-dark: #0d0f12;
  --bg-medium: #141720;
  --bg-card: #1a1e2a;
  --accent: #e50914;
  --accent-light: #ff3344;
  --text-primary: #f0ece4;
  --text-secondary: #9a9da8;
  --border: rgba(229, 9, 20, 0.18);
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.16,1,0.3,1);
}

body.light-mode {
  --bg-dark: #f8f9fa;
  --bg-medium: #ffffff;
  --bg-card: #ffffff;
  --accent: #d90429;
  --accent-light: #ef233c;
  --text-primary: #1a1e2a;
  --text-secondary: #4a5568;
  --border: rgba(0,0,0,0.1);
}
body.light-mode .hero-overlay {
  background: linear-gradient(135deg, rgba(248,249,250,0.88) 0%, rgba(248,249,250,0.55) 60%, rgba(248,249,250,0.75) 100%);
}
body.light-mode .hero-bg-animated {
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(229,9,20,0.1) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(229,9,20,0.05) 0%, transparent 55%),
              linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}
body.light-mode #navbar.scrolled {
  background: rgba(255,255,255,0.92);
}
body.light-mode .btn-primary { color: #ffffff; }
body.light-mode .service-link { color: #ffffff; }
body.light-mode .gallery-overlay {
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 60%);
}
body.light-mode .compare-label {
  background: rgba(255,255,255,0.85); color: var(--text-primary);
}
body.light-mode .testimonial-card {
  background: rgba(255,255,255,0.85);
}
body.light-mode .form-group input, 
body.light-mode .form-group select, 
body.light-mode .form-group textarea {
  background: rgba(0,0,0,0.02);
}
body.light-mode #footer {
  background: #f1f3f5;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text-primary); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 0.75rem;
}
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 3.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-secondary); font-size: 1rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #0d0f12; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(200,144,42,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,144,42,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(200,144,42,0.5); color: var(--text-primary);
  padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(229,9,20,0.08); }
.btn-full { width: 100%; justify-content: center; }
.btn-full svg { width: 20px; height: 20px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,15,18,0.92); backdrop-filter: blur(16px);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; display: flex; align-items: center; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; transition: height 0.3s ease; }
#navbar.scrolled .nav-logo-img { height: 38px; }
.logo-bsk { color: var(--text-primary); }
.logo-btp { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: color 0.3s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important; color: #ffffff !important; font-weight: 700 !important; padding: 0.55rem 1.4rem; border-radius: 50px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

.theme-toggle { background: none; border: none; color: var(--text-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 8px; border-radius: 50%; transition: var(--transition); }
.theme-toggle:hover { background: rgba(229,9,20,0.1); color: var(--accent); }
.theme-toggle svg { width: 22px; height: 22px; }
.theme-toggle .sun-icon { display: none; }
body.light-mode .theme-toggle .sun-icon { display: block; }
body.light-mode .theme-toggle .moon-icon { display: none; }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg-animated {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(200,144,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(200,144,42,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #0d0f12 0%, #12161f 50%, #0d0f12 100%);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(229,9,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,9,20,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute; display: block; width: 3px; height: 3px;
  background: var(--accent); border-radius: 50%; opacity: 0;
  animation: particleFloat var(--dur) var(--delay) infinite ease-in-out;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) scale(1.5); opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,15,18,0.88) 0%, rgba(13,15,18,0.55) 60%, rgba(13,15,18,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 2rem; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 10vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-sub { color: var(--text-secondary); font-size: 1rem; max-width: 520px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2;
  color: var(--text-secondary); font-size: 0.75rem; letter-spacing: 0.15em;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--accent)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.trust-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section-dark { background: var(--bg-dark); padding: 7rem 0; }
.section-medium { background: var(--bg-medium); padding: 7rem 0; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.25rem; transition: var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(229,9,20,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(229,9,20,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; color: var(--accent); margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: auto;
  position: relative; z-index: 2;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff; font-size: 0.85rem; font-weight: 700;
  padding: 0.65rem 1.4rem; border-radius: 50px;
  transition: var(--transition); letter-spacing: 0.03em;
  box-shadow: 0 3px 14px rgba(229,9,20,0.28);
  cursor: pointer;
}
.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,9,20,0.45);
}

/* ===== PARALLAX QUOTE ===== */
.parallax-quote {
  position: relative; min-height: 450px; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -60px; background-size: cover; background-position: center;
  background-attachment: fixed; will-change: transform;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(13,15,18,0.78); }
.parallax-content { position: relative; z-index: 2; text-align: center; padding: 3rem 2rem; max-width: 700px; }
.parallax-content blockquote { color: #ffffff; font-family: var(--font-display); font-size: clamp(1.3rem,3vw,2rem); font-style: italic; line-height: 1.5; margin-bottom: 1rem; }
.parallax-content blockquote em { color: var(--accent); font-style: normal; }
.parallax-content cite { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 1.5rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
.gallery-item.large { grid-column: 1 / 3; grid-row: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,15,18,0.88) 0%, rgba(13,15,18,0.15) 45%, transparent 65%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem 1.5rem;
  opacity: 1; transition: background 0.4s;
}
.gallery-item:hover .gallery-overlay { background: linear-gradient(to top, rgba(13,15,18,0.95) 0%, rgba(13,15,18,0.25) 55%, transparent 75%); }
.gallery-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }
.gallery-overlay h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0; color: #ffffff; font-weight: 700; }
.gallery-overlay p { color: var(--text-secondary); font-size: 0.82rem; }

/* ===== AVANT / APRÈS ===== */
.compare-wrapper { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.compare-controls { display: flex; gap: 1rem; margin-top: 0.5rem; }
.compare-btn { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); padding: 0.6rem 1.8rem; border-radius: 50px; cursor: pointer; transition: var(--transition); font-weight: 600; font-size: 0.9rem; font-family: var(--font-body); }
.compare-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #ffffff; border-color: transparent; box-shadow: 0 4px 15px rgba(229,9,20,0.3); }
.compare-btn:hover:not(.active) { border-color: var(--accent); color: var(--text-primary); }
.compare-container {
  position: relative; width: 100%; max-width: 860px; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden; cursor: ew-resize; user-select: none;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5); transition: opacity 0.3s ease;
}
.compare-after, .compare-before { position: absolute; inset: 0; }
.compare-after img, .compare-before img { width: 100%; height: 100%; object-fit: cover; }
.compare-before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); display: flex; flex-direction: column; align-items: center;
  gap: 0; z-index: 10; pointer-events: none;
}
.handle-line { flex: 1; width: 2px; background: white; }
.handle-circle {
  width: 44px; height: 44px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); flex-shrink: 0;
}
.handle-circle svg { width: 22px; height: 22px; color: #333; }
.compare-label {
  position: absolute; top: 1rem; background: rgba(13,15,18,0.75);
  backdrop-filter: blur(8px); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.after-label { right: 1.5rem; color: var(--accent); }
.before-label { left: 1.5rem; color: var(--text-secondary); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; transition: var(--transition);
}
.stat-card:hover { border-color: rgba(229,9,20,0.4); transform: translateY(-4px); }
.stat-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; margin-bottom: 1.25rem; }
.stat-bar { height: 3px; background: rgba(229,9,20,0.15); border-radius: 2px; overflow: hidden; }
.stat-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 2px; transition: width 1.5s cubic-bezier(0.16,1,0.3,1); }

/* ===== PROCESS ===== */
.process-timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 720px; margin: 0 auto; }
.process-timeline::before {
  content: ''; position: absolute; left: 2.2rem; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.process-step { display: flex; gap: 2rem; padding: 2rem 0; }
.step-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--accent);
  width: 4.4rem; height: 4.4rem; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1;
}
.step-content h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-content p { color: var(--text-secondary); font-size: 0.93rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper {
  position: relative; z-index: 2; display: flex; gap: 1.5rem;
  flex-wrap: wrap; justify-content: center; padding: 3rem 2rem; max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
  background: rgba(26,30,42,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; max-width: 320px; flex: 1 1 260px;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-secondary); font-style: italic; font-size: 0.93rem; line-height: 1.7; margin-bottom: 1rem; }
.testimonial-card cite { font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary); font-size: 0.95rem; }
.contact-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-form-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem; color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(229,9,20,0.15);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-secondary); }

/* ===== FOOTER ===== */
#footer { background: #080a0e; border-top: 1px solid var(--border); padding: 3rem 0 0; }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 2.5rem;
  display: flex; flex-wrap: nowrap; gap: 2rem; align-items: flex-start;
}
.footer-brand { flex: 1.5 1 180px; min-width: 0; }
.footer-links { flex: 1 1 120px; min-width: 0; }
.footer-contact { flex: 1.2 1 150px; min-width: 0; }
.footer-brand p { color: var(--text-secondary); font-size: 0.85rem; margin-top: 0.75rem; max-width: 240px; line-height: 1.6; }
.footer-links h4, .footer-contact h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 700; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-contact p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0.35rem; }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 1rem 2rem; color: var(--text-secondary); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-secondary); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }

.footer-instagram { color: var(--text-secondary); text-decoration: none; transition: 0.3s; font-size: 0.85rem; display: block; margin-bottom: 0.35rem; }
.footer-instagram:hover { color: var(--accent); }

/* ===== COOKIE BANNER ===== */
#cookieOverlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#cookieOverlay.visible { opacity: 1; pointer-events: all; }

#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.75rem 2rem;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
#cookieBanner.visible { transform: translateY(0); }

.cookie-banner-inner { max-width: 1200px; margin: 0 auto; }

.cookie-banner-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.cookie-banner-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}
.cookie-banner-header h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.3rem;
}
.cookie-banner-header p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner-header a { color: var(--accent); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(229,9,20,0.35);
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,9,20,0.5);
}
.cookie-btn-refuse {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.cookie-btn-refuse:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.cookie-btn-customize {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-btn-customize:hover { background: rgba(229,9,20,0.08); }

/* Customize panel */
#cookieCustomPanel {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
#cookieCustomPanel.open { display: block; }

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-child { border-bottom: none; }

.cookie-category-info { flex: 1; }
.cookie-category-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.cookie-category-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Toggle switch */
.cookie-toggle { position: relative; flex-shrink: 0; margin-top: 0.1rem; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  display: block;
  width: 44px; height: 24px;
  background: var(--bg-dark);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--text-secondary);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.3s, background 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: var(--accent);
}
.cookie-toggle input:checked + .cookie-toggle-slider::after {
  transform: translateX(20px);
  background: #ffffff;
}
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-custom-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  #cookieBanner { padding: 1.5rem 1.25rem; }
  .cookie-banner-actions { gap: 0.6rem; }
  .cookie-btn { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { 
    display: flex; 
    flex-direction: column; 
    position: fixed; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    width: 280px; 
    background: var(--bg-card); 
    padding: 6rem 2rem 2rem; 
    gap: 1.5rem; 
    box-shadow: -10px 0 40px rgba(0,0,0,0.4); 
    z-index: 999; 
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); 
    visibility: hidden;
  }
  .nav-links.open { 
    transform: translateX(0); 
    visibility: visible;
  }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-container { flex-wrap: wrap; }
  .footer-brand { flex: 1 1 100%; }
  
  .section-dark, .section-medium { padding: 4.5rem 0; }
}

@media (max-width: 650px) {
  .trust-container { justify-content: center; gap: 1rem 2rem; }
  .trust-item { font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; align-items: center; width: 100%; max-width: 320px; margin: 0 auto; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { flex-direction: column; gap: 1.5rem; }
  .footer-brand { flex: 1 1 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2.5rem; }
  
  .compare-container { aspect-ratio: 4/3; }
  .compare-label { font-size: 0.7rem; padding: 0.25rem 0.75rem; }

  .process-timeline::before { display: none; }
  .process-step { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
  .step-number { width: 3.5rem; height: 3.5rem; font-size: 1.5rem; }
  
  .section-title { font-size: 2rem; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .nav-container { padding: 0 1rem; }
  .section-container { padding: 0 1rem; }
  .contact-form-wrapper { padding: 1.5rem; }
}
