/* ═══════════════════════════════════════════════════════════════
   BlueService — Premium HUD Design System
   Dark navy · Cyan accent · Cinematic scrollytelling
   ═══════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; background: none; border: none; font: inherit; }

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-glow); border-radius: 2px; }

/* ─── DESIGN TOKENS ─── */
:root {
  --accent:      #00d9ff;
  --accent2:     #0077cc;
  --accent-dim:  rgba(0, 217, 255, 0.12);
  --accent-glow: rgba(0, 217, 255, 0.25);
  --accent-halo: rgba(0, 217, 255, 0.06);

  --bg:          #030b14;
  --bg-elevated: #060f1a;
  --bg-panel:    rgba(6, 15, 26, 0.92);

  --surface:     rgba(255, 255, 255, 0.03);
  --surface-2:   rgba(255, 255, 255, 0.055);
  --border:      rgba(255, 255, 255, 0.07);
  --border-glow: rgba(0, 217, 255, 0.22);

  --text:        #cce4f0;
  --text-muted:  #5a8aaa;
  --text-ghost:  rgba(204, 228, 240, 0.35);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:      0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(0, 217, 255, 0.4);
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 217, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--spring), height 0.35s var(--spring), border-color 0.3s, opacity 0.2s;
  will-change: transform;
}

.cursor-ring.is-hovering {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
}

@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ─── FILM GRAIN ─── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9998;
  animation: grain-shift 0.8s steps(1) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0,    0); }
  20%  { transform: translate(-3%,  2%); }
  40%  { transform: translate(2%,  -2%); }
  60%  { transform: translate(-1%,  3%); }
  80%  { transform: translate(3%,  -1%); }
  100% { transform: translate(0,    0); }
}

/* ─── PROGRESS BAR ─── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 24px;
  transition: padding var(--transition), background var(--transition), backdrop-filter var(--transition);
}

/* When mobile menu is open, cover the page behind the dropdown */
.nav.is-menu-open {
  background: rgba(3, 11, 20, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav.is-scrolled .nav-inner {
  background: rgba(3, 11, 20, 0.88);
  border-color: var(--border-glow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(3, 11, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px 10px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark { color: var(--accent); flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  padding: 7px 16px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(0, 217, 255, 0.18);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-cta-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,217,255,0.4); }
  50%       { opacity: 0.7; transform: scale(0.9); box-shadow: 0 0 0 4px rgba(0,217,255,0); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.is-open span:last-child  { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px 12px;
  border-top: 1px solid var(--border-glow);
  margin-top: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile-link:hover { color: var(--text); background: var(--surface); }

.nav-mobile-cta {
  margin-top: 8px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: none;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}

.lang-btn:hover {
  color: var(--text);
  background: var(--surface-2);
}

.lang-btn.active {
  color: var(--accent);
  background: var(--accent-dim);
}

.lang-switcher--mobile {
  margin-top: 12px;
  align-self: flex-start;
  background: transparent;
  border-color: var(--border);
}

/* ─── HUD CORNER BRACKETS ─── */
.hud-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 2;
}

.hud-tl { top: 14px; left: 14px; border-top: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); }
.hud-tr { top: 14px; right: 14px; border-top: 1.5px solid var(--accent); border-right: 1.5px solid var(--accent); }
.hud-bl { bottom: 14px; left: 14px; border-bottom: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); }
.hud-br { bottom: 14px; right: 14px; border-bottom: 1.5px solid var(--accent); border-right: 1.5px solid var(--accent); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 90%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 85% at 50% 50%, transparent 40%, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(100px, 12vh, 160px) clamp(24px, 5vw, 80px) clamp(80px, 10vh, 120px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
}

.badge-pulse {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  overflow: hidden;
}

.hero-line {
  display: block;
  color: var(--text);
  opacity: 0;
  transform: translateY(60px);
}

.hero-line-outline {
  color: transparent;
  /* 1px keeps narrow letters like I legible without filling them */
  -webkit-text-stroke: 1px var(--accent);
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subtitle em {
  font-style: normal;
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--accent);
  padding: 13px 26px;
  border-radius: 100px;
  transition: box-shadow var(--transition), transform var(--spring), background var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(0,217,255,0.15);
  transform: translateY(-2px);
  background: #1ae3ff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 13px 26px;
  border-radius: 100px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-glow);
  background: var(--surface);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

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

.stat-val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.01em;
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: fade-in-up 0.8s 2s ease-out forwards;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-ghost);
  text-transform: uppercase;
}

.scroll-track {
  width: 1px;
  height: 52px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--accent);
  animation: scroll-slide 1.8s ease-in-out infinite;
}

@keyframes scroll-slide {
  0%   { top: -100%; }
  100% { top: 100%; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── SERVICES SECTION ─── */
.services-wrap {
  position: relative;
  height: 500vh;
  background: var(--bg);
}

.services-sticky {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  /* GSAP ScrollTrigger manages the pinning; no CSS sticky needed */
}

/* Phase nav dots */
.phase-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.phase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--spring);
  cursor: none;
}

.phase-dot.active {
  background: var(--accent);
  border-color: var(--accent-glow);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: scale(1.4);
}

/* Service panels */
.svc-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: opacity, transform;
  padding: 80px clamp(24px, 5vw, 80px);
}

.svc-panel.is-active { opacity: 1; }

.svc-meta {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-ghost);
  text-transform: uppercase;
  z-index: 3;
}

.svc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.svc-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.svc-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  color: var(--text);
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  font-weight: 400;
}

.feat-pip {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

/* Service visual / icon area */
.svc-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}

.svc-glow-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  opacity: 0.45;
  animation: ring-breathe 4s ease-in-out infinite;
}

.svc-glow-ring::before {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  opacity: 0.2;
}

.svc-glow-ring--spin {
  animation: ring-spin 12s linear infinite;
  border-style: dashed;
  border-color: rgba(0, 217, 255, 0.3);
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.35; }
  50%       { transform: scale(1.04); opacity: 0.6; }
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.svc-svg {
  width: clamp(180px, 40vw, 340px);
  height: clamp(180px, 40vw, 340px);
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.3));
  position: relative;
  z-index: 1;
}

.svc-svg--spin {
  animation: svg-spin-slow 30s linear infinite;
}

@keyframes svg-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── AREA SECTION ─── */
.area-section {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px);
  background: var(--bg);
  position: relative;
}

.area-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.section-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition), transform var(--spring), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.area-card:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(0,217,255,0.06);
}

.area-abbr {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.area-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.area-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-ghost);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-laguna {
  position: relative;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: var(--accent-halo);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.area-laguna:hover {
  box-shadow: 0 0 30px rgba(0,217,255,0.08);
  border-color: var(--accent);
}

.laguna-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.laguna-wave-svg {
  flex-shrink: 0;
  width: 160px;
  color: var(--accent);
  opacity: 0.7;
}

.laguna-name {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.laguna-sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px) clamp(60px, 10vh, 100px);
  background: var(--bg-elevated);
  position: relative;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* contact section headings share the same reveal as .section-eyebrow / .section-title / .section-desc */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.contact-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--spring);
  opacity: 0;
  transform: translateY(28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 24px rgba(0,217,255,0.06);
  transform: translateY(-4px);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-ghost);
  text-transform: uppercase;
}

.contact-value {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  display: block;
  margin-top: 2px;
  transition: color var(--transition);
}

a.contact-value:hover { color: var(--accent); }

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  width: 100%;
  transition: gap var(--spring), color var(--transition);
}

.contact-action-btn:hover { gap: 12px; color: #1ae3ff; }

.contact-vat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-ghost);
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 80px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.footer-brand svg { color: var(--accent); }

.footer-copy {
  font-size: 12.5px;
  color: var(--text-ghost);
}

.footer-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-ghost);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

/* ─── SVG ICON ANIMATIONS ─── */

/* Continuous slow spin — propeller blades */
.svc-anim-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: svc-spin 14s linear infinite;
  will-change: transform;
}
@keyframes svc-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Slow opacity pulse — lift cables, position marker */
.svc-anim-pulse {
  animation: svc-pulse 3s ease-in-out infinite;
}
@keyframes svc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* Scrolling dash offset — pressure washer spray */
.svc-anim-dash line,
.svc-anim-dash path {
  animation: svc-dash 1.6s linear infinite;
}
@keyframes svc-dash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -24; }
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, #lang-switcher { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 8px 14px; gap: 0; }

  .svc-body {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .svc-visual {
    max-width: 220px;
    margin: 0 auto;
  }

  .svc-features { align-items: center; }

  .svc-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .svc-desc { margin: 0 auto; }

  .phase-nav { right: 14px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-card:last-child { grid-column: auto; }

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

  .laguna-inner { flex-direction: column; gap: 18px; text-align: center; }
  .laguna-wave-svg { width: 120px; }

  .hero-stats { gap: 20px; }
  .hero-stat-sep { height: 28px; }
}

@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-title { font-size: clamp(4rem, 20vw, 6rem); }
  .svc-meta { font-size: 9px; }
  .hud-corner { width: 14px; height: 14px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { display: none; }
}
