/* ══════════════════════════════════════════════════════════════
   DIAMOND PRESSURE POWERWASH — 2026 PREMIUM DESIGN SYSTEM
   Dark Cinematic NYC · Ultra Modern · Professional Grade
══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  /* Brand Colors */
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-glow: rgba(34, 211, 238, 0.25);

  /* Dark Palette */
  --bg-base:    #080c14;
  --bg-surface: #0d1220;
  --bg-card:    #111827;
  --bg-elevated:#141c2e;

  /* Borders */
  --border-subtle: rgba(255,255,255,0.06);
  --border-glass:  rgba(255,255,255,0.12);
  --border-cyan:   rgba(34, 211, 238, 0.3);

  /* Text */
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;
  --text-accent:    var(--cyan-400);

  /* Gradients */
  --grad-cyan:  linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
  --grad-dark:  linear-gradient(135deg, #0d1220 0%, #080c14 100%);
  --grad-hero:  linear-gradient(180deg, rgba(8,12,20,0) 0%, rgba(8,12,20,0.6) 60%, rgba(8,12,20,1) 100%);
  --grad-glow:  radial-gradient(ellipse at 50% 0%, rgba(34,211,238,0.12) 0%, transparent 65%);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 40px rgba(0,0,0,0.6);
  --shadow-cyan: 0 0 40px rgba(34, 211, 238, 0.2);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s var(--ease-in-out);
  --t-base: 0.3s var(--ease-in-out);
  --t-slow: 0.5s var(--ease-out-expo);

  /* Layout */
  --max-w: 1280px;
  --nav-h: 76px;
  --ann-h: 40px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto; /* prevent images from causing horizontal overflow */
}

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

ul[role="list"] {
  list-style: none;
}

/* ─── GLOBAL LOADER ─── */
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s var(--ease-out-expo), visibility 1s var(--ease-out-expo);
}

.global-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.4) contrast(1.2) saturate(1.1);
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  animation: pulseScale 10s ease-in-out infinite alternate;
}

@keyframes pulseScale {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.loader-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
  opacity: 0.8;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px var(--cyan-glow));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 20px var(--cyan-glow)); }
  50% { transform: translateY(-10px); filter: drop-shadow(0 0 40px rgba(34, 211, 238, 0.6)); }
}

.loader-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan-400);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
  animation: pulseText 1.5s ease-in-out infinite alternate;
}

@keyframes pulseText {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--cyan-400);
  box-shadow: 0 0 10px var(--cyan-400);
  animation: progressFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes progressFill {
  0%   { width: 0%; }
  40%  { width: 30%; }
  70%  { width: 85%; }
  100% { width: 100%; }
}

@media (max-width: 768px) {
  .loader-video {
    object-fit: contain;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  }
  .loader-logo-img {
    width: 90px;
  }
  .loader-progress {
    width: 150px;
  }
  .loader-text {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }
}

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.text-gradient {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--grad-cyan);
  transform: translateY(-50%);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 52ch;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header--center .section-title {
  margin-bottom: 1rem;
}

.section-header--center .section-desc {
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.75rem;
  transition: all var(--t-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--grad-cyan);
  color: #030d14;
  box-shadow: 0 4px 24px var(--cyan-glow), 0 1px 2px rgba(0,0,0,0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,211,238,0.4), 0 2px 4px rgba(0,0,0,0.4);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

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

.btn--white {
  background: var(--text-primary);
  color: #080c14;
  font-weight: 800;
}

.btn--white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.btn--xl {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--full { width: 100%; }

.btn-arrow {
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── SCROLL REVEAL ─── */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

.reveal-item.revealed {
  opacity: 1;
  transform: none;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  height: var(--ann-h);
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: transform 0.3s var(--ease-in-out);
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #030d14;
  padding-inline: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-dot {
  width: 6px;
  height: 6px;
  background: #030d14;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.announcement-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 800;
  background: rgba(0,0,0,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  transition: background var(--t-fast);
  color: #030d14;
}

.announcement-phone:hover { background: rgba(0,0,0,0.22); }

/* ─── HEADER / NAVIGATION ─── */
header {
  position: sticky;
  top: var(--ann-h);
  z-index: 1000;
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

header.scrolled {
  background: rgba(8, 12, 20, 0.92);
  border-bottom-color: var(--border-glass);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}

.nav-logo:hover { opacity: 0.85; }

.logo-img {
  height: 84px;
  width: auto;
  filter: brightness(1.15) drop-shadow(0 2px 16px var(--cyan-glow));
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-secondary {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-link--cta {
  margin-left: 0.5rem;
  background: var(--grad-cyan);
  color: #030d14 !important;
  font-weight: 700;
  padding: 0.5625rem 1.25rem;
}

.nav-link--cta:hover {
  background: var(--grad-cyan) !important;
  box-shadow: 0 4px 20px var(--cyan-glow);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: border-color var(--t-fast);
}

.hamburger:hover { border-color: var(--border-cyan); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO — 2026 Cinematic Fullscreen ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* === Media Layer (video + poster image) === */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* stays visible while video loads */
}

.hero-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* video fades in once ready */
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-media__video.is-ready { opacity: 1; }

/* Cinematic overlay: dark vignette + bottom fade */
.hero-media__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(8,12,20,0.3) 0%, rgba(8,12,20,0.75) 70%),
    linear-gradient(to bottom, rgba(8,12,20,0.5) 0%, rgba(8,12,20,0.15) 40%, rgba(8,12,20,0.70) 80%, rgba(8,12,20,1) 100%),
    linear-gradient(to right, rgba(8,12,20,0.8) 0%, transparent 50%);
}

/* Subtle animated scan-line shimmer */
.hero-media__shimmer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(34, 211, 238, 0.018) 3px,
    rgba(34, 211, 238, 0.018) 4px
  );
  animation: shimmerScroll 8s linear infinite;
  pointer-events: none;
}

@keyframes shimmerScroll {
  0%   { background-position: 0 0; }
  100% { background-position: 0 400px; }
}

/* === Particles canvas === */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* === Hero Content === */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(5rem, 12vh, 8rem) clamp(5rem, 8vh, 6rem);
}

.hero-inner {
  max-width: 800px;
}

/* Eyebrow pill */
.hero-eyebrow { display: flex; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  animation: fadeInDown 0.6s var(--ease-out-expo) both;
  backdrop-filter: blur(10px);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-400);
  animation: dotPulse 2s infinite;
}

/* Hero Title */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  margin-top: 1.25rem;
}

.title-word {
  display: block;
  animation: titleReveal 0.75s var(--ease-out-expo) both;
}
.title-word:nth-child(1) { animation-delay: 0.15s; }
.title-word:nth-child(2) { animation-delay: 0.27s; }
.title-word:nth-child(3) { animation-delay: 0.39s; }

.title-accent {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(34,211,238,0.5));
  position: relative;
  display: inline-block;
}

/* ── Star-Burst Sparkle Glints ── */
.text-sparkle {
  position: absolute;
  pointer-events: none;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  text-shadow: 0 0 12px rgba(34,211,238,0.8);
  animation: starBurst 1s forwards cubic-bezier(0.1, 0.8, 0.2, 1);
}

@keyframes starBurst {
  0% { opacity: 0; transform: scale(0) rotate(-45deg); }
  30% { opacity: 1; transform: scale(1.4) rotate(0deg); }
  100% { opacity: 0; transform: scale(0.5) rotate(45deg); }
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(40px) skewY(2deg); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  color: rgba(241, 245, 249, 0.85);
  line-height: 1.7;
  max-width: 52ch;
  animation: fadeInUp 0.6s 0.5s var(--ease-out-expo) both;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
  margin-top: 1rem;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeInUp 0.6s 0.6s var(--ease-out-expo) both;
  margin-top: 0.25rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.875rem;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.trust-badge:hover {
  background: rgba(34,211,238,0.08);
  border-color: var(--border-cyan);
}
.trust-icon { color: var(--cyan-400); flex-shrink: 0; }

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  animation: fadeInUp 0.6s 0.7s var(--ease-out-expo) both;
  margin-top: 0.25rem;
}

/* Special button variants */
.btn--glow {
  box-shadow:
    0 0 0 0 rgba(34,211,238,0.4),
    0 4px 24px var(--cyan-glow),
    0 1px 2px rgba(0,0,0,0.4);
  animation: glowPulse 3s ease-in-out infinite 1.5s;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0.4), 0 4px 24px var(--cyan-glow); }
  50%       { box-shadow: 0 0 0 8px rgba(34,211,238,0), 0 8px 40px rgba(34,211,238,0.5); }
}

.btn--glass {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--border-cyan);
  transform: translateY(-2px);
}

/* Stats inline */
.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeInUp 0.6s 0.85s var(--ease-out-expo) both;
  margin-top: 0.5rem;
}
.hero-stat-inline {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding-right: 1.5rem;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--cyan-400);
  line-height: 1;
  text-shadow: 0 0 20px rgba(34,211,238,0.4);
}
.stat-num span { font-size: 0.8em; }
.stat-lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(241,245,249,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

/* === Scroll Indicator === */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 0.6s 1.2s both;
  opacity: 0.65;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-400);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(34,211,238,0.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--cyan-400);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}






/* ─── WET GLASS SCREEN OVERLAY ─── */
/* Gives the hero a "wet phone / monitor" look with edge moisture and drop shadows */

/* Outer moisture vignette — darker, blurred edges like a foggy screen */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 0%,   rgba(0,20,40,0.55) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 0%,  rgba(0,20,40,0.45) 0%, transparent 38%),
    radial-gradient(ellipse at 0% 100%,  rgba(0,20,40,0.60) 0%, transparent 42%),
    radial-gradient(ellipse at 100% 100%,rgba(0,20,40,0.55) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(0,30,60,0.50) 0%, transparent 30%);
}

/* Animated edge moisture blobs — subtle breathing fog in screen corners */
.hero-media::after {
  content: '';
  position: absolute;
  inset: -20px;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 2% 5%,    rgba(60,160,220,0.10) 0%, transparent 25%),
    radial-gradient(circle at 97% 8%,   rgba(40,140,200,0.08) 0%, transparent 22%),
    radial-gradient(circle at 4% 95%,   rgba(50,150,210,0.12) 0%, transparent 28%),
    radial-gradient(circle at 96% 93%,  rgba(60,160,220,0.10) 0%, transparent 25%);
  animation: fogPulse 6s ease-in-out infinite;
  filter: blur(18px);
}

@keyframes fogPulse {
  0%,  100% { opacity: 0.6; transform: scale(1); }
  50%        { opacity: 1.0; transform: scale(1.04); }
}

/* Hero canvas on top of the wet-glass overlay layer */
.hero-particles {
  z-index: 3;
}

/* Screen-border shimmer ring — thin glowing border like a wet phone bezel */
.hero-content {
  /* ensure content is above the wet-glass layers */
  z-index: 4;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  background: var(--grad-cyan);
  padding-block: 0.875rem;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #030d14;
  flex-shrink: 0;
}
.marquee-dot {
  color: rgba(3,13,20,0.4) !important;
  font-size: 0.5rem !important;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ─── SERVICES SECTION ─── */
.services-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-base);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-cyan), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  min-height: 320px;
  display: flex;
  transition: transform var(--t-slow), border-color var(--t-base), box-shadow var(--t-base);
}

.service-card--featured {
  grid-row: span 2;
  min-height: 640px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-cyan);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), var(--shadow-cyan);
}

.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
  filter: brightness(0.55) saturate(0.9);
}

.service-card:hover .service-card__bg {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(1.1);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8,12,20,0.98) 0%,
      rgba(8,12,20,0.7) 45%,
      rgba(8,12,20,0.1) 100%
    );
}

.service-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.service-card:hover .service-icon {
  background: rgba(34, 211, 238, 0.2);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.service-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.service-card--featured .service-card__title { font-size: 1.75rem; }

.service-card__desc {
  font-size: 0.9375rem;
  color: rgba(241, 245, 249, 0.7);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 38ch;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cyan-400);
  letter-spacing: 0.02em;
  transition: gap var(--t-fast), opacity var(--t-fast);
}

.service-card:hover .service-card__link { gap: 0.75rem; }

/* ─── ABOUT SECTION ─── */
.about-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 560px;
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
}

.about-img--main {
  width: 78%;
  height: 82%;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.about-img--accent {
  width: 52%;
  height: 52%;
  bottom: 0;
  right: 0;
  z-index: 2;
  box-shadow: -8px -8px 32px rgba(0,0,0,0.5), var(--shadow-cyan);
  border-color: var(--border-cyan);
}

.about-badge-float {
  position: absolute;
  top: auto;
  bottom: 42%;
  left: 52%;
  z-index: 3;
  background: var(--grad-cyan);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.3);
}

.floatbadge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #030d14;
}

.floatbadge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(3, 13, 20, 0.8);
  margin-top: 0.25rem;
}

/* About Content */
.about-content {
  position: relative;
  z-index: 1;
}

.about-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  list-style: none;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── GALLERY SECTION ─── */
.gallery-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-base);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Comparison Card */
.comparison-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4/3;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  user-select: none;
  cursor: col-resize;
}

.comparison-card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.comparison-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y; /* allow page vertical scroll, capture horizontal for slider */
}

.comparison-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison-after .comparison-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: none;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transition: left 0.05s;
}

.handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

.handle-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030d14;
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.5);
  flex-shrink: 0;
}

.comp-label {
  position: absolute;
  bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.15);
}

.comp-label--before { left: 0.75rem; }
.comp-label--after {
  right: 0.75rem;
  background: rgba(34, 211, 238, 0.25);
  border-color: var(--border-cyan);
  color: var(--cyan-400);
}

.gallery-more {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-more-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── PROCESS SECTION ─── */
.process-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-surface);
  position: relative;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.process-step:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.7;
}

.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-connector {
  width: 2.5rem;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--border-glass), var(--border-cyan), var(--border-glass));
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--cyan-400);
  border-right: 2px solid var(--cyan-400);
  transform: rotate(45deg);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-base);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--t-base), transform var(--t-slow), box-shadow var(--t-base);
}

.testimonial-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.testimonial-card--featured {
  background: var(--bg-elevated);
  border-color: var(--border-cyan);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(34,211,238,0.1);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

blockquote.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  quotes: "\201C" "\201D";
}

blockquote.testimonial-text::before {
  content: open-quote;
}
blockquote.testimonial-text::after {
  content: close-quote;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #030d14;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 380px;
  margin-inline: auto;
}

.rating-stars {
  font-size: 1.375rem;
  color: #f59e0b;
  letter-spacing: 0.05em;
}

.rating-details strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
}

.rating-details span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.8);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8,12,20,0.92) 0%,
    rgba(8,12,20,0.75) 50%,
    rgba(8,12,20,0.92) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(241, 245, 249, 0.75);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-info-panel .section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--t-base), transform var(--t-base);
  color: inherit;
  text-decoration: none;
}

a.contact-detail-item:hover {
  border-color: var(--border-cyan);
  transform: translateX(4px);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.125rem;
}

.contact-detail-item strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Contact Form Panel */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--2col { flex-direction: row; gap: 1rem; }
.form-row--2col .form-group { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-label span { color: var(--cyan-400); margin-left: 2px; }

.form-input {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  padding: 0.8125rem 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--cyan-500);
  background: rgba(34, 211, 238, 0.04);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.5rem;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 2rem;
  color: var(--cyan-400);
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-success p {
  color: var(--text-secondary);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.15) drop-shadow(0 4px 12px rgba(34,211,238,0.2));
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 36ch;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-base);
}

.social-btn:hover {
  color: var(--cyan-400);
  border-color: var(--border-cyan);
  background: rgba(34, 211, 238, 0.06);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}

.footer-nav-group li a,
.footer-nav-group li span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.footer-nav-group li a:hover { color: var(--cyan-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── FLOATING CALL BUTTON ─── */
.float-call-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-cyan);
  color: #030d14;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(34, 211, 238, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}

.float-call-btn.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.float-call-btn:hover {
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.55);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   RESPONSIVE — Comprehensive
═══════════════════════════════ */

/* ── 1100px: Tighten split hero ─ */
@media (max-width: 1100px) {
  .hero-split {
    gap: 3rem;
  }

  .hero-accent-card {
    right: -0.75rem;
    bottom: -0.75rem;
    width: 38%;
  }
}

/* ── 1024px: Services + Footer ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 380px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ── 900px: Stack hero + about + testimonials ── */
@media (max-width: 900px) {

  /* Hero: stack vertically, show image below */
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: clamp(4rem, 8vw, 6rem);
    gap: 2.5rem;
  }

  .hero-left {
    align-items: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats-inline {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 1.25rem;
  }

  .hero-stat-inline {
    align-items: center;
    padding-right: 0;
  }

  .stat-sep {
    height: 32px;
    margin-right: 0;
    margin-inline: 1rem;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-photo-wrap {
    max-width: 440px;
    margin-inline: auto;
  }

  .hero-photo-frame {
    aspect-ratio: 16/9;
  }

  .hero-accent-card {
    width: 32%;
    right: -0.5rem;
    bottom: -0.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-stack {
    height: 320px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .process-connector {
    width: 2px;
    height: 2rem;
    margin: 0 auto;
  }

  .process-connector::after {
    display: none;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ── 768px: Mobile nav + core mobile fixes ── */
@media (max-width: 768px) {

  /* ─ Announcement bar ─ */
  .announcement-bar {
    height: auto;
    min-height: var(--ann-h);
    padding-block: 0.4rem;
  }

  .announcement-inner {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  /* ─ Navigation ─ */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 12, 20, 0.98);
    backdrop-filter: blur(28px) saturate(160%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transform: translateX(110%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 999;
    padding: 2rem;
  }

  .nav-links.nav-open {
    transform: none;
  }

  .nav-link {
    font-size: 1.75rem;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    color: var(--text-primary);
  }

  .nav-link:hover {
    background: rgba(34, 211, 238, 0.08);
    color: var(--cyan-400);
  }

  .nav-link--cta {
    margin-top: 1.5rem;
    background: var(--grad-cyan) !important;
    color: #030d14 !important;
    font-size: 1.25rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg) !important;
    display: block;
    width: auto;
  }

  /* ─ Logo ─ */
  .logo-text-group {
    display: none;
  }

  /* ─ Hero ─ */
  .hero {
    min-height: auto;
  }

  .hero-split {
    padding-block: 3rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-photo-frame {
    aspect-ratio: 4/3;
  }

  .hero-accent-card {
    display: none;
  }

  .hero-stats-inline {
    padding-top: 1.25rem;
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .hero-stat-inline {
    flex: 1;
    align-items: center;
    padding-right: 0;
  }

  .stat-sep {
    display: block;
    height: 28px;
    margin-inline: 0.5rem;
  }

  .stat-num {
    font-size: 1.1875rem;
  }

  .stat-lbl {
    font-size: 0.5625rem;
  }

  /* ─ Sections ─ */
  .section-title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
  }

  /* ─ Services ─ */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: auto;
    min-height: 340px;
  }

  .service-card {
    min-height: 280px;
  }

  /* ─ Gallery ─ */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }

  /* ─ Process ─ */
  .process-step {
    padding: 1.25rem;
  }

  .step-number {
    font-size: 2.5rem;
  }

  /* ─ Form ─ */
  .form-row--2col {
    flex-direction: column;
  }

  /* ─ CTA section ─ */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  /* ─ Footer ─ */
  .footer-top {
    grid-template-columns: 1fr;
    padding-block: 2.5rem;
    gap: 1.75rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.375rem;
  }

  /* ─ Float call btn ─ */
  .float-call-btn span {
    display: none;
  }

  .float-call-btn {
    padding: 0;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
}

/* ── 560px: Narrow mobile tweaks ── */
@media (max-width: 560px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .trust-badge {
    font-size: 0.71875rem;
    padding: 0.3rem 0.625rem;
  }

  .about-img-stack {
    height: 260px;
  }

  .about-badge-float {
    display: none;
  }

  .rating-summary {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .contact-form-panel {
    padding: 1.25rem;
  }

  .testimonial-card {
    padding: 1.375rem;
  }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-cyan); }

/* ─── SELECTION ─── */
::selection {
  background: rgba(34, 211, 238, 0.2);
  color: var(--text-primary);
}
