/* ============================================================
   INOVA CORE GROUP — Main Stylesheet
   ============================================================ */

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

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy:       #0a1628;
  --navy-dark:  #050d1a;
  --navy-mid:   #0f1e35;
  --navy-light: #162440;
  --blue:       #2563eb;
  --blue-bright:#3b82f6;
  --blue-glow:  rgba(37, 99, 235, 0.15);
  --blue-border:rgba(59, 130, 246, 0.25);
  --white:      #ffffff;
  --gray-100:   #f1f5f9;
  --gray-300:   #94a3b8;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --charcoal:   #1e293b;

  --font-body:  'Inter', system-ui, sans-serif;
  --font-head:  'Syne', 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-blue: 0 0 40px rgba(37, 99, 235, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   2. RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--dark  { background: var(--navy-dark); }
.section--navy  { background: var(--navy); }
.section--mid   { background: var(--navy-mid); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
}

.blue-line {
  width: 48px; height: 2px;
  background: var(--blue-bright);
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 4px 30px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--blue-border);
}
.btn-outline:hover {
  border-color: var(--blue-bright);
  background: var(--blue-glow);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--blue-border);
  padding: 14px 0;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.navbar__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.navbar__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color var(--transition);
}
.navbar__nav a:hover { color: var(--white); }

.navbar__cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37, 99, 235, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(59, 130, 246, 0.07) 0%, transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  top: 20%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { max-width: 580px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-bright);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.875rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title .accent {
  background: linear-gradient(135deg, var(--blue-bright) 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--blue-border);
}

.hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
}

.hero__stat-num span {
  color: var(--blue-bright);
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--gray-300);
  margin-top: 2px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow-blue), var(--shadow-card);
  min-height: 340px;
  background: var(--navy-800);
}

.hero__image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 13, 26, 0.7) 100%);
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}

.hero__badge-icon {
  width: 36px; height: 36px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.hero__badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
}
.hero__badge-sub {
  font-size: 0.75rem;
  color: var(--gray-300);
}

/* ============================================================
   6. CLIENTS / TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border);
  background: var(--navy);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}

.trust-bar__items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.trust-bar__item:hover { color: var(--gray-300); }

.trust-bar__item svg {
  width: 16px; height: 16px;
  color: var(--blue-bright);
}

/* ============================================================
   7. SERVICES
   ============================================================ */
.services__header {
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }

.service-card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.06);
  line-height: 1;
  pointer-events: none;
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.375rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(37, 99, 235, 0.25);
  border-color: var(--blue-bright);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.875rem;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card__list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--blue-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   8. WHY US
   ============================================================ */
.why-us {
  background: var(--navy);
}

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

.why-us__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}

.why-us__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-us__image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(5, 13, 26, 0.95) 0%, transparent 100%);
  padding: 32px 28px 24px;
}

.why-us__pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar__icon {
  width: 44px; height: 44px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.pillar__desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.65;
}

/* ============================================================
   9. PROCESS
   ============================================================ */
.process { background: var(--navy-dark); }

.process__header {
  text-align: center;
  margin-bottom: 72px;
}
.process__header .blue-line {
  margin: 24px auto;
}
.process__header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border), var(--blue-border), transparent);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step__num {
  width: 64px; height: 64px;
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-bright);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step:hover .step__num {
  background: var(--blue);
  border-color: var(--blue-bright);
  color: var(--white);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.4);
}

.step__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.65;
}

/* ============================================================
   10. PROOF SECTION
   ============================================================ */
.proof { background: var(--navy-mid); }

.proof__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.proof__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}

.proof__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.proof__content { display: flex; flex-direction: column; gap: 24px; }

.proof__quote {
  background: var(--navy);
  border: 1px solid var(--blue-border);
  border-left: 3px solid var(--blue-bright);
  border-radius: var(--radius-md);
  padding: 28px;
}

.proof__quote-text {
  font-size: 1rem;
  color: var(--gray-100);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.proof__quote-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-bright);
}

.proof__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  background: var(--navy);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.metric__num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-bright);
}

.metric__label {
  font-size: 0.8125rem;
  color: var(--gray-300);
  margin-top: 4px;
}

/* ============================================================
   11. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section__sub {
  font-size: 1.0625rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-section__note {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ============================================================
   12. CONTACT
   ============================================================ */
.contact { background: var(--navy); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info { padding-top: 8px; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact__detail-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact__detail-title {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__detail-val {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}

.contact__form {
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form__group--full { grid-column: 1 / -1; }

.form__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.02em;
}

.form__input,
.form__select,
.form__textarea {
  background: var(--navy);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-500);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form__select option { background: var(--navy-dark); }

.form__textarea {
  resize: vertical;
  min-height: 130px;
}

.form__submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--blue-border);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social-link {
  width: 36px; height: 36px;
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: var(--transition);
  color: var(--gray-300);
}

.footer__social-link:hover {
  background: var(--blue-glow);
  border-color: var(--blue-bright);
  color: var(--white);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--blue-border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gray-300); }

/* ============================================================
   14. MOBILE NAV
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-300);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }

.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .proof__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .proof__metrics { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .hero__stats { flex-direction: column; gap: 20px; }
}

/* ============================================================
   16. PAIN POINTS SECTION
   ============================================================ */
.pain-points { background: var(--navy-mid); }

.pain-points__header {
  text-align: center;
  margin-bottom: 56px;
}
.pain-points__header .blue-line { margin: 24px auto; }
.pain-points__header .section-sub { margin: 0 auto; text-align: center; }

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

.pain-card {
  background: var(--navy);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.pain-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-3px); }
.pain-card:hover::before { transform: scaleX(1); }

.pain-card__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.pain-card__title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card__desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .pain-points__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pain-points__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   17. STATS / PROOF SECTION
   ============================================================ */
.stats-section { background: var(--navy); }

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

.stats-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow-blue), var(--shadow-card);
  min-height: 380px;
  background: var(--navy-800);
}

.stats-section__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.stats-section__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(59,130,246,0.5);
  transform: translateX(4px);
}

.stat-item__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-bright);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.stat-item__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-item__source {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

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

/* ============================================================
   18. FOUNDER TEASER
   ============================================================ */
.founder-section { background: var(--navy-dark); }

.founder-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.founder-section__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: var(--shadow-blue), var(--shadow-card);
  min-height: 480px;
  background: var(--navy-800);
}

.founder-section__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.founder-section__image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(5,13,26,0.95) 0%, transparent 100%);
  padding: 32px 28px 24px;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.founder-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-300);
}

.founder-credential::before {
  content: '✓';
  color: var(--blue-bright);
  font-size: 0.75rem;
}

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

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--navy-mid); }

.faq-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-section__header .blue-line { margin: 24px auto; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(59,130,246,0.5); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blue-bright); }

.faq-question__icon {
  width: 28px; height: 28px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--blue-bright);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.75;
}

/* ============================================================
   20. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 24px;
}

.page-hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-bright);
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero__title .accent {
  background: linear-gradient(135deg, var(--blue-bright) 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__sub {
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   17. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb__sep { color: var(--gray-700); }
.breadcrumb__current { color: var(--gray-300); }

/* ============================================================
   18. SERVICE CARD LINK
   ============================================================ */
.service-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--blue-border);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-bright);
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ============================================================
   19. SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: 80px 0;
}
.service-detail + .service-detail {
  border-top: 1px solid var(--blue-border);
}
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail__inner.reverse { direction: rtl; }
.service-detail__inner.reverse > * { direction: ltr; }

.service-detail__num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(59,130,246,0.07);
  line-height: 1;
  margin-bottom: -16px;
}
.service-detail__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service-detail__desc {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 32px;
}
.service-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-100);
  line-height: 1.5;
}
.service-detail__list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__visual {
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-blue), var(--shadow-card);
}
.service-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--blue-border);
}
.service-detail__feature:first-child { padding-top: 0; }
.service-detail__feature:last-child { border-bottom: none; padding-bottom: 0; }

.service-detail__feature-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.service-detail__feature-title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.service-detail__feature-desc {
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .service-detail__inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail__inner.reverse { direction: ltr; }
}

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.about-story { background: var(--navy); }

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-story__inner { grid-template-columns: 1fr; gap: 48px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}
.value-card {
  background: var(--navy-mid);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(59,130,246,0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.value-card__icon { font-size: 1.5rem; margin-bottom: 12px; }
.value-card__title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.value-card__desc { font-size: 0.875rem; color: var(--gray-300); line-height: 1.6; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   21. ACTIVE NAV
   ============================================================ */
.navbar__nav a.nav-active { color: var(--white); }

/* ============================================================
   22. CONTACT PAGE STANDALONE
   ============================================================ */
.contact-page { background: var(--navy-dark); }
.contact-page .contact__inner {
  grid-template-columns: 1fr 1.6fr;
}
@media (max-width: 1024px) {
  .contact-page .contact__inner { grid-template-columns: 1fr; }
}
