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

:root {
  --dark-navy: #042C53;
  --medium-blue: #185FA5;
  --amber: #BA7517;
  --light-blue: #E6F1FB;
  --warm-white: #E8E6DF;
  --white: #FFFFFF;
  --charcoal: #2C2C2A;
  --muted-text: #A0B3C6;
  
  --font-family: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--dark-navy);
  line-height: 1.6;
  background-color: var(--white);
}

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

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--medium-blue);
  margin-bottom: 0.5rem;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-amber {
  background-color: var(--amber);
  color: var(--white);
}

.btn-navy {
  background-color: var(--dark-navy);
  color: var(--white);
}

.btn-blue {
  background-color: var(--medium-blue);
  color: var(--white);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--medium-blue);
  border-color: var(--medium-blue);
}

.btn-charcoal {
  background-color: var(--charcoal);
  color: var(--white);
}

/* Navbar */
.navbar {
  background-color: var(--dark-navy);
  padding: 20px 0;
  color: var(--white);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--medium-blue);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a.link {
  color: var(--muted-text);
  font-size: 0.875rem;
}

.nav-links a.link:hover {
  color: var(--white);
}

/* Global Sections */
section {
  padding: 100px 0;
}

/* Hero Section */
.hero {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 80px 0 100px 0;
  position: relative;
}

.hero-content-wrapper {
  display: flex;
  gap: 48px;
}

.hero-accent {
  width: 6px;
  background-color: var(--amber);
  flex-shrink: 0;
}

.hero-content {
  max-width: 800px;
}

.hero-content p.subheadline {
  color: var(--muted-text);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 24px 0 32px 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* Stats Bar */
.stats-bar {
  background-color: var(--white);
  padding: 40px 0;
  border-top: 2px solid var(--dark-navy);
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--medium-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: var(--warm-white);
}

/* Split Audience */
.split-audience {
  display: flex;
  padding: 0;
}

.split-half {
  flex: 1;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
}

.split-left {
  background-color: var(--light-blue);
}

.split-right {
  background-color: var(--warm-white);
}

.split-rule {
  width: 60px;
  height: 2px;
  margin-bottom: 32px;
}

.split-left .split-rule { background-color: var(--medium-blue); }
.split-right .split-rule { background-color: var(--amber); }

.split-half h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.split-half p.body-text {
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.check-list {
  margin-bottom: 40px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.split-left .check-item svg { color: var(--dark-navy); }
.split-right .check-item svg { color: var(--amber); }

/* Grid Sections */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.feature-card {
  background: var(--light-blue);
  padding: 40px;
  border-radius: 4px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark-navy);
}

/* Alternating Steps */
.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--medium-blue);
  flex-shrink: 0;
}

/* Testimonials */
.testimonial-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stars {
  color: var(--amber);
  margin-bottom: 24px;
}

.quote-text {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 24px;
}

.quote-author {
  font-weight: 700;
  color: var(--medium-blue);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--dark-navy);
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
}

.cta-banner h2 {
  margin-bottom: 24px;
}

.cta-banner p {
  color: var(--muted-text);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Footer */
footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 80px 0 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--muted-text);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a:hover {
  color: var(--amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: var(--muted-text);
}

/* Mobile Navigation Utilities */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px;
  background-color: var(--dark-navy);
  gap: 20px;
}

.mobile-menu.active {
  display: flex !important;
}

.mobile-link {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .split-audience {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .navbar .container { padding: 0 20px; }
  
  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  /* Global Layout */
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  
  /* Hero */
  .hero-content-wrapper { flex-direction: column; gap: 24px; padding: 40px 0; }
  .hero-accent { width: 100%; height: 6px; }
  .hero-ctas { flex-direction: column; }
  
  /* Stats */
  .stats-container { flex-direction: column; gap: 32px; }
  .stat-divider { width: 100%; height: 1px; }
  
  /* Split Audience */
  .split-half { padding: 60px 20px; }
  
  /* Features & Grid */
  .features-grid { grid-template-columns: 1fr; }
  
  /* How It Works Stack */
  div[style*="display: flex; gap: 80px;"] { flex-direction: column; gap: 40px !important; }
  
  /* Testimonials */
  div[style*="grid-template-columns: 1fr 1fr;"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  
  /* Footer */
  .footer-content { flex-direction: column; gap: 40px; }
}
