/* ============================================================
   AIT SOLUTIONS — Shared Stylesheet
   Design: brilliant.digital inspired | Content: AIT Solutions
   ============================================================ */

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

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --dark:            #0A1628;
  --darker:          #060E1C;
  --accent:          #2563EB;
  --accent-hover:    #1D4ED8;
  --accent-glow:     rgba(37, 99, 235, 0.35);
  --light:           #F8FAFC;
  --white:           #FFFFFF;
  --text-dark:       #0F1B3D;
  --text-muted:      #64748B;
  --text-on-dark:    rgba(255, 255, 255, 0.78);
  --text-on-dark-dim:rgba(255, 255, 255, 0.45);
  --border-dark:     rgba(255, 255, 255, 0.08);
  --border-light:    rgba(0, 0, 0, 0.08);
  --green:           #22C55E;
  --card-bg-dark:    rgba(255, 255, 255, 0.04);
  --card-hover-dark: rgba(255, 255, 255, 0.07);
  --radius:          16px;
  --radius-sm:       10px;
  --radius-pill:     100px;
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.24);
  --shadow-accent:   0 8px 32px rgba(37, 99, 235, 0.3);
  --section-y:       clamp(5rem, 10vh, 9rem);
  --container-x:     clamp(1.5rem, 5vw, 4rem);
  --max-width:       1200px;
  --ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:           72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography Scale ────────────────────────────────────── */
.display {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

.h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; }
.body    { font-size: 1rem; line-height: 1.7; }
.body-sm { font-size: 0.9rem; line-height: 1.6; }

.accent-text {
  background: linear-gradient(135deg, #60A5FA 0%, #2563EB 50%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-x);
}

.section {
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}

.section--light {
  background: var(--light);
  color: var(--text-dark);
}

.section--dark { background: var(--darker); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .label { margin-bottom: 1rem; display: block; }
.section-header .h2   { margin-bottom: 1.25rem; }
.section-header p     { color: var(--text-on-dark); font-size: 1.05rem; }
.section--light .section-header p { color: var(--text-muted); }
.section--light .section-header .h2 { color: var(--text-dark); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}
.btn--ghost-dark:hover {
  background: rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--container-x);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s;
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-text span:first-child { font-size: 1.05rem; font-weight: 900; color: var(--white); }
.nav__logo-text span:last-child  { font-size: 0.65rem; font-weight: 500; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta { display: flex; align-items: center; gap: 1rem; }

.nav--scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-dark), var(--shadow-sm);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav__hamburger:hover { background: rgba(255,255,255,0.08); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--darker);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: var(--container-x);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--accent); }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

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

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__orb--1 {
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, transparent 70%);
  top: -20%;
  right: -20%;
}
.hero__orb--2 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(129,140,248,0.2) 0%, transparent 70%);
  bottom: 0;
  left: -10%;
}

.hero__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 1.75rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero__title { margin-bottom: 1.5rem; }
.hero__title em { font-style: normal; }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-on-dark);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
}

.hero__stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-on-dark-dim);
  font-weight: 500;
}

/* ── Ticker / Marquee ────────────────────────────────────── */
.ticker {
  padding-block: 1.25rem;
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.ticker__track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-inline: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker__sep {
  opacity: 0.5;
  font-size: 0.6rem;
}

/* ── Problem Cards ───────────────────────────────────────── */
.problems { background: var(--dark); }

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.problem-card {
  background: var(--card-bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

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

.problem-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.problem-card:hover::before { opacity: 1; }

.problem-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.problem-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.problem-card__body {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* ── Pipeline / Solution ─────────────────────────────────── */
.pipeline { background: var(--darker); }

.pipeline__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.pipeline__connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(37,99,235,0.2) 100%);
  margin-top: 32px;
  min-width: 20px;
}

.pipeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: clamp(140px, 18vw, 200px);
  flex-shrink: 0;
}

.pipeline__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 0 0 8px rgba(37,99,235,0.1), var(--shadow-accent);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.pipeline__step:hover .pipeline__step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(37,99,235,0.15), 0 12px 32px rgba(37,99,235,0.4);
}

.pipeline__step-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pipeline__step-desc {
  font-size: 0.8rem;
  color: var(--text-on-dark-dim);
  line-height: 1.5;
}

/* Pipeline mobile: vertical */
@media (max-width: 768px) {
  .pipeline__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .pipeline__connector {
    width: 2px;
    height: 40px;
    min-width: unset;
    margin-top: 0;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(37,99,235,0.2) 100%);
  }
  .pipeline__step { width: 100%; max-width: 280px; }
}

/* ── Packages / Pricing ──────────────────────────────────── */
.packages { background: var(--dark); }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--card-bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  transition: all 0.3s var(--ease);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,255,255,0.15);
}

.package-card--featured {
  background: linear-gradient(160deg, rgba(37,99,235,0.18) 0%, rgba(37,99,235,0.06) 100%);
  border-color: rgba(37, 99, 235, 0.5);
  transform: scale(1.03);
}

.package-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow-accent);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.package-card__tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.package-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.package-card__price {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-dark);
}

.price-setup {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-setup span { font-size: 1.2rem; vertical-align: top; margin-top: 0.3em; display: inline-block; }

.price-monthly {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  margin-top: 0.5rem;
}

.package-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

.package-feature__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
  font-size: 0.65rem;
}

/* ── Testimonials Marquee ────────────────────────────────── */
.testimonials { background: var(--darker); overflow: hidden; }

.testi-row { overflow: hidden; margin-bottom: 1.25rem; }

.testi-track {
  display: inline-flex;
  gap: 1.25rem;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.testi-track--reverse { animation-direction: reverse; animation-duration: 50s; }

.testi-card {
  background: var(--card-bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.testi-card:hover { border-color: rgba(37,99,235,0.3); }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #FBBF24;
  font-size: 0.85rem;
}

.testi-card__quote {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #818CF8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.testi-author-role {
  font-size: 0.78rem;
  color: var(--text-on-dark-dim);
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq { background: var(--dark); }

.faq__list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(37, 99, 235, 0.4); }

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s;
}

.faq-toggle:hover { background: rgba(255,255,255,0.04); }

.faq-toggle__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.3s;
  color: var(--accent);
}

.faq-item.open .faq-toggle__icon {
  transform: rotate(45deg);
  background: rgba(37,99,235,0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-answer__inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.75;
}

/* ── Education Cards (learn.html) ────────────────────────── */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.edu-card {
  background: var(--card-bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: all 0.3s var(--ease);
}

.edu-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--card-hover-dark);
}

.edu-card__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.edu-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.edu-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.edu-card__body {
  font-size: 0.92rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* ── Process Steps (getstarted.html) ─────────────────────── */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}

.process-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.process-step__body {
  font-size: 0.92rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* ── Comparison Table (getstarted.html) ──────────────────── */
.compare { background: var(--darker); }

.compare-table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-on-dark);
  min-width: 200px;
}

.compare-table thead th {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 1.25rem;
}

.compare-table th.featured-col { color: var(--accent); }

.compare-table .check { color: var(--green); font-size: 1rem; }
.compare-table .cross { color: rgba(255,255,255,0.25); }

.compare-table tr:hover td { background: rgba(255,255,255,0.025); }

/* ── Calendly / Contact (getstarted.html) ────────────────── */
.booking { background: var(--dark); }

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking__calendly {
  background: var(--card-bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendly-placeholder {
  text-align: center;
  padding: 3rem;
}

.calendly-placeholder p {
  color: var(--text-on-dark-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 0.35rem;
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 768px) {
  .booking__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0F1B3D 0%, #1a2d5a 50%, #0F1B3D 100%);
  position: relative;
  overflow: hidden;
}

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

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-banner__inner .h2 { margin-bottom: 1.25rem; }

.cta-banner__inner p {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--darker);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-on-dark-dim);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: var(--text-on-dark-dim);
  transition: color 0.2s;
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-on-dark-dim);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand { grid-column: 1 / -1; }
}

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

/* ════════════════════════════════════════════════════════════
   PREMIUM REDESIGN ADDITIONS
   ════════════════════════════════════════════════════════════ */

/* ── Grid Background Overlay ─────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}

.grid-bg--subtle {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Glassmorphism Cards ─────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: all 0.35s var(--ease);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-5px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ── 3D Icon Container ───────────────────────────────────── */
.icon-3d {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(37,99,235,0.25) 0%, rgba(37,99,235,0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  flex-shrink: 0;
}

.glass-card:hover .icon-3d {
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── Hero Split Layout ───────────────────────────────────── */
.hero--split {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  gap: 4rem;
  overflow: hidden;
}

.hero--split .hero__content {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  max-width: 100%;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 480px;
}

/* Neural Network Visual */
.neural-net {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
}

.neural-net svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes node-pulse {
  0%, 100% { r: 6; opacity: 1; }
  50%       { r: 9; opacity: 0.7; }
}

@keyframes node-pulse-lg {
  0%, 100% { r: 10; opacity: 1; }
  50%       { r: 14; opacity: 0.6; }
}

@keyframes line-flow {
  0%   { stroke-dashoffset: 200; opacity: 0.15; }
  50%  { opacity: 0.5; }
  100% { stroke-dashoffset: 0;   opacity: 0.15; }
}

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

.neural-net { animation: float-visual 6s ease-in-out infinite; }

.neural-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: float-visual 6s ease-in-out infinite;
}

/* ── Logo Bar (Social Proof) ─────────────────────────────── */
.logo-bar {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
}

.logo-bar__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 1.25rem;
}

.logo-bar__track {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.logo-bar__item {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.22);
  transition: color 0.3s;
  white-space: nowrap;
  user-select: none;
}

.logo-bar__item:hover { color: rgba(255,255,255,0.55); }

/* Forbes-style serifed look */
.logo-bar__item--serif { font-style: italic; letter-spacing: 0.01em; }

/* ── Process Flow (Premium) ──────────────────────────────── */
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--accent) 0%,
    rgba(37,99,235,0.6) 33%,
    rgba(37,99,235,0.4) 66%,
    rgba(37,99,235,0.2) 100%);
  pointer-events: none;
}

.pf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  position: relative;
}

.pf-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.1);
}

.pf-step:hover .pf-step__num {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(37,99,235,0.15), var(--shadow-accent);
  transform: scale(1.1);
}

.pf-step__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.pf-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.pf-step__desc {
  font-size: 0.83rem;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-bottom: 4rem;
  }
  .hero__visual { min-height: 320px; order: -1; }
  .neural-net   { max-width: 300px; }

  .process-flow {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .process-flow::before { display: none; }
}

@media (max-width: 560px) {
  .process-flow { grid-template-columns: 1fr; }
  .logo-bar__track { gap: 1rem 2rem; }
}

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── Responsive Breakpoints ──────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero__stats { gap: 1.75rem; }
  .packages__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 540px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .testi-card { min-width: 280px; }
}
