/* ================================================================
   WHEELCHAIR SHINE — Modern Redesign
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0c3e5b;
  --navy-deep:  #082d43;
  --dark:       #09162e;
  --blue:       #0b81ac;
  --blue-light: #1a9fc9;
  --teal:       #3b92a8;
  --light:      #c6d9e1;
  --white:      #ffffff;
  --off:        #f3f8fb;
  --gray:       #64748b;
  --gray-light: #94a3b8;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow-sm:  0 2px 8px rgba(12,62,91,.08);
  --shadow:     0 6px 28px rgba(12,62,91,.12);
  --shadow-lg:  0 16px 56px rgba(12,62,91,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ── Page wrapper ── */
.page-body { padding-top: 72px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: rgba(8,45,67,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav.scrolled {
  background: rgba(8,45,67,.98);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  object-fit: cover;
}
.nav-logo-text .brand  { color: var(--white); font-size: 1.1rem; font-weight: 800; letter-spacing: .3px; }
.nav-logo-text .tagline { color: var(--light); font-size: .68rem; letter-spacing: .8px; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(198,217,225,.85);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(11,129,172,.25);
  color: var(--white);
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ================================================================
   TYPOGRAPHY & HELPERS
   ================================================================ */
h1 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.12; }
h2 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.18; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 24px; }

.text-center  { text-align: center; }
.text-blue    { color: var(--blue); }
.text-teal    { color: var(--teal); }
.text-light   { color: var(--light); }
.text-gray    { color: var(--gray); }
.text-white   { color: var(--white); }

.bg-navy { background: var(--navy); }
.bg-dark  { background: var(--dark); }
.bg-off   { background: var(--off); }

/* Divider */
.divider         { width: 52px; height: 3px; background: var(--blue); border-radius: 3px; margin: 10px 0 22px; }
.divider-center  { margin-left: auto; margin-right: auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: .2px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-light); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-teal   { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--blue); }
.btn-dark   { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--navy); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 10s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,45,67,.93) 0%,
    rgba(11,62,91,.78) 50%,
    rgba(11,129,172,.35) 100%
  );
}
.hero:hover .hero-bg { transform: scale(1); }

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(198,217,225,.35);
  animation: float 6s infinite ease-in-out;
}
.hero-particles span:nth-child(1)  { top: 20%; left: 10%; animation-delay: 0s;   width: 6px; height: 6px; }
.hero-particles span:nth-child(2)  { top: 60%; left: 20%; animation-delay: 1.5s; }
.hero-particles span:nth-child(3)  { top: 80%; left: 60%; animation-delay: 3s;   width: 5px; height: 5px; }
.hero-particles span:nth-child(4)  { top: 30%; left: 80%; animation-delay: .7s;  width: 3px; height: 3px; }
.hero-particles span:nth-child(5)  { top: 70%; left: 90%; animation-delay: 2.2s; width: 7px; height: 7px; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: .3; }
  50%       { transform: translateY(-20px) scale(1.2); opacity: .7; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,129,172,.25);
  border: 1px solid rgba(11,129,172,.4);
  color: var(--light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; }

.hero-text h1 { margin-bottom: 18px; }
.hero-text h1 em { font-style: normal; color: var(--light); }
.hero-text p { font-size: 1.08rem; color: rgba(198,217,225,.9); margin-bottom: 36px; max-width: 500px; line-height: 1.7; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(198,217,225,.8);
  font-weight: 500;
}
.trust-pill svg { width: 14px; height: 14px; fill: #4ade80; }

/* Hero visual (right) */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.hero-photo-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  position: relative;
  aspect-ratio: 4/3;
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,45,67,.5) 100%);
}

.hero-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-photo-sm {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  aspect-ratio: 4/3;
}
.hero-photo-sm img { width: 100%; height: 100%; object-fit: cover; }

/* Floating stat card */
.hero-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-icon { font-size: 1.8rem; }
.hero-stat-card strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-card span  { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--dark);
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(198,217,225,.75);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.trust-item-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(11,129,172,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.trust-sep { color: rgba(255,255,255,.15); font-size: 1.2rem; }

/* ================================================================
   STATS COUNTER
   ================================================================ */
.stats-section {
  background: var(--navy);
  padding: 60px 24px;
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num span { color: var(--teal); }
.stat-label { font-size: .75rem; color: var(--light); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }

/* ================================================================
   PHOTO GALLERY
   ================================================================ */
.gallery-section { background: var(--off); padding: 88px 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--transition);
  min-height: 220px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9,22,46,.75) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: .85rem; font-weight: 600; }

/* Large feature item */
.gallery-item-lg { grid-row: span 2; }
.gallery-item-lg img { min-height: 100%; }

/* ================================================================
   SERVICES PHOTO CARDS
   ================================================================ */
.service-photo-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-photo-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-photo-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-photo-card:hover .service-photo-card-img img { transform: scale(1.08); }
.service-photo-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,62,91,.6) 100%);
}
.service-photo-card-body { padding: 24px; }
.service-photo-card-body h3 { color: var(--navy); margin-bottom: 8px; }
.service-photo-card-body p  { color: var(--gray); font-size: .88rem; line-height: 1.6; }

.service-icon-chip {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.steps-modern::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 0;
}
.step-modern {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-modern-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--off);
  transition: background var(--transition), transform var(--transition);
}
.step-modern:hover .step-modern-num {
  background: var(--blue);
  transform: scale(1.1);
}
.step-modern h3 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.step-modern p  { color: var(--gray); font-size: .85rem; }

/* ================================================================
   OFFER SECTION
   ================================================================ */
.offer-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.offer-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1614851099511-773084f6911d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.offer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,22,46,.96) 0%, rgba(11,129,172,.88) 100%);
}
.offer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.offer-tag::before { content: '🎉'; }

.offer-left h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.offer-left p  { color: rgba(198,217,225,.85); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }

.offer-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
}
.offer-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.offer-pct-label { font-size: 1.1rem; color: var(--light); margin-bottom: 18px; font-weight: 600; }
.offer-code {
  background: rgba(255,255,255,.15);
  border: 2px dashed rgba(255,255,255,.4);
  border-radius: 10px;
  padding: 14px 24px;
  margin: 18px 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
}
.offer-card p { color: rgba(198,217,225,.75); font-size: .82rem; margin-top: 10px; }

/* Countdown */
.countdown { display: flex; gap: 10px; justify-content: center; margin: 18px 0; }
.cd-block {
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  min-width: 60px;
}
.cd-num { font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.cd-label { font-size: .62rem; color: var(--light); text-transform: uppercase; letter-spacing: 1px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--off); padding: 88px 24px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3.5rem;
  color: var(--light);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--gray); font-size: .92rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--light);
}
.testimonial-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .9rem;
  border: 2px solid var(--light);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--gray); }

/* ================================================================
   WHY CHOOSE (dark bg)
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.why-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(11,129,172,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.why-card h3 { color: var(--white); margin-bottom: 5px; font-size: 1rem; }
.why-card p  { color: var(--light); font-size: .85rem; line-height: 1.6; }

/* ================================================================
   GENERAL CARDS
   ================================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ================================================================
   PRICING CARDS
   ================================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--blue); transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pricing-card.popular:hover { transform: translateY(-14px); }
.popular-tag {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--blue);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(35deg);
  letter-spacing: 1.5px;
}
.pricing-name  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 6px; }
.pricing-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 22px;
  line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray); }
.pricing-card.popular .pricing-price { color: var(--navy); }
.pricing-list  { list-style: none; margin-bottom: 28px; }
.pricing-list li { padding: 9px 0; border-bottom: 1px solid var(--off); font-size: .88rem; display: flex; align-items: center; gap: 10px; color: var(--gray); }
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: .95rem; flex-shrink: 0; }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 10px; }
.contact-info > p { color: var(--gray); margin-bottom: 30px; line-height: 1.7; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 12px;
  border-bottom: 1px solid rgba(198,217,225,.4);
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail:hover {
  background: var(--off);
  box-shadow: 0 4px 16px rgba(11,129,172,.08);
  transform: translateX(4px);
}
.contact-detail:hover .contact-icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.08);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid var(--light);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.contact-detail strong { display: block; font-size: .72rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1px; }
.contact-detail span   { color: var(--navy); font-weight: 600; font-size: .92rem; }
.contact-detail a      { color: var(--blue); font-weight: 600; font-size: .92rem; }

.form-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  border: 1px solid rgba(198,217,225,.3);
}
.form-wrap h3 { color: var(--navy); margin-bottom: 6px; }
.form-wrap > p { color: var(--gray); font-size: .88rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .8px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--dark);
  background: var(--off);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,129,172,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  padding: 18px;
  color: #065f46;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 90px 24px 70px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,45,67,.96), rgba(11,129,172,.82));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p  { color: rgba(198,217,225,.9); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,45,67,.96), rgba(9,22,46,.9));
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
}
.cta-content h2 { margin-bottom: 14px; }
.cta-content p  { color: var(--light); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 64px 24px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand p { color: var(--gray); font-size: .86rem; margin: 14px 0 22px; max-width: 300px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 38px; height: 38px; border-radius: 50%; background: var(--white); padding: 2px; }
.footer-logo span { color: var(--white); font-weight: 800; font-size: 1rem; }
.footer-col h4 { color: var(--white); font-size: .78rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--gray); font-size: .86rem; transition: color var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--light); }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem; color: var(--gray);
  margin-bottom: 9px;
  text-decoration: none;
  border-radius: 8px;
  padding: 5px 8px;
  margin-left: -8px;
  transition: color var(--transition), background var(--transition);
}
.footer-contact-item:hover { color: var(--light); background: rgba(255,255,255,.06); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--gray); }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--blue); transform: translateY(-2px); }

/* ================================================================
   FLOATING PHONE BUTTON
   ================================================================ */
.float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-float 2s infinite;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
@keyframes pulse-float {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ================================================================
   HOW IT WORKS — custom background
   ================================================================ */
.how-section {
  position: relative;
  padding: 88px 24px;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('photo-abstract.png');
  background-size: cover;
  background-position: center;
  opacity: .06;
  pointer-events: none;
}
.how-section .container { position: relative; z-index: 1; }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ================================================================
   ABOUT PAGE EXTRAS
   ================================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { border-radius: 20px; overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-img-badge strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.about-img-badge span  { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card { text-align: center; padding: 30px 22px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); transition: transform var(--transition); }
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }

/* ================================================================
   MAP
   ================================================================ */
.map-placeholder {
  background: var(--off);
  border-radius: var(--radius);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 28px;
  font-size: 2rem;
  color: var(--teal);
  flex-direction: column; gap: 8px;
  border: 1px solid var(--light);
}
.map-placeholder p { font-size: .88rem; color: var(--navy); }

/* ================================================================
   GRID HELPERS
   ================================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .why-grid          { grid-template-columns: 1fr 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .steps-modern      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-modern::before { display: none; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item-lg   { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .offer-inner       { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ================================================================
   RESPONSIVE — MOBILE LARGE (≤ 900px)
   ================================================================ */
@media (max-width: 900px) {
  /* Hero */
  .hero               { min-height: auto; padding: 80px 0 60px; }
  .hero-inner         { grid-template-columns: 1fr; text-align: center; padding: 0 20px; gap: 0; }
  .hero-visual        { display: none; }
  .hero-chip          { margin: 0 auto 18px; font-size: .7rem; }
  .hero-text h1       { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-text p        { margin-left: auto; margin-right: auto; font-size: 1rem; }
  .hero-btns          { justify-content: center; }
  .hero-trust         { justify-content: center; }

  /* About & contact */
  .about-story        { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 280px; }
  .contact-grid       { grid-template-columns: 1fr; }

  /* Layout */
  .why-grid           { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 640px)  ← PHONE PERFECT
   ================================================================ */
@media (max-width: 640px) {

  /* ── Navigation ── */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(8,45,67,.99);
    padding: 12px 16px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 12px 16px; font-size: .95rem; border-radius: 8px; }
  .nav-cta        { text-align: center; margin-top: 6px; }
  .hamburger      { display: flex; }

  /* ── Sections ── */
  section         { padding: 52px 16px; }
  .container      { padding: 0 16px; }

  /* ── Hero ── */
  .hero           { min-height: 90vh; padding: 90px 0 50px; }
  .hero-inner     { padding: 0 16px; }
  .hero-text h1   { font-size: clamp(1.7rem, 8vw, 2.4rem); line-height: 1.15; margin-bottom: 14px; }
  .hero-text p    { font-size: .92rem; margin-bottom: 24px; }
  .hero-chip      { font-size: .65rem; padding: 6px 12px; flex-wrap: wrap; text-align: center; }
  .hero-btns      { flex-direction: column; gap: 10px; align-items: center; margin-bottom: 28px; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust     { flex-direction: column; align-items: center; gap: 10px; }
  .trust-pill     { font-size: .75rem; }

  /* ── Trust bar ── */
  .trust-bar-inner { flex-direction: column; gap: 14px; }
  .trust-sep       { display: none; }
  .trust-item      { justify-content: center; }

  /* ── Stats ── */
  .stats-section   { padding: 44px 16px; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .stat-item       { padding: 18px 10px; border-right: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }
  .stat-num        { font-size: 2.2rem; }

  /* ── Gallery ── */
  .gallery-section { padding: 52px 16px; }
  .gallery-grid    { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item    { border-radius: 10px; }
  .gallery-item img { min-height: 200px; max-height: 240px; }
  .gallery-item-overlay { opacity: 1; }   /* always show labels on mobile */

  /* ── Service photo cards ── */
  .grid-4          { grid-template-columns: 1fr; }
  .service-photo-card-img { height: 180px; }

  /* ── How it works ── */
  .how-section     { padding: 52px 16px; }
  .steps-modern    { grid-template-columns: 1fr; gap: 20px; }
  .step-modern     { padding: 0 8px; }
  .step-modern-num { width: 54px; height: 54px; font-size: 1rem; }

  /* ── Offer section ── */
  .offer-section   { }
  .offer-inner     { grid-template-columns: 1fr; gap: 28px; padding: 52px 16px; }
  .offer-left h2   { font-size: clamp(1.5rem, 6vw, 2rem); }
  .offer-left p    { font-size: .9rem; }
  .offer-card      { padding: 26px 20px; }
  .offer-pct       { font-size: 4rem; }
  .countdown       { gap: 7px; }
  .cd-block        { min-width: 50px; padding: 8px 10px; }
  .cd-num          { font-size: 1.4rem; }
  .offer-code      { font-size: 1.2rem; letter-spacing: 3px; }

  /* ── Testimonials ── */
  .testimonials-section { padding: 52px 16px; }
  .testimonials-grid    { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card     { padding: 24px 20px; }

  /* ── Why choose ── */
  .why-grid        { grid-template-columns: 1fr; gap: 12px; }
  .why-card        { padding: 18px; }

  /* ── Pricing ── */
  .pricing-grid    { grid-template-columns: 1fr; }
  .pricing-card    { padding: 28px 22px; }
  .pricing-card.popular { transform: none; }

  /* ── Contact / Form ── */
  .contact-grid    { grid-template-columns: 1fr; gap: 32px; }
  .form-wrap       { padding: 24px 18px; border-radius: 14px; }
  .form-row        { grid-template-columns: 1fr; gap: 0; }

  /* ── About ── */
  .about-story     { grid-template-columns: 1fr; gap: 24px; }
  .about-img-wrap img { height: 240px; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .value-card      { padding: 22px 16px; }
  .about-img-badge { padding: 10px 14px; }
  .about-img-badge strong { font-size: 1.1rem; }

  /* ── Grid helpers ── */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  /* ── CTA ── */
  .cta-section     { padding: 60px 16px; }
  .cta-btns        { flex-direction: column; gap: 10px; align-items: center; }
  .cta-btns .btn   { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Page hero ── */
  .page-hero       { padding: 70px 16px 50px; }
  .page-hero h1    { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .page-hero p     { font-size: .9rem; }

  /* ── Footer ── */
  footer           { padding: 44px 16px 20px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; text-align: center; gap: 8px; }

  /* ── Typography ── */
  h2               { font-size: clamp(1.4rem, 6vw, 2rem); }
  h3               { font-size: 1.05rem; }

  /* ── Floating button ── */
  .float-btn       { bottom: 16px; right: 16px; width: 54px; height: 54px; font-size: 1.35rem; }

  /* ── Buttons ── */
  .btn-lg          { padding: 14px 28px; font-size: .95rem; }

  /* ── Map ── */
  .map-placeholder { height: 160px; }
}

/* ── Extra small (≤ 380px) ── */
@media (max-width: 380px) {
  .hero-text h1  { font-size: 1.6rem; }
  .values-grid   { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .cd-block      { min-width: 42px; }
  .countdown     { gap: 5px; }
  nav .brand     { font-size: .95rem; }
  nav .tagline   { display: none; }
}

/* ================================================================
   COOKIE CONSENT BAR & PREFERENCES MODAL
   ================================================================ */

/* ── Bottom bar ── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: var(--dark);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.32,.72,0,1);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: .84rem; color: var(--light); margin: 0; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-bar p a { color: var(--teal); text-decoration: underline; cursor: pointer; }
.cookie-bar-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Modal overlay ── */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,22,46,.55);
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cookie-overlay.active { opacity: 1; visibility: visible; }

/* ── Preferences bottom sheet ── */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9992;
  background: #fff;
  border-radius: 22px 22px 0 0;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.32,.72,0,1);
}
.cookie-modal.active { transform: translateY(0); }

.cookie-modal-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #eef1f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.cookie-modal-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0; }
.cookie-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f2f4f6;
  border: none;
  font-size: .95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-modal-close:hover { background: var(--light); color: var(--navy); }

/* ── Category rows ── */
.cookie-category {
  padding: 20px 24px;
  border-bottom: 1px solid #f4f5f6;
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category-header h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin: 0; }
.cookie-category p { font-size: .82rem; color: var(--gray); line-height: 1.65; margin: 0; }

.cookie-always-on {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1e8c4e;
  background: rgba(30,140,78,.1);
  border: 1px solid rgba(30,140,78,.25);
  border-radius: 20px;
  padding: 4px 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Toggle switch ── */
.cookie-toggle { position: relative; width: 50px; height: 28px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-track {
  position: absolute; inset: 0;
  border-radius: 14px;
  background: #d1d5db;
  cursor: pointer;
  transition: background .3s ease;
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--blue); }
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  transition: transform .3s ease;
}
.cookie-toggle input:checked + .cookie-toggle-track::after { transform: translateX(22px); }

/* ── Footer buttons ── */
.cookie-modal-footer {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal-footer .btn { justify-content: center; }

@media (max-width: 640px) {
  .cookie-bar      { padding: 14px 16px; }
  .cookie-bar-btns { width: 100%; }
  .cookie-bar-btns .btn { flex: 1; justify-content: center; font-size: .8rem; padding: 10px 12px; }
  .cookie-modal    { max-height: 92vh; border-radius: 18px 18px 0 0; }
  .cookie-category { padding: 18px 20px; }
  .cookie-modal-header { padding: 18px 20px 14px; }
  .cookie-modal-footer { padding: 16px 20px 24px; }
}

/* ================================================================
   BEFORE & AFTER SECTION
   ================================================================ */
.ba-section { padding: 88px 24px; background: var(--dark); }
.ba-section .section-label { color: var(--teal); }
.ba-section h2,
.ba-section p { color: var(--light); }
.ba-section .divider { background: var(--teal); }

.ba-composites {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.ba-composites-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,.45);
  cursor: zoom-in;
}
.ba-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ba-card:hover img { transform: scale(1.03); }
.ba-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(9,22,46,.85), transparent);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ba-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.ba-photos-2 {
  grid-template-columns: 1fr 1fr;
}
.ba-photo {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.ba-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ba-photo:hover img { transform: scale(1.05); }
.ba-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(to top, rgba(9,22,46,.8), transparent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ba-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .ba-composites-3 { grid-template-columns: 1fr 1fr; }
  .ba-composites-3 .ba-card:last-child { grid-column: 1 / -1; }
  .ba-composites-3 .ba-card:last-child img { height: 280px; object-fit: cover; }
}
@media (max-width: 900px) {
  .ba-composites   { grid-template-columns: 1fr; }
  .ba-composites-3 { grid-template-columns: 1fr; }
  .ba-composites-3 .ba-card:last-child { grid-column: auto; }
  .ba-composites-3 .ba-card:last-child img { height: 320px; }
  .ba-card img     { height: 320px; }
  .ba-photos       { grid-template-columns: 1fr 1fr; }
  .ba-photos-2     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ba-section      { padding: 52px 16px; }
  .ba-composites   { gap: 12px; margin-top: 32px; }
  .ba-card img     { height: 260px; }
  .ba-composites-3 .ba-card:last-child img { height: 260px; }
  .ba-photos       { grid-template-columns: 1fr; gap: 12px; }
  .ba-photos-2     { grid-template-columns: 1fr; }
  .ba-photo img    { height: 220px; }
  .ba-cta-row      { flex-direction: column; align-items: center; }
  .ba-cta-row .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ================================================================
   OFFER POPUP
   ================================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,22,46,.75);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 9999;
  background: #fff;
  border-radius: 22px;
  padding: 44px 40px 36px;
  max-width: 460px;
  width: calc(100% - 32px);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, transform .4s ease, visibility .4s ease;
  text-align: center;
}
.popup-box.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.popup-close:hover { color: var(--navy); background: var(--off); }

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.popup-pct {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.popup-pct-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.popup-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.popup-code {
  display: inline-block;
  background: var(--off);
  border: 2px dashed var(--blue);
  border-radius: 10px;
  padding: 11px 28px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--navy);
  margin-bottom: 24px;
}
.popup-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.popup-cta .btn { width: 100%; justify-content: center; }

.popup-skip {
  font-size: .78rem;
  color: var(--gray-light);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  transition: color var(--transition);
}
.popup-skip:hover { color: var(--gray); }

@media (max-width: 640px) {
  .popup-box       { padding: 36px 22px 28px; border-radius: 18px; }
  .popup-pct       { font-size: 4rem; }
  .popup-pct-label { font-size: 1rem; }
  .popup-code      { font-size: 1.2rem; letter-spacing: 4px; padding: 10px 20px; }
}
