* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1E2A3A;
  background: white;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Navigation */
nav {
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eef2f6;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0B3B5B;
}

.logo span {
  color: #2A7F6E;
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1E2A3A;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2A7F6E;
}

.nav-links a.active {
  color: #2A7F6E;
  font-weight: 600;
  border-bottom: 2px solid #2A7F6E;
}

.cta-small {
  background: #0B3B5B;
  color: white !important;
  padding: 8px 18px;
  border-radius: 40px;
}

.cta-small:hover {
  background: #1e4a6e;
  color: white !important;
}

/* Mobile menu button (hidden on desktop) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #0B3B5B;
}

/* Hero */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 100%);
}

.hero-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0B3B5B;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: clamp(1rem, 4vw, 1.2rem);
  color: #2c3e4e;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  background: #e9edf2;
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  color: #3a5a6e;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 55%;
}

.hero-image-note {
  font-size: 0.8rem;
  display: block;
  margin-top: 8px;
}

/* Badge */
.badge {
  background: #E8A73510;
  color: #E8A735;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

/* Buttons */
.btn-primary {
  background: #0B3B5B;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #1e4a6e;
}

.btn-secondary {
  background: white;
  color: #0B3B5B;
  border: 1px solid #0B3B5B;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #F1F5F9;
}

.btn-outline-light {
  border: 1px solid #2A7F6E;
  color: #2A7F6E;
  background: transparent;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline-light:hover {
  background: #2A7F6E10;
}

.large {
  font-size: 1.1rem;
  padding: 14px 36px;
}

/* Two col section */
.two-col-section {
  display: flex;
  gap: 48px;
  padding: 60px 0;
  flex-wrap: wrap;
}

.two-col-section > div {
  flex: 1;
}

.two-col-section h2 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin-bottom: 16px;
  color: #0B3B5B;
}

.checklist {
  list-style: none;
  margin-top: 24px;
}

.checklist li {
  margin: 12px 0;
}

.sample-report {
  background: #F1F5F9;
  padding: 16px;
  border-radius: 16px;
  margin-top: 24px;
}

/* Section titles */
.section-title {
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 700;
  color: #0B3B5B;
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 1.1rem;
  color: #4a627a;
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Card grid */
.card-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
  flex: 1;
  min-width: 200px;
}

.card h3 {
  margin-bottom: 12px;
}

/* Alt background */
.alt-bg {
  background: #F8FAFC;
  padding: 60px 0;
}

/* Personas */
.personas-section {
  padding: 60px 0;
}

.personas-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 48px 0;
}

.persona-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
  flex: 1;
  min-width: 220px;
}

.persona-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #0B3B5B;
}

.persona-card span {
  display: block;
  font-size: 0.85rem;
  color: #2A7F6E;
  margin-bottom: 12px;
}

.persona-card p {
  font-weight: 600;
  margin: 12px 0;
}

.persona-card small {
  color: #6b7a8a;
  font-size: 0.8rem;
}

.selling-note {
  text-align: center;
  background: #F1F5F9;
  padding: 16px;
  border-radius: 40px;
  max-width: 600px;
  margin: 32px auto 0;
}

/* Pricing */
.pricing-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 48px 0;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  flex: 1;
  min-width: 260px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.pricing-card.pro {
  border-top: 4px solid #E8A735;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0B3B5B;
  margin: 20px 0 8px;
}

.price small {
  font-size: 1rem;
  font-weight: 400;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-list li {
  margin: 12px 0;
}

.pro-badge {
  background: #E8A73520;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
}

.pricing-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #5a6e80;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: #0B3B5B;
  margin-bottom: 16px;
}

.final-cta p {
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.small-links {
  margin-top: 32px;
  font-size: 0.8rem;
}

.small-links a {
  color: #0B3B5B;
}

/* Footer */
footer {
  background: #0B1C28;
  color: #cbd5e1;
  padding: 48px 0 24px;
  margin-top: 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  color: white;
}

.footer-grid a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-top: 8px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #2a3b48;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* How it works / Steps / Audit */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.step-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  flex: 1;
  min-width: 220px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.step-number {
  background: #0B3B5B;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #0B3B5B;
}

.step-meta {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #2A7F6E;
  font-weight: 500;
  border-top: 1px solid #eef2f6;
  padding-top: 16px;
}

.audit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0 20px;
}

.audit-item {
  background: white;
  padding: 12px 24px;
  border-radius: 60px;
  border: 1px solid #e2e8f0;
  font-weight: 500;
}

/* Why page specific */
.roi-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.roi-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  flex: 1;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.roi-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #E8A735;
  margin-bottom: 8px;
}

.risk-list {
  list-style: none;
  margin: 24px 0;
}

.risk-list li {
  margin: 16px 0;
  padding-left: 28px;
  position: relative;
}

.risk-list li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .two-col-section {
    flex-direction: column;
  }
  .card-grid {
    flex-direction: column;
  }
  .pricing-grid {
    flex-direction: column;
  }
  .personas-grid {
    flex-direction: column;
  }
  .steps-grid {
    flex-direction: column;
  }
  .roi-grid {
    flex-direction: column;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-container {
    flex-wrap: wrap;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0 10px;
  }
  .nav-links.show {
    display: flex;
  }
  .cta-small {
    align-self: center;
  }
  .hero-image {
    padding: 20px;
    min-height: 180px;
    max-width: 100%;
  }
  .step-card {
    min-width: 100%;
  }
  .audit-item {
    width: calc(50% - 8px);
    text-align: center;
  }
}

/* Blog post page styles */
.blog-post-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}
.blog-post-content h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #0B3B5B;
}
.blog-post-content .meta {
  color: #2A7F6E;
  margin-bottom: 32px;
  border-bottom: 1px solid #eef2f6;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-post-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: #0B3B5B;
}
.blog-post-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  color: #0B3B5B;
}
.blog-post-content p {
  margin: 20px 0;
  line-height: 1.7;
  color: #2c3e4e;
}
.blog-post-content ul, .blog-post-content ol {
  margin: 20px 0 20px 24px;
}
.blog-post-content li {
  margin: 10px 0;
  line-height: 1.6;
}
.blog-post-content .callout {
  background: #F8FAFC;
  padding: 24px;
  border-left: 4px solid #E8A735;
  margin: 32px 0;
  border-radius: 12px;
  color: #1E2A3A;
}
.blog-post-content .email-capture {
  background: #0B3B5B;
  color: white;
  padding: 32px;
  border-radius: 20px;
  margin: 48px 0;
  text-align: center;
}
.blog-post-content .email-capture h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.blog-post-content .email-capture p {
  color: #e0e7ff;
  margin-bottom: 20px;
}
.blog-post-content .email-capture input {
  padding: 12px 16px;
  border-radius: 40px;
  border: none;
  width: 60%;
  max-width: 300px;
  margin-right: 12px;
  font-size: 1rem;
  background: white;
  color: #1E2A3A;
}
.blog-post-content .email-capture input::placeholder {
  color: #8a9bb0;
}
.blog-post-content .email-capture button {
  background: #E8A735;
  color: #0B3B5B;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.blog-post-content .email-capture button:hover {
  background: #d4941e;
}
.blog-post-content .email-capture .small-note {
  font-size: 0.75rem;
  margin-top: 16px;
  color: #b8c4d9;
}
@media (max-width: 600px) {
  .blog-post-content .email-capture input {
    width: 100%;
    margin-bottom: 12px;
    margin-right: 0;
  }
  .blog-post-content .email-capture button {
    width: 100%;
  }
}