@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

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

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

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

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

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

/* ── Header / Nav ── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0B1D3A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #FFFFFF;
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: #0B1D3A !important;
  background: #FFFFFF;
  padding: 0.6rem 1.5rem !important;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #0B1D3A !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ── Hero ── */
.page-hero {
  background: linear-gradient(165deg, #0B1D3A 0%, #132D5E 40%, #1A3A6E 70%, #1E4478 100%);
  min-height: clamp(500px, 80vh, 800px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem 6rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: #22C55E;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card-mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.mockup-name {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
}

.mockup-role {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.mockup-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.mockup-star {
  color: #FBBF24;
  font-size: 1rem;
}

.mockup-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.mockup-tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-stat {
  position: absolute;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.floating-stat-1 {
  top: -1rem;
  right: -1rem;
}

.floating-stat-2 {
  bottom: -1rem;
  left: -1rem;
}

.stat-label {
  font-size: 0.65rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #0B1D3A;
}

.stat-value.green {
  color: #16A34A;
}

/* ── Buttons ── */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #0B1D3A;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.primary-button-dark {
  background: #0B1D3A;
  color: #FFFFFF;
}

.primary-button-dark:hover {
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.3);
}

.primary-button-green {
  background: #22C55E;
  color: #FFFFFF;
}

.primary-button-green:hover {
  background: #16A34A;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.secondary-button-dark {
  color: #0B1D3A;
  border-color: #D1D5DB;
}

.secondary-button-dark:hover {
  background: #F3F4F6;
  border-color: #9CA3AF;
}

/* ── Sections ── */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 3rem;
}

.section-wrapper.full-bleed {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #0B1D3A;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-heading.centered {
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #22C55E;
  margin-bottom: 1rem;
  display: block;
}

.eyebrow.centered {
  text-align: center;
}

.lead-paragraph {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #64748B;
  line-height: 1.8;
  max-width: 640px;
  font-weight: 300;
}

.lead-paragraph.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
}

/* ── Card Grid & Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.single-highlight {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E8ECF1;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.07);
  border-color: #D1D9E6;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #F0FDF4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #0B1D3A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card .body-text {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.7;
}

.card.featured {
  background: #0B1D3A;
  border-color: #0B1D3A;
}

.card.featured .card-title {
  color: #FFFFFF;
}

.card.featured .body-text {
  color: rgba(255, 255, 255, 0.6);
}

.card.featured .card-icon {
  background: rgba(34, 197, 94, 0.15);
}

/* ── Image ── */
.image {
  border-radius: 12px;
  overflow: hidden;
  background: #E8ECF1;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Divider ── */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-divider hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0, transparent);
}

/* ── Footer ── */
.site-footer {
  background: #0B1D3A;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Utility ── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.single-highlight {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-inner {
    padding: 7rem 1.5rem 4rem;
  }

  .section-wrapper {
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.single-highlight {
    grid-template-columns: 1fr;
  }

  .card-grid.two-col {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-stat {
    display: none;
  }
}

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

  .primary-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
  }
}
/* 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}
