/* ===== Tisy Clean — Style premium (inspiré tisy-clean.vercel.app) ===== */
:root {
  --black: #000000;
  --background: #050505;
  --surface: #0a0a0a;
  --surface-2: #0c0c0c;
  --primary: #0d5bff;
  --primary-light: #2d7dff;
  --accent: #6fa8ff;
  --muted: #eaeaea;
  --muted-70: rgba(234, 234, 234, 0.7);
  --muted-50: rgba(234, 234, 234, 0.5);
  --white: #ffffff;
  --whatsapp: #25d366;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --glow-blue: 0 0 40px rgba(13, 91, 255, 0.25), 0 0 80px rgba(13, 91, 255, 0.1);
  --glow-text: 0 0 40px rgba(13, 91, 255, 0.5);
  --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(5, 5, 5, 0.92) 100%);
  --title: "Bebas Neue", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--body);
  background: var(--background);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section[id] { scroll-margin-top: 88px; }
img:not(.brand-logo):not(.hero-logo):not(.about-logo) { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-logo, .hero-logo, .about-logo { display: block; width: auto; height: auto; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 {
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Top bar */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 7px 16px;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-70);
}
.top-bar a:hover { color: var(--accent); }

/* Header */
.site-header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  background: transparent;
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo, .hero-logo, .about-logo {
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}
.brand-logo--icon { display: none; width: 44px; max-height: 44px; }
.brand-logo--full { width: min(180px, 40vw); max-height: 48px; }
.brand-logo--footer { width: min(220px, 70vw); max-height: 72px; }
.hero-logo {
  width: min(380px, 85vw);
  max-height: 110px;
  margin-bottom: 20px;
}
.about-logo { width: min(300px, 80%); height: auto; }
.main-nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 28px);
  font-size: 13px;
  font-weight: 500;
}
.main-nav a {
  color: var(--muted-70);
  transition: color 0.3s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: #fff; }

/* Buttons */
.btn {
  min-height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-pill { border-radius: 999px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--glow-blue);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 0 50px rgba(13, 91, 255, 0.45), 0 0 100px rgba(13, 91, 255, 0.15);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--glass-border);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.06); }
.btn-glass {
  background: var(--glass-bg);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); }
.magnetic:hover { transform: translateY(-2px); }

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  background: var(--gradient-hero), url("images/hero.jpg") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}
.hero-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  text-shadow: var(--glow-text);
}
.hero-line-2 { margin-top: 4px; }
.hero-text {
  margin-top: 18px;
  max-width: 560px;
  font-size: 15px;
  color: var(--muted-70);
  line-height: 1.65;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.hero-proof div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-70);
  backdrop-filter: blur(20px);
}
.hero-proof i {
  color: var(--accent);
  font-size: 12px;
}
.hero-proof strong { font-weight: 600; color: var(--white); }
.hero-float { display: grid; gap: 14px; }
.float-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.float-card:hover {
  border-color: rgba(13, 91, 255, 0.35);
  transform: translateY(-2px);
}
.float-card i {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 91, 255, 0.15);
  border: 1px solid rgba(13, 91, 255, 0.25);
  border-radius: 12px;
  color: var(--accent);
  font-size: 20px;
}
.float-card strong { display: block; font-size: 15px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.float-card span { font-size: 12px; color: var(--muted-70); }
.liquid-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
}

/* Booking / Réservation */
.booking {
  padding: 80px 24px;
  background: var(--background);
}
.booking-panel {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  color: var(--white);
}
.section-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.booking-title h2,
.section-head h2,
.about-copy h2,
.ba-copy h2,
.faq-content h2,
.final-cta h2,
.zone-copy h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
.booking-title a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--accent);
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.booking-steps article {
  text-align: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: border-color 0.3s var(--ease);
}
.booking-steps article:hover { border-color: rgba(13, 91, 255, 0.3); }
.booking-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  margin: 0 auto 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--body);
}
.booking-steps i { font-size: 22px; color: var(--accent); margin-bottom: 10px; }
.booking-steps h3 { font-size: 14px; margin-bottom: 6px; color: var(--white); font-family: var(--body); text-transform: none; letter-spacing: 0; }
.booking-steps p { font-size: 12px; color: var(--muted-70); }

/* About */
.about { padding: 80px 24px; background: var(--surface); }
.about-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  min-height: 320px;
  backdrop-filter: blur(20px);
}
.about-copy h2 { color: #fff; }
.about-sub { color: var(--accent); font-weight: 500; margin: 8px 0 20px; font-size: 15px; }
.about-copy p { color: var(--muted-70); margin-bottom: 14px; font-size: 15px; }
.about-copy .btn { margin-top: 20px; }

/* Strengths */
.strengths { padding: 80px 24px; background: var(--background); }
.section-head { width: min(100%, 1100px); margin: 0 auto 40px; }
.section-head.centered { text-align: center; }
.section-head.dark h2 { color: #fff; }
.section-head h2 span { color: var(--accent); }
.strengths-grid {
  width: min(100%, 1000px);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.strengths-grid article {
  text-align: center;
  padding: 32px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.strengths-grid article:hover {
  border-color: rgba(13, 91, 255, 0.3);
  transform: translateY(-3px);
}
.strengths-grid i { font-size: 28px; color: var(--accent); margin-bottom: 16px; }
.strengths-grid h3 { font-size: 16px; margin-bottom: 8px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.strengths-grid p { font-size: 13px; color: var(--muted-70); }
.stats-row {
  width: min(100%, 800px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  padding: 24px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.stat strong {
  font-size: 48px;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--title);
  text-shadow: var(--glow-text);
}
.stat span { font-size: 28px; color: var(--accent); font-family: var(--title); }
.stat p { font-size: 13px; color: var(--muted-70); margin-top: 4px; }

/* Services */
.services { padding: 80px 24px; background: var(--surface); }
.service-grid {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 91, 255, 0.35);
  box-shadow: var(--glow-blue);
}
.service-grid img { height: 180px; opacity: 0.85; }
.service-grid i {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 14px;
  font-size: 20px;
  color: #fff;
  box-shadow: var(--glow-blue);
}
.service-grid div { padding: 44px 20px 24px; text-align: center; }
.service-grid h3 { font-size: 18px; margin-bottom: 6px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.service-grid p { font-size: 13px; color: var(--muted-70); }

/* Before / After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.9)), url("images/after.jpg") center/cover;
}
.ba-slider {
  position: relative;
  min-height: 400px;
  margin: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: col-resize;
  touch-action: none;
  user-select: none;
  box-shadow: var(--glow-blue);
}
.ba-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  pointer-events: none;
}
.ba-img--after { position: relative; z-index: 1; object-position: center; }
.ba-clip {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  will-change: width;
}
.ba-img--before {
  position: absolute;
  top: 0; left: 0;
  width: var(--ba-width, 100%);
  max-width: none;
  min-height: 400px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  background: transparent;
  z-index: 3;
  cursor: col-resize;
  touch-action: none;
  will-change: left;
}
.ba-divider::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--primary);
  box-shadow: var(--glow-blue);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--glow-blue);
  pointer-events: none;
}
.ba-slider.is-dragging .ba-handle { transform: translate(-50%, -50%) scale(1.08); }
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 4;
  pointer-events: none;
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; color: var(--accent); }
.ba-copy {
  padding: 60px 40px 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ba-copy h2 { color: #fff; margin: 10px 0 24px; }
.ba-modules { display: grid; gap: 12px; margin-bottom: 28px; }
.ba-modules article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
}
.ba-modules i { color: var(--accent); font-size: 16px; margin-top: 2px; }
.ba-modules strong { display: block; font-size: 14px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.ba-modules p { font-size: 12px; color: var(--muted-70); margin-top: 2px; }

/* Pricing */
.packs { padding: 80px 24px; background: var(--background); }
.pack-grid {
  width: min(100%, 1000px);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pack-grid article {
  padding: 32px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pack-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 91, 255, 0.3);
}
.pack-grid .featured {
  border-color: rgba(13, 91, 255, 0.5);
  box-shadow: var(--glow-blue);
}
.pack-grid i { font-size: 26px; color: var(--accent); margin-bottom: 16px; }
.pack-grid h3 { font-size: 24px; margin-bottom: 4px; }
.price {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--body);
  margin-bottom: 20px;
}
.pack-grid ul { list-style: none; margin-bottom: 24px; flex: 1; }
.pack-grid li {
  font-size: 13px;
  color: var(--muted-70);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.pack-grid li::before { content: "✓ "; color: var(--accent); }
.pricing-detail { width: min(100%, 800px); margin: 0 auto; text-align: center; }
.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.pricing-detail-grid div {
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.pricing-detail-grid strong { display: block; font-size: 13px; margin-bottom: 4px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.pricing-detail-grid span { color: var(--accent); font-weight: 700; font-size: 18px; }
.pricing-note { font-size: 13px; color: var(--muted-70); }

/* Zone */
.zone-section { padding: 80px 24px; background: var(--surface); text-align: center; }
.zone-copy h2 { color: #fff; margin: 10px 0 24px; }
.zone-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 16px; }
.zone-tags span {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-70);
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.zone-tags span:hover { border-color: rgba(13, 91, 255, 0.4); color: var(--white); }
.zone-copy p { color: var(--muted-70); font-size: 14px; }

/* Gallery */
.gallery { padding: 80px 24px; background: var(--background); }
.gallery .section-head h2 { color: var(--white); }
.gallery .section-head h2 span { color: var(--accent); }
.gallery-grid {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-grid .lead { grid-row: span 2; }
.gallery-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-grid article:hover {
  transform: scale(1.02);
  box-shadow: var(--glow-blue);
}
.gallery-grid article::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.9));
}
.gallery-grid div { position: absolute; bottom: 16px; left: 16px; z-index: 1; color: #fff; }
.gallery-grid h3 { font-size: 16px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.gallery-grid h3::before {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--primary);
  margin-bottom: 8px;
  box-shadow: var(--glow-blue);
}

/* Testimonials */
.testimonials {
  padding: 80px 24px;
  background: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.95)), url("images/testimonials-bg.jpg") center/cover;
}
.quote-grid {
  width: min(100%, 1000px);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-grid article {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease);
}
.quote-grid article:hover { border-color: rgba(13, 91, 255, 0.3); }
.stars { color: var(--accent); font-size: 16px; margin-bottom: 10px; }
.quote-grid h3 { font-size: 15px; margin-bottom: 10px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.quote-grid p { font-size: 13px; color: var(--muted-70); font-style: italic; }
.testimonials-cta { text-align: center; }

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  min-height: 500px;
}
.faq-img { min-height: 400px; }
.faq-content { padding: 60px 40px; }
.faq-content h2 { color: var(--white); }
.accordion { margin-top: 24px; display: grid; gap: 8px; }
.accordion article {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease);
}
.accordion article.open { border-color: rgba(13, 91, 255, 0.35); }
.accordion button {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  text-align: left;
}
.accordion button i { color: var(--accent); transition: transform 0.25s var(--ease); }
.accordion p {
  display: none;
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--muted-70);
}
.accordion article.open p { display: block; }
.accordion article.open i { transform: rotate(45deg); }

/* Final CTA / Contact */
.final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 40px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.6)), url("images/cta-final.jpg") center/cover;
  align-items: center;
}
.final-cta .section-kicker { color: var(--accent); }
.final-cta h2 { color: #fff; margin: 10px 0 14px; }
.final-cta p { color: var(--muted-70); }
.cta-actions { display: grid; gap: 12px; }
.contact-form { display: grid; gap: 10px; margin-top: 8px; }
.contact-form input,
.contact-form select {
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass-bg);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(13, 91, 255, 0.5);
}
.contact-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.contact-form select option { color: var(--background); }

/* Footer */
.footer {
  padding: 60px 24px 24px;
  background: var(--background);
  border-top: 1px solid var(--line);
}
.footer-grid {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--body);
}
.footer a, .footer p {
  display: block;
  font-size: 13px;
  color: var(--muted-70);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
}
.footer a:hover { color: var(--accent); }
.footer-brand { margin-bottom: 16px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 14px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.socials a:hover {
  background: rgba(13, 91, 255, 0.15);
  border-color: rgba(13, 91, 255, 0.35);
}
.footer-bottom {
  width: min(100%, 1100px);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-50);
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, 0.95);
  border-top: 1px solid var(--line);
  gap: 10px;
  backdrop-filter: blur(20px);
}
.mobile-cta .btn { flex: 1; }
.mobile-cta .btn-glass { flex: 0; min-width: 52px; padding: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .before-after,
  .final-cta,
  .faq { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-copy { padding: 40px 24px; }
}

@media (max-width: 768px) {
  .top-bar { font-size: 9px; gap: 12px; flex-wrap: wrap; letter-spacing: 0.08em; }
  .site-header {
    top: 32px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
    height: 60px;
  }
  .brand-logo--full { display: none; }
  .brand-logo--icon { display: block; }
  .hero-logo { max-height: 80px; margin-bottom: 16px; }
  .main-nav {
    display: none;
    position: fixed;
    top: 92px; left: 16px; right: 16px;
    flex-direction: column;
    padding: 20px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
  }
  .menu-open .main-nav { display: flex; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-proof { gap: 8px; }
  .hero-float { margin-top: 24px; }
  .booking-panel { grid-template-columns: 1fr; padding: 24px; }
  .booking-steps { grid-template-columns: 1fr 1fr; }
  .strengths-grid,
  .stats-row,
  .service-grid,
  .quote-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .lead { grid-row: span 1; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
