/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Inter+Tight:wght@300;400;500;600&display=swap');

/* ─── Design System Variables ───────────────────────────────── */
:root {
  --deep:           #00060f;
  --surface:        #0a1628;
  --surface-light:  #111d33;
  --accent:         #1172fa;
  --accent-light:   #3b8fff;
  --cyan:           #06b6d4;
  --text:           #f1f5f9;
  --muted:          #8b9cb8;
  --dim:            #4a5e7a;

  --font-heading: 'Archivo', sans-serif;
  --font-body:    'Inter Tight', sans-serif;

  --max-w: 1280px;
  --px:    clamp(20px, 4vw, 40px);
  --section-py: clamp(80px, 10vw, 160px);

  --radius-card: 16px;
  --transition:  all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::selection { background: rgba(17,114,250,0.3); color: #fff; }

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: var(--section-py) 0; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: rgba(17,114,250,0.9);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17,114,250,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(17,114,250,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17,114,250,0.1);
}

/* ─── Dot Grid ──────────────────────────────────────────────── */
.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ─── Animate-in ────────────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Divider ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(0,6,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img { height: 44px; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.3s;
}
.navbar-links a:hover { color: #fff; }

.navbar-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: #fff;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger span:last-child { width: 14px; margin-left: auto; }

.hamburger.open span:first-child  { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:last-child   { transform: rotate(-45deg) translate(3px, -3px); width: 22px; }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,6,15,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px var(--px) 64px;
  z-index: 105;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.mobile-menu-links a:hover { color: #fff; }

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-footer a, .mobile-menu-footer span {
  font-size: 14px;
  color: var(--muted);
}
.mobile-menu-footer a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,6,15,0.95) 0%,
    rgba(0,6,15,0.70) 45%,
    rgba(0,6,15,0.15) 100%
  );
}

.hero-dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-text { max-width: 520px; }

.hero-label { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.hero-scroll span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim);
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--dim), transparent);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--deep), transparent);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS CAROUSEL
═══════════════════════════════════════════════════════════ */
.partners { padding: 64px 0 80px; }

.partners-header { margin-bottom: 40px; }

.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.carousel-fade-left  { left: 0;  background: linear-gradient(to right, var(--deep), transparent); }
.carousel-fade-right { right: 0; background: linear-gradient(to left,  var(--deep), transparent); }

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
  width: 140px; height: 64px;
  margin: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.logo-item:hover { opacity: 0.7; }

.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.logo--svg { filter: brightness(0) invert(1); }
.logo--img { filter: invert(1) brightness(0.75) saturate(0); }

.partners-divider { margin-top: 64px; }

/* ═══════════════════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════════════════ */
.pillars-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 96px);
}
.pillars-header .label { justify-content: center; margin-bottom: 16px; }
.pillars-title { font-size: clamp(28px, 3.5vw, 48px); }

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

.pillar-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17,114,250,0.06);
  border-color: rgba(17,114,250,0.2);
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(17,114,250,0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pillar-card:hover::after { opacity: 1; }

.pillar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.pillar-number {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
}
.pillar-icon {
  width: 48px; height: 48px;
  background: rgba(17,114,250,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.pillar-card:hover .pillar-icon { background: rgba(17,114,250,0.2); }
.pillar-icon svg { width: 22px; height: 22px; color: var(--accent); stroke: var(--accent); fill: none; stroke-width: 1.5; }

.pillar-name {
  font-size: clamp(18px, 1.5vw, 22px);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-label { margin-bottom: 16px; }
.about-title {
  font-size: clamp(24px, 2.5vw, 38px);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-text { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dim);
}

.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-card);
  background: var(--surface);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-wrap { position: relative; width: 240px; height: 240px; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: pulse-ring 4s ease-in-out infinite;
}
.ring-ai   { top: 0; left: 50%; transform: translateX(-50%); width: 150px; height: 150px; border-color: rgba(17,114,250,0.2); }
.ring-vis  { bottom: 0; left: 0; width: 150px; height: 150px; border-color: rgba(6,182,212,0.2); animation-delay: -1.3s; }
.ring-3d   { bottom: 0; right: 0; width: 150px; height: 150px; border-color: rgba(59,143,255,0.2); animation-delay: -2.6s; }
.ring-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(17,114,250,0.2); filter: blur(20px); animation: pulse-ring 4s ease-in-out infinite; }

.about-labels span {
  position: absolute;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.85; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services { position: relative; }
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10,22,40,0.5), transparent);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.services-header .label { justify-content: center; margin-bottom: 16px; }
.services-title { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
.services-desc { color: var(--muted); max-width: 480px; margin: 0 auto; }

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

.service-card {
  background: rgba(10,22,40,0.8);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17,114,250,0.06);
  border-color: rgba(17,114,250,0.15);
}
.service-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(17,114,250,0.05);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.6s;
}
.service-card:hover .service-glow { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.4s;
}
.service-card:hover .service-icon { border-color: rgba(17,114,250,0.25); }
.service-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

.service-name { font-size: clamp(17px, 1.4vw, 20px); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════════════════ */
.projects-header { margin-bottom: clamp(48px, 6vw, 80px); }
.projects-header .label { margin-bottom: 16px; }
.projects-title { font-size: clamp(28px, 3.5vw, 48px); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  cursor: default;
}
.project-card.wide { grid-column: span 2; }

.project-img-wrap { position: relative; aspect-ratio: 16/10; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.project-card:hover .project-img-wrap img { transform: scale(1.05); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,6,15,0.9) 0%, rgba(0,6,15,0.35) 50%, transparent 100%);
  transition: opacity 0.4s;
}
.project-card:hover .project-overlay { opacity: 0.95; }

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.project-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(17,114,250,0.8);
  font-weight: 500;
  margin-bottom: 6px;
}
.project-name { font-size: clamp(14px, 1.2vw, 18px); font-weight: 500; margin-bottom: 0; }
.project-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.project-card:hover .project-desc { opacity: 1; transform: translateY(0); }

.project-border {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s;
  pointer-events: none;
}
.project-card:hover .project-border { border-color: rgba(17,114,250,0.2); }

/* ═══════════════════════════════════════════════════════════
   SOFTFLOW
═══════════════════════════════════════════════════════════ */
.softflow-section { position: relative; overflow: hidden; }

.softflow-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,200,150,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(17,114,250,0.05) 0%, transparent 70%);
}

.softflow-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.softflow-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.softflow-brand {
  background: linear-gradient(135deg, #00c896 0%, #00a87e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.softflow-desc {
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.75;
  margin-bottom: 20px;
}

.softflow-text .btn { margin-top: 12px; }

.softflow-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.softflow-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 6px;
  transition: border-color 0.3s, background 0.3s;
}

.softflow-card:hover {
  border-color: rgba(0,200,150,0.2);
  background: rgba(0,200,150,0.04);
}

.softflow-card-icon {
  grid-row: 1 / 3;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.softflow-card-icon svg {
  width: 18px; height: 18px;
  stroke: #00c896;
}

.softflow-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  align-self: end;
}

.softflow-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .softflow-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact { position: relative; overflow: hidden; }
.contact-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(17,114,250,0.04);
  filter: blur(100px);
  pointer-events: none;
}
.contact-dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.contact-inner .label { justify-content: center; margin-bottom: 16px; }
.contact-title { font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; }
.contact-desc { color: var(--muted); font-size: clamp(15px, 1.2vw, 18px); margin-bottom: 40px; line-height: 1.7; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--muted); max-width: 260px; line-height: 1.7; }

.footer-col-title { margin-bottom: 16px; }
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  display: block;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }

.footer-partners { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-partner-logo { height: 16px; opacity: 0.4; filter: brightness(0) invert(1); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--dim); transition: color 0.3s; }
.footer-links a:hover { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-video-wrap video { opacity: 0.4; }
  .hero-overlay {
    background: linear-gradient(to right,
      rgba(0,6,15,0.96) 0%,
      rgba(0,6,15,0.85) 60%,
      rgba(0,6,15,0.6) 100%
    );
  }
}

@media (max-width: 480px) {
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .contact-buttons { flex-direction: column; align-items: center; }
}
