/* ============================================================
   AZ Glassy Showers LLC — styles.css
   Design System: Dark Navy | Cyan | Precision Glass Theme
   Font: Plus Jakarta Sans (Google Fonts)
   ============================================================ */

/* ============================================================
   CHANGE 1 — HEADING GLOW PULSE
   ============================================================ */
.glow-heading {
  animation: headingGlowPulse 3s ease-in-out infinite;
}

@keyframes headingGlowPulse {
  0%, 100% {
    text-shadow: none;
    opacity: 0.9;
  }
  50% {
    text-shadow:
      0 0 20px rgba(96,200,245,0.6),
      0 0 40px rgba(96,200,245,0.3),
      0 0 80px rgba(96,200,245,0.15);
    opacity: 1;
  }
}

.hero .glow-heading        { animation-delay: 0s;   }
.precision .glow-heading   { animation-delay: 0.4s; }
.who-section .glow-heading { animation-delay: 0.8s; }
.services .glow-heading    { animation-delay: 1.2s; }
.gallery .glow-heading     { animation-delay: 1.6s; }
.process .glow-heading     { animation-delay: 2.0s; }
.cta-band .glow-heading    { animation-delay: 2.4s; }
.faq .glow-heading         { animation-delay: 2.8s; }
.contact .glow-heading     { animation-delay: 3.2s; }

/* ============================================================
   CHANGE 2 — BOX GLOW PULSE (resting state)
   ============================================================ */
.service-card,
.faq__item,
.contact__form-wrap,
.stat-card,
.process__step {
  animation: boxGlowPulse 4s ease-in-out infinite;
}

@keyframes boxGlowPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(96,200,245,0.05),
      inset 0 0 4px rgba(96,200,245,0.02);
  }
  50% {
    box-shadow:
      0 0 12px rgba(96,200,245,0.15),
      inset 0 0 8px rgba(96,200,245,0.05);
  }
}

/* Glass hover effect */
.service-card:hover,
.faq__item:hover,
.stat-card:hover,
.process__step:hover {
  background: rgba(96,200,245,0.06) !important;
  border-color: rgba(96,200,245,0.4) !important;
  box-shadow:
    0 0 20px rgba(96,200,245,0.2),
    0 0 40px rgba(96,200,245,0.08),
    inset 0 0 20px rgba(96,200,245,0.04) !important;
  transform: scale(1.01);
}

/* Light sweep through box on hover */
.faq__item,
.stat-card,
.process__step {
  position: relative;
  overflow: hidden;
}

.faq__item::before,
.stat-card::before,
.process__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.04) 45%,
    rgba(96,200,245,0.08) 50%,
    rgba(255,255,255,0.04) 55%,
    transparent 70%
  );
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.faq__item:hover::before,
.stat-card:hover::before,
.process__step:hover::before {
  left: 100%;
}

/* Rotating border via JS --border-angle */
.faq__item,
.stat-card,
.process__step,
.contact__form-wrap {
  --border-angle: 0deg;
}

.faq__item::after,
.stat-card::after,
.process__step::after,
.contact__form-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 2px;
  padding: 1px;
  background: linear-gradient(
    var(--border-angle),
    transparent 20%,
    rgba(96,200,245,0.5) 40%,
    rgba(255,255,255,0.7) 50%,
    rgba(14,138,99,0.5) 60%,
    transparent 80%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* who-section overrides cleared — see SECTION 5 below */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg-primary:    #0a1435;
  --bg-secondary:  #0c1845;
  --bg-dark:       #0d0a35;
  --bg-deeper:     #080e28;
  --bg-elevated:   #0e1f52;
  --bg-footer:     #070e28;
  --accent-cyan:   #60c8f5;
  --accent-teal:   #0e8a63;
  --accent-gold:   #f0c040;
  --text-primary:  #ffffff;
  --text-secondary: rgba(255,255,255,0.6);
  --text-muted:    rgba(255,255,255,0.4);
  --glass-border:  rgba(96,200,245,0.15);
  --card-bg:       rgba(255,255,255,0.03);
  --radius:        2px;
  --max-w:         1280px;
  --nav-h:         72px;
  --ease:          cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-primary);
}

body {
  background: #0a1435;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body.is-loading {
  opacity: 0;
}

::selection {
  background: rgba(96,200,245,0.3);
  color: #fff;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CHANGE 2 — Section royal blue radial overlay */
.hero,
.tagline,
.who-section,
.services,
.stats,
.process,
.gallery,
.cta-band,
.faq,
.contact {
  background-image: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    rgba(58,110,232,0.08) 0%,
    transparent 70%
  );
}

/* ============================================================
   SECTION 1 — NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,20,53,0.92);
  border-bottom: 1px solid rgba(96,200,245,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav__col { display: flex; align-items: center; }
.nav__col--center { justify-content: center; }
.nav__col--right { justify-content: flex-end; gap: 1.2rem; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  mix-blend-mode: normal;
  display: block;
}

.nav__logo-text {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent-cyan), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* One-time shine animation */
.nav__logo-shine {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.3) 0%,
    #ffffff 25%,
    var(--accent-cyan) 50%,
    #ffffff 75%,
    rgba(255,255,255,0.3) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShine 1.8s ease forwards;
}

.nav__instagram {
  font-size: 12px;
  font-weight: 300;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  transition: text-shadow 0.3s;
}

.nav__instagram:hover {
  text-shadow: 0 0 12px rgba(96,200,245,0.6);
}

.nav__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  background: transparent;
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav__cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(5, 8, 20, 0.97);
  border-top: 1px solid rgba(96,200,245,0.1);
  padding: 1rem 2rem;
  gap: 0;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--accent-cyan); }
.nav__mobile-ig { color: var(--accent-cyan); }

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.3) contrast(1.1) saturate(1.35);
  display: block;
}

/* Overlay layers */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__overlay--1 {
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

.hero__overlay--2 {
  background: linear-gradient(135deg, rgba(96,200,245,0.18) 0%, rgba(14,138,99,0.10) 100%);
}

.hero__overlay--3 {
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.04) 50%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: lightSweep 6s linear infinite;
}

.hero__overlay--4 {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(96,200,245,0.22) 0%, rgba(96,200,245,0.06) 50%, transparent 75%);
  animation: ambientGlow 5s ease-in-out infinite;
}

/* Edge highlight lines */
.hero__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(96,200,245,0.35);
  box-shadow: 0 0 8px rgba(96,200,245,0.4);
  z-index: 2;
  pointer-events: none;
  animation: edgePulse 4s ease-in-out infinite;
}

.hero__edge:nth-child(1) { animation-delay: 0s; }
.hero__edge:nth-child(2) { animation-delay: 1s; }
.hero__edge:nth-child(3) { animation-delay: 2s; }
.hero__edge:nth-child(4) { animation-delay: 3s; }

/* SVG grid */
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__accent-line {
  opacity: 0;
  animation: accentLineIn 1s ease forwards;
}

.hero__accent-line:nth-child(2) { animation-delay: 0.4s; }
.hero__accent-line:nth-child(3) { animation-delay: 0.6s; }
.hero__accent-line:nth-child(4) { animation-delay: 0.8s; }
.hero__accent-line:nth-child(5) { animation-delay: 1.0s; }

/* Mouse follow glow */
.hero__mouse-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,200,245,0.18) 0%, rgba(96,200,245,0.06) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  width: 100%;
}

.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero__heading {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  display: flex;
  gap: 0.35em;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  animation: wordAppear 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0.1s);
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}
.hero__word:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 22px rgba(96,200,245,0.55);
}

/* Nav pill */
.hero__pill {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 10px 24px;
}

.hero__pill-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}

.hero__pill-link:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(96,200,245,0.5);
}

.hero__pill-sep {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}

.hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
}

.hero__logo-bottom {
  margin-top: 0.5rem;
}

.hero__logo-bottom-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  animation: logoGlow 2s ease-in-out infinite 1.2s;
}

/* ============================================================
   CREDENTIALS BAR
   ============================================================ */
.cred-bar {
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.cred-bar__track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.cred-bar:hover .cred-bar__track {
  animation-play-state: paused;
}

.cred-bar__item {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.5) 0%,
    var(--accent-cyan) 40%,
    rgba(255,255,255,0.5) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

.cred-bar__sep {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  -webkit-text-fill-color: rgba(255,255,255,0.2);
}

/* ============================================================
   SECTION 4 — UNMATCHED PRECISION
   ============================================================ */
.precision {
  position: relative;
  background: var(--bg-primary);
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 100px 0 0;
  overflow: hidden;
}

.precision .dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#flow-precision-canvas,
#flow-cta-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 0.7;
}

.precision .container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.precision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.precision__heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.precision__right p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.precision__cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  transition: text-shadow 0.3s;
  margin-top: 0.5rem;
}

.precision__cta:hover {
  text-shadow: 0 0 14px rgba(96,200,245,0.6);
}

/* ============================================================
   SECTION 5 — OUR STORY
   ============================================================ */
/* ============================================================
   SECTION 5 — OUR STORY
   ============================================================ */
.who-section {
  background: #0d0a35;
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

#dots-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  display: block;
}

.who-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.who-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  visibility: visible;
}

.who-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.who-heading {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.who-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 8px;
}

.who-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.who-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.who-stat-num {
  font-size: 1.6rem;
  font-weight: 300;
  color: #60c8f5;
  letter-spacing: -0.02em;
  line-height: 1;
}

.who-stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.who-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
  visibility: visible;
}

.who-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 2px;
  overflow: visible;
}

.who-headshot {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(96,200,245,0.2);
  opacity: 1;
}

.who-photo-border-light {
  position: absolute;
  inset: -2px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
  padding: 2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.who-photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 8px;
  background: radial-gradient(
    ellipse at center,
    rgba(96,200,245,0.12) 0%,
    rgba(14,138,99,0.06) 40%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,  100% { opacity: 0.5; }
  50%        { opacity: 1.0; }
}

.who-caption {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-top: 12px;
}

.who-caption-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(96,200,245,0.7);
  text-align: center;
}

@media (max-width: 900px) {
  .who-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px 60px;
  }
  .who-photo {
    order: -1;
  }
}

/* ============================================================
   SECTION 6 — SERVICES
   ============================================================ */
.services {
  background: #0a1435;
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0;
}

.services__heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(96,200,245,0.15);
  border-left: 1px solid rgba(96,200,245,0.15);
}

/* @property for rotating border (Chrome/Edge/Safari) */
@property --cb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.service-card {
  background: transparent;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-right: 1px solid rgba(96,200,245,0.15);
  border-bottom: 1px solid rgba(96,200,245,0.15);
  transition: background 0.3s ease;
  cursor: default;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(96,200,245,0.04);
}

.service-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60c8f5;
  opacity: 0.9;
  margin-bottom: 6px;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex: 1;
}

.service-card__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #60c8f5;
  text-decoration: none;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.service-card__link:hover {
  gap: 10px;
  text-shadow: 0 0 10px rgba(96,200,245,0.5);
}

@keyframes cardBorderRotate {
  to { --cb-angle: 360deg; }
}

/* ============================================================
   SECTION 7 — GALLERY
   ============================================================ */
.gallery {
  background: var(--bg-primary);
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 100px 0 0;
}

.gallery .container {
  padding-bottom: 3rem;
}

.gallery__strip {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(96,200,245,0.3) transparent;
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
}

.gallery__strip::-webkit-scrollbar {
  height: 4px;
}

.gallery__strip::-webkit-scrollbar-track {
  background: transparent;
}

.gallery__strip::-webkit-scrollbar-thumb {
  background: rgba(96,200,245,0.3);
  border-radius: 0;
}

.gallery__item {
  flex: 0 0 auto;
  width: calc(100vw / 3.5);
  min-width: 280px;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(96,200,245,0.2);
}

/* ============================================================
   SECTION 8 — STATS
   ============================================================ */
.stats {
  background: #0a1435;
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(96,200,245,0.12);
  border-radius: 2px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease;
}

.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:first-child {
  border-color: rgba(96,200,245,0.6);
  box-shadow:
    0 0 40px rgba(96,200,245,0.12),
    0 0 80px rgba(96,200,245,0.06),
    inset 0 0 40px rgba(96,200,245,0.03);
}

.stat-card__number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat__number {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 200;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat-card__suffix {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 200;
  color: #60c8f5;
  line-height: 1;
  margin-left: 2px;
}

.stat-card:nth-child(2) .stat-card__suffix {
  font-size: 1.8rem;
  color: #60c8f5;
}

.stat-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 500px) {
  .stats__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTION 9 — PROCESS
   ============================================================ */
.process {
  background: var(--bg-secondary);
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 100px 0 0;
}

.process .container {
  padding-bottom: 80px;
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.process__connector {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96,200,245,0.3) 20%,
    rgba(96,200,245,0.3) 80%,
    transparent
  );
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(96,200,245,0.08);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}

.process__step:hover {
  border-color: rgba(96,200,245,0.25);
  background: rgba(96,200,245,0.03);
}

.process__step-num {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.process__step-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.process__step-desc {
  font-size: 13px;
  font-weight: 200;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   SECTION 10 — CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--bg-deeper);
  overflow: hidden;
  padding: 80px 0 0;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,13,31,0.55);
  pointer-events: none;
  z-index: 1;
}

.cta-band .container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-band__heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cta-band__cyan {
  color: var(--accent-cyan);
}

.cta-band__sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  background: var(--accent-cyan);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--accent-cyan);
  transition: background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cyan:hover {
  background: #80d9fa;
  box-shadow: 0 0 20px rgba(96,200,245,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTION 11 — FAQ
   ============================================================ */
.faq {
  background: #0a1435;
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 120px 0 0;
  position: relative;
}

.faq__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  width: 100%;
}

.faq__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  line-height: 1.1;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  width: 100%;
  border-top: 1px solid rgba(96,200,245,0.15);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(96,200,245,0.15);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq__question-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(96,200,245,0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60c8f5;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
}

.faq__item.is-open .faq__icon {
  background: rgba(96,200,245,0.1);
  border-color: #60c8f5;
  transform: rotate(45deg);
}

.faq__item.is-open .faq__question-text {
  color: #60c8f5;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 0 28px 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 720px;
}

.faq__link {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(96,200,245,0.3);
}

.faq__link:hover {
  text-decoration-color: var(--accent-cyan);
}

@media (max-width: 768px) {
  .faq__inner {
    padding: 0 24px 60px;
  }
  .faq__heading {
    font-size: 2.2rem;
  }
}

/* ============================================================
   SECTION 12 — CONTACT
   ============================================================ */
.contact {
  position: relative;
  background: var(--bg-secondary);
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(58,110,232,0.08) 0%, transparent 70%);
  padding: 100px 0 0;
  overflow: hidden;
}

#flow-contact-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 0.85;
}

.contact .container {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact__sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.contact__card {
  background: var(--card-bg);
  border: 1px solid rgba(96,200,245,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.contact__card-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.contact__card-val {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  transition: color 0.2s;
}

a.contact__card-val:hover {
  color: var(--accent-cyan);
}

/* Form panel */
.contact__form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(96,200,245,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-req {
  color: var(--accent-cyan);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(96,200,245,0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus {
  border-color: rgba(96,200,245,0.5);
  background: rgba(96,200,245,0.04);
}

.form-input.is-error {
  border-color: rgba(240,80,80,0.6);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #0c1845;
  color: #fff;
}

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

input[type="date"].form-input::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.form-error {
  display: block;
  font-size: 11px;
  color: rgba(240,80,80,0.9);
  margin-top: 0.3rem;
  min-height: 1em;
}

/* File upload */
.upload-zone {
  position: relative;
  border: 1px dashed rgba(96,200,245,0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.is-drag-over {
  border-color: var(--accent-cyan);
  background: rgba(96,200,245,0.03);
}

.upload-zone__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.upload-zone__label {
  text-align: center;
  pointer-events: none;
}

.upload-zone__text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.upload-zone__hint {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.upload-zone__files {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.upload-zone__file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 0.4rem 0.6rem;
  background: rgba(96,200,245,0.04);
  border: 1px solid rgba(96,200,245,0.1);
  border-radius: var(--radius);
  gap: 0.5rem;
}

.upload-zone__file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-zone__file-size {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 11px;
}

.upload-zone__error {
  font-size: 11px;
  color: rgba(240,80,80,0.9);
  margin-top: 0.5rem;
  min-height: 1em;
  display: block;
}

.btn-submit {
  width: 100%;
  display: block;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-teal) 100%);
  color: #000000;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, box-shadow 0.25s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  opacity: 0.92;
  box-shadow: 0 0 20px rgba(96,200,245,0.3);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success message */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success__icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--accent-cyan);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.form-success a {
  color: var(--accent-cyan);
}

/* ============================================================
   SECTION 13 — FOOTER
   ============================================================ */
.footer {
  background: var(--bg-footer);
  padding: 70px 0 0;
  border-top: 1px solid rgba(96,200,245,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  animation: logoGlow 2s ease-in-out infinite;
}

.footer__logo-text {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.footer__tagline {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer__col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links li a,
.footer__links li span {
  font-size: 13px;
  font-weight: 200;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: var(--accent-cyan);
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-align: center;
}

/* ============================================================
   CLICK RIPPLE
   ============================================================ */
.ripple-el {
  position: fixed;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 0.6s ease forwards;
}

/* ============================================================
   @KEYFRAMES
   ============================================================ */
@keyframes logoShine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes logoGlow {
  0%, 100% {
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.6));
  }
  50% {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(96,200,245,0.8));
  }
}

@keyframes lightSweep {
  0%   { background-position: -100% 0; }
  60%  { background-position: 200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes ambientGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

@keyframes edgePulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.85; }
}

@keyframes accentLineIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes wordAppear {
  0%   { opacity: 0; transform: translateY(30px) scale(0.85); filter: blur(10px); }
  50%  { opacity: 0.8; transform: translateY(8px) scale(0.97); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

@keyframes shimmerText {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

@keyframes photoGlow {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

@keyframes neonPulse {
  0%   { box-shadow: none; border-color: rgba(96,200,245,0.1); }
  30%  { box-shadow: 0 0 20px rgba(96,200,245,0.25); border-color: rgba(96,200,245,0.4); }
  100% { box-shadow: 0 0 6px rgba(96,200,245,0.08); border-color: rgba(96,200,245,0.15); }
}

@keyframes scanLine {
  from { left: -60%; }
  to   { left: 140%; }
}

@keyframes fallingDrop {
  from { background-position: 0 0; }
  to   { background-position: 0 4200px; }
}

@keyframes rippleOut {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav__col--left { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__col--center { justify-content: flex-start; }

  .precision__grid,
  .who-section__grid,
  .cta-band__inner,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__connector { display: none; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .who-section__photo {
    height: 360px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav__toggle { display: flex; }
  .nav__instagram { display: none; }
  .nav__logo-text { font-size: 11px; }
  .nav__logo-img { height: 30px; }

  .hero__heading { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero__pill { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }

  .services__grid { grid-template-columns: 1fr; }
  .services__inner { padding: 0 24px 0; }

  .process__steps { grid-template-columns: 1fr; gap: 1rem; }

  .gallery__item {
    width: 80vw;
    height: 280px;
  }

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

  .cta-band__actions { flex-direction: column; }

  .contact__form-wrap { padding: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .who-section__stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* ============================================================
   MOBILE NAV OVERLAP FIX
   ============================================================ */
@media (max-width: 768px) {

  .nav__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
    gap: 8px;
  }

  .nav__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
    max-width: 70% !important;
  }

  .nav__logo-img {
    height: 24px !important;
    width: auto;
    flex-shrink: 0;
  }

  .nav__logo-text {
    font-size: 8px !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: none !important;
  }

  .nav__links {
    display: none !important;
  }

  .nav__right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .nav__instagram {
    display: none !important;
  }

  .nav__cta,
  .nav__quote,
  a[href="#contact"].nav__cta,
  button.nav__cta {
    font-size: 8px !important;
    padding: 5px 8px !important;
    white-space: nowrap !important;
    letter-spacing: 0.03em !important;
  }

  .nav__hamburger,
  .nav__toggle,
  .hamburger {
    display: flex !important;
    flex-shrink: 0;
  }

}

@media (max-width: 480px) {

  .nav__logo-text {
    font-size: 7px !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: unset !important;
    white-space: nowrap !important;
  }

  .nav__logo-img {
    height: 20px !important;
  }

  .nav__cta,
  .nav__quote,
  a[href="#contact"].nav__cta,
  button.nav__cta {
    font-size: 7px !important;
    padding: 4px 6px !important;
  }

}

/* ============================================================
   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;
  }

  .hero__word { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .cred-bar__track { animation: none; }
}
