/* ── 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;
}




/* ── 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; }
}
