/* ==========================================================================
   ALLES IS LEEG — Main Stylesheet
   ========================================================================== */

:root {
  --navy: #0B1A2E;
  --navy-2: #0F2340;
  --navy-3: #162B47;
  --gold: #C9A44A;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --white: #FAFAF8;
  --muted: #7A93A8;
  --dim: #3A5068;

  --max-width: 1280px;
  --section-pad-desktop: 100px 5%;
  --section-pad-mobile: 72px 5%;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--navy);
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: var(--section-pad-desktop);
}

@media (max-width: 600px) {
  section {
    padding: var(--section-pad-mobile);
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  color: var(--white);
}

.hero-title {
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -2px;
  line-height: 1.05;
}

.section-title {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.card-title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.tagline {
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
}

.body-text {
  font-weight: 400;
  font-size: 16px;
  color: var(--muted);
}

.gold {
  color: var(--gold);
}

.muted {
  color: var(--muted);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: transparent;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(7, 15, 28, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 164, 74, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 13px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mobile-overlay.open {
  transform: translateY(0);
}

.mobile-overlay a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.16) 0%, rgba(201, 164, 74, 0) 65%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 164, 74, 0.35);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--white);
}

.hero-sub {
  margin-bottom: 24px;
}

.hero-body {
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 17px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item .stat-value {
  font-weight: 800;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.stat-item .stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
  background: var(--navy-2);
  padding: 28px 5%;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item i {
  color: var(--gold);
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

/* ==========================================================================
   Section headers
   ========================================================================== */

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  margin-bottom: 16px;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

/* ==========================================================================
   How it works
   ========================================================================== */

.how-it-works {
  background: var(--navy-2);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--navy);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 88px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  font-family: 'Raleway', sans-serif;
}

.step-icon {
  color: var(--gold);
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  margin-bottom: 24px;
}

.step-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  position: relative;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  position: relative;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AI Pricing section
   ========================================================================== */

.ai-section {
  background: var(--navy);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 164, 74, 0.1);
  border: 1px solid rgba(201, 164, 74, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.ai-content .section-title {
  margin-bottom: 20px;
}

.ai-content p {
  margin-bottom: 24px;
  color: var(--muted);
}

.ai-features {
  margin-bottom: 32px;
}

.ai-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-features li i {
  color: var(--gold);
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.ai-mockup {
  background: var(--navy-2);
  border: 1px solid rgba(201, 164, 74, 0.2);
  padding: 32px;
  position: relative;
}

.ai-mockup::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ai-mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.ai-mockup-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ai-mockup-drop {
  border: 1px dashed rgba(201, 164, 74, 0.4);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.ai-mockup-drop i {
  color: var(--gold);
  width: 32px;
  height: 32px;
  stroke-width: 1.2;
  margin: 0 auto 12px;
}

.ai-mockup-drop p {
  font-size: 13px;
  color: var(--muted);
}

.ai-mockup-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-mockup-result .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.ai-mockup-result .value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Services grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--navy-2);
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 74, 0.4);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.service-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   Situations
   ========================================================================== */

.situations-section {
  background: var(--navy-2);
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.situation-card {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 32px 28px;
}

.situation-card i {
  color: var(--gold);
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  margin-bottom: 20px;
}

.situation-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.situation-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid rgba(201, 164, 74, 0.25);
  padding: 64px 48px;
  text-align: center;
}

.price-value {
  font-weight: 900;
  font-size: 96px;
  color: var(--gold);
  letter-spacing: -3px;
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 40px;
}

.price-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
  margin-bottom: 40px;
}

.price-features li {
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
}

.price-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 600px) {
  .price-value {
    font-size: 64px;
  }
  .price-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Werkgebied
   ========================================================================== */

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-chip {
  padding: 12px 22px;
  border: 1px solid var(--dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.city-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
  color: var(--gold);
}

.legal-block p {
  color: var(--muted);
}

/* ==========================================================================
   Gallery — echt werk
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 12px;
}

.gallery-more {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-2);
  border: 1px solid rgba(201, 164, 74, 0.25);
  padding: 16px 24px;
}

.rating-badge .score {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.rating-badge .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 4px;
}

.rating-badge .count {
  font-size: 12px;
  color: var(--muted);
}

.rating-badge a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--navy-2);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.review-card p {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 20px;
}

.review-card .review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* ==========================================================================
   VTM banner
   ========================================================================== */

.vtm-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  border: 1px solid rgba(201, 164, 74, 0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.vtm-banner::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.vtm-badge {
  background: var(--white);
  border-radius: 6px;
  padding: 14px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtm-badge img {
  max-height: 40px;
  width: auto;
  display: block;
}

.vtm-text {
  flex: 1;
  min-width: 240px;
}

.vtm-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.vtm-text p {
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   CTA section
   ========================================================================== */

.cta-section {
  background: var(--navy-2);
  text-align: center;
}

.cta-section .container {
  max-width: 720px;
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-section .cta-row {
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #070F1C;
  padding: 80px 5% 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-contact li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: var(--gold);
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--dim);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Grids generic
   ========================================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Floating elements
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float i {
  color: var(--navy);
  width: 28px;
  height: 28px;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 1px solid rgba(201, 164, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top i {
  color: var(--gold);
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .back-to-top {
    display: none;
  }
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy-2);
  border-top: 1px solid rgba(201, 164, 74, 0.2);
  padding: 20px 5%;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner .btn {
  padding: 12px 24px;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
