:root {
  --gold: #e5b842;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #f5d061 0%, #b8860b 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fce888 0%, #d4a317 100%);
  --white: #f8fbff;
  --soft: rgba(248, 251, 255, 0.8);
  --dark: #050607;
  --gold-glow: rgba(229, 184, 66, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 900vh;
  background: var(--dark);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  overscroll-behavior: none;
}

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

.scene {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(1.04) contrast(1.04);
  transform: translateX(0) scale(1.28);
  transform-origin: 66% 47%;
  opacity: 1;
  transition:
    opacity 1200ms ease,
    transform 2200ms cubic-bezier(0.19, 1, 0.22, 1),
    object-position 2200ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.scene-sequence {
  opacity: 0;
  object-position: 54% 50%;
  transform: translateX(0) scale(1);
  transform-origin: 66% 47%;
  transition:
    transform 2200ms cubic-bezier(0.19, 1, 0.22, 1),
    object-position 2200ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.is-service .scene-clean {
  transform: translateX(0) scale(1);
}

body.is-tilted .scene-clean {
  opacity: 0;
  transform: translateX(0) scale(1);
}

body.is-sequence-reversing .scene-clean {
  opacity: 1;
  transform: translateX(0) scale(1);
}

body.is-tilted .scene-sequence,
body.is-sequence-reversing .scene-sequence {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scene-interior {
  opacity: 0;
  object-position: 50% 50%;
  transform: scale(1);
  transition: opacity 800ms ease;
}

body.is-interior .scene-sequence {
  opacity: 1;
}

body.is-interior-zoomed .scene-sequence {
  opacity: 0;
  transition: opacity 800ms ease;
}

body.is-interior .scene-clean {
  opacity: 0;
  transition: opacity 1200ms ease;
}

body.is-interior-zoomed .scene-interior {
  opacity: 1;
  transform: scale(1);
  transition: opacity 800ms ease;
}

.shade {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.44) 32%, rgba(0, 0, 0, 0.04) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.1) 38%, rgba(0, 0, 0, 0.44));
  opacity: 1;
  transition: opacity 1600ms ease;
}

body.is-service .shade,
body.is-tilted .shade,
body.is-interior .shade {
  opacity: 0.92;
}

.nav {
  position: fixed;
  top: clamp(22px, 3vw, 42px);
  left: clamp(24px, 4vw, 62px);
  right: clamp(24px, 3vw, 48px);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  text-transform: uppercase;
  font-weight: 700;
}

.brand span {
  display: inline-flex;
  align-items: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.72;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.brand span .sparkle {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 2px;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-login-nav {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  transition: color 180ms ease;
  margin-right: 16px;
}

.btn-login-nav:hover {
  color: var(--gold);
}

.links {
  display: flex;
  gap: clamp(24px, 5vw, 72px);
  padding-top: 10px;
  font-size: 0.92rem;
}

.links a,
.play-link,
.next {
  transition: color 180ms ease;
}

.links a:hover,
.play-link:hover,
.next:hover {
  color: var(--gold);
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 16px 38px var(--gold-glow);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pill:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 16px 38px rgba(229, 184, 66, 0.45);
}

.pill.large {
  min-width: 184px;
  min-height: 48px;
  pointer-events: auto;
}

.mobile-only-link {
  display: none !important;
}

.menu {
  width: 46px;
  height: 46px;
  display: none; /* Hidden on desktop screens */
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu span {
  width: 14px;
  height: 2px;
  background: var(--white);
}

.site-shell {
  min-height: 900vh;
}

.reveal-group {
  position: fixed;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.reveal-group.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reveal-group.align-left {
  left: clamp(24px, 4vw, 62px);
  right: auto;
  top: 21vh;
  width: min(860px, calc(100vw - 48px));
  text-align: left;
}

.reveal-group.align-right {
  right: clamp(24px, 4vw, 62px);
  left: auto;
  top: 21vh;
  width: min(720px, calc(100vw - 48px));
  text-align: right;
}

.reveal-group.align-center {
  left: 50%;
  right: auto;
  top: 17vh;
  transform: translateX(-50%);
  width: min(840px, calc(100vw - 48px));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reveal-group.align-right .benefits-grid {
  margin-left: auto;
}

.reveal-group.align-center h2,
.reveal-group.align-center p,
.reveal-group.align-center .kicker {
  margin-left: auto;
  margin-right: auto;
}
.reveal-group.align-center .steps-flow,
.reveal-group.align-center .pricing-container,
.reveal-group.align-center .reviews-grid,
.reveal-group.align-center .faq-accordion,
.reveal-group.align-center .contact-container {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  top: 28vh;
}
.hero {
  position: relative;
}
.hero-shadow-overlay {
  position: absolute;
  inset: 0;
  height: 100vh;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Glassmorphism Helper */
.glass {
  background: rgba(10, 12, 14, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* Secondary & WhatsApp Buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(229, 184, 66, 0.08);
  box-shadow: 0 0 16px rgba(229, 184, 66, 0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid #25d366;
  color: #25d366;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.24);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp svg {
  width: 16px;
  height: 16px;
}

/* Brand Positioning Card */
.brand-positioning {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(229, 184, 66, 0.06);
  border: 1px solid rgba(229, 184, 66, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--soft);
  max-width: 520px;
}
.brand-positioning span {
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.subheadline {
  margin: 18px 0 26px !important;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
  max-width: 540px;
}

/* Why PACT benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  max-width: 560px;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(229, 184, 66, 0.2);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(229, 184, 66, 0.08);
  color: var(--gold);
  margin-bottom: 12px;
}
.benefit-icon svg {
  width: 20px;
  height: 20px;
}
.benefit-card h3 {
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px 0;
}
.benefit-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--soft);
}

/* How It Works Flow Stepper */
.steps-flow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  max-width: 720px;
}
.step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px;
  position: relative;
  text-align: center;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 0 12px rgba(229, 184, 66, 0.3);
}
.step-card h3 {
  font-family: Outfit, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--white);
}
.step-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--soft);
}
.step-connector {
  width: 24px;
  height: 2px;
  background: rgba(229, 184, 66, 0.2);
  align-self: center;
  flex-shrink: 0;
}

/* Pricing Grid and details */
.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.plan-price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.plan-price-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(229, 184, 66, 0.25);
  transform: translateY(-2px);
}
.plan-price-card.popular {
  border-color: var(--gold);
  background: rgba(229, 184, 66, 0.03);
}
.plan-price-card.popular .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--dark);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(229, 184, 66, 0.3);
}
.plan-price-card h3 {
  font-family: Outfit, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 6px 0 10px 0;
  color: var(--white);
}
.plan-price-card .price {
  font-family: Outfit, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.plan-price-card .price span {
  font-size: 0.75rem;
  color: var(--soft);
  font-weight: 400;
}
.plan-price-card p {
  margin: 0 0 14px 0;
  font-size: 0.75rem;
  color: var(--soft);
  line-height: 1.3;
  min-height: 2.6em;
}
.btn-select {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s ease;
}
.plan-price-card:hover .btn-select {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(229, 184, 66, 0.25);
}
.plan-price-card.popular .btn-select {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: transparent;
}

.includes-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 20px;
}
.includes-card h4 {
  font-family: Outfit, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
}
.includes-list li {
  font-size: 0.82rem;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.includes-list li svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Mobile App Section Layout (Mockup Left, Description Right) */
.reveal-group.app-custom-layout {
  left: clamp(24px, 4vw, 62px);
  right: clamp(24px, 4vw, 62px);
  top: 11vh;
  width: auto;
  text-align: right;
}
.reveal-group.app-custom-layout .phone-mockup {
  margin: -60px auto 0 0;
}
.app-section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  margin-top: 12px;
  width: 100%;
}
.app-desc-col {
  text-align: right;
  max-width: 580px;
  margin-left: auto;
}
.app-desc-col p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--soft);
  margin: 0 0 16px 0;
}
.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.app-feat-item {
  display: flex;
  flex-direction: row-reverse;
  text-align: right;
  gap: 12px;
}
.app-feat-item .feat-content {
  margin-right: 12px;
}
.feat-bullet {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.app-feat-item h4 {
  font-family: Outfit, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px 0;
}
.app-feat-item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--soft);
}
.app-badge-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
}
.store-badge:hover {
  border-color: var(--gold);
  background: rgba(229,184,66,0.05);
}
.store-badge svg {
  width: 18px;
  height: 18px;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.store-badge-text small {
  font-size: 0.52rem;
  color: var(--soft);
  text-transform: uppercase;
  font-weight: 500;
}
.store-badge-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: Outfit, sans-serif;
}

/* Phone Mockup Styling (3D Tilted and Animated) */
.phone-mockup {
  width: 270px;
  height: 520px;
  background: #0b0c0d;
  border: 10px solid #1c1d1e;
  border-radius: 36px;
  box-shadow: -20px 24px 50px rgba(0,0,0,0.6), inset 0 0 3px rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  
  /* 3D Isometric Tilt & Floating Animation */
  transform-style: preserve-3d;
  animation: floatPhone 6s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.phone-mockup:hover {
  animation-play-state: paused;
  transform: perspective(1000px) rotateY(4deg) rotateX(3deg) rotateZ(-1deg) translateY(-5px);
  box-shadow: -10px 15px 35px rgba(0,0,0,0.5);
}

@keyframes floatPhone {
  0%, 100% {
    transform: perspective(1000px) rotateY(12deg) rotateX(8deg) rotateZ(-3deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(14deg) rotateX(10deg) rotateZ(-4deg) translateY(-10px);
  }
}
.phone-screen {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #050607;
  padding: 14px;
  font-family: Inter, sans-serif;
  overflow: hidden;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.phone-header span {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.phone-header-user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--soft);
}
.phone-header-user .avatar-placeholder {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 800;
  font-size: 0.55rem;
}
.phone-header-bell {
  color: var(--soft);
  position: relative;
  display: flex;
  align-items: center;
}
.phone-header-bell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 4px;
  background: #ff3b30;
  border-radius: 50%;
}

.car-selection-dot {
  position: absolute;
  top: 35%;
  left: 20%;
  width: 6px;
  height: 6px;
  background: #007aff;
  border-radius: 50%;
  box-shadow: 0 0 8px #007aff;
  animation: pulseBlue 1.5s infinite;
}
@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(0, 122, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 122, 255, 0); }
}

.vehicle-card-mock {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}
.car-info {
  text-align: left;
}
.car-info h3 {
  font-family: Outfit, sans-serif;
  font-size: 0.85rem;
  margin: 0;
  color: var(--white);
}
.car-info span {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.car-graphic {
  margin-top: 6px;
  height: 64px;
  display: flex;
  justify-content: center;
  position: relative;
}
.harrier-png {
  height: 200px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 10px rgba(229, 184, 66, 0.35));
}

.phone-sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
}
.phone-sub-row span.active {
  color: #30d5c8; /* Cyan */
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.phone-sub-row span.active::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid #30d5c8;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinLoader 1s linear infinite;
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

/* Circular progress card */
.phone-progress-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
}
.phone-progress-circle {
  width: 90px;
  height: 90px;
  position: relative;
  flex-shrink: 0;
}
.phone-progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.phone-progress-circle circle {
  fill: none;
  stroke-width: 6;
}
.phone-progress-circle circle.bg {
  stroke: rgba(255,255,255,0.04);
}
.phone-progress-circle circle.val {
  stroke: #30d5c8; /* Cyan */
  stroke-dasharray: 251.2;
  stroke-dashoffset: 25.1; /* 90% progress */
  stroke-linecap: round;
}
.phone-progress-circle-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.phone-progress-circle-text span.label {
  font-size: 0.45rem;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-progress-circle-text span.value {
  font-family: Outfit, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 2px 0;
}
.phone-progress-circle-text span.time {
  font-size: 0.55rem;
  color: #30d5c8;
  font-weight: 700;
}
.phone-progress-circle-text span.type {
  font-size: 0.4rem;
  color: var(--soft);
}

.phone-progress-details {
  text-align: left;
  flex-grow: 1;
  font-size: 0.65rem;
  line-height: 1.4;
  color: var(--soft);
}
.phone-progress-details div {
  margin-bottom: 3px;
}
.phone-progress-details strong {
  color: var(--white);
}

/* Wash Dashboard Mock Card */
.phone-dashboard-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.phone-dashboard-card h4 {
  font-size: 0.72rem;
  margin: 0 0 6px 0;
  display: flex;
  justify-content: space-between;
  color: var(--white);
}
.phone-dashboard-card h4 span.plan {
  color: var(--soft);
  font-size: 0.55rem;
}
.phone-progress-bar-mock {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.phone-progress-bar-mock .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80%;
  background: #30d5c8;
  border-radius: 4px;
}
.phone-dashboard-card .left-washes {
  font-size: 0.55rem;
  color: var(--soft);
  text-align: right;
  margin-bottom: 8px;
}
.phone-dashboard-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 6px;
}
.phone-dashboard-stats div {
  text-align: center;
}
.phone-dashboard-stats small {
  display: block;
  font-size: 0.5rem;
  color: var(--soft);
}
.phone-dashboard-stats strong {
  font-size: 0.72rem;
  color: var(--white);
}

.phone-action-btn {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(0, 114, 255, 0.4);
}

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
  margin-top: auto;
}
.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  color: var(--soft);
  cursor: pointer;
}
.phone-nav-item.active {
  color: #30d5c8;
}
.phone-nav-item svg {
  width: 14px;
  height: 14px;
}

/* Before and After slider styles */
.gallery-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  width: 100%;
}
.slider-wrapper {
  width: 100%;
}
.before-after-slider {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.after-image, .before-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.before-image {
  border-right: 1px solid rgba(229, 184, 66, 0.4);
}
.slider-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
}
.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: var(--dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 0 12px var(--gold-glow);
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft);
  text-transform: uppercase;
}
.gallery-desc p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--soft);
  margin: 0 0 16px 0;
}
.feat-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feat-bullets li {
  font-size: 0.85rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-bullets li span {
  color: var(--gold);
}

/* Reviews grid layout */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}
.review-card {
  padding: 20px;
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: rgba(229, 184, 66, 0.25);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.review-user h4 {
  font-family: Outfit, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px 0;
}
.review-user small {
  font-size: 0.72rem;
  color: var(--soft);
}
.review-rating {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.review-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--soft);
  font-style: italic;
}

/* FAQ Accordion Styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
  max-width: 680px;
}
.faq-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(229, 184, 66, 0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  width: 12px;
  height: 12px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 99px;
  transition: all 0.3s ease;
}
.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 20px;
  color: var(--soft);
  font-size: 0.85rem;
  line-height: 1.5;
}
.faq-item.active .faq-answer {
  max-height: 140px;
  padding: 0 20px 16px 20px;
}

/* Contact support and WhatsApp details */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.contact-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--soft);
  margin: 0 0 20px 0;
}
.contact-details p {
  margin: 0 0 10px 0;
  font-size: 0.88rem;
}
.contact-details strong {
  color: var(--gold);
  font-family: Outfit, sans-serif;
  margin-right: 6px;
}
.contact-action-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whatsapp-card {
  padding: 20px;
}
.whatsapp-card h4 {
  font-family: Outfit, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px 0;
}
.whatsapp-card p {
  margin: 0 0 16px 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--soft);
}
.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  background: #25d366;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37,211,102,0.25);
}
.btn-whatsapp-large:hover {
  background: #20ba59;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transform: translateY(-1px);
}
.btn-whatsapp-large svg {
  width: 18px;
  height: 18px;
}

/* Deep shade backdrop modifier */
body.is-deep-shade .shade {
  opacity: 0.94;
  background: radial-gradient(circle at 30% 30%, rgba(8, 10, 12, 0.9) 0%, rgba(3, 4, 5, 0.98) 100%);
}

h1,
h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h1 span,
h2 span {
  display: block;
}
@media (min-width: 901px) {
  h1 span {
    white-space: nowrap;
  }
}

.gold,
.kicker,
.count {
  color: var(--gold);
}

.short-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: 28px 0 26px;
  background: var(--gold);
}

.hero-copy p {
  margin: 0 0 8px;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: auto;
}

.play {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--gold);
}

.stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
}

.stats div {
  display: grid;
  grid-template-columns: 32px auto;
  column-gap: 12px;
  min-width: 152px;
}

.stats div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(229, 184, 66, 0.65);
}

.stats strong {
  font-size: 1.32rem;
}

.stats small {
  grid-column: 2;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.feature-rotator {
  position: fixed;
  right: clamp(24px, 4vw, 72px);
  top: 54vh;
  z-index: 4;
  width: min(620px, 46vw);
  min-height: 112px;
  pointer-events: none;
  text-align: right;
  text-transform: uppercase;
}

.feature-rotator span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.8rem, 3.1vw, 4.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(229, 184, 66, 0.28);
  clip-path: inset(0 100% 0 0);
  filter: blur(0);
  opacity: 0;
  transform: translateY(10px);
  animation: feature-bar-text 12s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.feature-rotator span::before,
.feature-rotator span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  animation: feature-bar-line 12s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.feature-rotator span::before {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.44), 0 0 28px rgba(229, 184, 66, 0.38);
}

.feature-rotator span::after {
  height: 22px;
  background: linear-gradient(90deg, transparent, rgba(229, 184, 66, 0.24), rgba(255, 255, 255, 0.16));
  filter: blur(12px);
}

.feature-rotator span:nth-child(2) {
  animation-delay: 3s;
}

.feature-rotator span:nth-child(2)::before,
.feature-rotator span:nth-child(2)::after {
  animation-delay: 3s;
}

.feature-rotator span:nth-child(3) {
  animation-delay: 6s;
}

.feature-rotator span:nth-child(3)::before,
.feature-rotator span:nth-child(3)::after {
  animation-delay: 6s;
}

.feature-rotator span:nth-child(4) {
  animation-delay: 9s;
}

.feature-rotator span:nth-child(4)::before,
.feature-rotator span:nth-child(4)::after {
  animation-delay: 9s;
}

.people-icon,
.star-icon {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
}

.people-icon {
  margin-top: 4px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
  position: relative;
}

.people-icon::before,
.people-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.people-icon::before {
  width: 10px;
  height: 10px;
  left: 8px;
  top: -12px;
}

.people-icon::after {
  width: 7px;
  height: 7px;
  right: -6px;
  top: -7px;
}

.star-icon {
  border: 0;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 92%, 50% 70%, 20% 92%, 32% 56%, 2% 35%, 39% 35%);
  background: var(--gold);
}

.count {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.count span {
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.kicker {
  margin: 0 0 18px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.body {
  margin: 18px 0 26px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.5;
}

.next {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  pointer-events: auto;
  position: relative;
  text-decoration: none;
  margin-top: 36px;
}

.next > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  background: transparent;
  z-index: 2;
}

.next > span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.next:hover > span {
  background: var(--gold-gradient);
  box-shadow: 0 0 15px var(--gold-glow);
}

.next:hover > span::before {
  border-color: var(--dark);
}

.next-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 2;
}

.next-title {
  color: var(--gold);
  font-family: Outfit, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.next-desc {
  color: var(--soft);
  font-family: Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: none;
  margin-top: 2px;
  line-height: 1.2;
}

.next > span .dotted-connector-curve {
  position: absolute;
  bottom: calc(50% - 1.5px);
  right: calc(100% + 4px);
  width: 220px;
  height: 57px;
  border-left: 3.5px dotted var(--gold);
  border-bottom: 3.5px dotted var(--gold);
  border-bottom-left-radius: 35px;
  pointer-events: none;
  opacity: 0.75;
  z-index: 1;
}

.why .next > span .dotted-connector-curve,
#how .next > span .dotted-connector-curve,
#reviews-section .next > span .dotted-connector-curve,
#faq-section .next > span .dotted-connector-curve {
  width: 80px;
}

@media (min-width: 901px) {
  #how .next,
  #reviews-section .next,
  #faq-section .next {
    align-self: flex-start;
    margin-left: calc(50% + 84px);
  }
}

@media (max-width: 900px) {
  .next > span .dotted-connector-curve {
    display: none;
  }
}

.reveal-text {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(28px);
}

.reveal-group.is-visible .reveal-text {
  animation: sidewave 760ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--i, 0) * 110ms);
}

@keyframes sidewave {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(-24px, 24px, 0) skewX(-5deg);
  }
  55% {
    opacity: 1;
    filter: blur(5px);
    transform: translate3d(7px, 0, 0) skewX(2deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) skewX(0);
  }
}

@keyframes feature-bar-text {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(10px);
  }
  12%,
  30% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
  40%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translateY(-8px);
  }
}

@keyframes feature-bar-line {
  0% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  8% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
  18%,
  30% {
    opacity: 0.52;
    transform: translateY(-50%) scaleX(0.08);
  }
  40%,
  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
}

.carousel-btn {
  display: none !important;
}

@media (max-width: 900px) {
  .menu {
    display: grid !important; /* Visible on mobile screens */
  }

  .links {
    display: none;
  }

  .nav {
    align-items: center;
  }

  .actions .pill {
    display: none;
  }

  .hero-copy {
    top: 24vh;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .scene {
    object-position: 63% 50%;
  }

  .feature-rotator {
    display: none;
  }

  /* Global mobile reveal-group styling overrides (excl. Hero section) */
  .reveal-group:not(.hero-copy) {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    top: 16vh !important;
    bottom: 6vh !important;
    height: auto !important;
    width: calc(100vw - 40px) !important;
    text-align: center !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }

  /* Headings & Kickers responsive scaling */
  h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  .subheadline {
    font-size: clamp(0.95rem, 2.6vw, 1.25rem) !important;
    line-height: 1.35 !important;
    margin: 8px auto 16px !important;
    max-width: 100% !important;
  }
  .cta-row {
    gap: 12px !important;
    margin-top: 16px !important;
    justify-content: center !important;
  }
  h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem) !important;
    margin-bottom: 6px !important;
  }
  .kicker {
    font-size: clamp(0.78rem, 2vw, 0.95rem) !important;
    margin-bottom: 4px !important;
  }
  .next-title {
    font-size: clamp(0.95rem, 2.4vw, 1.1rem) !important;
  }
  .next-desc {
    font-size: clamp(0.78rem, 1.8vw, 0.9rem) !important;
  }
  
  /* Next Section Button Floating in Bottom Right */
  .next {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    z-index: 100 !important;
    pointer-events: auto !important;
  }

  /* Mobile Dropdown Navigation & Hamburger Menu */
  .links.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(5, 6, 7, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 1000 !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 28px !important;
    font-size: 1.3rem !important;
    pointer-events: auto !important;
    padding: 40px !important;
  }
  .links.open .mobile-only-link {
    display: inline-flex !important;
  }
  .menu {
    z-index: 1001 !important; /* Keep above overlay menu */
    transition: all 0.3s ease !important;
  }
  .menu.active {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--gold) !important;
  }
  .menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .menu.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* Carousel Wrappers and Buttons */
  .carousel-wrapper {
    position: relative !important;
    width: 100% !important;
    display: block !important;
  }
  .carousel-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    z-index: 20 !important;
    transition: all 0.2s ease !important;
    pointer-events: auto !important;
  }
  .carousel-btn:hover {
    background: rgba(229, 184, 66, 0.2) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }
  .carousel-btn.prev-btn {
    left: 0px !important;
  }
  .carousel-btn.next-btn {
    right: 0px !important;
  }

  /* 1. Why Choose PACT Section responsiveness */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
    margin-top: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .benefit-card {
    padding: 10px !important;
  }
  .benefit-icon {
    display: none !important; /* Hiding icons on mobile saves vertical space */
  }
  .benefit-card h3 {
    font-size: clamp(0.88rem, 2.2vw, 1.1rem) !important;
    margin-bottom: 2px !important;
  }
  .benefit-card p {
    font-size: clamp(0.75rem, 1.8vw, 0.95rem) !important;
    line-height: 1.25 !important;
  }

  /* 2. How It Works Section responsiveness */
  .steps-flow {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 12px !important;
    max-width: 100% !important;
  }
  .step-card {
    padding: 10px !important;
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    text-align: center !important;
  }
  .step-num {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.75rem !important;
    margin: 0 auto 6px auto !important;
    flex-shrink: 0 !important;
  }
  .step-card h3 {
    font-size: clamp(0.88rem, 2.2vw, 1.1rem) !important;
    margin-bottom: 2px !important;
  }
  .step-card p {
    font-size: clamp(0.75rem, 1.8vw, 0.95rem) !important;
    line-height: 1.25 !important;
  }
  .step-connector {
    display: none !important;
  }

  /* 3. Pricing Section responsiveness */
  .pricing-container {
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
    margin-top: 12px !important;
  }
  .plans-carousel {
    padding: 0 32px !important;
  }
  .plans-grid {
    display: block !important;
    width: 100% !important;
  }
  .plans-grid .plan-price-card {
    display: none !important;
  }
  .plans-grid .plan-price-card.active {
    display: block !important;
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 12px 16px !important;
  }
  .plans-grid .plan-price-card.active p {
    display: block !important; /* show description for active sliding card */
    margin-bottom: 12px !important;
    min-height: auto !important;
    font-size: clamp(0.78rem, 2vw, 1rem) !important;
  }
  .plan-price-card h3 {
    margin: 0 0 6px 0 !important;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem) !important;
  }
  .plan-price-card .price {
    margin: 0 0 6px 0 !important;
    font-size: clamp(1.4rem, 4vw, 2rem) !important;
  }
  .btn-select {
    width: 100% !important;
    padding: 6px !important;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem) !important;
  }
  .includes-card {
    padding: 8px !important;
    margin-top: 10px !important;
  }
  .includes-card h4 {
    font-size: clamp(0.82rem, 2.2vw, 1.05rem) !important;
    margin-bottom: 4px !important;
  }
  .includes-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px 10px !important;
  }
  .includes-list li {
    font-size: clamp(0.75rem, 1.8vw, 0.95rem) !important;
  }
  .includes-list li svg {
    width: 12px !important;
    height: 12px !important;
  }

  /* 4. Mobile App custom layout responsiveness - Side by Side */
  .reveal-group.app-custom-layout {
    top: 16vh !important;
  }
  .app-section-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: center !important;
    margin-top: 10px !important;
    width: 100% !important;
    position: relative !important;
  }
  .app-mockup-col {
    width: 42% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: 1 !important;
    pointer-events: auto !important;
  }
  .phone-mockup {
    transform: scale(0.48) !important;
    transform-origin: center !important;
    margin: 0 auto !important;
    animation: none !important;
    flex-shrink: 0 !important;
  }
  .app-desc-col {
    width: 58% !important;
    text-align: left !important;
    margin-left: 0 !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .app-desc-col p {
    font-size: 0.74rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .app-features-list {
    gap: 6px !important;
    margin-bottom: 8px !important;
  }
  .app-feat-item {
    flex-direction: row !important;
    text-align: left !important;
    gap: 6px !important;
    justify-content: flex-start !important;
  }
  .app-feat-item h4 {
    font-size: 0.78rem !important;
    margin-bottom: 0 !important;
  }
  .app-feat-item .feat-bullet {
    font-size: 0.8rem !important;
  }
  .app-feat-item p {
    display: none !important; /* Hiding text keeps app list brief and inside viewport */
  }
  .app-badge-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-top: 8px !important;
  }
  .store-badge {
    width: 100% !important;
    max-width: 124px !important;
    padding: 4px 8px !important;
    min-height: auto !important;
    gap: 6px !important;
  }
  .store-badge svg {
    width: 12px !important;
    height: 12px !important;
  }
  .store-badge-text small {
    font-size: 0.42rem !important;
  }
  .store-badge-text strong {
    font-size: 0.65rem !important;
  }

  /* 5. Before & After Section responsiveness */
  .gallery-container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 12px !important;
  }
  .before-after-slider {
    height: 180px !important;
  }
  .gallery-desc p {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }
  .feat-bullets li {
    font-size: 0.72rem !important;
  }

  /* 6. Customer Reviews Section responsiveness */
  .reviews-carousel {
    padding: 0 32px !important;
  }
  .reviews-grid {
    display: block !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
    margin-top: 12px !important;
  }
  .reviews-grid .review-card {
    display: none !important;
  }
  .reviews-grid .review-card.active {
    display: block !important;
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 auto !important;
  }
  .review-card {
    padding: 12px !important;
  }
  .review-card h4 {
    font-size: clamp(0.9rem, 2.4vw, 1.15rem) !important;
  }
  .review-card p {
    font-size: clamp(0.78rem, 2vw, 1rem) !important;
    line-height: 1.35 !important;
  }

  /* 7. FAQ Section responsiveness */
  .faq-accordion {
    margin-top: 12px !important;
    gap: 6px !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }
  .faq-accordion .faq-item:nth-child(n+3) {
    display: none !important; /* Only show first two FAQs on mobile */
  }
  .faq-question {
    padding: 10px 14px !important;
    font-size: clamp(0.88rem, 2.2vw, 1.1rem) !important;
  }
  .faq-answer p {
    font-size: clamp(0.8rem, 2vw, 0.95rem) !important;
    padding: 8px 14px !important;
    line-height: 1.3 !important;
  }

  /* 8. Contact & WhatsApp Section responsiveness */
  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 12px !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }
  .contact-card-info {
    padding: 12px !important;
  }
  .contact-card-info p {
    font-size: clamp(0.82rem, 2vw, 1rem) !important;
    margin-bottom: 8px !important;
  }
  .contact-details p {
    font-size: clamp(0.78rem, 1.8vw, 0.95rem) !important;
    margin-bottom: 4px !important;
  }
  .whatsapp-card {
    padding: 10px !important;
  }
  .whatsapp-card h4 {
    font-size: clamp(0.88rem, 2.2vw, 1.1rem) !important;
    margin-bottom: 2px !important;
  }
  .whatsapp-card p {
    font-size: clamp(0.78rem, 2vw, 0.95rem) !important;
    margin-bottom: 8px !important;
  }
  .btn-whatsapp-large {
    min-height: 34px !important;
    font-size: clamp(0.8rem, 2vw, 1rem) !important;
  }
}

@keyframes floatPhoneMobile {
  0%, 100% {
    transform: scale(0.7) perspective(1000px) rotateY(12deg) rotateX(8deg) rotateZ(-3deg) translateY(0);
  }
  50% {
    transform: scale(0.7) perspective(1000px) rotateY(14deg) rotateX(10deg) rotateZ(-4deg) translateY(-10px);
  }
}

@media (max-width: 620px) {
  .hero-copy,
  .service-copy {
    left: 20px;
    width: calc(100vw - 40px);
  }

  .hero-copy {
    top: 20vh;
  }

  .service-copy {
    top: 24vh;
  }

  .cta-row,
  .stats {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .stats div + div {
    padding-left: 0;
    border-left: 0;
  }

  .feature-rotator {
    display: none;
  }

  .reveal-group.app-custom-layout {
    top: 10vh;
  }
}

/* Enhanced Dark Glassmorphic Card Readability Overrides */
.benefit-card,
.step-card,
.plan-price-card,
.includes-card {
  background: rgba(10, 12, 14, 0.68) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.gallery-desc {
  background: rgba(10, 12, 14, 0.68) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
