/* ============================================
   ABCELECTRIC — Premium Design System
   ============================================ */

/* Smooth image fade-in: prevents flash of half-loaded images.
   - Placeholder bg only while loading (removed on .is-loaded so transparent
     PNGs/WebPs don't show a tinted box behind their transparency).
   - On JS-capable browsers, hide unloaded imgs and fade them in on .is-loaded
   - No-JS users: images shown normally (no .js class -> selector inactive) */
img { transition: opacity .4s ease; }
.js img:not(.is-loaded):not([data-no-fade]) {
  opacity: 0;
  background-color: rgba(15, 23, 42, 0.04);
}
img.is-loaded { opacity: 1; }
picture { display: inline-block; line-height: 0; }

:root {
  --c-navy-950: #050d1e;
  --c-navy-900: #0a1a36;
  --c-navy-800: #0f2249;
  --c-navy-700: #14305f;
  --c-navy-600: #1a3e7a;
  --c-blue-500: #2563eb;
  --c-blue-400: #3b82f6;
  --c-blue-300: #60a5fa;
  --c-cyan-400: #22d3ee;
  --c-cyan-300: #67e8f9;
  --c-electric: #4f9fff;
  --c-bg: #f6f8fc;
  --c-surface: #ffffff;
  --c-line: #e6ebf5;
  --c-line-2: #d8e0ee;
  --c-ink-900: #0a1a36;
  --c-ink-700: #1f2c46;
  --c-ink-500: #4a5b7a;
  --c-ink-400: #6c7c98;
  --c-ink-300: #94a2b9;
  --c-success: #10b981;
  --c-error: #ef4444;

  --grad-navy: linear-gradient(135deg, #0a1a36 0%, #14305f 50%, #1a3e7a 100%);
  --grad-blue: linear-gradient(135deg, #2563eb 0%, #4f9fff 100%);
  --grad-cyan: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
  --grad-radial: radial-gradient(circle at 30% 30%, rgba(79, 159, 255, 0.18), transparent 60%);

  --shadow-sm: 0 2px 6px rgba(10, 26, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 26, 54, 0.08);
  --shadow-lg: 0 25px 60px rgba(10, 26, 54, 0.12);
  --shadow-xl: 0 35px 80px rgba(10, 26, 54, 0.18);
  --shadow-glow: 0 0 40px rgba(79, 159, 255, 0.4);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1240px;
  --header-h: 88px;

  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-700);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--c-ink-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; position: relative; }

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid var(--c-line);
  z-index: 100;
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(10, 26, 54, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 96px;
  width: auto;
  margin: -4px 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-ink-700);
  border-radius: var(--r-full);
  position: relative;
  transition: all 0.2s var(--ease);
}
.main-nav a:hover { color: var(--c-blue-500); background: rgba(37, 99, 235, 0.06); }
.main-nav a.active {
  color: var(--c-blue-500);
  background: rgba(37, 99, 235, 0.1);
}
.main-nav .mobile-cta-phone { display: none; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--grad-blue);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-full);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line-2);
  background: white;
  border-radius: var(--r-md);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-ink-900);
  border-radius: 2px;
  transition: all 0.2s var(--ease);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

.btn-primary {
  background: var(--grad-blue);
  color: white;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: white;
  color: var(--c-ink-900);
  border: 1.5px solid var(--c-line-2);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--c-blue-500);
  color: var(--c-blue-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  background: var(--grad-navy);
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  z-index: -1;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
  animation: orb-float 12s ease-in-out infinite;
}
.hero-bg-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79, 159, 255, 0.7), transparent 70%);
  top: -100px; left: -100px;
}
.hero-bg-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 70%);
  bottom: -200px; right: -100px;
  animation-delay: -6s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 620px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.page-services .eyebrow, .page-about .eyebrow, .page-contact .eyebrow, .page-privacy .eyebrow {
  color: white;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-cyan-300);
  box-shadow: 0 0 12px var(--c-cyan-300);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-title-accent {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: visible;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  margin-left: auto;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: var(--grad-radial);
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 6px solid rgba(255, 255, 255, 0.06);
}

.hero-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: white;
  color: var(--c-ink-900);
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 2;
  animation: float-y 5s ease-in-out infinite;
}
.hero-badge-icon { width: 36px; height: 36px; }
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink-900);
  line-height: 1.2;
}
.hero-badge span {
  font-size: 0.78rem;
  color: var(--c-ink-500);
}
.hero-badge-pulse {
  position: absolute;
  top: 10px; right: 10px;
  width: 10px; height: 10px;
  background: var(--c-success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse-ring 1.6s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  100% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
}

.hero-stat-card {
  position: absolute;
  bottom: 30px;
  right: -28px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: float-y 6s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
}
.hero-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--c-ink-900);
  line-height: 1.2;
}
.hero-stat-card span {
  font-size: 0.8rem;
  color: var(--c-ink-500);
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-full);
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: white;
  border-radius: 3px;
  animation: scroll-down 1.8s infinite;
}
@keyframes scroll-down {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ============================================
   VALUES STRIP
   ============================================ */

.values-strip {
  background: white;
  border-bottom: 1px solid var(--c-line);
  padding: 36px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--c-ink-700);
}
.value-item svg { color: var(--c-blue-500); flex-shrink: 0; }
.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink-900);
}
.value-item span {
  font-size: 0.85rem;
  color: var(--c-ink-500);
}

/* ============================================
   SECTION HEADS
   ============================================ */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--c-blue-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
}
.accent-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead {
  color: var(--c-ink-500);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SERVICES (CARDS)
   ============================================ */

.services-overview { background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 211, 238, 0.08));
  color: var(--c-blue-500);
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--grad-blue);
  color: white;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--c-ink-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-blue-500);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
}
.service-link:hover { gap: 12px; }

/* ============================================
   STATS BANNER
   ============================================ */

.stats-banner {
  background: var(--grad-navy);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(79, 159, 255, 0.2), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.15), transparent 50%);
}
.stats-watermark {
  position: absolute;
  width: 280px;
  opacity: 0.06;
  right: -50px;
  bottom: -60px;
  transform: rotate(-15deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-cyan-300);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff, #a5c7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================
   PROJECTS GRID
   ============================================ */

.projects-section { background: white; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-media {
  position: relative;
  width: 100%; height: 100%;
}
.project-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(5, 13, 30, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: white;
}
.project-cat {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.project-overlay h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.project-overlay p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.project-card:hover .project-overlay p {
  max-height: 200px;
  opacity: 1;
}

.project-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: white;
  transition: all 0.3s var(--ease);
}
.project-card:hover .project-arrow {
  background: var(--grad-blue);
  border-color: transparent;
  transform: rotate(-45deg) scale(1.1);
}

.projects-cta { text-align: center; margin-top: 60px; }

/* ============================================
   WHY US
   ============================================ */

.why-us { background: var(--c-bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-copy .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.why-copy .section-tag { margin-bottom: 18px; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-bullet {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  margin-top: 4px;
}
.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-ink-900);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.why-list p {
  color: var(--c-ink-500);
  font-size: 0.92rem;
  margin: 0;
}

.why-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}
.why-image-stack {
  position: relative;
  height: 100%;
}
.why-img {
  position: absolute;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.why-img-1 {
  width: 70%; height: 70%;
  top: 0; right: 0;
  border: 6px solid white;
  z-index: 2;
}
.why-img-2 {
  width: 65%; height: 65%;
  bottom: 0; left: 0;
  border: 6px solid white;
  z-index: 1;
}

.why-floating-card {
  position: absolute;
  bottom: 40px;
  right: -10px;
  width: 280px;
  background: white;
  padding: 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  z-index: 3;
}
.why-fc-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}
.why-floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink-900);
  margin-bottom: 6px;
}
.why-floating-card p {
  font-size: 0.9rem;
  color: var(--c-ink-500);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--grad-navy);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(79, 159, 255, 0.25), transparent 50%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--c-navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(79, 159, 255, 0.18), transparent 60%);
  filter: blur(60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
}
.footer-logo {
  height: 130px;
  width: auto;
  margin: -25px 0 -10px;
  filter: brightness(1.1);
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}

.social-row {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s var(--ease);
}
.social-link:hover {
  background: var(--grad-blue);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: all 0.2s var(--ease);
}
.footer-col a:hover { color: var(--c-cyan-300); }

.footer-contact ul li {
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-inner a:hover { color: var(--c-cyan-300); }

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  background: var(--grad-navy);
  color: white;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(79, 159, 255, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.18), transparent 50%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, black, transparent);
  -webkit-mask-image: linear-gradient(180deg, black, transparent);
}
.page-hero-inner {
  position: relative;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--c-cyan-300); }
.breadcrumb span:not(:first-of-type) {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SERVICES DETAILED
   ============================================ */

.services-detailed { background: white; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--c-line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { grid-template-columns: 1.4fr 1fr; }
.service-detail.reverse .service-detail-body { order: -1; }

.service-detail-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(34, 211, 238, 0.06));
  border-radius: var(--r-xl);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.service-detail-icon-large {
  width: 140px; height: 140px;
  border-radius: var(--r-xl);
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 1;
}
.service-detail-icon-large svg { width: 56px; height: 56px; }
.service-detail-number {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.service-detail-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 12px 0 14px;
}
.service-detail-lead {
  color: var(--c-ink-500);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.service-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--c-ink-700);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section { background: var(--c-bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.3), transparent);
  z-index: 0;
}
.process-step {
  background: white;
  padding: 32px 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--c-ink-500);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section { background: white; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}
.faq-intro { position: sticky; top: 120px; }
.faq-intro .section-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.faq-intro p { color: var(--c-ink-500); }
.faq-intro a { color: var(--c-blue-500); font-weight: 600; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease);
  overflow: hidden;
}
.faq-item[open] {
  background: white;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--c-blue-500);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 28px;
  text-align: center;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--grad-blue);
  color: white;
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--c-ink-500);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-intro { background: white; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-intro-copy .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.about-intro-copy p { color: var(--c-ink-500); margin-bottom: 14px; }
.about-intro-copy strong { color: var(--c-ink-900); }

.about-pillars {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.pillar strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.pillar span {
  color: var(--c-ink-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.about-intro-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  border: 8px solid white;
  background: var(--grad-navy);
}
.about-portrait-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 14px;
  background: white;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
}
.about-portrait-badge img { width: 36px; height: 36px; }
.about-portrait-badge span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-ink-900);
  font-size: 0.95rem;
}

.about-values { background: var(--c-bg); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-value-card {
  background: white;
  border: 1px solid var(--c-line);
  padding: 36px;
  border-radius: var(--r-xl);
  transition: all 0.3s var(--ease);
}
.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.about-value-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(34, 211, 238, 0.1));
  color: var(--c-blue-500);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.about-value-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.about-value-card p { color: var(--c-ink-500); margin: 0; }

.about-projects { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery-item {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: all 0.3s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.gallery-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-media img { transform: scale(1.06); }
.gallery-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-blue-500);
}
.gallery-body { padding: 24px 28px 28px; }
.gallery-body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.gallery-body p { color: var(--c-ink-500); font-size: 0.92rem; margin: 0; line-height: 1.65; }

.areas-section { background: var(--c-bg); }
.areas-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.areas-copy .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.areas-list span {
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-ink-700);
  transition: all 0.2s var(--ease);
}
.areas-list span:hover {
  background: var(--grad-blue);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.areas-visual {
  display: grid;
  place-items: center;
}
.areas-map-card {
  background: white;
  padding: 40px;
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
  max-width: 320px;
  width: 100%;
}
.areas-map-pin {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}
.areas-map-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-ink-900);
  margin-bottom: 4px;
}
.areas-map-card span {
  display: block;
  color: var(--c-ink-500);
  margin-bottom: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods-section { background: white; padding: 80px 0; }
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-method {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.3s var(--ease);
}
.contact-method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: white;
}
.contact-method-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-blue);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}
.contact-method-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-400);
  font-weight: 600;
}
.contact-method strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-ink-900);
}
.contact-method small {
  color: var(--c-ink-500);
  font-size: 0.85rem;
}

.contact-main { background: var(--c-bg); }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.contact-form-wrap {
  background: white;
  padding: 50px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-ink-700);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-line-2);
  border-radius: var(--r-md);
  background: white;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--c-ink-900);
  transition: all 0.2s var(--ease);
  resize: vertical;
}
.form-field textarea { min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-blue-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--c-ink-500);
  line-height: 1.5;
  font-weight: 400;
}
.form-checkbox input {
  width: 20px; height: 20px;
  margin-top: 1px;
  accent-color: var(--c-blue-500);
  flex-shrink: 0;
}
.form-checkbox a { color: var(--c-blue-500); font-weight: 600; }

.contact-form button[type='submit'] {
  align-self: flex-start;
}

.form-alert {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  margin-top: 16px;
  align-items: flex-start;
}
.form-alert ul { margin: 0; padding-left: 18px; }
.form-alert-success {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.form-alert-success svg { color: #10b981; flex-shrink: 0; }
.form-alert-error {
  background: rgba(239, 68, 68, 0.06);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.form-alert-error svg { color: var(--c-error); flex-shrink: 0; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}
.contact-side-card {
  background: var(--grad-navy);
  color: white;
  padding: 40px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.contact-side-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(79, 159, 255, 0.25), transparent 50%);
}
.contact-side-logo {
  width: 64px; height: 64px;
  background: white;
  border-radius: var(--r-md);
  padding: 8px;
  margin-bottom: 18px;
  position: relative;
  object-fit: contain;
  box-sizing: border-box;
}
.contact-side-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 18px;
  position: relative;
}
.contact-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.contact-side-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.contact-side-list svg {
  width: 20px; height: 20px;
  padding: 4px;
  background: rgba(79, 159, 255, 0.3);
  border-radius: 50%;
  color: var(--c-cyan-300);
  flex-shrink: 0;
}

.contact-side-hours {
  background: white;
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
}
.contact-side-hours h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.contact-side-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-side-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.contact-side-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-side-hours li span { color: var(--c-ink-500); }
.contact-side-hours li strong { color: var(--c-ink-900); font-family: var(--font-display); }

.map-section {
  height: 480px;
  background: var(--c-bg);
}
.map-section iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}

/* ============================================
   PRIVACY POLICY
   ============================================ */

.legal-section { background: white; padding: 80px 0; }
.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
}
.legal-toc {
  position: sticky;
  top: 120px;
  background: var(--c-bg);
  padding: 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
}
.legal-toc h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-500);
  margin-bottom: 16px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-toc a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--c-ink-700);
  transition: all 0.2s var(--ease);
}
.legal-toc a:hover {
  background: white;
  color: var(--c-blue-500);
}

.legal-body { font-size: 1rem; }
.legal-updated {
  color: var(--c-ink-400);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.legal-body section { scroll-margin-top: 120px; margin-bottom: 48px; }
.legal-body h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--c-ink-900);
}
.legal-body p, .legal-body ul {
  color: var(--c-ink-700);
  line-height: 1.75;
}
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--c-blue-500); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }
.legal-contact-list { list-style: none !important; padding: 0 !important; }
.legal-contact-list li { color: var(--c-ink-700); margin-bottom: 6px; }

/* ============================================
   404 PAGE
   ============================================ */

.page-404 main { background: var(--c-bg); }
.error-section {
  min-height: 80vh;
  display: grid; place-items: center;
  padding: 120px 0;
}
.error-inner { text-align: center; max-width: 540px; }
.error-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(7rem, 18vw, 12rem);
  line-height: 1;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}
.error-section h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.error-section p { color: var(--c-ink-500); margin-bottom: 32px; }

/* ============================================
   ANIMATIONS
   ============================================ */

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.35s;
  animation-timing-function: var(--ease-out);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .why-grid, .areas-grid, .about-intro-grid, .faq-grid, .contact-main-grid, .legal-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .legal-toc { position: static; }
  .faq-intro, .contact-side { position: static; }
  .services-grid, .projects-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-methods-grid, .stats-grid, .values-grid, .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .service-detail, .service-detail.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail.reverse .service-detail-body { order: 0; }
  .service-detail-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  :root { --header-h: 76px; }
  .container { padding: 0 22px; }
  .section { padding: 70px 0; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #050d1e 0%, #0a1a36 55%, #14305f 100%);
    padding: calc(var(--header-h) + 40px) 24px 40px;
    z-index: 90;
    overflow-y: auto;
    flex-direction: column;
  }
  .main-nav.is-open {
    display: flex;
    animation: navSlideIn 0.3s var(--ease-out) forwards;
  }
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .main-nav.is-open ul li {
    opacity: 0;
    animation: navItemIn 0.35s var(--ease-out) forwards;
  }
  .main-nav.is-open ul li:nth-child(1) { animation-delay: 0.05s; }
  .main-nav.is-open ul li:nth-child(2) { animation-delay: 0.1s; }
  .main-nav.is-open ul li:nth-child(3) { animation-delay: 0.15s; }
  .main-nav.is-open ul li:nth-child(4) { animation-delay: 0.2s; }
  .main-nav.is-open .mobile-cta-phone {
    opacity: 0;
    animation: navItemIn 0.35s var(--ease-out) 0.28s forwards;
  }
  @keyframes navItemIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    transition: all 0.2s var(--ease);
  }
  .main-nav a:hover {
    background: rgba(79, 159, 255, 0.14);
    color: white;
    border-color: rgba(79, 159, 255, 0.3);
  }
  .main-nav a.active {
    background: var(--grad-blue);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  }
  .main-nav a.active::after { display: none; }
  .main-nav .mobile-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 18px 22px;
    background: white;
    color: var(--c-ink-900);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 1.05rem;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 101;
    background: white;
    border-color: var(--c-line-2);
  }
  .nav-toggle.is-open {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .nav-toggle.is-open span { background: white; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cta-phone { display: none; }
  .brand-logo { height: 104px; margin: -14px 0; }

  .hero {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 80px;
    background-image:
      linear-gradient(180deg, rgba(5, 13, 30, 0.75) 0%, rgba(10, 26, 54, 0.85) 60%, rgba(10, 26, 54, 0.92) 100%),
      image-set(url('/images/hero-worker.webp') type('image/webp'), url('/images/hero-worker.png') type('image/png'));
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }
  .hero-bg-orb, .hero-grid-bg { display: none; }
  .hero-visual { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { display: none; }
  .hero-scroll { display: none; }

  .services-grid, .projects-grid, .gallery-grid,
  .contact-methods-grid, .stats-grid, .values-grid,
  .about-values-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { width: 100%; flex-direction: column; }
  .cta-buttons .btn { width: 100%; }

  .why-visual {
    aspect-ratio: auto;
    padding-bottom: 200px;
  }
  .why-image-stack {
    height: 0;
    padding-bottom: 100%;
  }
  .why-floating-card {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    margin-top: 24px;
    box-sizing: border-box;
  }
  .about-pillars { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
