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

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e1b4b;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

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

/* ===== LAYOUT ===== */
.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}

.section-wrapper {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  width: 100%;
}

.section-wrapper--alt {
  background-color: #f8fafc;
}

.section-wrapper--dark {
  background-color: #1e1b4b;
  color: #ffffff;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #1e1b4b;
}

.section-wrapper--dark .section-heading {
  color: #ffffff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3b82f6;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #3b82f6, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-paragraph {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.section-wrapper--dark .lead-paragraph {
  color: #c7d2fe;
}

.body-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: #475569;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid #e2e8f0;
}

.top-bar {
  background: linear-gradient(90deg, #1e1b4b, #312e81);
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.top-bar__text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #c7d2fe;
  letter-spacing: 0.01em;
}

.top-bar__cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  background: #3b82f6;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.top-bar__cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo__icon {
  width: 32px;
  height: 32px;
}

.nav-logo__text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e1b4b;
}

.nav-logo__text span {
  color: #3b82f6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #475569;
  padding: 0.35rem 0.25rem;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #1e1b4b;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e1b4b;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== BUTTONS ===== */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.primary-button:active {
  transform: translateY(0);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e1b4b;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.secondary-button:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ===== HERO ===== */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 20%, rgba(59,130,246,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(20,184,166,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #1e1b4b;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #3b82f6, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30, 27, 75, 0.12), 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-image__placeholder svg {
  opacity: 0.4;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 27, 75, 0.08);
  border-color: #cbd5e1;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card__icon--blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #2563eb;
}

.card__icon--teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0d9488;
}

.card__icon--indigo {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #4f46e5;
}

.card__icon--amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #d97706;
}

.card__icon--rose {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
  color: #e11d48;
}

.card__icon--violet {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #7c3aed;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
}

/* ===== IMAGE / MEDIA ===== */
.image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== LOGOS / SOCIAL PROOF ===== */
.logos-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 2rem 0;
  opacity: 0.5;
}

.logos-bar__item {
  font-size: 1.1rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat {
  padding: 1.5rem 1rem;
}

.stat__number {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.stat__label {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section * {
  position: relative;
  z-index: 1;
}

.cta-section .section-heading {
  color: #ffffff;
}

.cta-section .lead-paragraph {
  color: #c7d2fe;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .primary-button {
  background: #ffffff;
  color: #1e1b4b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-section .primary-button:hover {
  background: #f1f5f9;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f0e2a;
  color: #94a3b8;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-brand__name span {
  color: #3b82f6;
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #64748b;
}

.footer-col__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c7d2fe;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: #475569;
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  font-size: 0.8rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    gap: 0.5rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.6rem 0;
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .secondary-button {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
