/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Core Palette */
  --clr-bg:           #F7F9FC;
  --clr-bg-alt:       #EEF3FB;
  --clr-dark:         #0C1628;
  --clr-dark-2:       #111D35;
  --clr-navy:         #1B2B4B;
  --clr-blue:         #2563EB;
  --clr-blue-mid:     #3B82F6;
  --clr-blue-light:   #60A5FA;
  --clr-blue-tint:    #E8F0FE;
  --clr-blue-tint2:   #DBEAFE;
  --clr-accent:       #0EA5E9;
  --clr-text:         #1E293B;
  --clr-text-muted:   #64748B;
  --clr-border:       #E2E8F0;
  --clr-white:        #FFFFFF;

  /* Gradients */
  --grad-hero:        linear-gradient(135deg, #F7F9FC 0%, #EEF3FB 50%, #DBEAFE 100%);
  --grad-blue:        linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #0EA5E9 100%);
  --grad-dark:        linear-gradient(160deg, #0C1628 0%, #111D35 60%, #0F2044 100%);
  --grad-pricing:     linear-gradient(160deg, #0F172A 0%, #1B2B4B 100%);
  --grad-card-hover:  linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 100%);
  --grad-badge:       linear-gradient(90deg, #2563EB, #0EA5E9);

  /* Typography */
  --ff-heading:       'Bricolage Grotesque', sans-serif;
  --ff-body:          'Inter', sans-serif;

  /* Radii */
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        28px;
  --radius-pill:      100px;

  /* Shadows */
  --shadow-card:      0 4px 24px rgba(37, 99, 235, 0.08);
  --shadow-hover:     0 12px 40px rgba(37, 99, 235, 0.18);
  --shadow-cta:       0 8px 32px rgba(37, 99, 235, 0.28);

  /* Transitions */
  --trans-base:       all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:       all 0.18s ease;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utility Classes ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.section-label.light {
  color: var(--clr-blue-light);
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.25);
}

.section-label svg { flex-shrink: 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 1rem;
}

.section-title.on-dark { color: var(--clr-white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.section-desc.on-dark { color: rgba(255,255,255,0.65); }

.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-blue);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  box-shadow: var(--shadow-cta);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37,99,235,0.35);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-navy);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-ghost:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── Navbar ─────────────────────────────────────────────── */
#mainNav {
  background: rgba(247, 249, 252, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  padding: 0;
  transition: var(--trans-base);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(247, 249, 252, 0.96);
  border-bottom-color: var(--clr-border);
  box-shadow: 0 2px 20px rgba(37,99,235,0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: -0.03em;
  max-width: 185px
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--grad-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--trans-fast);
}
.nav-login:hover { color: var(--clr-blue); }

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-blue);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: var(--trans-base);
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: var(--trans-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(247,249,252,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.25rem 1.5rem 1.5rem;
  z-index: 999;
  animation: slideDown 0.25s ease;
}

.mobile-menu.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu ul a {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}
.mobile-menu ul a:hover {
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
}

.mobile-menu-actions {
  display: flex;
  gap: 0.75rem;
}

/* ── Hero Section ───────────────────────────────────────── */
#hero {
  background: var(--grad-hero);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  top: -120px; right: -100px;
}

.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
  bottom: -80px; left: 5%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--clr-blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--ff-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--clr-border);
}

/* ── Terminal Block ─────────────────────────────────────── */
.hero-terminal {
  background: #0C1628;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(12,22,40,0.35), 0 2px 0 rgba(255,255,255,0.05) inset;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.terminal-bar {
  background: #111D35;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
}

.td-red   { background: #FF5F57; }
.td-amber { background: #FFBD2E; }
.td-green { background: #28C840; }

.terminal-title {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}

.terminal-body {
  padding: 20px 22px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  line-height: 1.75;
  min-height: 260px;
}

.t-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 2px; }
.t-prompt { color: var(--clr-blue-light); user-select: none; }
.t-comment { color: rgba(255,255,255,0.6); }
.t-keyword { color: #c084fc; }
.t-func    { color: #60A5FA; }
.t-string  { color: #86efac; }
.t-number  { color: #fbbf24; }
.t-type    { color: #67e8f9; }
.t-op      { color: rgba(255,255,255,0.55); }
.t-blank   { height: 0.5em; }

.cursor-blink {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--clr-blue-light);
  border-radius: 1px;
  animation: blink 1.1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.terminal-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: var(--grad-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-navy);
  white-space: nowrap;
}

.float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-1 { top: 18%; left: -28px; animation: float-a 5s ease-in-out infinite; }
.hero-float-2 { bottom: 28%; right: -20px; animation: float-b 5.5s ease-in-out infinite; }

@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trusted-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.logo-pill {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: -0.01em;
  transition: var(--trans-fast);
}
.logo-pill:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}

/* ── Services Section ───────────────────────────────────── */
#services {
  background: var(--grad-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-bg-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: var(--trans-base);
  position: relative;
  overflow: hidden;
}
.service-card .service-icon-wrap {
    background: rgb(129 168 255 / 18%);
}
.service-card.light{
    background: rgb(0 0 0 / 4%);
    border: 1px solid rgb(0 0 0 / 8%);
}
.service-card.light .service-card-title{
    color: var(--clr-dark);
}
.service-card.light .service-card-desc {
    color: rgb(0 0 0 / 55%);
}
.service-card.light:hover .service-icon-wrap{
    background: rgb(255 255 255 / 35%);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card-hover);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}

.service-card:hover {
  border-color: rgba(37,99,235,0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.2);
}

.service-card:hover::before { opacity: 0.07; }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--trans-base);
}

.service-card:hover .service-icon-wrap {
  background: rgba(37,99,235,0.35);
  border-color: rgba(37,99,235,0.6);
}

.service-card-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.service-card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.s-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-blue-light);
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.services-footer-strip {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.strip-stat {
  text-align: center;
}

.strip-stat-value {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.strip-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ── How It Works ───────────────────────────────────────── */
#how-it-works {
  background: var(--clr-bg);
  padding: 100px 0;
  position: relative;
}

.hiw-step {
  position: relative;
}

.hiw-step-inner {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  transition: var(--trans-base);
  position: relative;
  overflow: hidden;
}

.hiw-step-inner:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.hiw-step-num {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-blue-tint2);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.hiw-icon-wrap {
  width: 48px; height: 48px;
  background: var(--clr-blue-tint);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.hiw-title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 0.6rem;
}

.hiw-desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}

.hiw-connector {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  z-index: 2;
}

.hiw-connector svg { color: var(--clr-blue-light); }

.hiw-timeline {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 4.5rem auto 0;
    padding: 2rem 2.5rem;
    background: var(--clr-blue-tint);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-xl);
    max-width: 940px;
}

.hiw-timeline-icon {
  width: 48px; height: 48px;
  background: var(--grad-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.hiw-timeline-content h4 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 0.35rem;
}

.hiw-timeline-content p {
  color: var(--clr-text-muted);
  margin: 0;
}

/* ── Pricing ────────────────────────────────────────────── */
#pricing {
  background: var(--grad-pricing);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.pricing-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  top: -100px; right: 10%;
}

.pricing-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
  bottom: -80px; left: 5%;
}

.billing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 6px;
}

.billing-opt {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--trans-fast);
}

.billing-opt.active {
  background: var(--clr-blue);
  color: #fff;
}

.save-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: rgba(16,185,129,0.75);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  margin-left: 4px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: var(--trans-base);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
  transform: scale(1.025);
}

.pricing-card:hover:not(.featured) {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}

.plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-blue);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.35rem;
}

.plan-name {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.pricing-card:not(.featured) .plan-name { color: #fff; }
.pricing-card.featured .plan-name       { color: var(--clr-navy); }

.plan-desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-card:not(.featured) .plan-desc { color: rgba(255,255,255,0.5); }
.pricing-card.featured .plan-desc       { color: var(--clr-text-muted); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.75rem;
}

.price-currency {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.price-amount {
  font-family: var(--ff-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 2px;
}

.pricing-card:not(.featured) .price-currency,
.pricing-card:not(.featured) .price-amount,
.pricing-card:not(.featured) .price-period { color: #fff; }

.pricing-card.featured .price-currency,
.pricing-card.featured .price-amount { color: var(--clr-navy); }
.pricing-card.featured .price-period { color: var(--clr-text-muted); }

.plan-divider {
  height: 1px;
  margin-bottom: 1.5rem;
}

.pricing-card:not(.featured) .plan-divider { background: rgba(255,255,255,0.1); }
.pricing-card.featured .plan-divider       { background: var(--clr-border); }

.plan-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 200px;
    overflow-y: auto;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.pricing-card:not(.featured) .plan-features li { color: rgba(255,255,255,0.8); }
.pricing-card.featured .plan-features li       { color: var(--clr-text); }

.feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pricing-card.featured .feat-check { background: var(--clr-blue-tint); }
.pricing-card:not(.featured) .feat-check { background: rgba(37,99,235,0.2); }

.btn-plan-featured {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--grad-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--trans-base);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  cursor: pointer;
}

.btn-plan-featured:hover {
  box-shadow: 0 12px 36px rgba(37,99,235,0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-plan-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--trans-base);
  cursor: pointer;
}

.btn-plan-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ── FAQ ────────────────────────────────────────────────── */

.faq-accordion .accordion-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--trans-base);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: var(--shadow-card);
}

.faq-accordion .accordion-button {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-navy);
  background: transparent;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
  letter-spacing: -0.01em;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '';
  width: 20px; height: 20px;
  border: 1.5px solid var(--clr-border);
  border-radius: 50%;
  background-color: var(--clr-bg);
  transition: var(--trans-base);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  border-color: var(--clr-blue);
  background-color: var(--clr-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E");
  transform: none;
}

.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  padding: 1rem 1.4rem;
}

.faq-aside {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: #fff;
  position: sticky;
  top: 90px;
}

.faq-aside-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.faq-aside h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.faq-aside p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-aside-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.faq-aside-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}

.faq-aside-link:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ── Support CTA ────────────────────────────────────────── */
#support-cta {
  background: var(--grad-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 70%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}

.cta-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.12), transparent 65%);
  border-radius: inherit;
  pointer-events: none;
}

.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.cta-trust-item svg { color: rgba(255,255,255,0.4); }

/* ── Footer ─────────────────────────────────────────────── */
#footer {
  background: #080E1D;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 0;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-heading {
      font-family: var(--ff-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a, .footer-links li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans-fast);
}

.footer-links a:hover { color: var(--clr-blue-light); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--trans-fast);
}

.social-btn:hover {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  color: #fff;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--trans-fast);
}

.footer-legal a:hover { color: var(--clr-blue-light); }

/* ── Scroll Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  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; }
.section-gap{
    padding: 100px 0;
}
/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-float-1, .hero-float-2 { display: none; }
  .pricing-card.featured { transform: scale(1); }
  .hiw-connector { display: none; }
  .services-footer-strip { justify-content: center; }
}

@media (max-width: 767px) {
  #hero { padding: 110px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 1rem; }
  .hero-stat-sep { display: none; }
  .cta-inner { padding: 2.5rem 1.5rem; }
  .faq-aside { position: static; }
  .trusted-logos { gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}



    /* ----- ANIMATED SVG BACKGROUND CONTAINER ----- */
    .bg-layer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .bg-layer svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* ----- MAIN SECTION WRAPPER ----- */
    .build-section {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      backdrop-filter: blur(2px);
    }

    /* ----- TYPOGRAPHY & HEADER ----- */
    .header-container {
      text-align: center;
      margin-bottom: 4.5rem;
      position: relative;
    }

    .premium-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(59, 109, 240, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(59, 109, 240, 0.25);
      border-radius: 100px;
      padding: 0.5rem 1.5rem;
      margin-bottom: 1.8rem;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      color: #b4c8ff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--soft-cyan);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--soft-cyan);
      display: inline-block;
    }

    h1 {
      font-size: clamp(2.8rem, 8vw, 4.8rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.2rem;
      background: linear-gradient(180deg, #ffffff 0%, #c0d0f0 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
    }

    .subtitle {
      font-size: 1.25rem;
      color: var(--text-secondary);
      max-width: 680px;
      margin: 0 auto;
      font-weight: 400;
      letter-spacing: -0.01em;
      backdrop-filter: blur(4px);
    }

    /* ----- GRID LAYOUT (3x2 desktop) ----- */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      align-items: stretch;
      margin-top: 1rem;
    }

    /* ----- PREMIUM GLASS CARD ----- */
    .glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-radius: var(--card-radius);
      padding: 2.2rem 1.8rem 2rem;
      position: relative;
      border: 1px solid var(--glass-border);
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transition: all var(--transition-smooth);
      transform-style: preserve-3d;
      perspective: 1200px;
      display: flex;
      flex-direction: column;
      color: var(--text-primary);
      overflow: hidden;
      will-change: transform, box-shadow;
    }

    /* animated gradient border beam */
    .glass-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(94, 234, 212, 0.5), rgba(59, 109, 240, 0.2) 60%, transparent 80%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      transition: opacity 0.3s;
      opacity: 0.7;
    }

    .glass-card:hover::before {
      opacity: 1;
    }

    /* Inner soft reflection */
    .glass-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
      pointer-events: none;
      border-radius: inherit;
    }

    /* Card content wrapper */
    .card-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .icon-wrapper {
      width: 54px;
      height: 54px;
      margin-bottom: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      position: relative;
    }

    .icon-wrapper svg {
      width: 32px;
      height: 32px;
      filter: drop-shadow(0 6px 10px rgba(0, 160, 255, 0.4));
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: 550;
      letter-spacing: -0.3px;
      margin-bottom: 0.75rem;
      color: #f0f4ff;
    }

    .card-desc {
      font-size: 0.98rem;
      line-height: 1.6;
      color: #b0c3e0;
      margin-top: 0.25rem;
      flex: 1;
    }

    /* ----- RESPONSIVE BREAKPOINTS ----- */
    @media (max-width: 1024px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
      }
    }

    @media (max-width: 640px) {
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      body {
        padding: 1.5rem 1rem;
      }
      .glass-card {
        padding: 1.8rem 1.5rem;
      }
    }

    /* ----- MICRO INTERACTIONS & STAGGER ----- */
    .glass-card {
      opacity: 0;
      transform: translateY(35px);
      animation: cardReveal 0.8s cubic-bezier(0.15, 0.85, 0.3, 1.05) forwards;
    }

    @keyframes cardReveal {
      0% { opacity: 0; transform: translateY(35px); filter: blur(8px); }
      100% { opacity: 1; transform: translateY(0); filter: blur(0); }
    }

    .glass-card:nth-child(1) { animation-delay: 0.05s; }
    .glass-card:nth-child(2) { animation-delay: 0.15s; }
    .glass-card:nth-child(3) { animation-delay: 0.25s; }
    .glass-card:nth-child(4) { animation-delay: 0.35s; }
    .glass-card:nth-child(5) { animation-delay: 0.45s; }
    .glass-card:nth-child(6) { animation-delay: 0.55s; }

    /* hover lift & 3d tilt applied via JS inline styles mainly */
    .glass-card:hover {
      box-shadow: 0 35px 55px -15px rgba(0, 20, 60, 0.9), 0 0 0 1px rgba(94, 234, 212, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
      transform: translateY(-6px) scale(1.01);
      transition: all 0.35s ease;
    }

    /* subtle moving glow on hover handled by JS */



.process-section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.process-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-section .section-heading {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f0f3fa;
  margin: 1.8rem 0 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #c0d0f0 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

.process-section .section-subtitle {
  font-size: 1.2rem;
  color: #a0b3d9;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.timeline-svg {
  width: 100%;
  height: 100%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.process-step {
  padding: 1.8rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-marker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b6df0, #5eead4);
  box-shadow: 0 0 16px rgba(94, 234, 212, 0.5);
  flex-shrink: 0;
}

.step-number {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #5eead4;
  opacity: 0.8;
}

.process-step .icon-wrapper {
  margin-bottom: 1.2rem;
}

.process-step .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step .card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b0c3e0;
}

.anim-stroke-process {
  stroke-dasharray: 45;
  stroke-dashoffset: 90;
  animation: processDrawStroke 3.2s infinite alternate ease-in-out;
}

.anim-stroke-process-delayed {
  stroke-dasharray: 35;
  stroke-dashoffset: 70;
  animation: processDrawStroke 3.5s 0.5s infinite alternate ease-in-out;
}

@keyframes processDrawStroke {
  0% { stroke-dashoffset: 80; opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

#timelinePath {
  animation: drawTimelineLine 2s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawTimelineLine {
  to { stroke-dashoffset: 0; }
}

.timeline-node {
  animation: fadeInNode 0.6s ease-out forwards;
}

.timeline-node:nth-child(2) { animation-delay: 0.6s; }
.timeline-node:nth-child(3) { animation-delay: 0.85s; }
.timeline-node:nth-child(4) { animation-delay: 1.1s; }
.timeline-node:nth-child(5) { animation-delay: 1.35s; }
.timeline-node:nth-child(6) { animation-delay: 1.6s; }
.timeline-node:nth-child(7) { animation-delay: 1.85s; }

@keyframes fadeInNode {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

.process-bg-extension {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.process-bg-extension svg {
  width: 100%;
  height: 100%;
}

.process-aurora-anim {
  animation: processAuroraDrift 22s infinite alternate ease-in-out;
}

.process-aurora-anim-reverse {
  animation: processAuroraDriftReverse 25s infinite alternate ease-in-out;
}

.process-aurora-anim-slow {
  animation: processAuroraDrift 30s infinite alternate-reverse ease-in-out;
}

@keyframes processAuroraDrift {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(20px, -18px) scale(1.04); }
}

@keyframes processAuroraDriftReverse {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(-22px, 15px) scale(1.03); }
}

.process-float-particle {
  animation: processParticleFloat 6s infinite ease-in-out;
}

.process-float-particle-delayed {
  animation: processParticleFloat 6.5s 2s infinite ease-in-out;
}

@keyframes processParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.18; }
  25% { transform: translateY(-15px) translateX(8px); opacity: 0.3; }
  50% { transform: translateY(-8px) translateX(15px); opacity: 0.2; }
  75% { transform: translateY(-20px) translateX(5px); opacity: 0.28; }
}

@media (max-width: 1200px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-line-container {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-section {
    padding: 4rem 1rem;
  }
}


.solutions-section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.solutions-section .section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.solutions-section .section-heading {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f0f3fa;
  margin: 1.8rem 0 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #c0d0f0 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

.solutions-section .section-subtitle {
  font-size: 1.2rem;
  color: #a0b3d9;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.solution-card {
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.solution-card .icon-wrapper {
  margin-bottom: 1.4rem;
}

.solution-card .card-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.solution-card .card-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b0c3e0;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #b8c8e8;
  background: rgba(59, 109, 240, 0.07);
  border: 1px solid rgba(59, 109, 240, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(59, 109, 240, 0.16);
  border-color: rgba(94, 234, 212, 0.3);
  color: #dce4ff;
  transform: translateY(-1px);
}

.anim-stroke-solution {
  stroke-dasharray: 50;
  stroke-dashoffset: 100;
  animation: solutionDrawStroke 3s infinite alternate ease-in-out;
}

.anim-stroke-solution-delayed {
  stroke-dasharray: 40;
  stroke-dashoffset: 80;
  animation: solutionDrawStroke 3.3s 0.6s infinite alternate ease-in-out;
}

@keyframes solutionDrawStroke {
  0% { stroke-dashoffset: 80; opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

.solutions-bg-extension {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.solutions-bg-extension svg {
  width: 100%;
  height: 100%;
}

.sol-aurora-anim {
  animation: solAuroraDrift 20s infinite alternate ease-in-out;
}

.sol-aurora-anim-reverse {
  animation: solAuroraDriftReverse 23s infinite alternate ease-in-out;
}

.sol-aurora-anim-slow {
  animation: solAuroraDrift 28s infinite alternate-reverse ease-in-out;
}

@keyframes solAuroraDrift {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(18px, -12px) scale(1.03); }
}

@keyframes solAuroraDriftReverse {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(-20px, 10px) scale(1.02); }
}

.sol-float-particle {
  animation: solParticleFloat 7s infinite ease-in-out;
}

.sol-float-particle-delayed {
  animation: solParticleFloat 7.5s 2.5s infinite ease-in-out;
}

@keyframes solParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.18; }
  25% { transform: translateY(-18px) translateX(6px); opacity: 0.28; }
  50% { transform: translateY(-10px) translateX(12px); opacity: 0.2; }
  75% { transform: translateY(-22px) translateX(3px); opacity: 0.26; }
}

.sol-flow-path {
  animation: solFlowDash 6s linear infinite;
  stroke-dashoffset: 25;
}

.sol-flow-path-delayed {
  animation: solFlowDash 6.5s 1.5s linear infinite;
  stroke-dashoffset: 20;
}

@keyframes solFlowDash {
  to { stroke-dashoffset: -25; }
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solutions-section {
    padding: 4rem 1rem;
  }
}

.approach-section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.approach-section .section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.approach-section .section-heading {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f0f3fa;
  margin: 1.8rem 0 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #c0d0f0 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

.approach-section .section-subtitle {
  font-size: 1.2rem;
  color: #a0b3d9;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.approach-card {
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.approach-card .icon-wrapper {
  margin-bottom: 1.4rem;
}

.approach-card .card-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.approach-card .card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #b0c3e0;
}

.anim-stroke-approach {
  stroke-dasharray: 50;
  stroke-dashoffset: 100;
  animation: approachDrawStroke 3.4s infinite alternate ease-in-out;
}

.anim-stroke-approach-delayed {
  stroke-dasharray: 40;
  stroke-dashoffset: 80;
  animation: approachDrawStroke 3.6s 0.7s infinite alternate ease-in-out;
}

@keyframes approachDrawStroke {
  0% { stroke-dashoffset: 85; opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

.approach-bg-extension {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.approach-bg-extension svg {
  width: 100%;
  height: 100%;
}

.app-aurora-anim {
  animation: appAuroraDrift 21s infinite alternate ease-in-out;
}

.app-aurora-anim-reverse {
  animation: appAuroraDriftReverse 24s infinite alternate ease-in-out;
}

.app-aurora-anim-slow {
  animation: appAuroraDrift 29s infinite alternate-reverse ease-in-out;
}

@keyframes appAuroraDrift {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(22px, -15px) scale(1.03); }
}

@keyframes appAuroraDriftReverse {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(-18px, 12px) scale(1.02); }
}

.app-float-particle {
  animation: appParticleFloat 7s infinite ease-in-out;
}

.app-float-particle-delayed {
  animation: appParticleFloat 7.5s 2s infinite ease-in-out;
}

@keyframes appParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.18; }
  25% { transform: translateY(-16px) translateX(7px); opacity: 0.28; }
  50% { transform: translateY(-9px) translateX(14px); opacity: 0.2; }
  75% { transform: translateY(-20px) translateX(4px); opacity: 0.26; }
}

.app-flow-path {
  animation: appFlowDash 7s linear infinite;
  stroke-dashoffset: 28;
}

.app-flow-path-delayed {
  animation: appFlowDash 7.5s 2s linear infinite;
  stroke-dashoffset: 22;
}

@keyframes appFlowDash {
  to { stroke-dashoffset: -28; }
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-section {
    padding: 4rem 1rem;
  }
}


.faq-section {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(10, 18, 36, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 109, 240, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
  border-color: rgba(94, 234, 212, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  background: rgba(10, 18, 36, 0.65);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #e0e8ff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #f0f4ff;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5eead4;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #a0b3d9;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.faq-aside-card {
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 2rem;
}

.faq-aside-card .icon-wrapper {
  margin-bottom: 1.2rem;
}

.faq-aside-card .card-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.faq-aside-card .card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b0c3e0;
  margin-bottom: 1.5rem;
}

.faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.faq-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(59, 109, 240, 0.06);
  border: 1px solid rgba(59, 109, 240, 0.15);
  color: #c0d0f0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.faq-contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #5eead4;
}

.faq-contact-link:hover {
  background: rgba(59, 109, 240, 0.12);
  border-color: rgba(94, 234, 212, 0.3);
  color: #e0e8ff;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: rgba(59, 109, 240, 0.12);
  border: 1px solid rgba(59, 109, 240, 0.25);
  color: #c0d0f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
}

.faq-cta svg {
  width: 14px;
  height: 14px;
}

.faq-cta:hover {
  background: rgba(59, 109, 240, 0.2);
  border-color: rgba(94, 234, 212, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.faq-bg-extension {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.faq-bg-extension svg {
  width: 100%;
  height: 100%;
}

.faq-aurora-anim {
  animation: faqAuroraDrift 20s infinite alternate ease-in-out;
}

.faq-aurora-anim-reverse {
  animation: faqAuroraDriftReverse 23s infinite alternate ease-in-out;
}

@keyframes faqAuroraDrift {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(15px, -10px) scale(1.03); }
}

@keyframes faqAuroraDriftReverse {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(-18px, 8px) scale(1.02); }
}

.faq-float-particle {
  animation: faqParticleFloat 6s infinite ease-in-out;
}

.faq-float-particle-delayed {
  animation: faqParticleFloat 6.5s 2s infinite ease-in-out;
}

@keyframes faqParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.17; }
  50% { transform: translateY(-12px) translateX(5px); opacity: 0.25; }
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-aside-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 4rem 1rem;
  }
}

/* ========================================
   FAQ SECTION - UNIQUE CLASSES (orch-faq-*)
   ======================================== */

.orch-faq {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.orch-faq-container {
  position: relative;
  z-index: 2;
}

.orch-faq-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.orch-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 109, 240, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 109, 240, 0.25);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #b4c8ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.orch-faq-badge-dot {
  width: 8px;
  height: 8px;
  background: #5eead4;
  border-radius: 50%;
  box-shadow: 0 0 12px #5eead4;
  display: inline-block;
}

.orch-faq-heading {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #c0d0f0 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

.orch-faq-subtitle {
  font-size: 1.2rem;
  color: #a0b3d9;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* FAQ Grid Layout */
.orch-faq-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* FAQ Accordion Cards */
.orch-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.orch-faq-card {
  background: rgba(10, 18, 36, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.35s ease;
}

.orch-faq-card:hover {
  border-color: rgba(59, 109, 240, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.orch-faq-card.active {
  border-color: rgba(94, 234, 212, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background: rgba(10, 18, 36, 0.65);
}

.orch-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: #d0d8f0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.orch-faq-card.active .orch-faq-trigger {
  color: #f0f4ff;
}

.orch-faq-trigger-text {
  flex: 1;
}

.orch-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5eead4;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.7;
}

.orch-faq-card.active .orch-faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.orch-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1), padding 0.45s ease;
}

.orch-faq-card.active .orch-faq-panel {
  max-height: 250px;
}

.orch-faq-panel-text {
  padding: 0 1.6rem 1.4rem;
  color: #a0b3d9;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* FAQ Aside Card */
.orch-faq-aside-col {
  position: relative;
}

.orch-faq-aside {
  background: rgba(10, 18, 36, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 2rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.orch-faq-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(circle at var(--faq-mouse-x, 50%) var(--faq-mouse-y, 50%), rgba(94, 234, 212, 0.4), rgba(59, 109, 240, 0.15) 60%, transparent 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.orch-faq-aside:hover::before {
  opacity: 1;
}

.orch-faq-aside::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.orch-faq-aside-icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.orch-faq-aside-icon-wrap svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 6px 10px rgba(0, 160, 255, 0.4));
}

.orch-faq-aside-svg-anim {
  stroke-dasharray: 60;
  stroke-dashoffset: 120;
  animation: orchFaqSvgDraw 3s infinite alternate ease-in-out;
}

.orch-faq-aside-svg-dots {
  animation: orchFaqSvgDots 2.5s infinite alternate ease-in-out;
}

@keyframes orchFaqSvgDraw {
  0% { stroke-dashoffset: 100; opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes orchFaqSvgDots {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.orch-faq-aside-title {
  font-size: 1.3rem;
  font-weight: 550;
  letter-spacing: -0.3px;
  margin-bottom: 0.6rem;
  color: #f0f4ff;
  position: relative;
  z-index: 2;
}

.orch-faq-aside-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b0c3e0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.orch-faq-aside-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.orch-faq-aside-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.85rem;
  background: rgba(59, 109, 240, 0.06);
  border: 1px solid rgba(59, 109, 240, 0.15);
  color: #c0d0f0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.orch-faq-aside-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #5eead4;
}

.orch-faq-aside-link:hover {
  background: rgba(59, 109, 240, 0.14);
  border-color: rgba(94, 234, 212, 0.35);
  color: #e0e8ff;
  transform: translateX(2px);
}

.orch-faq-aside-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  background: rgba(59, 109, 240, 0.1);
  border: 1px solid rgba(59, 109, 240, 0.25);
  color: #c0d0f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.orch-faq-aside-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.orch-faq-aside-cta:hover {
  background: rgba(59, 109, 240, 0.2);
  border-color: rgba(94, 234, 212, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 109, 240, 0.2);
}

.orch-faq-aside-cta:hover svg {
  transform: translateX(3px);
}

/* Background */
.orch-faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orch-faq-bg svg {
  width: 100%;
  height: 100%;
}

.orch-faq-bg-aurora-1 {
  animation: orchFaqAurora1 20s infinite alternate ease-in-out;
}

.orch-faq-bg-aurora-2 {
  animation: orchFaqAurora2 23s infinite alternate ease-in-out;
}

@keyframes orchFaqAurora1 {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(15px, -10px) scale(1.03); }
}

@keyframes orchFaqAurora2 {
  0% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(-18px, 8px) scale(1.02); }
}

.orch-faq-particle-1 {
  animation: orchFaqParticle1 6s infinite ease-in-out;
}

.orch-faq-particle-2 {
  animation: orchFaqParticle1 6.5s 2s infinite ease-in-out;
}

@keyframes orchFaqParticle1 {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.17; }
  50% { transform: translateY(-12px) translateX(5px); opacity: 0.25; }
}

/* Responsive */
@media (max-width: 1024px) {
  .orch-faq-grid {
    grid-template-columns: 1fr;
  }
  .orch-faq-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .orch-faq {
    padding: 4rem 1rem;
  }
  .orch-faq-trigger {
    padding: 1.1rem 1.2rem;
    font-size: 0.9rem;
  }
  .orch-faq-panel-text {
    padding: 0 1.2rem 1.1rem;
  }
}

/* ========================================
   FOOTER - UNIQUE CLASSES (orch-footer-*)
   ======================================== */

.orch-footer {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.orch-footer-container {
  position: relative;
  z-index: 2;
}

.orch-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.orch-footer-logo {
  display: inline-flex;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.orch-footer-logo-img {
  max-height: 36px;
  width: auto;
  filter: brightness(1.1);
}

.orch-footer-brand-text {
  color: #a0b3d9;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.orch-footer-social {
  display: flex;
  gap: 0.75rem;
}

.orch-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(59, 109, 240, 0.06);
  border: 1px solid rgba(59, 109, 240, 0.15);
  color: #a0b3d9;
  transition: all 0.3s ease;
  text-decoration: none;
}

.orch-footer-social-link svg {
  width: 16px;
  height: 16px;
}

.orch-footer-social-link:hover {
  background: rgba(59, 109, 240, 0.15);
  border-color: rgba(94, 234, 212, 0.3);
  color: #5eead4;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 109, 240, 0.15);
}

.orch-footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c0d0f0;
  margin-bottom: 1.2rem;
}

.orch-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.orch-footer-links li {
  margin: 0;
}

.orch-footer-links a {
  color: #8899bb;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.orch-footer-links a:hover {
  color: #5eead4;
  transform: translateX(2px);
}

.orch-footer-links li strong {
  color: #c0d0f0;
  font-weight: 600;
}

.orch-footer-contact li {
  color: #8899bb;
  font-size: 0.88rem;
  line-height: 1.6;
}

.orch-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8899bb;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.orch-footer-contact-link:hover {
  color: #5eead4;
}

.orch-footer-contact-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.7;
}

.orch-footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.orch-footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 109, 240, 0.2) 20%, rgba(94, 234, 212, 0.3) 50%, rgba(59, 109, 240, 0.2) 80%, transparent 100%);
  margin-bottom: 1.5rem;
}

.orch-footer-copy {
  color: #6a7fa0;
  font-size: 0.82rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.orch-footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orch-footer-bg svg {
  width: 100%;
  height: 100%;
}

.orch-footer-bg-aurora {
  animation: orchFooterAurora 18s infinite alternate ease-in-out;
}

@keyframes orchFooterAurora {
  0% { transform: translate(0px, 0px) scale(1); opacity: 0.8; }
  100% { transform: translate(10px, -8px) scale(1.03); opacity: 1; }
}

@media (max-width: 1200px) {
  .orch-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .orch-footer-brand {
    grid-column: 1 / -1;
  }
  .orch-footer-brand-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .orch-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .orch-footer {
    padding: 4rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .orch-footer-grid {
    grid-template-columns: 1fr;
  }
  .orch-footer {
    padding: 3rem 1rem 1rem;
  }
}

        /* =========================================
           ALL CSS STARTS HERE
           ========================================= */
        
        /* Reset & Base */
       
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        /* --- NAVIGATION --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
            padding: 6px;
            border-radius: 8px;
            margin-right: 10px;
            color: white;
            font-size: 0.8rem;
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #b0b0c0;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: white;
        }

        .cta-btn {
            text-decoration: none;
            background: linear-gradient(90deg, #00d2ff, #8e44ad);
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
        }

        /* --- HERO CONTENT --- */
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
            padding: 40px 0;
        }

        /* LEFT SIDE (TEXT) */
        .text-side {
            max-width: 50%;
            padding-right: 40px;
        }

        .tagline {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: #a0a0c0;
            margin-bottom: 25px;
        }

        .tagline i {
            color: #4facfe;
            margin-right: 8px;
            font-size: 0.6rem;
        }

        h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(90deg, #00d2ff, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-side p {
            color: #b0b0c0;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 30px;
        }

        .button-group {
            display: flex;
            gap: 15px;
        }

        .primary-btn {
            text-decoration: none;
            background: linear-gradient(90deg, #00d2ff, #8e44ad);
            color: white;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .primary-btn:hover {
            box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
            transform: translateY(-2px);
        }

        .secondary-btn {
            text-decoration: none;
            background: transparent;
            color: white;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .secondary-btn:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.4);
        }

        /* RIGHT SIDE (IMAGE) */
        .visual-side {
            width: 50%;
            height: 500px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 
           IMPORTANT: This is where you place your client's image.
           If they provided a transparent PNG, it will fit perfectly here.
        */
        .diagram-image {
            width: 100%;
            height: 100%;
            /* REPLACE THE URL BELOW WITH YOUR CLIENT'S IMAGE PATH */
            background-image: url('images/hero.png'); 
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            /* If the image doesn't have the glow, you can add a blue/purple glow behind it like this: */
            /* filter: drop-shadow(0 0 40px rgba(0, 210, 255, 0.2)); */
        }

        /* --- BOTTOM FEATURES BAR --- */
        .features-bar {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 40px;
            background: rgba(10, 10, 30, 0.5);
            padding: 30px 20px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(142, 68, 173, 0.1));
            border: 1px solid rgba(0, 210, 255, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            color: #4facfe;
            font-size: 1.1rem;
        }

        .feature-text h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .feature-text p {
            font-size: 0.75rem;
            color: #8888a0;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            .features-bar { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            .hero-content { flex-direction: column; text-align: center; gap: 40px; }
            .text-side { max-width: 100%; padding-right: 0; }
            .text-side p { margin: 0 auto 30px auto; }
            .button-group { justify-content: center; flex-wrap: wrap; }
            .visual-side { width: 100%; height: 350px; }
            .features-bar { grid-template-columns: 1fr 1fr; text-align: center; }
            .feature-item { flex-direction: column; align-items: center; }
            .nav-links { display: none; /* Hide nav links for mobile to keep it clean */ }
        }


/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Core Palette */
  --clr-bg:           #F7F9FC;
  --clr-bg-alt:       #EEF3FB;
  --clr-dark:         #0C1628;
  --clr-dark-2:       #111D35;
  --clr-navy:         #1B2B4B;
  --clr-blue:         #2563EB;
  --clr-blue-mid:     #3B82F6;
  --clr-blue-light:   #60A5FA;
  --clr-blue-tint:    #E8F0FE;
  --clr-blue-tint2:   #DBEAFE;
  --clr-accent:       #0EA5E9;
  --clr-text:         #1E293B;
  --clr-text-muted:   #64748B;
  --clr-border:       #E2E8F0;
  --clr-white:        #FFFFFF;

  /* Gradients */
  --grad-hero:        linear-gradient(135deg, #F7F9FC 0%, #EEF3FB 50%, #DBEAFE 100%);
  --grad-blue:        linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #0EA5E9 100%);
  --grad-dark:        linear-gradient(160deg, #0C1628 0%, #111D35 60%, #0F2044 100%);
  --grad-pricing:     linear-gradient(160deg, #0F172A 0%, #1B2B4B 100%);
  --grad-card-hover:  linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 100%);
  --grad-badge:       linear-gradient(90deg, #2563EB, #0EA5E9);

  /* Typography */
  --ff-heading:       'Bricolage Grotesque', sans-serif;
  --ff-body:          'Inter', sans-serif;

  /* Radii */
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        28px;
  --radius-pill:      100px;

  /* Shadows */
  --shadow-card:      0 4px 24px rgba(37, 99, 235, 0.08);
  --shadow-hover:     0 12px 40px rgba(37, 99, 235, 0.18);
  --shadow-cta:       0 8px 32px rgba(37, 99, 235, 0.28);

  /* Transitions */
  --trans-base:       all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:       all 0.18s ease;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* 🛑 THIS IS THE FIX: Only apply this light theme to your existing site sections, NOT the hero */
body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg); /* This is light blue, which is fine for your other sections */
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utility Classes ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.section-label.light {
  color: var(--clr-blue-light);
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.25);
}
.section-label svg { flex-shrink: 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 1rem;
}
.section-title.on-dark { color: var(--clr-white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 560px;
}
.section-desc.on-dark { color: rgba(255,255,255,0.65); }
.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-blue);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  box-shadow: var(--shadow-cta);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37,99,235,0.35);
  color: #fff;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-navy);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-ghost:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--trans-base);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── YOUR EXISTING SITE STYLES BELOW (Nav, Pricing, FAQ, Sections) ── */
#mainNav {
  background: rgba(247, 249, 252, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  padding: 0;
  transition: var(--trans-base);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(247, 249, 252, 0.96);
  border-bottom-color: var(--clr-border);
  box-shadow: 0 2px 20px rgba(37,99,235,0.07);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: -0.03em;
  max-width: 185px
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--grad-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--clr-blue);
  background: var(--clr-blue-tint);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--trans-fast);
}
.nav-login:hover { color: var(--clr-blue); }
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-blue);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: var(--trans-base);
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
  color: #fff;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--clr-navy); border-radius: 2px;
  transition: var(--trans-base);
}
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(247,249,252,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.25rem 1.5rem 1.5rem;
  z-index: 999;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu ul {
  list-style: none; margin: 0 0 1rem; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu ul a {
  display: block; font-size: 0.9rem; font-weight: 500;
  color: var(--clr-text); padding: 10px 12px;
  border-radius: var(--radius-sm); transition: var(--trans-fast);
}
.mobile-menu ul a:hover { color: var(--clr-blue); background: var(--clr-blue-tint); }
.mobile-menu-actions { display: flex; gap: 0.75rem; }


/* ==========================================================
   🛑 YOUR HERO SECTION OVERRIDE STARTS HERE 🛑
   This creates a dark background specifically for the hero 
   so it doesn't use the light theme of your `body`.
   ========================================================== */

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0; /* Reduced bottom padding because your bottom bar is dark anyway */
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* Force Dark Background for Hero ONLY */
    background-color: #050511; 
    color: white;
}

/* Override global body font for hero */
.hero-container * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}
.logo-icon {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    padding: 6px;
    border-radius: 8px;
    margin-right: 10px;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #b0b0c0;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: white;
}
.cta-btn {
    text-decoration: none;
    background: linear-gradient(90deg, #00d2ff, #8e44ad);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

/* --- HERO CONTENT --- */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 20px 0;
}

/* LEFT SIDE (TEXT) */
.text-side {
    max-width: 50%;
    padding-right: 40px;
}
.tagline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #a0a0c0;
    margin-bottom: 25px;
}
.tagline i {
    color: #4facfe;
    margin-right: 8px;
    font-size: 0.6rem;
}
h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}
.gradient-text {
    background: linear-gradient(90deg, #00d2ff, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-side p {
    color: #b0b0c0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
}
.button-group {
    display: flex;
    gap: 15px;
}
.primary-btn {
    text-decoration: none;
    background: linear-gradient(90deg, #00d2ff, #8e44ad);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.primary-btn:hover {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
}
.secondary-btn {
    text-decoration: none;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.secondary-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

/* RIGHT SIDE (IMAGE) */
.visual-side {
    width: 50%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.diagram-image {
    width: 100%;
    height: 100%;
    background-image: url('images/hero.png'); /* YOUR CLIENT IMAGE */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- BOTTOM FEATURES BAR --- */
.features-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
    background: rgba(10, 10, 30, 0.5);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.icon-box {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(142, 68, 173, 0.1));
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0; color: #4facfe; font-size: 1.1rem;
}
.feature-text h4 {
    font-size: 0.9rem; margin-bottom: 4px; color: white;
}
.feature-text p {
    font-size: 0.75rem; color: #8888a0;
}

/* --- HERO RESPONSIVENESS --- */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .features-bar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hero-container { padding: 20px 20px; }
    .hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .text-side { max-width: 100%; padding-right: 0; }
    .text-side p { margin: 0 auto 30px auto; }
    .button-group { justify-content: center; flex-wrap: wrap; }
    .visual-side { width: 100%; height: 350px; }
    .features-bar { grid-template-columns: 1fr 1fr; text-align: center; }
    .feature-item { flex-direction: column; align-items: center; }
    .nav-links { display: none; }
}


/* ==========================================================
   PASTE YOUR EXISTING CSS SECTIONS BELOW (Build, Process, Pricing, etc)
   ========================================================== */

/* ... (Place all your existing CSS for .build-section, #services, .pricing-card, .orch-faq, etc HERE) ... */


/* ── Scroll Animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { 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 ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 767px) {
  .cta-inner { padding: 2.5rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

    /* =========================================
       🛑 PART 1: HERO BANNER DARK THEME 🛑
       ========================================= */
    
    /* Reset & Base for Hero */
   .hero-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 40px 0 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-color: #050511;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center center;
}

 .hero-container h1{font-size: 50px;}
    /* --- NAVIGATION (Only applied if you have nav inside hero, 
       but if header.html is external, this won't hurt) --- */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin-bottom: 20px;
    }
    .logo {
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: white;
    }
    .logo-icon {
        background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
        padding: 6px;
        border-radius: 8px;
        margin-right: 10px;
        color: white;
        font-size: 0.8rem;
        box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    }
    .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
    }
    .nav-links a {
        text-decoration: none;
        color: #b0b0c0;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    .nav-links a:hover, .nav-links a.active { color: white; }
    .cta-btn {
        text-decoration: none;
        background: linear-gradient(90deg, #00d2ff, #8e44ad);
        color: white;
        padding: 10px 24px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
    }

    /* --- HERO CONTENT --- */
    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1;
        padding: 20px 0;
    }

    /* LEFT SIDE (TEXT) */
    .text-side {
        max-width: 50%;
        padding-right: 40px;
    }
    .tagline {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        letter-spacing: 2px;
        color: #a0a0c0;
        margin-bottom: 25px;
    }
    .tagline i { color: #4facfe; margin-right: 8px; font-size: 0.6rem; }
    h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 20px;
        color: white;
    }
    .gradient-text {
        background: linear-gradient(90deg, #00d2ff, #9b59b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .text-side p {
        color: #b0b0c0;
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 500px;
        margin-bottom: 30px;
    }
    .button-group { display: flex; gap: 15px; }
    .primary-btn {
        text-decoration: none;
        background: linear-gradient(90deg, #00d2ff, #8e44ad);
        color: white;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
    }
    .primary-btn:hover {
        box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
        transform: translateY(-2px);
    }
    .secondary-btn {
        text-decoration: none;
        background: transparent;
        color: white;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        border: 1px solid rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
    }
    .secondary-btn:hover {
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.4);
    }

    /* RIGHT SIDE (IMAGE) */
    .visual-side {
        width: 50%;
        height: 500px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .diagram-image {
        width: 100%;
        height: 100%;
        /* 🛑 IMPORTANT: REPLACE 'images/hero.png' WITH YOUR CLIENT'S ACTUAL IMAGE PATH */
        background-image: url('images/hero.png'); 
        background-size: cover;       /* 🛑 FIXED: Ensures image covers the whole area */
        background-position: center;  /* 🛑 FIXED: Centers the image */
        background-repeat: no-repeat;
    }

    /* --- BOTTOM FEATURES BAR --- */
    .features-bar {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 20px;
        background: rgba(10, 10, 30, 0.5);
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.05);
        backdrop-filter: blur(10px);
    }
    .feature-item { display: flex; align-items: flex-start; gap: 15px; }
    .icon-box {
        width: 48px; height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(142, 68, 173, 0.1));
        border: 1px solid rgba(0, 210, 255, 0.2);
        display: flex; justify-content: center; align-items: center;
        flex-shrink: 0; color: #4facfe; font-size: 1.1rem;
    }
    .feature-text h4 { font-size: 0.9rem; margin-bottom: 4px; color: white; }
    .feature-text p { font-size: 0.75rem; color: #8888a0; }

    /* --- HERO RESPONSIVENESS --- */
    @media (max-width: 1024px) {
        h1 { font-size: 3rem; }
        .features-bar { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
        .hero-container { padding: 20px 20px; }
        .hero-content { flex-direction: column; text-align: center; gap: 40px; }
        .text-side { max-width: 100%; padding-right: 0; }
        .text-side p { margin: 0 auto 30px auto; }
        .button-group { justify-content: center; flex-wrap: wrap; }
        .visual-side { width: 100%; height: 350px; }
        .features-bar { grid-template-columns: 1fr 1fr; text-align: center; }
        .feature-item { flex-direction: column; align-items: center; }
        .nav-links { display: none; }
    }


    /* =========================================
       🛑 PART 2: GLOBAL STYLES FOR THE REST OF YOUR PAGE 🛑
       ========================================= */
    body {
        background-color: #F7F9FC; /* Light background for rest of page */
        color: #1E293B;
        font-family: 'Inter', sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.65;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Bricolage Grotesque', sans-serif;
      line-height: 1.2;
      letter-spacing: -0.02em;
      font-weight: 700;
    }
    /* Universal Utility to ensure light theme applies after the hero */
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: #2563EB; background: #E8F0FE;
      border: 1px solid rgba(37, 99, 235, 0.2);
      padding: 6px 14px; border-radius: 100px; margin-bottom: 1.25rem;
    }
    .section-label.light {
      color: #60A5FA; background: rgba(96, 165, 250, 0.12);
      border-color: rgba(96, 165, 250, 0.25);
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
      color: #1B2B4B; margin-bottom: 1rem;
    }
    .section-title.on-dark { color: #FFFFFF; }
    .section-desc {
      font-size: 1.05rem; color: #64748B; line-height: 1.75; max-width: 560px;
    }
    .section-desc.on-dark { color: rgba(255,255,255,0.65); }
    
    .btn-primary-custom {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 100%);
      color: #fff; font-weight: 600; padding: 13px 28px;
      border-radius: 100px; border: none; cursor: pointer;
      transition: all 0.28s ease; box-shadow: 0 8px 32px rgba(37, 99, 235, 0.28);
    }
    .btn-primary-custom:hover {
      transform: translateY(-2px); box-shadow: 0 16px 48px rgba(37,99,235,0.35);
    }
    .btn-ghost-light {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: rgba(255,255,255,0.85);
      font-weight: 600; padding: 12px 24px; border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.28s ease;
    }
    .btn-ghost-light:hover {
      background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff;
    }
    
    /* Scroll Reveal */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.revealed { opacity: 1; transform: translateY(0); }




    /* =========================================
       🛑 PART 1: GLOBAL RESET & FONT 🛑
       ========================================= */
    /* Helper to override light theme when needed */
    .section-title.on-dark { color: #FFFFFF; }
    .section-desc.on-dark { color: rgba(255,255,255,0.65); }


    /* =========================================
       🛑 PART 2: BEAUTIFUL DARK HEADER STYLING 🛑
       (Overrides your header.html to blend with the Hero)
       ========================================= */
    #mainNav {
        position: absolute; /* Sits on top of the Hero background */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(5, 5, 17, 0.6); /* Semi-transparent dark blue */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0;
        transition: all 0.3s ease;
    }

    .navbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 74px;
    }

    /* Logo */
    .nav-logo img {
        max-height: 34px;
        width: auto;
        display: block;
        filter: brightness(0) invert(1); /* Makes your logo white */
        transition: filter 0.3s ease;
    }

    /* Desktop Nav Links */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        padding: 8px 18px;
        border-radius: 8px;
        transition: all 0.25s ease;
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

    /* Desktop Actions */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .nav-login {
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        padding: 8px 16px;
        border-radius: 100px;
        transition: all 0.25s ease;
    }
    .nav-login:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-cta {
        font-size: 0.85rem;
        font-weight: 600;
        color: #ffffff;
        background: linear-gradient(90deg, #00d2ff, #8e44ad);
        padding: 10px 24px;
        border-radius: 100px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(0, 210, 255, 0.25);
    }
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 210, 255, 0.4);
    }

    /* Hamburger */
    .nav-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
        background: none;
        border: none;
    }
    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    /* Mobile Menu (Hidden by default) */
    .mobile-menu {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 17, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.5rem;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    .mobile-menu.open {
        display: block;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .mobile-menu ul {
        list-style: none;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .mobile-menu ul a {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        padding: 12px 14px;
        border-radius: 8px;
        transition: all 0.25s ease;
    }
    .mobile-menu ul a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }
    .mobile-menu-actions {
        display: flex;
        gap: 12px;
    }
    .mobile-menu-actions .btn-ghost {
        display: flex;
        justify-content: center;
        background: transparent;
        color: #fff;
        font-weight: 600;
        padding: 12px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        flex: 1;
    }
    .mobile-menu-actions .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }
    .mobile-menu-actions .btn-primary-custom {
        display: flex;
        justify-content: center;
        background: linear-gradient(90deg, #00d2ff, #8e44ad);
        color: #fff;
        font-weight: 600;
        padding: 12px;
        border-radius: 100px;
        flex: 1;
    }


    /* =========================================
       🛑 PART 3: HERO BANNER DARK THEME 🛑
       ========================================= */
    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 0; /* Header sits on top, so no top padding needed */
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Pushes bottom bar to the bottom */
        position: relative;
        z-index: 1;
        overflow: hidden;
        background-color: #050511;
        color: white;
        font-family: 'Inter', sans-serif;
    }

    /* --- HERO CONTENT --- */
    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1;
        padding: 40px 0 20px;
    }

    /* LEFT SIDE (TEXT) */
    .text-side {
        max-width: 50%;
        padding-right: 40px;
    }
    .tagline {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        letter-spacing: 2px;
        color: #a0a0c0;
        margin-bottom: 25px;
    }
    .tagline i {
        color: #4facfe;
        margin-right: 8px;
        font-size: 0.6rem;
    }
    h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 20px;
        color: white;
    }
    .gradient-text {
        background: linear-gradient(90deg, #00d2ff, #9b59b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .text-side p {
        color: #b0b0c0;
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 500px;
        margin-bottom: 30px;
    }
    .button-group {
        display: flex;
        gap: 15px;
    }
    .primary-btn {
        text-decoration: none;
        background: linear-gradient(90deg, #00d2ff, #8e44ad);
        color: white;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
    }
    .primary-btn:hover {
        box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
        transform: translateY(-2px);
    }
    .secondary-btn {
        text-decoration: none;
        background: transparent;
        color: white;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
    }
    .secondary-btn:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* RIGHT SIDE (IMAGE) */
    .visual-side {
        width: 50%;
        height: 500px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .diagram-image {
        width: 100%;
        height: 100%;
        /* 🛑 IMPORTANT: REPLACE WITH YOUR CLIENT'S ACTUAL IMAGE PATH */
        background-image: url('images/hero.png');
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
    }

    /* --- BOTTOM FEATURES BAR --- */
    .features-bar {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 20px;
        background: rgba(10, 10, 30, 0.5);
        padding: 30px 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .icon-box {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(142, 68, 173, 0.1));
        border: 1px solid rgba(0, 210, 255, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        color: #4facfe;
        font-size: 1.1rem;
    }
    .feature-text h4 {
        font-size: 0.9rem;
        margin-bottom: 4px;
        color: white;
    }
    .feature-text p {
        font-size: 0.75rem;
        color: #8888a0;
    }

    /* --- HERO RESPONSIVENESS --- */
    @media (max-width: 1024px) {
        h1 {
            font-size: 3rem;
        }
        .features-bar {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 768px) {
        .hero-container {
            padding: 0 20px;
        }
        .hero-content {
            flex-direction: column-reverse;
            text-align: center;
            gap: 40px;
        }
        .text-side {
            max-width: 100%;
            padding-right: 0;
        }
        .text-side p {
            margin: 0 auto 30px auto;
        }
        .button-group {
            justify-content: center;
            flex-wrap: wrap;
        }
        .visual-side {
            width: 100%;
            height: 300px;
        }
        .features-bar {
            grid-template-columns: 1fr 1fr;
            text-align: center;
        }
        .feature-item {
            flex-direction: column;
            align-items: center;
        }

        /* Mobile Nav Overrides */
        .nav-links,
        .nav-actions {
            display: none;
        }
        .nav-hamburger {
            display: flex;
        }
    }


    /* =========================================
       🛑 PART 4: GLOBAL STYLES FOR THE REST OF YOUR PAGE 🛑
       ========================================= */
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #2563EB;
        background: #E8F0FE;
        border: 1px solid rgba(37, 99, 235, 0.2);
        padding: 6px 14px;
        border-radius: 100px;
        margin-bottom: 1.25rem;
    }
    .section-label.light {
        color: #60A5FA;
        background: rgba(96, 165, 250, 0.12);
        border-color: rgba(96, 165, 250, 0.25);
    }
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: #1B2B4B;
        margin-bottom: 1rem;
    }
    .section-desc {
        font-size: 1.05rem;
        color: #64748B;
        line-height: 1.75;
        max-width: 560px;
    }
    /* Buttons reused in global sections */
    .btn-primary-custom {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 100%);
        color: #fff;
        font-weight: 600;
        padding: 13px 28px;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        transition: all 0.28s ease;
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.28);
    }
    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 48px rgba(37, 99, 235, 0.35);
    }
    .btn-ghost-light {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 100px;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: all 0.28s ease;
    }
    .btn-ghost-light:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff;
    }
    /* Scroll Reveal */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
