/* ==========================================================================
   DubaiClean — Villa Deep Cleaning Landing Page
   Premium / Elite Aesthetic
   ========================================================================== */

/* ─── Variables ─── */
:root {
  --primary: #00a5d2;
  --primary-dark: #0089af;
  --primary-glow: rgba(0, 165, 210, .35);
  --accent: #25d366;
  --accent-dark: #1ebe57;
  --red: #ff453a;
  --gold: #fbbf24;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-light: #86868b;
  --border: rgba(0, 0, 0, .06);
  --glass: rgba(255, 255, 255, .72);
  --glass-border: rgba(255, 255, 255, .18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 4px 12px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --max-w: 1200px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #5ac8fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: normal;
  text-align: center;
  line-height: 1.3
}

.btn--sm {
  padding: 10px 22px;
  font-size: .875rem
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1rem
}

.btn--xl {
  padding: 18px 36px;
  font-size: 1.05rem
}

@media(max-width:480px) {
  .btn--xl {
    padding: 16px 24px;
    font-size: .9375rem
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: .9375rem
  }
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-glow)
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow)
}

.btn--wa {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .25)
}

.btn--wa:hover {
  background: var(--accent-dark);
  transform: translateY(-2px)
}

.btn--white {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm)
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border)
}

.btn--ghost:hover {
  border-color: var(--text-light)
}

.btn--pulse {
  animation: pulse 2s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--primary-glow)
  }

  70% {
    box-shadow: 0 0 0 14px transparent
  }

  100% {
    box-shadow: 0 0 0 0 transparent
  }
}

.btn--shimmer {
  position: relative;
  overflow: hidden
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  animation: shimmer 3s infinite
}

@keyframes shimmer {
  0% {
    left: -75%
  }

  100% {
    left: 125%
  }
}

/* ─── Urgency Topbar ─── */
.topbar {
  background: #1d1d1f;
  color: #fff;
  font-size: .8125rem;
  padding: 9px 0;
  position: relative;
  z-index: 110;
  font-weight: 500
}

.topbar__in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center
}

@media(max-width:480px) {
  .topbar {
    font-size: .6875rem;
    padding: 7px 0
  }

  .topbar__in {
    gap: 6px
  }

  .topbar__cta {
    padding: 3px 10px;
    font-size: .625rem
  }
}

.topbar__dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: flash 1s infinite alternate
}

.topbar__cta {
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .02em;
  transition: var(--transition)
}

.topbar__cta:hover {
  background: #fff;
  color: var(--text)
}

@keyframes flash {
  from {
    opacity: 1
  }

  to {
    opacity: .3
  }
}

/* ─── Nav ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition)
}

.header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.nav__logo img {
  height: 36px;
  display: block;
  pointer-events: none
}

.nav__links {
  display: none;
  gap: 32px;
  font-weight: 500;
  font-size: .9375rem
}

.nav__links a {
  transition: var(--transition)
}

.nav__links a:hover {
  color: var(--primary)
}

.nav__actions {
  display: none;
  gap: 10px
}

@media(min-width:992px) {
  .nav__links {
    display: flex
  }

  .nav__actions {
    display: flex
  }

  .burger {
    display: none !important
  }
}

.burger {
  width: 22px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 120;
  position: relative
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition)
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.burger.active span:nth-child(2) {
  opacity: 0
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 105;
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77, .2, .05, 1)
}

.mobile-menu.active {
  transform: translateX(0)
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 48px
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 14px
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: #0b1a2b;
  color: #fff;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 20, 50, .92) 0%, rgba(0, 40, 80, .88) 50%, rgba(0, 60, 90, .82) 100%);
  z-index: 1
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: 1
}

.hero__in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto
}

.fomo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  margin-bottom: 28px;
  backdrop-filter: blur(8px)
}

.fomo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
  animation: flash 1.2s infinite alternate
}

.hero__h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -.03em
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .78);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px
}

.hero__badges span {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 500
}

.hero__cta-box {
  margin-top: 8px
}

.agent-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .875rem
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: flash 1.5s infinite alternate
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px
}

@media(min-width:576px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center
  }
}

.hero__micro {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5)
}

/* ─── Hero Mobile Optimizations ─── */
@media(max-width:480px) {
  .hero {
    padding: 56px 0 72px
  }

  .hero__h1 {
    font-size: 1.85rem;
    margin-bottom: 18px
  }

  .hero__sub {
    font-size: .9375rem;
    margin-bottom: 24px;
    line-height: 1.6
  }

  .fomo-pill {
    font-size: .6875rem;
    padding: 6px 12px;
    gap: 6px;
    margin-bottom: 20px
  }

  .hero__badges {
    gap: 8px;
    margin-bottom: 28px
  }

  .hero__badges span {
    font-size: .6875rem;
    padding: 6px 12px
  }

  .hero__actions {
    gap: 12px
  }

  .agent-status {
    font-size: .75rem
  }

  .hero__micro {
    font-size: .6875rem
  }
}

/* ─── Hero Trust Strip (new) ─── */
.hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  opacity: .6
}

@media(max-width:480px) {
  .hero__trust-strip {
    gap: 12px
  }

  .hero__trust-item {
    font-size: .6875rem
  }
}

/* Entrance Animations */
.anim-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s forwards
}

.d1 {
  animation-delay: .15s
}

.d2 {
  animation-delay: .3s
}

.d3 {
  animation-delay: .45s
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--bg-alt);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden
}

.trust-bar__label {
  text-align: center;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px
}

.trust-bar__scroll {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent)
}

.trust-bar__track {
  display: flex;
  gap: 40px;
  animation: scrollTrack 35s linear infinite;
  white-space: nowrap
}

.trust-bar__track span {
  font-weight: 500;
  color: var(--text);
  opacity: .55;
  font-size: .875rem
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ─── Sections ─── */
.section {
  padding: 80px 0
}

.section--alt {
  background: var(--bg-alt)
}

.section--numbers {
  background: #1d1d1f;
  color: #fff;
  padding: 60px 0
}

.section--offers {
  background: linear-gradient(135deg, #0b1a2b 0%, #002850 100%);
  padding: 60px 0
}

.section__head {
  text-align: center;
  margin-bottom: 48px
}

.chip {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: rgba(0, 165, 210, .08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 14px
}

.section__desc {
  color: var(--text-light);
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto
}

.section__cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px
}

@media(max-width:480px) {
  .section {
    padding: 56px 0
  }

  .section--numbers {
    padding: 44px 0
  }

  .section--offers {
    padding: 44px 0
  }

  .section__head {
    margin-bottom: 32px
  }

  .section__title {
    font-size: 1.5rem
  }

  .section__desc {
    font-size: .9375rem
  }

  .section__cta {
    margin-top: 32px;
    gap: 12px
  }

  .section__cta .btn {
    width: 100%
  }

  .container {
    padding: 0 16px
  }
}

/* ─── Offer Banner ─── */
.offer-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary), #0062a3);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 165, 210, .25)
}

.offer-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
  border-radius: 50%
}

.offer-content {
  position: relative;
  z-index: 2
}

.offer-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.offer-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 16px
}

.offer-banner p {
  font-size: 1.0625rem;
  opacity: .88;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

@media(max-width:480px) {
  .offer-banner {
    padding: 36px 20px;
    border-radius: 12px
  }

  .offer-banner h2 {
    font-size: 1.35rem
  }

  .offer-banner p {
    font-size: .875rem;
    margin-bottom: 20px
  }

  .offer-tag {
    font-size: .625rem;
    padding: 5px 12px
  }
}

/* ─── Social Proof Numbers ─── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  overflow: hidden
}

@media(min-width:768px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
  }
}

.number-card {
  text-align: center;
  padding: 24px 12px;
  overflow: hidden
}

.number-card__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -.04em;
  white-space: nowrap
}

.section--numbers .number-card__value {
  color: #fff
}

.number-card__label {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  line-height: 1.4
}

@media(max-width:480px) {
  .numbers-grid {
    gap: 8px
  }

  .number-card {
    padding: 20px 8px
  }

  .number-card__value {
    font-size: 1.75rem
  }

  .number-card__label {
    font-size: .6875rem
  }
}

/* ─── Grid ─── */
.grid {
  display: grid;
  gap: 20px
}

@media(min-width:640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* ─── Service Cards ─── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition)
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.card--service {
  padding: 32px 28px;
  display: flex;
  flex-direction: column
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block
}

.card--service h3 {
  font-size: 1.125rem;
  margin-bottom: 10px
}

.card--service p {
  color: var(--text-light);
  font-size: .9375rem;
  flex-grow: 1;
  margin-bottom: 20px
}

.card__cta {
  display: inline-block;
  width: fit-content;
  background: rgba(0, 165, 210, .08);
  color: var(--primary);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  transition: var(--transition)
}

.card__cta:hover {
  background: var(--primary);
  color: #fff
}

/* ─── Deal Cards ─── */
.card--deal {
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative
}

.card--popular {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 30px var(--primary-glow)
}

.card__popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap
}

.card__deal-icon {
  font-size: 2.5rem;
  margin-bottom: 16px
}

.card--deal h3 {
  font-size: 1.125rem;
  margin-bottom: 12px
}

.card--deal p {
  color: var(--text-light);
  font-size: .9375rem;
  margin-bottom: 8px;
  flex-grow: 1
}

.card__fine {
  display: block;
  font-size: .6875rem;
  color: var(--text-light);
  margin-bottom: 20px
}

/* ─── Why Us Cards ─── */
.card--why {
  padding: 28px 24px
}

.card--why .card__icon {
  font-size: 1.75rem;
  margin-bottom: 14px
}

.card--why h3 {
  font-size: 1rem;
  margin-bottom: 8px
}

.card--why p {
  color: var(--text-light);
  font-size: .875rem
}

/* ─── Problem vs Solution ─── */
.split-layout {
  display: grid;
  gap: 24px
}

@media(min-width:768px) {
  .split-layout {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch
  }
}

.split-col {
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md)
}

.split-col--problem {
  background: #fff;
  border: 1px solid #ffe5e5
}

.split-col--solution {
  background: #f0fdf4;
  border: 1px solid #bbf7d0
}

.split-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px
}

.split-icon {
  font-size: 1.5rem;
  flex-shrink: 0
}

.split-head h3 {
  font-size: 1.125rem
}

.split-list li {
  margin-bottom: 18px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 32px;
  position: relative
}

.split-list li span {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1rem
}

.split-list li strong {
  color: var(--text);
  display: inline
}

.split-divider {
  display: none
}

@media(min-width:768px) {
  .split-divider {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .split-divider svg {
    width: 36px;
    height: 36px;
    color: var(--primary)
  }
}

.split-badge {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .875rem;
  margin-top: 16px
}

@media(max-width:480px) {
  .split-col {
    padding: 24px 20px
  }

  .split-head {
    margin-bottom: 18px
  }

  .split-list li {
    font-size: .875rem;
    margin-bottom: 14px;
    padding-left: 30px
  }

  .split-badge {
    font-size: .8125rem;
    padding: 10px 16px
  }
}

/* ─── Value Prop / Guarantees ─── */
@media(min-width:768px) {
  .split-layout--reverse {
    grid-template-columns: 1fr 1fr
  }

  .split-layout--reverse .split-content {
    order: 1
  }

  .split-layout--reverse .split-img {
    order: 2
  }
}

.split-content .chip {
  margin-bottom: 16px
}

.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 500px
}

.guarantee-list {
  margin-top: 24px
}

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 500
}

.g-check {
  flex-shrink: 0;
  font-size: 1.125rem
}

/* ─── Video ─── */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto
}

.video-player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000
}

.video-player__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.video-player:hover .video-player__thumb {
  transform: scale(1.02)
}

.video-player__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2
}

.video-player__btn svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .3));
  transition: var(--transition)
}

.video-player:hover .video-player__btn svg {
  transform: scale(1.1)
}

.video-player__label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap
}

.video-player.playing .video-player__thumb,
.video-player.playing .video-player__btn,
.video-player.playing .video-player__label {
  display: none
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px
}

.video-badges span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light)
}

/* ─── Before & After ─── */
.ba-grid {
  display: grid;
  gap: 20px
}

@media(min-width:640px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition)
}

.ba-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.ba-card__imgs {
  display: flex;
  position: relative
}

.ba-card__imgs .ba-img {
  width: 50%;
  height: 200px;
  object-fit: cover
}

.ba-label {
  position: absolute;
  bottom: 8px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff
}

.ba-label--before {
  left: 8px;
  background: rgba(255, 69, 58, .85)
}

.ba-label--after {
  right: 8px;
  background: rgba(52, 199, 89, .85)
}

.ba-card h3 {
  font-size: 1rem;
  padding: 16px 16px 4px
}

.ba-card p {
  font-size: .8125rem;
  color: var(--text-light);
  padding: 0 16px 16px
}

/* ─── How It Works (Steps) ─── */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  flex: 1 1 140px;
  min-width: 140px;
  max-width: 180px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition)
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.step-card__num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px
}

.step-card h3 {
  font-size: .9375rem;
  margin-bottom: 8px
}

.step-card p {
  font-size: .8125rem;
  color: var(--text-light)
}

.step-card__arrow {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0
}

@media(max-width:767px) {
  .step-card__arrow {
    display: none
  }

  .step-card {
    max-width: 100%;
    flex: 1 1 100%
  }
}

/* ─── Reviews ─── */
.card--review {
  padding: 28px 24px
}

.review__stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px
}

.card--review p {
  font-size: .9375rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--text)
}

.review__author {
  font-size: .8125rem;
  color: var(--text-light);
  font-weight: 500
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.faq-item__q span {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform .3s;
  color: var(--text-light);
  flex-shrink: 0
}

.faq-item.active .faq-item__q span {
  transform: rotate(45deg)
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-item__a p {
  padding-bottom: 22px;
  color: var(--text-light);
  font-size: .9375rem;
  line-height: 1.7
}

/* ─── Final CTA ─── */
.cta-final {
  background: #0b1a2b;
  color: #fff;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden
}

.cta-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 165, 210, .18), transparent 65%);
  z-index: 0
}

.cta-final__in {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto
}

.cta-final__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 69, 58, .12);
  border: 1px solid rgba(255, 69, 58, .25);
  color: var(--red);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 700;
  margin-bottom: 28px
}

.cta-final__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: flash 1s infinite alternate
}

.cta-final h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  line-height: 1.2
}

.cta-final p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 36px
}

.cta-final__btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px
}

@media(min-width:576px) {
  .cta-final__btns {
    flex-direction: row;
    justify-content: center
  }
}

.cta-final__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px
}

.cta-final__trust span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-full)
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-alt);
  padding: 60px 0 24px;
  border-top: 1px solid var(--border)
}

.footer__in {
  display: grid;
  gap: 40px;
  margin-bottom: 40px
}

@media(min-width:768px) {
  .footer__in {
    grid-template-columns: 2fr 1fr 1fr
  }
}

.footer__logo {
  height: 32px;
  pointer-events: none;
  margin-bottom: 16px
}

.footer__brand p {
  color: var(--text-light);
  font-size: .875rem;
  margin-bottom: 12px
}

.footer__brand a {
  display: block;
  color: var(--primary);
  font-weight: 500;
  font-size: .875rem;
  margin-bottom: 6px
}

.footer__col h4 {
  font-size: 1rem;
  margin-bottom: 16px
}

.footer__col a {
  display: block;
  color: var(--text-light);
  font-size: .875rem;
  margin-bottom: 10px;
  transition: var(--transition)
}

.footer__col a:hover {
  color: var(--primary)
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: .75rem
}

/* ─── Floating Desktop Buttons ─── */
.floats {
  display: none
}

@media(min-width:769px) {
  .floats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90
  }

  .float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition)
  }

  .float:hover {
    transform: scale(1.12)
  }

  .float--wa {
    background: var(--accent)
  }

  .float--call {
    background: var(--primary)
  }
}

/* ─── Mobile Bottom Bar ─── */
.mob-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 95;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, .1)
}

.mob-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  color: #fff;
  font-weight: 700;
  font-size: .9375rem
}

.mob-bar__btn--call {
  background: var(--primary)
}

.mob-bar__btn--wa {
  background: var(--accent)
}

@media(min-width:769px) {
  .mob-bar {
    display: none
  }
}

/* Give body bottom padding on mobile to avoid overlap */
@media(max-width:768px) {
  body {
    padding-bottom: 60px
  }
}

/* ─── Scroll-triggered Reveals ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ─── Additional Mobile Fixes ─── */
@media(max-width:480px) {

  /* Service cards */
  .card--service {
    padding: 24px 20px
  }

  .card--service h3 {
    font-size: 1rem
  }

  .card--service p {
    font-size: .875rem
  }

  /* Deal cards */
  .card--deal {
    padding: 28px 20px
  }

  .card--deal h3 {
    font-size: 1rem
  }

  /* Why cards */
  .card--why {
    padding: 22px 18px
  }

  .card--why h3 {
    font-size: .9375rem
  }

  /* Reviews */
  .card--review {
    padding: 22px 18px
  }

  .card--review p {
    font-size: .875rem
  }

  /* Before/After images */
  .ba-card__imgs .ba-img {
    height: 150px
  }

  /* FAQ */
  .faq-item__q {
    font-size: .9375rem;
    padding: 18px 0
  }

  /* Video */
  .video-player__btn svg {
    width: 56px;
    height: 56px
  }

  .video-player__label {
    font-size: .625rem;
    padding: 4px 10px
  }

  /* Steps - vertical list on mobile */
  .step-card {
    padding: 22px 18px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px
  }

  .step-card__num {
    margin-bottom: 0;
    flex-shrink: 0
  }

  .step-card h3 {
    font-size: .875rem;
    margin-bottom: 4px
  }

  .step-card p {
    font-size: .8125rem
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px
  }

  .footer__logo {
    height: 28px
  }

  /* Final CTA */
  .cta-final {
    padding: 60px 16px
  }

  .cta-final h2 {
    font-size: 1.5rem
  }

  .cta-final p {
    font-size: .9375rem
  }

  .cta-final__btns .btn {
    width: 100%
  }

  /* Guarantee list */
  .guarantee-list li {
    font-size: .9375rem
  }
}

/* ─── Trust Signals Banner (Horizontal) ─── */
.trust-signals {
  padding: 20px 0;
  background: var(--bg-white, #fff);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border)
}

.trust-signals__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text)
}

.trust-signal__icon {
  font-size: 1.25rem;
  flex-shrink: 0
}

@media(max-width:480px) {
  .trust-signals__grid {
    gap: 12px 20px
  }

  .trust-signal {
    font-size: .6875rem;
    gap: 6px
  }

  .trust-signal__icon {
    font-size: 1rem
  }
}