/* ==========================================================================
   RAA ASSOCIATE — Nodus Cybernetic Edge Network Design System
   ========================================================================== */

:root {
  --bg-dark: #060913;
  --bg-dark-alt: #0a0f1f;
  --surface-dark: rgba(13, 22, 41, 0.75);
  --surface-card: rgba(16, 28, 52, 0.65);
  --surface-card-hover: rgba(24, 42, 77, 0.85);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.3);
  --border-glow-accent: rgba(37, 99, 235, 0.35);

  --blue-primary: #1d4ed8;
  --blue-bright: #3b82f6;
  --blue-light: #60a5fa;
  --blue-sky: #93c5fd;
  --blue-glow: rgba(59, 130, 246, 0.45);

  --cyan: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.4);
  --indigo: #2563eb;
  --indigo-glow: rgba(37, 99, 235, 0.4);
  --purple: #1d4ed8;
  --emerald: #10b981;
  --sky-300: #93c5fd;

  --text-bright: #ffffff;
  --text-main: #cbd5e1;
  --text-muted: #64748b;
  --text-dim: #475569;

  --navy-800: #0f172a;
  --navy-900: #070d1a;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(59, 130, 246, 0.25);
  --shadow-purple: 0 0 35px rgba(37, 99, 235, 0.25);

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

  --font-head: 'Plus Jakarta Sans', 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-bright);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

section {
  position: relative;
  z-index: 1;
  scroll-margin-top: var(--header-h);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Text Typing Glow Effect ---------- */
.type-reveal .word {
  opacity: 0.3;
  transition: opacity 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
  display: inline;
}
.type-reveal .word.active {
  opacity: 1;
  color: var(--text-bright);
}

/* ---------- High-Tech Eyebrows & Headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulseDot 2s infinite;
}
.eyebrow-light {
  color: var(--sky-300);
  border-color: rgba(125, 211, 252, 0.25);
  background: rgba(125, 211, 252, 0.08);
}
.eyebrow-light::before {
  background: var(--sky-300);
  box-shadow: 0 0 10px var(--sky-300);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}
.section-title-sm {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 10px;
}
.section-title.text-light {
  color: var(--text-bright);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 620px;
}
.section-text {
  color: var(--text-main);
  margin-bottom: 16px;
  font-size: 1.04rem;
}
.section-text.center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.section-head {
  margin-bottom: 56px;
}
.section-head .section-subtitle {
  margin-inline: auto;
}
#brands .section-head, #why-us .section-head, #clients .section-head {
  text-align: center;
}

.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background: rgba(10, 14, 23, 0.6);
  border-block: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

/* ---------- Buttons & Interactive Components ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-head);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.86rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.7);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-light {
  background: var(--text-bright);
  color: #06080d;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  background: #ffffff;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--accent, var(--blue-bright));
  color: var(--accent, var(--blue-bright));
  background: rgba(37, 99, 235, 0.06);
}
.btn-outline:hover {
  background: var(--accent, var(--blue-bright));
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 25px var(--accent-glow, rgba(37, 99, 235, 0.4));
  transform: translateY(-2px);
}

/* ---------- Chips & Tags ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-mono);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.chip:hover {
  border-color: var(--cyan);
  color: var(--text-bright);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.chip-outline {
  background: rgba(13, 19, 31, 0.8);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 40px;
}
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 8, 13, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.scrolled {
  background: rgba(6, 8, 13, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 74px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
  transition: filter 0.35s ease;
}
.brand:hover .brand-icon {
  filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.8));
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--text-bright);
}
.brand-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--cyan);
  font-size: 0.82em;
  display: block;
  letter-spacing: 0.18em;
  margin-top: -3px;
}

.main-nav ul {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-link {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: all 0.25s ease;
}
.nav-link:hover, .nav-link.active {
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 200;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--cyan);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--cyan);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(13, 22, 38, 0.9) 0%, var(--bg-dark) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 85%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.glow-1 {
  width: 550px;
  height: 550px;
  background: var(--cyan);
  top: -150px;
  right: -100px;
}
.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--indigo);
  bottom: -180px;
  left: -100px;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-block: 60px 100px;
}

.hero-copy h1 {
  color: var(--text-bright);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin: 16px 0 24px;
  font-weight: 800;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #00f0ff 0%, #6366f1 50%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-lead {
  color: var(--text-main);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 14px;
}
.hero-lead-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-logo-card {
  background: rgba(13, 19, 31, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 42px 38px;
  box-shadow: var(--shadow-md), 0 0 40px rgba(0, 240, 255, 0.12);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 440px;
  animation: floatY 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.4), rgba(99, 102, 241, 0.1), transparent 60%);
  z-index: -1;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(12px);
  z-index: 3;
  animation: floatY 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.floating-badge:hover {
  transform: scale(1.08) !important;
  border-color: var(--cyan);
}
.floating-badge img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.badge-1 {
  top: -6%;
  left: -8%;
  animation-delay: 0.2s;
}
.badge-2 {
  bottom: 4%;
  left: -12%;
  animation-delay: 1.1s;
}
.badge-3 {
  bottom: -6%;
  right: -6%;
  animation-delay: 0.6s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}
.mv-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mv-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mv-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  background: var(--surface-card-hover);
}
.mv-card:hover::before {
  opacity: 1;
}

.mv-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}
.mv-icon svg {
  width: 26px;
  height: 26px;
}
.mv-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.mv-card p {
  color: var(--text-main);
  font-size: 0.98rem;
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */
.brand-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 40px;
  backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-card:hover {
  box-shadow: var(--shadow-md), 0 0 40px var(--accent-glow, rgba(0, 240, 255, 0.25));
  border-color: var(--accent, var(--cyan));
  transform: translateY(-6px);
}
.brand-card.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.brand-card.reverse .brand-media {
  order: 2;
}
.brand-card.reverse .brand-body {
  order: 1;
}

.brand-media {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), rgba(6, 8, 13, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
  border-right: 1px solid var(--border-subtle);
}
.brand-card.reverse .brand-media {
  border-right: none;
  border-left: 1px solid var(--border-subtle);
}
.brand-media img {
  max-width: 250px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}
.brand-card:hover .brand-media img {
  transform: scale(1.06);
}

.brand-body {
  padding: 48px 52px;
}
.brand-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, var(--cyan));
  margin-bottom: 12px;
  background: rgba(0, 240, 255, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.brand-body h3 {
  font-size: 1.85rem;
  margin-bottom: 6px;
}
.brand-headline {
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 16px;
  font-size: 1.06rem;
}
.brand-body > p {
  color: var(--text-main);
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.service-tags li {
  font-size: 0.84rem;
  font-weight: 500;
  font-family: var(--font-mono);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.service-tags li:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border-color: rgba(0, 240, 255, 0.3);
}

.btn-cyber {
  border-color: var(--accent-color, var(--cyan));
  color: var(--accent-color, var(--cyan));
  background: rgba(255, 255, 255, 0.03);
}
.btn-cyber:hover {
  background: var(--accent-color, var(--cyan));
  color: #06080d;
  box-shadow: 0 0 25px var(--accent-glow, rgba(0, 240, 255, 0.4));
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  background: var(--surface-card-hover);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.12);
}
.why-icon svg {
  width: 26px;
  height: 26px;
}
.why-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.founder-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 35px rgba(0, 240, 255, 0.2);
  aspect-ratio: 4/5;
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.founder-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 240, 255, 0.3);
  pointer-events: none;
}
.founder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
.founder-role {
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
}
.founder-quote {
  margin-top: 30px;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 14, 23, 0.9));
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--text-bright);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}
.quote-mark {
  width: 32px;
  height: 32px;
  color: var(--cyan);
  margin-bottom: 12px;
  opacity: 0.85;
}
.founder-quote p {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.45;
}
.founder-quote cite {
  font-style: normal;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

/* ==========================================================================
   JOURNEY & PROCESS
   ========================================================================== */
.journey-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 76px;
}
.journey-head .eyebrow {
  display: inline-flex;
}
.process-head {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo), var(--purple));
  z-index: 0;
  opacity: 0.6;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 18px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
}
.process-step:hover .step-num {
  background: var(--cyan);
  color: #06080d;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
  transform: scale(1.1);
}
.process-step p {
  color: var(--text-main);
  font-size: 0.95rem;
  max-width: 160px;
  margin-inline: auto;
}

/* ==========================================================================
   CLIENTS / INDUSTRIES
   ========================================================================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.industry-chip {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.94rem;
  color: var(--text-bright);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(99, 102, 241, 0.2));
  color: var(--cyan);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(13, 22, 38, 0.95) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-subtle);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  color: var(--text-bright);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.contact-card:hover {
  background: var(--surface-card-hover);
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}
.contact-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 2px;
}
.contact-card strong {
  font-family: var(--font-head);
  font-size: 0.96rem;
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
}
.contact-card span:last-child {
  font-size: 0.86rem;
  color: var(--text-main);
  line-height: 1.55;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 35px rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.3);
  height: 440px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.9);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 80px 24px 50px;
}
.footer-brand .brand-text {
  color: var(--text-bright);
}
.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 290px;
}
.footer-col h4 {
  color: var(--text-bright);
  font-family: var(--font-head);
  font-size: 0.98rem;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.footer-col a:hover {
  color: var(--cyan);
  padding-left: 4px;
}
.footer-col li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner {
  padding: 24px 24px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s ease;
  z-index: 90;
  backdrop-filter: blur(10px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--cyan);
  color: #06080d;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
  transform: translateY(-4px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & ACCESSIBILITY
   ========================================================================== */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding-inline: 28px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .site-header { height: 74px; }

  /* Mobile/Tablet Menu Drawer */
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(6, 9, 19, 0.98);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 150;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .nav-link {
    color: var(--text-bright);
    font-size: 1.35rem;
    padding: 12px 28px;
    display: inline-block;
  }
  .menu-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }

  /* Hero Section Stacking — Text Copy First, Image Visual Second */
  .hero-inner { grid-template-columns: 1fr; padding-block: 40px 60px; text-align: center; gap: 40px; }
  .hero-copy { order: 1; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-chips { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: 2; min-height: 280px; }
  .hero-logo-card { padding: 32px 24px; max-width: 380px; margin-inline: auto; }
  .badge-1 { top: -2%; left: 0; }
  .badge-2 { bottom: 2%; left: 0; }
  .badge-3 { bottom: -2%; right: 0; }

  /* Grid Layout Breakdown */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-media { max-width: 360px; margin-inline: auto; width: 100%; }

  /* Brand Card Responsive */
  .brand-card, .brand-card.reverse { grid-template-columns: 1fr; }
  .brand-card.reverse .brand-media { order: 1; }
  .brand-card.reverse .brand-body { order: 2; }
  .brand-media { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 40px 24px; }
  .brand-card.reverse .brand-media { border-left: none; }
  .brand-body { padding: 36px 28px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .section-title { font-size: 1.85rem; }

  .hero-logo-card { padding: 28px 20px; max-width: 340px; }
  .floating-badge img { height: 42px; }

  .values-row { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .process-step { position: relative; }
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, var(--blue-bright), var(--blue-primary));
    opacity: 0.5;
  }
  .process-step p { max-width: 260px; font-size: 0.96rem; }

  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 54px; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .map-wrap { height: 320px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .hero-copy h1 { font-size: 1.95rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-chips { gap: 8px; }
  .chip { padding: 6px 13px; font-size: 0.78rem; }
  
  .floating-badge { display: none; }
  .hero-logo-card { padding: 24px 16px; }

  .mv-card { padding: 26px 20px; }
  .why-card { padding: 28px 20px; }
  .brand-body { padding: 28px 20px; }
  .brand-body h3 { font-size: 1.55rem; }

  .founder-quote { padding: 22px 20px; }
  .founder-quote p { font-size: 1.05rem; }

  .industry-grid { grid-template-columns: 1fr; }
  .industry-chip { padding: 18px 12px; font-size: 0.9rem; }

  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}
