/* ==========================================================================
   Project Zero Customz — Design Tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette (from client-supplied palette) */
  --c-blue: #0175FB;
  --c-blue-light: #4C9FFF;
  --c-blue-dark: #0158C4;
  --c-black: #000000;
  --c-charcoal: #514F50;
  --c-gray: #ACADAE;
  --c-offwhite: #E6E5E5;

  /* Surfaces */
  --bg-0: #08090A;
  --bg-1: #101113;
  --bg-2: #17181B;
  --bg-3: #1F2023;
  --border-subtle: rgba(230, 229, 229, 0.09);
  --border-strong: rgba(230, 229, 229, 0.18);

  /* Text */
  --text-primary: var(--c-offwhite);
  --text-secondary: var(--c-gray);
  --text-muted: #7A7B7D;
  --text-on-blue: #04070C;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale (marketing-density) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;

  /* Radius / shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 0 1px rgba(1,117,251,0.25), 0 20px 60px -20px rgba(1,117,251,0.35);
  --shadow-card: 0 12px 40px -16px rgba(0,0,0,0.6);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;

  --container: 1200px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

body {
  background: var(--bg-0);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--c-blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.6rem, 6vw + 1rem, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); }
h3 { font-size: clamp(1.3rem, 1.5vw + 1rem, 1.7rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.06em; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue-light);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-blue);
  display: inline-block;
}

.text-accent { color: var(--c-blue-light); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}
.section-head p:not(.eyebrow) {
  margin-top: var(--space-3);
  font-size: 1.05rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

section { position: relative; }
.section-pad { padding-block: var(--space-8); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 8px 30px -10px rgba(1,117,251,0.7);
}
.btn-primary:hover {
  background: var(--c-blue-light);
  box-shadow: 0 10px 34px -8px rgba(1,117,251,0.85);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--c-blue-light);
  color: var(--c-blue-light);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.15rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: var(--space-4);
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 9, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-subtle);
  padding-block: var(--space-2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 42px;
  width: auto;
  transition: height var(--dur-med) var(--ease);
}
.site-header.scrolled .brand img { height: 34px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--c-blue);
  transition: right var(--dur-med) var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: var(--space-4); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--bg-1);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-actions .btn-primary { display: none; }
  .nav-links.open ~ .nav-toggle,
  .nav-toggle { z-index: 101; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, var(--bg-0) 12%, rgba(8,9,10,0.82) 38%, rgba(8,9,10,0.4) 60%, rgba(8,9,10,0.7) 100%),
    linear-gradient(to top, var(--bg-0) 0%, transparent 20%);
  pointer-events: none;
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-5);
  padding-top: var(--space-9);
  padding-bottom: var(--space-5);
  padding-left: clamp(20px, 7vw, 120px);
  padding-right: clamp(20px, 7vw, 120px);
}
.hero-content { max-width: 620px; }
.hero h1 {
  margin-block: var(--space-3);
  font-size: clamp(2.2rem, 5vw + 1rem, 4.6rem);
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--text-secondary);
  white-space: nowrap;
}
.hero-tagline span { color: var(--c-blue-light); }
.hero-desc {
  max-width: 480px;
  margin-top: var(--space-3);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* Stats bar — pinned to the bottom of the hero frame */
.hero-stats {
  display: flex;
  align-items: stretch;
  align-self: center;
  gap: 0;
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  background: rgba(8, 9, 10, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}
.hero-stats > div {
  flex: 1;
  padding: var(--space-4) var(--space-3);
  text-align: center;
}
.hero-stats > div:not(:last-child) { border-right: 1px solid var(--border-subtle); }
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--c-blue-light);
  line-height: 1;
  white-space: nowrap;
}
.hero-stats .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
}
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ==========================================================================
   About
   ========================================================================== */
#about { padding-top: var(--space-7); padding-bottom: var(--space-6); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: start;
}
.about-copy p:not(.eyebrow) { margin-top: var(--space-4); font-size: 1.05rem; }
.about-copy p + p { margin-top: var(--space-3); }

.about-card {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(1,117,251,0.28), transparent 70%);
  top: -100px; right: -100px;
}
.about-card blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-primary);
  position: relative;
}
.about-card .quote-mark {
  color: var(--c-blue);
  font-size: 3rem;
  font-family: var(--font-display);
  line-height: 0.6;
  display: block;
  margin-bottom: var(--space-3);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
  position: relative;
}
.about-stats .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--c-blue-light);
}
.about-stats .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ==========================================================================
   Services
   ========================================================================== */
#services { padding-top: var(--space-6); }

@keyframes techPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.95; }
}

/* Services bento grid — equal tiles that pop on hover */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 800px;
  margin-inline: auto;
}
.svc-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  transform-origin: center;
}
.svc-card:hover {
  transform: scale(1.09);
  z-index: 5;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(1,117,251,0.5);
}
.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.svc-card:hover .svc-img { transform: scale(1.1); }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.3) 100%);
}
.svc-num {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}
.svc-content {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 2;
}
.svc-content h3 {
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0;
}
.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 380ms var(--ease), opacity 300ms var(--ease), margin-top 380ms var(--ease);
}
.svc-card:hover .svc-features {
  max-height: 70px;
  opacity: 1;
  margin-top: var(--space-2);
}
.svc-features span {
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.services-more {
  text-align: center;
  margin-top: var(--space-6);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.services-strip {
  margin-top: var(--space-7);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-6);
}
.services-strip span {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-size: 1rem;
}
.services-strip span b { color: var(--c-blue-light); font-weight: 400; }

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-section { background: var(--bg-1); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.why-item { text-align: left; }
.why-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--c-blue-light);
  margin-bottom: var(--space-3);
}
.why-icon svg { width: 24px; height: 24px; }
.why-item h4 { color: var(--text-primary); margin-bottom: var(--space-2); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.why-item p { font-size: 0.9rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
#gallery { padding-bottom: var(--space-7); }

.gallery-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 620px;
  margin-inline: auto;
}
.gallery-track {
  display: flex;
  transition: transform 480ms var(--ease);
}
.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-1);
  overflow: hidden;
}
.gallery-slide .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(0.5) saturate(1.1);
  transform: scale(1.15);
}
.gallery-slide .slide-fg {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
}
.slide-caption {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-5) var(--space-4) var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 9, 10, 0.6);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--dur-fast) var(--ease);
  z-index: 2;
}
.gallery-arrow:hover { border-color: var(--c-blue); background: rgba(1,117,251,0.3); color: #fff; }
.gallery-arrow.prev { left: var(--space-4); }
.gallery-arrow.next { right: var(--space-4); }
.gallery-arrow svg { width: 22px; height: 22px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--border-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.gallery-dot.active { width: 26px; background: var(--c-blue); }
.gallery-note {
  margin-top: var(--space-5);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */
#contact { padding-top: var(--space-7); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-7);
  align-items: start;
}
.contact-info-card {
  background: var(--bg-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-info-list { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-5); }
.contact-row { display: flex; gap: var(--space-3); align-items: flex-start; }
.contact-row .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(1,117,251,0.12);
  border: 1px solid rgba(1,117,251,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue-light);
}
.contact-row .ico svg { width: 20px; height: 20px; }
.contact-row h4 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row a, .contact-row p { color: var(--text-primary); font-weight: 600; font-size: 1rem; margin-top: 2px; }
.contact-row a:hover { color: var(--c-blue-light); }

.contact-map { width: 100%; height: 220px; border: 0; display: block; }

.social-row { display: flex; gap: var(--space-2); padding: 0 var(--space-6) var(--space-6); }
.social-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-2);
  transition: all var(--dur-fast) var(--ease);
}
.social-btn:hover { border-color: var(--c-blue); transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; }

.contact-form-card {
  background: var(--bg-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-0);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-size: 0.98rem;
  transition: border-color var(--dur-fast) var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--c-blue);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: var(--space-5); display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--text-muted); }
.form-success {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background: rgba(1,117,251,0.12);
  border: 1px solid rgba(1,117,251,0.35);
  color: var(--c-blue-light);
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
}
.footer-brand img { height: 40px; margin-bottom: var(--space-4); }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }
.footer-col h4 { color: var(--text-primary); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: var(--text-secondary); font-size: 0.95rem; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--c-blue-light); }
.footer-social { display: flex; gap: var(--space-2); margin-top: var(--space-4); }

.footer-strip {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-5);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  text-align: center;
}
.footer-strip span {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-8: 64px; --space-9: 88px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats > div { padding: var(--space-3) var(--space-2); }
  .hero-stats .stat-label { font-size: 0.62rem; white-space: normal; line-height: 1.25; }
  .gallery-slide { aspect-ratio: 4 / 3; }
  .gallery-arrow { width: 40px; height: 40px; }
  .gallery-arrow.prev { left: var(--space-2); }
  .gallery-arrow.next { right: var(--space-2); }
  .services-bento { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16 / 10; }
  .svc-card:hover { transform: none; box-shadow: none; }
  .svc-card:hover .svc-img { transform: none; }
  .svc-features {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: var(--space-2);
  }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-tagline {
    white-space: normal;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero-stats .stat-num { font-size: 1.1rem; }
  .hero-stats .stat-label { font-size: 0.56rem; letter-spacing: 0.03em; }
  .hero-stats > div { padding: var(--space-2) 6px; }
}
