/* ===============================================================
   NovaWeb Collective — Premium Agency Website
   File: style.css
   Description: Main stylesheet — glassmorphism, crystal motif,
                premium typography, responsive system
   =====================in========================================== */

/* --- FONTS --- */
/* Fonts loaded via <link> tags in HTML <head> with crossorigin for security.
   Do NOT use @import for external fonts — it blocks rendering and cannot carry SRI. */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  /* Base */
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --ice-blue: #F3F7FF;
  --deep-navy: #0A0F1E;
  
  /* Accent Gradient */
  --electric-blue: #00FF15;
  --violet: #00FF15;
  --accent-gradient: linear-gradient(135deg, #00FF15, #00FF15);
  --accent-gradient-soft: linear-gradient(135deg, rgba(12,247,29,0.12), rgba(12,247,29,0.08));
  --accent-gradient-glass: linear-gradient(135deg, rgba(12,247,29,0.08), rgba(12,247,29,0.04));
  
  /* Glass */
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(12,247,29,0.12);
  --glass-shadow: 0 20px 60px rgba(0,0,0,0.06);
  --glass-shadow-hover: 0 30px 80px rgba(0,0,0,0.10);
  
  /* Typography */
  --font-display: 'Clash Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1280px;
  --container-padding: 0 40px;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-power4: cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Crystal Facet Colors */
  --crystal-light: rgba(12,247,29,0.15);
  --crystal-mid: rgba(12,247,29,0.25);
  --crystal-edge: rgba(12,247,29,0.15);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: #FFFFFF;
  background: #0A0F1E;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  cursor: none;
}

body:not(.loaded) {
  cursor: auto;
}

/* --- CRYSTAL MOTIF — SHARED VISUAL LANGUAGE --- */
.crystal-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--crystal-light) 15%,
    var(--crystal-mid) 30%,
    var(--crystal-edge) 50%,
    var(--crystal-mid) 70%,
    var(--crystal-light) 85%,
    transparent 100%
  );
  margin: 0;
  position: relative;
  height: 2px;
  border: none;
}

.crystal-divider-glow {
  width: 100%;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(34,197,94,0.04) 40%,
    rgba(22,163,74,0.04) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* Section label — small numbered label like "01" */
.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00FF15;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent-gradient);
  display: block;
}

.section-label .number {
  font-weight: 700;
  color: #00FF15;
  opacity: 1;
}

/* --- GLASS COMPONENT --- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s var(--ease-smooth);
}

.glass-panel:hover {
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(34,197,94,0.2);
  transform: translateY(-2px);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--electric-blue), var(--violet));
  border-radius: 3px;
}

/* --- UTILITY --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
  animation: title-float 5s ease-in-out infinite;
}

.section-subtitle {
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 48px;
}

.gradient-text {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}

.accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  margin-right: 8px;
}

/* --- SECTION ALTERNATING --- */
/* 
  NOTE: Most sections have transparent backgrounds so the scroll-linked 
  video shows through. The hero section has its own background to block 
  the video. Sections with glass cards rely on card backgrounds for legibility.
*/
section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  contain: layout style;
}

.scroll-video-section {
  contain: layout style paint;
}

.hero {
  contain: layout style;
}

/* GPU-accelerate animated cards */
.service-card,
.why-card,
.stat-card,
.social-link,
.contact-link {
  transform: translateZ(0);
  will-change: transform;
}

/* Below-fold content visibility for faster initial render */
#services,
#why-us,
#process,
#follow,
#contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* ===============================================================
   SECTION 1: HERO
   =============================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero .section-label {
  color: #00FF15;
  text-shadow: 0 1px 20px rgba(0,0,0,0.25);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.site-header-logo {
  pointer-events: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.4s var(--ease-smooth);
  position: relative;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: 12px;
}
.site-header-logo::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.06);
}
.site-header-logo:hover {
  opacity: 1;
}
.site-header-logo img {
  height: 46px;
  width: auto;
  image-rendering: auto;
  filter: drop-shadow(0 2px 12px rgba(255,255,255,0.15));
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  pointer-events: auto;
}
.site-header-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease-smooth);
  position: relative;
  padding: 10px 8px 12px;
}
.site-header-nav a:hover {
  color: #FFFFFF;
}
.site-header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00FF15;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-smooth);
}
.site-header-nav a:hover::after {
  transform: scaleX(1);
}

.hero-content > * {
  opacity: 0;
  animation: hero-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content > .hero-badge { animation-delay: 2s; }
.hero-content > h1 { animation-delay: 2.15s; }
.hero-content > .hero-sub { animation-delay: 2.35s; }
.hero-content > .hero-ctas { animation-delay: 2.55s; }

/* Hero text colors — white over video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
}

.hero .hero-content {
  z-index: 4;
}

.hero h1 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 50px rgba(0,0,0,0.5), 0 1px 15px rgba(0,0,0,0.3), 0 0 6px rgba(0,0,0,0.15);
}

.hero h1 .gradient-word {
  background: linear-gradient(135deg, #00FF15, #00FF15) !important;
  background-size: 200% 200%;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero .hero-sub {
  color: #FFFFFF !important;
  text-shadow: 0 2px 25px rgba(0,0,0,0.35), 0 1px 10px rgba(0,0,0,0.2);
}

.hero .hero-badge {
  background: rgba(34, 197, 94, 0.15) !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
  color: #00FF15 !important;
}

.hero .hero-badge .pulse {
  background: #00FF15 !important;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  border-color: #00FF15 !important;
  background: rgba(34, 197, 94, 0.15) !important;
}

/* CSS gradient fallback that looks premium */
.hero-gradient-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(34,197,94,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(22,163,74,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 80%, rgba(34,197,94,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Three.js 3D canvas container */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--accent-gradient-glass);
  border: 1px solid rgba(34,197,94,0.15);
  font-size: 1rem;
  font-weight: 500;
  color: #00FF15;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00FF15;
  animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 900px;
}



.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: block;
  animation: title-float 4s ease-in-out infinite;
}

.hero h1 .line:nth-child(1) span { animation-delay: 0s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.4s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.8s; }

.hero h1 .gradient-word {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.7;
  color: #FFFFFF !important;
  text-shadow: 0 2px 25px rgba(0,0,0,0.35), 0 1px 10px rgba(0,0,0,0.2);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s var(--ease-smooth);
  border: 1.5px solid transparent;
  cursor: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,255,21,0.30);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,255,21,0.40);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: #00FF15;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.12);
}

.btn .arrow {
  transition: transform 0.3s var(--ease-smooth);
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #9CA3AF;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float-down 2s infinite;
}

@keyframes float-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.5; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes title-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes title-sway {
  0%, 100% { transform: translateX(0); }
  33% { transform: translateX(6px); }
  66% { transform: translateX(-6px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #9CA3AF, transparent);
}

/* ===============================================================
   SECTION 2: SHOWCASE VIDEO
   =============================================================== */
.remove-bg {
  /* Showcase section background handled by scroll-video-section transparency */
}

.showcase-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.video-player-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.10);
  background: #000;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Play/pause side button */
.video-play-pause-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  color: rgba(255,255,255,0.8);
}
.video-play-pause-btn:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.video-play-pause-btn.paused {
  border-color: #00FF15;
  color: #00FF15;
}
.video-play-pause-btn .play-icon { margin-left: 2px; }
.video-play-pause-btn .pause-icon { margin-left: 0; }

/* Showcase quality badges */
.showcase-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.showcase-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-smooth);
}
.showcase-badge:hover {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #00FF15;
  transform: translateY(-2px);
}
.showcase-badge svg {
  color: #00FF15;
  flex-shrink: 0;
}

/* Comparison section — AI vs Hand-crafted */
.comparison-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.comparison-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison-col {
  padding: 28px;
  border-radius: 20px;
  border: 1.5px solid rgba(34,197,94,0.25);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease-smooth);
}
.comparison-col.ai-col:hover {
  border-color: rgba(34,197,94,0.5);
  background: rgba(255,255,255,0.1);
}
.comparison-col.nova-col:hover {
  border-color: rgba(34,197,94,0.6);
  background: rgba(34,197,94,0.08);
}
.comparison-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.comparison-col.ai-col h4 { color: rgba(255,255,255,0.6); }
.comparison-col.nova-col h4 { color: #00FF15; }
.comparison-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1.05rem;
}
.comparison-item:last-child { border-bottom: none; }
.comparison-item .comp-label {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.comparison-item .comp-value {
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.comp-value.danger {
  background: #4A1520;
  color: #FF0000;
  font-weight: 700;
  font-family: 'Clash Display', 'Inter', sans-serif;
  letter-spacing: 0.01em;
  text-shadow: 0 0 16px rgba(255,0,0,0.3);
  border: 1px solid #FF0000;
}
.comp-value.success {
  background: rgba(34,197,94,0.2);
  color: #00FF15;
  font-weight: 700;
  border: 1px solid rgba(34,197,94,0.2);
}
.comp-bar-track {
  width: 100%;
  height: 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  margin-top: 6px;
  overflow: hidden;
}
.comp-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.comp-bar-fill.danger { background: #4A1520; }
.comp-bar-fill.success { background: linear-gradient(90deg, #00FF15, #00FF15); }

/* Section subtitle over video — extra clarity */
.scroll-video-section .section-subtitle {
  color: #FFFFFF !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35), 0 1px 8px rgba(0,0,0,0.2) !important;
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  transition: background 0.2s;
}

.control-btn:hover {
  background: rgba(255,255,255,0.15);
}

.control-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ===============================================================
   SECTION 3: ABOUT
   =============================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .lead {
  font-size: 1.45rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-weight: 500;
}

.about-text .lead em {
  font-style: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.about-text p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===============================================================
   SECTION 4: SERVICES
   =============================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 36px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,255,21,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  border: 2px solid rgba(0,255,21,0.12);
  transition: all 0.5s var(--ease-smooth);
  overflow: visible;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(0,255,21,0.25);
  border-right-color: rgba(0,255,21,0.08);
  animation: icon-ring-spin 3.5s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-icon svg {
  transition: all 0.5s var(--ease-smooth);
  filter: drop-shadow(0 0 4px rgba(0,255,21,0.3));
}

.service-card:hover .service-icon {
  background: rgba(0,255,21,0.12);
  border-color: rgba(0,255,21,0.35);
  box-shadow: 0 0 40px rgba(0,255,21,0.15), 0 0 80px rgba(0,255,21,0.06);
  transform: scale(1.1);
}

.service-card:hover .service-icon::before {
  opacity: 1;
  animation-duration: 1.8s;
}

.service-card:hover .service-icon svg {
  filter: drop-shadow(0 0 12px rgba(0,255,21,0.7));
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #00FF15;
  letter-spacing: -0.01em;
}

.service-card .service-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-benefits {
  list-style: none;
  margin-bottom: 24px;
}

.service-benefits li {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-benefits li::before {
  content: '→';
  color: #00FF15;
  font-weight: 600;
  flex-shrink: 0;
}

.service-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00FF15;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-smooth);
}

.service-link:hover {
  gap: 10px;
}

/* ===============================================================
   SECTION 5: WHY CHOOSE US
   =============================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 48px 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.why-card .why-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00FF15;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #00FF15;
  letter-spacing: -0.02em;
}

.why-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.75;
}

/* ===============================================================
   SECTION 6: PROCESS
   =============================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--violet), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.process-step .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  border: 2px solid #00FF15;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #00FF15;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 0 20px rgba(0,255,21,0.15);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0,255,21,0.3);
}

.process-step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #00FF15;
}

.process-step p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ===============================================================
   SECTION 7: FOLLOW US
   =============================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-stat {
  text-align: center;
  padding: 32px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: all 0.4s var(--ease-smooth);
}

.trust-stat:hover {
  border-color: rgba(0,255,21,0.25) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,255,21,0.08);
}

.social-link {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
  color: #5A5F73;
  box-shadow: var(--glass-shadow);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: #00FF15;
  color: #00FF15;
  box-shadow: var(--glass-shadow-hover);
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ===============================================================
   SECTION 8: CONTACT
   =============================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #FFFFFF;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--glass-shadow);
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: #00FF15;
  box-shadow: var(--glass-shadow-hover);
}

.contact-link .link-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-gradient-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link .link-icon svg {
  width: 20px;
  height: 20px;
  fill: #00FF15;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--glass-border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  background: #E8F5E9;
  transition: all 0.3s var(--ease-smooth);
  outline: none;
  color: #1A1D29;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00FF15;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  padding: 16px 36px;
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: 0 8px 32px rgba(34,197,94,0.30);
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34,197,94,0.40);
}

/* ===============================================================
   SECTION 9: FOOTER
   =============================================================== */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #00FF15;
  border-radius: 16px;
  margin: 20px;
  padding: 80px 40px 32px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 100%;
  width: auto;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
  color: #FFFFFF;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s var(--ease-smooth);
}

.footer ul li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #FFFFFF;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  color: #FFFFFF;
  transition: all 0.4s var(--ease-smooth);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: visible;
}

.footer-socials a::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(0,255,21,0.3);
  animation: icon-ring-spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  color: #00FF15;
  background: rgba(0,255,21,0.1);
  border-color: rgba(0,255,21,0.3);
  box-shadow: 0 0 20px rgba(0,255,21,0.15);
  transform: translateY(-3px);
}

.footer-socials a:hover::before {
  opacity: 1;
}

/* ===============================================================
   SCROLL-LINKED VIDEO BACKGROUND (spans sections 2-8 — everything except hero)
   =============================================================== */
.scroll-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Always visible — hero section blocks it with its own background */
  opacity: 1;
}

.scroll-video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.scroll-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections that use scroll-linked video background */
.scroll-video-section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}



/* Ensure all content sits above the overlay */
.scroll-video-section > * {
  position: relative;
  z-index: 1;
}

/* White + Green text colors over video — with text-shadow for readability */
.scroll-video-section .section-title,
.scroll-video-section h1,
.scroll-video-section h2,
.scroll-video-section h3,
.scroll-video-section h4 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45), 0 1px 12px rgba(0,0,0,0.3), 0 0 4px rgba(0,0,0,0.15);
}

.scroll-video-section .section-title {
  animation: title-sway 5s ease-in-out infinite;
}

.scroll-video-section h2 {
  animation: title-float 4.5s ease-in-out infinite;
}

.scroll-video-section h3 {
  animation: title-float 3.8s ease-in-out infinite;
  animation-delay: 0.2s;
}

.scroll-video-section .section-subtitle,
.scroll-video-section p,
.scroll-video-section .lead,
.scroll-video-section .service-desc,
.scroll-video-section .why-card p,
.scroll-video-section .process-step p,
.scroll-video-section .stat-label {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0px 12px rgba(0,0,0,0.7), 0 0px 24px rgba(0,0,0,0.5);
}

.scroll-video-section .section-label {
  color: #00FF15 !important;
}

.scroll-video-section .section-label::before {
  background: linear-gradient(90deg, #00FF15, #00FF15) !important;
}

/* Green accent for key elements over video */
.scroll-video-section .gradient-text {
  background: linear-gradient(135deg, #00FF15, #00FF15) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* White + #00FF15 for gradient-text accent words */
.hero h1 .gradient-word {
  background: linear-gradient(135deg, #00FF15, #00FF15) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}


.scroll-video-section .service-link,
.scroll-video-section .service-benefits li::before {
  color: #00FF15 !important;
}


.scroll-video-section .service-card,
.scroll-video-section .why-card,
.scroll-video-section .stat-card {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.scroll-video-section .service-card h3,
.scroll-video-section .why-card h3 {
  color: #00FF15 !important;
}

.scroll-video-section .service-card .service-desc,
.scroll-video-section .why-card p {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0px 12px rgba(0,0,0,0.7);
}

.scroll-video-section .service-benefits li {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0px 12px rgba(0,0,0,0.7);
}

.scroll-video-section .process-step h4 {
  color: #00FF15 !important;
}

.scroll-video-section .process-step p {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 0px 12px rgba(0,0,0,0.7);
}

.scroll-video-section .process-step .step-number {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  -webkit-text-fill-color: #00FF15 !important;
  color: #00FF15 !important;
}

/* Social icons over video */
.scroll-video-section .social-link {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}

.scroll-video-section .social-link:hover {
  border-color: #00FF15 !important;
  color: #00FF15 !important;
}

/* Contact section over video */
.scroll-video-section .contact-info h2 {
  color: #FFFFFF !important;
}

.scroll-video-section .contact-info p {
  color: #FFFFFF !important;
}

.scroll-video-section .contact-link {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}

.scroll-video-section .contact-link:hover {
  border-color: #00FF15 !important;
}

.scroll-video-section .contact-link .link-icon {
  background: rgba(34, 197, 94, 0.2) !important;
}

.scroll-video-section .contact-link .link-icon svg {
  fill: #00FF15 !important;
}

/* Transparent form fields over video */
.scroll-video-section .form-group label {
  color: #FFFFFF !important;
}

.scroll-video-section .form-group input,
.scroll-video-section .form-group textarea {
  background: #E8F5E9 !important;
  border-color: rgba(34, 197, 94, 0.2) !important;
  color: #1A1D29 !important;
}

.scroll-video-section .form-group input::placeholder,
.scroll-video-section .form-group textarea::placeholder {
  color: #6B7280 !important;
}

.scroll-video-section .form-group input:focus,
.scroll-video-section .form-group textarea:focus {
  border-color: #00FF15 !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15) !important;
}

.scroll-video-section .form-submit {
  background: linear-gradient(135deg, #00FF15, #00FF15) !important;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.30) !important;
}

.scroll-video-section .form-submit:hover {
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.40) !important;
}

/* ===============================================================
   CUSTOM CURSOR
   =============================================================== */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #00FF15;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  box-shadow: 0 0 12px rgba(0,255,21,0.6);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,255,21,0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease-smooth);
}

.cursor.hover .cursor-dot {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  box-shadow: 0 0 20px rgba(0,255,21,0.9), 0 0 40px rgba(0,255,21,0.5);
}

.cursor.hover .cursor-ring {
  width: 70px;
  height: 70px;
  border-color: #00FF15;
  border-width: 2px;
  background: rgba(0,255,21,0.08);
  box-shadow: 0 0 30px rgba(0,255,21,0.2), inset 0 0 20px rgba(0,255,21,0.05);
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none !important;
  }
  body {
    cursor: auto;
  }
}

/* ===============================================================
   HAMBURGER MENU
   =============================================================== */
.hamburger {
  display: none;
  pointer-events: auto;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: none;
  flex-direction: column;
  gap: 4px;
  z-index: 200;
  transition: background 0.3s var(--ease-smooth);
}
.hamburger:hover {
  background: #fff;
}
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #0A0F1E;
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.site-header-nav.open {
  display: flex !important;
  position: fixed;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 150;
  pointer-events: auto;
}
.site-header-nav.open a {
  font-size: 1.4rem;
  padding: 16px 0;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}
.site-header-nav.open a:hover {
  color: #00FF15;
}

/* ===============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   =============================================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px 0;
    --container-padding: 0 28px;
  }

  .site-header-nav {
    gap: 16px;
  }
  .site-header-nav a {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .process-timeline::before {
    display: none;
  }

  .comparison-grid {
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ===============================================================
   RESPONSIVE — MOBILE (max-width: 640px)
   Everything is sized to show maximum content on small screens.
   =============================================================== */
@media (max-width: 640px) {
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 16px;
  }

  /* --- Header --- */
  .site-header {
    padding: 10px 16px;
  }
  .site-header-logo {
    padding: 5px 10px;
    border-radius: 8px;
  }
  .site-header-logo img {
    height: 28px;
  }
  .site-header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* --- Hero --- */
  .hero-content {
    padding-top: 60px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero .section-label {
    font-size: 0.6rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }
  .hero .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
    margin-bottom: 10px;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 0.82rem;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.8rem;
    border-radius: 12px;
  }
  .hero-scroll-indicator {
    display: none;
  }

  /* --- Section Titles --- */
  .section-label {
    font-size: 0.6rem;
    margin-bottom: 10px;
    gap: 8px;
  }
  .section-label::before {
    width: 20px;
  }
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* --- About --- */
  .about-grid {
    gap: 24px;
  }
  .about-text .lead {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  .about-text p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 14px 10px;
    border-radius: 14px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }

  /* --- Services --- */
  .services-grid {
    gap: 10px;
  }
  .service-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-width: 1.5px;
  }
  .service-icon svg {
    width: 20px;
    height: 20px;
  }
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .service-card .service-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }
  .service-benefits li {
    font-size: 0.78rem;
    padding: 3px 0;
  }
  .service-link {
    font-size: 0.82rem;
  }

  /* --- Why Choose Us --- */
  .why-grid {
    gap: 10px;
  }
  .why-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .why-card .why-number {
    font-size: 0.65rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }
  .why-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .why-card p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  /* --- Process --- */
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .process-step {
    padding: 0 2px;
  }
  .process-step .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    border-width: 1.5px;
  }
  .process-step h4 {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }
  .process-step p {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  /* --- Showcase --- */
  .showcase-badges {
    gap: 6px;
    margin-top: 12px;
  }
  .showcase-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 100px;
  }
  .showcase-badge svg {
    width: 10px;
    height: 10px;
  }

  .comparison-section {
    margin-top: 30px;
    padding-top: 20px;
  }
  .comparison-title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .comparison-col {
    padding: 14px;
    border-radius: 14px;
  }
  .comparison-col h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .comparison-item {
    font-size: 0.75rem;
    padding: 7px 0;
  }
  .comp-value {
    padding: 4px 12px;
    font-size: 0.72rem;
  }
  .comp-bar-track {
    height: 6px;
  }

  /* --- Video --- */
  .video-player-container {
    border-radius: 14px;
  }
  .video-play-pause-btn {
    width: 28px;
    height: 28px;
    right: 8px;
    bottom: 8px;
  }
  .video-play-pause-btn svg {
    width: 12px;
    height: 12px;
  }

  /* --- Trust --- */
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .trust-stat {
    padding: 16px 8px !important;
    border-radius: 12px !important;
  }
  .trust-stat div:first-child {
    font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
  }
  .trust-stat div:last-child {
    font-size: 0.65rem !important;
  }
  .trust-promises {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }
  .promise-item {
    padding: 14px 10px !important;
  }
  .promise-item svg {
    width: 24px !important;
    height: 24px !important;
  }
  .promise-item h4 {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
  }
  .promise-item p {
    font-size: 0.72rem !important;
  }

  /* --- Contact --- */
  .contact-info h2 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }
  .contact-info p {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
  .contact-links {
    gap: 8px;
  }
  .contact-link {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.6;
  }
  .footer-grid h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  .footer-grid li {
    font-size: 0.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 16px;
  }
  .footer-bottom span {
    font-size: 0.7rem;
  }
  .footer-bottom a {
    font-size: 0.7rem;
  }

  /* --- Loading Overlay --- */
  .loading-logo-wrap {
    width: 100px;
    height: 100px;
  }
  .loading-logo {
    width: 64px;
    height: 64px;
    padding: 12px;
  }
  .loading-ring-inner {
    inset: 8px;
  }
  .loading-wordmark {
    font-size: 1rem;
  }
  .loading-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }
  .loading-bar-track {
    width: 120px;
  }
  .loading-percent {
    font-size: 1rem;
  }
  .loading-status {
    font-size: 0.6rem;
  }

  /* --- Scroll-linked video --- */
  .scroll-video-section h2 {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }
  .scroll-video-section h3 {
    font-size: clamp(1rem, 5vw, 1.2rem);
  }

  /* --- Contact section CTA --- */
  .contact-info h2 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  /* --- Reduce reveal animation distance on mobile --- */
  .reveal {
    transform: translateY(20px) scale(0.99);
  }
  .reveal-left {
    transform: translateX(-20px);
  }
  .reveal-right {
    transform: translateX(20px);
  }
}

/* ===============================================================
   PREFERS REDUCED MOTION
   =============================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cursor {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}

/* ===============================================================
   JS DISABLED FALLBACK
   =============================================================== */
html.no-js .hero-canvas-container,
html.no-js #hero-canvas {
  display: none;
}

html.no-js .cursor {
  display: none !important;
}

html.no-js body {
  cursor: auto;
}

html.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ===============================================================
   LOADING STATE
   =============================================================== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s var(--ease-smooth);
}

.loading-overlay video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(2px);
}

.loading-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.loading-overlay .loading-inner {
  position: relative;
  z-index: 2;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* --- Logo wrapper --- */
.loading-logo-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer spinning ring */
.loading-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #00FF15;
  border-right-color: rgba(0,255,21,0.3);
  animation: spin-ring 2s linear infinite;
}

/* Inner counter-spinning ring */
.loading-ring-inner {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #00FF15;
  border-left-color: rgba(0,255,21,0.3);
  animation: spin-ring-reverse 1.4s linear infinite;
}

/* Logo sphere */
.loading-logo {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 0 60px rgba(0,255,21,0.4), 0 0 120px rgba(0,255,21,0.15);
  z-index: 2;
}

.loading-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: none;
}

/* Orbiting dots */
.loading-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00FF15;
  border-radius: 50%;
  box-shadow: 0 0 12px #00FF15, 0 0 24px rgba(0,255,21,0.5);
}

.loading-dot-1 {
  animation: orbit-1 3s linear infinite;
}

.loading-dot-2 {
  animation: orbit-2 4s linear infinite;
  width: 4px;
  height: 4px;
  opacity: 0.6;
}

.loading-dot-3 {
  animation: orbit-3 2.5s linear infinite;
  width: 5px;
  height: 5px;
  opacity: 0.8;
}

/* --- Text --- */
.loading-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00FF15;
  text-shadow: 0 0 40px rgba(0,255,21,0.5), 0 0 80px rgba(0,255,21,0.2);
  opacity: 0;
  animation: fade-slide-up 0.6s ease 0.3s forwards;
}

.loading-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 500;
  color: #00FF15;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-slide-up 0.6s ease 0.5s forwards;
  margin-top: -12px;
}

/* --- Progress bar --- */
.loading-bar-track {
  width: 280px;
  height: 2px;
  background: rgba(0,255,21,0.12);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  animation: fade-slide-up 0.6s ease 0.7s forwards;
  position: relative;
}

.loading-bar-track::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0,255,21,0.05);
  filter: blur(6px);
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(0,255,21,0.3), #00FF15);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0,255,21,0.6);
  transition: width 0.1s linear;
}

/* --- Percent --- */
.loading-percent {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #00FF15;
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px rgba(0,255,21,0.4);
  opacity: 0;
  animation: fade-slide-up 0.6s ease 0.9s forwards;
}

/* --- Status text --- */
.loading-status {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(0,255,21,0.5);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-slide-up 0.6s ease 1.1s forwards;
}

/* --- Keyframes --- */
@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-ring-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes orbit-1 {
  0% { top: 0%; left: 50%; transform: translate(-50%, -50%); }
  25% { top: 50%; left: 100%; transform: translate(-50%, -50%); }
  50% { top: 100%; left: 50%; transform: translate(-50%, -50%); }
  75% { top: 50%; left: 0%; transform: translate(-50%, -50%); }
  100% { top: 0%; left: 50%; transform: translate(-50%, -50%); }
}

@keyframes orbit-2 {
  0% { top: 15%; left: 85%; transform: translate(-50%, -50%); }
  25% { top: 85%; left: 85%; transform: translate(-50%, -50%); }
  50% { top: 85%; left: 15%; transform: translate(-50%, -50%); }
  75% { top: 15%; left: 15%; transform: translate(-50%, -50%); }
  100% { top: 15%; left: 85%; transform: translate(-50%, -50%); }
}

@keyframes orbit-3 {
  0% { top: 50%; left: 0%; transform: translate(-50%, -50%); }
  33% { top: 0%; left: 50%; transform: translate(-50%, -50%); }
  66% { top: 100%; left: 50%; transform: translate(-50%, -50%); }
  100% { top: 50%; left: 0%; transform: translate(-50%, -50%); }
}

@keyframes logo-reveal {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

@keyframes logo-reveal {
  0% { transform: scale(0.92) rotate(-3deg); opacity: 0.7; }
  100% { transform: scale(1.05) rotate(3deg); opacity: 1; }
}

@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fade-slide-up {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-reveal {
  0% { opacity: 0; transform: translateY(36px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1.2s var(--ease-power4);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s var(--ease-power4);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s var(--ease-power4);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}