@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f4f4f5;
  --bg-dark: #0f0f11;
  --text: #18181b;
  --text-muted: #52525b;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-glow: rgba(37, 99, 235, 0.25);
  --border: #18181b;
  --max-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-transition.active {
  opacity: 1;
}

body.page-loaded {
  animation: pageIn 0.4s ease forwards;
}

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

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

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

/* ═══════════════════════════════════ */
/*  TYPOGRAPHY                        */
/* ═══════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.text-accent {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* Industrial angled slashes (Hazard / Steel Cut) */
.section-tag::before {
  content: '';
  width: 20px;
  height: 12px;
  background: var(--accent);
  clip-path: polygon(
    25% 0, 60% 0, 35% 100%, 0 100%,
    65% 0, 100% 0, 75% 100%, 40% 100%
  );
  display: inline-block;
}

.section-tag-light {
  color: var(--accent);
}

.section-tag-light::before {
  background: var(--accent);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header {
  margin-bottom: 4rem;
}

/* ═══════════════════════════════════ */
/*  LAYOUT                            */
/* ═══════════════════════════════════ */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark p {
  color: #a1a1aa;
}

.section-dark .section-subtitle {
  color: #a1a1aa;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* ═══════════════════════════════════ */
/*  NAVBAR                            */
/* ═══════════════════════════════════ */
.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  border-bottom: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 4px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo img {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Optional: Slight hover effect since filter is gone */
.logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ═══════════════════════════════════ */
/*  BUTTONS                           */
/* ═══════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-glow), 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--text);
  color: var(--text) !important;
}

.btn-outline:hover {
  background: var(--text);
  color: white !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════ */
/*  HERO                              */
/* ═══════════════════════════════════ */
/* ═══════════════════════════════════ */
/*  PAGE HERO (Inner pages)           */
/* ═══════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  padding: 140px 0 80px 0;
  border-bottom: 4px solid var(--accent);
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  filter: grayscale(80%) contrast(1.2);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15,15,17,0.95) 0%,
    rgba(15,15,17,0.8) 50%,
    rgba(37,99,235,0.2) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.page-hero-content h1 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(3rem, 12vw, 5rem);
  line-height: 1;
}

.page-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 3vw, 1.25rem);
  max-width: 600px;
  line-height: 1.6;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
  padding: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Left side darker for text readability (F-pattern) */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 0;
}

/* Two-column hero layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 140px 0 100px;
  min-height: 100vh;
}

.hero-content {
  max-width: 640px;
  color: white;
  flex-shrink: 0;
}

/* Topline: green dot + label — establishes category instantly */
.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.hero-topline-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 16px rgba(34,197,94,0.9); }
}

/* Headline: short stacked lines for fast scanning */
.hero-content h1 {
  color: white;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: none;
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA cluster */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.hero-cta-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: ctaPulse 3s ease-in-out 2s infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

.hero-cta-primary svg {
  transition: transform 0.2s ease;
}

.hero-cta-primary:hover svg {
  transform: translateX(4px);
}

.hero-cta-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: white;
  transition: color 0.2s ease;
}

.hero-cta-phone:hover {
  color: var(--accent);
}

.hero-cta-phone-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}

.hero-cta-phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Trust signals row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* Right-side hero aside */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.hero-stat-block {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
}

.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.hero-stat-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════ */
/*  STATS BAR                         */
/* ═══════════════════════════════════ */
.stats-bar {
  background: var(--accent);
  padding: 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  padding: 40px 20px;
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  display: inline;
  line-height: 1;
}

.stat-value {
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
  display: block;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════ */
/*  INFO BLOCK (Who We Are)           */
/* ═══════════════════════════════════ */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-text {
  max-width: 550px;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.5rem;
}

.info-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: transform 0.3s ease;
}

.info-feature:hover {
  transform: translateX(6px);
}

.info-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

.info-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border: 5px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.info-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════ */
/*  CAPABILITIES GRID                 */
/* ═══════════════════════════════════ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.capability-card {
  padding: 48px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.capability-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(37, 99, 235, 0.1);
}

.capability-card:hover::before {
  width: 100%;
}

.capability-icon {
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 0;
  transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--accent);
  transform: scale(1.05);
}

.capability-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.capability-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════ */
/*  PARALLAX BREAK                    */
/* ═══════════════════════════════════ */
.parallax-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 17, 0.8) 0%,
    rgba(37, 99, 235, 0.3) 50%,
    rgba(15, 15, 17, 0.8) 100%
  );
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 5%;
}

.parallax-content h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.parallax-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════ */
/*  WHY KINGDOM STEEL                 */
/* ═══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 40px;
  border: 1px solid var(--bg-alt);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover {
  background: var(--bg-alt);
  transform: translateX(4px);
}

.why-item:hover::before {
  height: 100%;
}

.why-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.25;
}

.why-text h3 {
  margin-bottom: 8px;
}

.why-text p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* ═══════════════════════════════════ */
/*  GALLERY STRIP                     */
/* ═══════════════════════════════════ */
.gallery-strip {
  background: var(--bg-dark);
  padding: 6px 0;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 6px;
}

.gallery-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ═══════════════════════════════════ */
/*  CTA BANNER                        */
/* ═══════════════════════════════════ */
.cta-banner {
  background-color: var(--bg-dark);
  /* Perforated steel mesh pattern */
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 2px, transparent 2.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 2px, transparent 2.5px);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  box-shadow: inset 0 0 120px rgba(0,0,0,0.9);
}

/* Accent spotlight over the metal mesh */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  max-width: 500px;
}

.cta-content p {
  color: #a1a1aa;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  flex-shrink: 0;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.cta-phone:hover {
  color: var(--accent);
}

.cta-phone svg {
  color: var(--accent);
}

/* ═══════════════════════════════════ */
/*  CARDS (legacy, used on other pages) */
/* ═══════════════════════════════════ */
.card {
  background: white;
  padding: 40px;
  border: 4px solid var(--border);
  box-shadow: 8px 8px 0px var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px var(--border);
}

.card h3 {
  margin-top: 20px;
}

.card-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  background: var(--accent);
  display: inline-block;
  padding: 4px 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════ */
/*  FORMS                             */
/* ═══════════════════════════════════ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 2px solid #d4d4d8;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

/* ═══════════════════════════════════ */
/*  FOOTER                            */
/* ═══════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--text);
  color: white;
  border-top: 6px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer p, .footer li {
  font-size: 0.95rem;
  color: #d4d4d8;
  list-style: none;
  margin-bottom: 0;
}

.footer-contact-item, .footer-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item svg, .footer-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-list {
  padding: 0;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #3f3f46;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════ */
/*  ANIMATIONS                        */
/* ═══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger capability cards */
.capability-card:nth-child(1) { transition-delay: 0s; }
.capability-card:nth-child(2) { transition-delay: 0.08s; }
.capability-card:nth-child(3) { transition-delay: 0.16s; }
.capability-card:nth-child(4) { transition-delay: 0.24s; }
.capability-card:nth-child(5) { transition-delay: 0.32s; }
.capability-card:nth-child(6) { transition-delay: 0.4s; }

/* Stagger why items */
.why-item:nth-child(1) { transition-delay: 0s; }
.why-item:nth-child(2) { transition-delay: 0.1s; }
.why-item:nth-child(3) { transition-delay: 0.2s; }
.why-item:nth-child(4) { transition-delay: 0.3s; }

/* Stat items stagger */
.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }

/* ═══════════════════════════════════ */
/*  MOBILE MENU                       */
/* ═══════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: white;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: absolute;
  left: 0;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

/* Animated X state */
.mobile-menu-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.mobile-menu-btn.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--text);
}

/* Force white bars when menu is open (dark overlay behind it) */
.mobile-menu-btn.active span {
  background: white !important;
}

/* ═══════════════════════════════════ */
/*  RESPONSIVE                        */
/* ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-actions {
    align-items: center;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 17, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    gap: 0;
    z-index: 99;
    border: none;
  }
  
  .nav-links.active {
    display: flex;
    animation: menuFadeIn 0.3s ease forwards;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a {
    font-size: 1.75rem;
    width: 100%;
    text-align: center;
    color: white !important;
    display: block;
    padding: 28px 0;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent) !important;
    letter-spacing: 0.15em;
  }

  .nav-links .btn {
    font-size: 1.25rem;
    padding: 22px 40px;
    margin-top: 24px;
    border: 2px solid var(--accent);
    color: white !important;
    background: var(--accent);
    width: auto !important;
    display: inline-block !important;
    border-radius: 0;
  }
  
  .nav-links .btn.active,
  .nav-links .btn:hover {
    color: white !important;
    background: var(--accent-dark);
    letter-spacing: 0.05em !important;
  }
  
  .nav-links li:last-child {
    border-bottom: none;
    padding-bottom: 40px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    flex-direction: column;
    padding: 120px 0 60px;
    min-height: auto;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-aside {
    flex-direction: row;
    width: 100%;
  }

  .hero-stat-block {
    flex: 1;
    min-width: 0;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-trust-divider {
    display: none;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 40%;
    padding: 28px 16px;
  }

  .stat-divider {
    display: none;
  }

  .info-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .info-image img {
    height: 400px;
  }

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

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

  .gallery-track {
    flex-wrap: wrap;
  }

  .gallery-item {
    flex: 1 1 45%;
  }

  .gallery-item img {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }


}

@media (max-width: 600px) {
  .page-hero {
    min-height: auto;
    padding: 110px 0 40px 0;
  }

  .logo img {
    height: 48px;
  }

  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
  }

  .info-block {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .contact-details {
    order: 2;
  }

  .info-block > div:not(.contact-details) {
    order: 1;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 1;
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    font-size: 0.95rem;
    padding: 16px 24px;
  }

  .hero-cta-phone {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }
  
  .hero-cta-phone-number {
    font-size: 1.15rem;
  }
  
  .hero-cta-phone-label {
    font-size: 0.65rem;
  }

  .hero-trust {
    display: none;
  }

  .hero-aside {
    flex-direction: column;
  }

  .hero-layout {
    min-height: 85vh;
    padding: 200px 0 100px;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 0;
  }
  
  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    word-wrap: break-word;
  }

  .why-item {
    padding: 20px 16px;
    flex-direction: column;
    gap: 12px;
  }

  .why-number {
    font-size: 1.75rem;
  }
  
  .why-item p {
    font-size: 0.9rem;
  }

  .parallax-break {
    height: auto;
    min-height: 180px;
    padding: 48px 0;
  }

  .parallax-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-banner {
    padding: 48px 0;
  }
  
  .cta-content {
    gap: 24px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .capability-card {
    padding: 24px 12px;
    text-align: center;
  }
  
  .capability-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .capability-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .capability-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
  }
  
  .capability-icon svg {
    width: 20px;
    height: 20px;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  
  .footer-grid > div:first-child {
    grid-column: span 2;
  }

  .footer-grid h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .footer-list span, .footer-contact-item p {
    font-size: 0.75rem;
  }
  
  .footer-list svg, .footer-contact-item svg {
    min-width: 16px;
    width: 16px;
    height: 16px;
  }
}
