:root {
  --blue-primary: #06B6D4;
  --blue-dark: #0891B2;
  --blue-darker: #0E7490;
  --blue-light: #22D3EE;
  --blue-lighter: #67E8F9;
  --blue-pale: #E0F2FE;
  --blue-accent: #3B82F6;
  --blue-navy: #1E3A8A;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --status-high: #EF4444;
  --status-medium: #F59E0B;
  --status-success: #10B981;
  --gradient-blue: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Brand component: shared structure */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

/* Header brand variant */
.site-header .brand {
  gap: 12px;
  color: var(--gray-900);
}

.site-header .brand-mark {
  width: 40px;
  height: 40px;
  color: var(--blue-primary);
}

.site-header .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-header .brand-text {
  gap: 2px;
}

.site-header .brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-header .brand-text span {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--blue-primary);
}


.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background: var(--blue-pale);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(6,182,212,0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(6,182,212,0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
  background: var(--blue-pale);
}

.hero {
  padding: 84px 0 70px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}


.services-directory {
  padding: 56px 0 72px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.2rem);
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--gray-600);
}

.services-directory-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.services-directory-list a {
  display: block;
  text-decoration: none;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
}

.services-directory-list a:hover,
.services-directory-list a:focus-visible {
  color: var(--blue-darker);
  border-color: var(--blue-primary);
  background: var(--blue-pale);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--blue-lighter);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--blue-lighter);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.lead {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hero-points li {
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--blue-primary);
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.stat strong {
  font-size: 18px;
  line-height: 1.1;
  color: var(--blue-dark);
}

.stat span {
  font-size: 12px;
  color: var(--gray-600);
}

.hero-visual {
  width: 100%;
}

.signup-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.signup-card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-dots {
  display: inline-flex;
  gap: 5px;
}

.preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}

.preview-dots span:nth-child(1) {
  background: #EF4444;
}

.preview-dots span:nth-child(2) {
  background: #F59E0B;
}

.preview-dots span:nth-child(3) {
  background: #10B981;
}

.signup-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.signup-card-body {
  padding: 22px;
}

.signup-card-body h2 {
  margin-bottom: 8px;
}

.signup-card-body > p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.signup-form input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.16);
}

.form-message {
  border-radius: 8px;
  border: 1px solid;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-message.success {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: #065F46;
}

.form-message.error {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}

.signup-benefits {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.signup-benefits h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.signup-benefits ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--gray-700);
}

.audit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.audit-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audit-card-header strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

.audit-score {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--gray-100);
}

.audit-score strong {
  display: block;
  font-size: 54px;
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.audit-score p {
  color: var(--gray-600);
  font-size: 15px;
}

.audit-list {
  list-style: none;
  padding: 18px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.audit-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.audit-list span {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge.high {
  background: rgba(239,68,68,0.1);
  color: var(--status-high);
}

.badge.medium {
  background: rgba(245,158,11,0.12);
  color: var(--status-medium);
}

.badge.good {
  background: rgba(16,185,129,0.12);
  color: var(--status-success);
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--gray-50);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-weight: 900;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 30px;
}

.card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 10px 28px rgba(6,182,212,0.08);
}

.icon {
  width: 46px;
  height: 46px;
  color: var(--blue-primary);
  margin-bottom: 18px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.card p {
  color: var(--gray-600);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 34px;
}

.panel h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.panel p {
  color: var(--gray-600);
  margin-bottom: 22px;
}

.feature-list,
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
  font-weight: 500;
}

.feature-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-primary);
  font-weight: 800;
}

.pricing-box {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 2px solid var(--blue-lighter);
}

.price {
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  color: var(--blue-primary);
  margin-bottom: 8px;
}

.price span {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: var(--gray-500);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 900;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray-600);
  font-size: 15px;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 26px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--gray-600);
}

.cta-section {
  padding: 90px 0;
  background: var(--gradient-blue);
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: 46px;
  line-height: 1.15;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-box p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  margin-bottom: 28px;
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--blue-primary);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue-primary);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

a:focus, button:focus {
  outline: 2px solid var(--blue-primary);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-wrap,
  .split,
  .grid-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-header h2,
  .cta-box h2 {
    font-size: 38px;
  }

  .nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
  }

  .nav-links.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero p.lead,
  .section-header p,
  .cta-box p {
    font-size: 16px;
  }

  .section {
    padding: 65px 0;
  }

  .panel,
  .card,
  .step,
  .faq-item {
    padding: 22px;
  }

  .site-header .brand-text span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}










.site-footer {
  padding: 60px 0 40px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.site-footer a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue-primary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* Footer brand variant */
.site-footer .footer-brand .brand {
  display: inline-flex;
  gap: 12px;
}

.site-footer .brand-mark {
  color: var(--blue-primary);
}
.site-footer .brand-mark img {max-width:50px}
.site-footer .brand-text strong {
  color: var(--gray-900);
}

.site-footer .brand-text span {
  color: var(--gray-500);
}

.footer-links.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-links.social-links a:hover,
.footer-links.social-links a:focus-visible {
  background: var(--blue-pale);
  border-color: var(--blue-primary);
  transform: translateY(-1px);
  outline: none;
}

.footer-links.social-links svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer-links.social-links {
    justify-content: center;
  }
}

.nav-links.page-links {
  justify-content: flex-end;
  gap: 18px;
}

.footer-links.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links.page-links a {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.page-main {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 42%);
}

.page-hero {
  padding: 72px 0 24px;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.page-lead {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.page-section {
  padding-top: 20px;
}

.page-content {
  /* max-width: 940px; */
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}

.contact-form,
.contact-panel,
.legal-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
}

.contact-form textarea,
.contact-form input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.contact-panel p,
.contact-panel li {
  color: var(--gray-600);
}

.contact-panel ul {
  margin: 0 0 18px 18px;
}

.legal-content h2 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-700);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 10px;
  color: var(--gray-600);
  font-size: 0.93rem;
}

.form-feedback-wrap {
  min-height: 44px;
  margin-top: 12px;
}

.form-feedback {
  border-radius: 8px;
  border: 1px solid;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-feedback.success {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: #065F46;
}

.form-feedback.error {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}




.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-dropdown-arrow {
  font-size: 0.8rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  display: none;
  z-index: 1000;
}

.nav-dropdown-menu.is-open {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #111827;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: #f3f4f6;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    padding-top: 1rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.08);
  }

  .nav-dropdown-menu.is-open {
    display: block;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(6,182,212,0.10);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
}
.service-card .icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card .icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-darker);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.service-card .service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.service-card .service-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
}
.service-card .btn-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-darker);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.service-card .btn-text:hover {
  color: var(--blue-dark);
}
.service-card .btn-text svg {
  width: 14px;
  height: 14px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.package-card.featured {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.12);
}
.package-card .package-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-darker);
}
.package-card .package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.package-card .package-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-500);
}
.package-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.package-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-card ul li {
  font-size: 0.88rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.package-card ul li::before {
  content: "✓";
  color: var(--blue-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-link:hover,
.service-link:focus {
  background: var(--blue-pale);
  text-decoration: none;
}

.service-link:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
}





/* ====================================
   GoodSiteReport.com — CLEAN WHITE & BLUE DESIGN
   Using bright cyan (#06B6D4) from brand image
   ==================================== */

:root {
  /* Brand colors - bright cyan blue */
  --blue-primary: #06B6D4;
--blue-dark: #0891B2;
--blue-darker: #0E7490;
--blue-light: #22D3EE;
--blue-lighter: #67E8F9;
--blue-pale: #E0F2FE;
  
  /* Supporting blues */
  --blue-accent: #3B82F6;
--blue-navy: #1E3A8A;
  
  /* Neutrals */
  --white: #FFFFFF;
--gray-50: #F9FAFB;
--gray-100: #F3F4F6;
--gray-200: #E5E7EB;
--gray-300: #D1D5DB;
--gray-400: #9CA3AF;
--gray-500: #6B7280;
--gray-600: #4B5563;
--gray-700: #374151;
--gray-800: #1F2937;
--gray-900: #111827;
  
  /* Status colors */
  --status-high: #EF4444;
--status-medium: #F59E0B;
--status-success: #10B981;
  
  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
--gradient-glow: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}
/* ====================================
   RESET & BASE
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* ====================================
   CONTAINER
   ==================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
.container {
    padding: 0 16px;
}
}

@media (max-width: 480px) {
.container {
    padding: 0 12px;
}
}
/* ====================================
   HEADER & NAVIGATION
   ==================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 40px;
}

@media (max-width: 768px) {
.nav {
    height: 64px;
    gap: 16px;
}
}

@media (max-width: 480px) {
.nav {
    height: 60px;
}
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-900);
}
.brand-mark {
    width: 40px;
    height: 40px;
    color: var(--blue-primary);
    flex-shrink: 0;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 480px) {
.brand-mark {
    width: 32px;
    height: 32px;
}
}
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media (max-width: 480px) {
.brand-text span {
    display: none;
}
}
.brand-text strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}
.brand-text span {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

@media (max-width: 1169px) {
.nav-links {
    display: none;
}
}
.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover {
    color: var(--blue-primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 1169px) {
.nav-actions {
    display: none;
}
}
/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 1169px) {
.mobile-toggle {
    display: flex;
}
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-nav {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

@media (max-width: 1169px) {
.mobile-nav {
    display: block;
}
}
.mobile-nav.show {
    max-height: 500px;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
}
.mobile-nav-inner a {
    padding: 12px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 8px;
}
.mobile-nav-inner a:hover {
    background: var(--gray-50);
    color: var(--blue-primary);
}
/* ====================================
   BUTTONS
   ==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 480px) {
.btn {
    padding: 10px 20px;
    font-size: 14px;
}
}
.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

@media (max-width: 480px) {
.btn-lg {
    padding: 12px 24px;
    font-size: 15px;
}
}
.btn-block {
    width: 100%;
}
.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 1px 3px rgba(6, 182, 212, 0.2);
}
.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    transform: translateY(-1px);
}
.btn-secondary {
    background: var(--white);
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}
.btn-secondary:hover {
    background: var(--blue-pale);
}
/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

@media (max-width: 768px) {
.hero {
    padding: 60px 0 80px;
}
}

@media (max-width: 480px) {
.hero {
    padding: 40px 0 60px;
}
}
.hero-wrap {
    display: flex;
    gap: 50px;
    align-items: center;
}

@media (max-width: 968px) {
.hero-wrap {
    flex-direction: column;
    gap: 40px;
}
}
.hero-content {
    max-width: 680px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
.hero-content {
    margin-bottom: 40px;
}
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--blue-lighter);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.1);
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(0.9);
}
}
.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--gray-900);
}

@media (max-width: 968px) {
.hero h1 {
    font-size: 48px;
}
}

@media (max-width: 768px) {
.hero h1 {
    font-size: 40px;
}
}

@media (max-width: 480px) {
.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
}
}
.hero .highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-lead {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
.hero-lead {
    font-size: 18px;
    margin-bottom: 28px;
}
}

@media (max-width: 480px) {
.hero-lead {
    font-size: 16px;
    margin-bottom: 24px;
}
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

@media (max-width: 480px) {
.hero-actions {
    flex-direction: column;
    gap: 12px;
}
.hero-actions .btn {
    width: auto;
}
}
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 640px) {
.hero-stats {
    flex-wrap: wrap;
    gap: 32px;
}
}

@media (max-width: 480px) {
.hero-stats {
    gap: 24px;
}
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: -0.02em;
}
.stat span {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}
/* ====================================
   HERO VISUAL - REPORT PREVIEW
   ==================================== */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.report-preview {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

@media (max-width: 768px) {
.report-preview {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
}
.preview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.preview-dots {
    display: flex;
    gap: 6px;
}
.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}
.preview-dots span:nth-child(1) {
    background: #EF4444;
}
.preview-dots span:nth-child(2) {
    background: #F59E0B;
}
.preview-dots span:nth-child(3) {
    background: #10B981;
}
.preview-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.preview-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.preview-score {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-100);
}
.score-ring {
    position: relative;
    width: 120px;
    height: 120px;
}
.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.score-value strong {
    font-size: 40px;
    font-weight: 900;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.score-value span {
    font-size: 16px;
    color: var(--gray-400);
    font-weight: 600;
}
.score-label h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.score-label p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}
.preview-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.metric-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.metric-label span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}
.metric-label strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}
.metric-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}
.metric-fill {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}
.preview-issues {
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
}
.preview-issues h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.issue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}
.issue-item:last-child {
    border-bottom: none;
}
.issue-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.issue-badge.high {
    background: rgba(239, 68, 68, 0.1);
    color: var(--status-high);
}
.issue-badge.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--status-medium);
}
.issue-text {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.issue-text strong {
    color: var(--gray-900);
    font-weight: 700;
}
/* ====================================
   TRUST BAR
   ==================================== */

.trust-bar {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.trust-item svg {
    width: 32px;
    height: 32px;
    color: var(--blue-primary);
    flex-shrink: 0;
}
.trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}
/* ====================================
   SECTION STYLES
   ==================================== */

.section {
    padding: 100px 0;
}
.section-header {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--blue-pale);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--gray-900);
}
.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}
/* ====================================
   SERVICES SECTION
   ==================================== */

.services-section {
    background: var(--gray-50);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 968px) {
.services-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 640px) {
.services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
.service-card {
    padding: 24px 20px;
}
}
.service-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
    transform: translateY(-2px);
}
.service-card.featured {
    border-color: var(--blue-primary);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.1);
}
.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 4px 12px;
    background: var(--gradient-blue);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--blue-primary);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}
.service-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.service-features li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 24px;
    position: relative;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}
.service-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue-primary);
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}
.service-price span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
}
/* ====================================
   HOW IT WORKS SECTION
   ==================================== */

.how-section {
    background: var(--white);
}
.how-section .steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 968px) {
.how-section .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
}
.step-arrow {
    display: none;
}
}

@media (max-width: 480px) {
.how-section .steps-grid {
    gap: 24px;
}
}
.step-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
}
.step-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.1);
}
.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}
.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}
.step-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}
.step-arrow {
    font-size: 32px;
    color: var(--blue-primary);
    font-weight: 700;
}
/* ====================================
   PRICING SECTION
   ==================================== */

.pricing-section {
    background: var(--gray-50);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
.pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
}
}

@media (max-width: 480px) {
.pricing-grid {
    gap: 24px;
}
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

@media (max-width: 480px) {
.pricing-card {
    padding: 32px 24px;
}
}
.pricing-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
    transform: translateY(-4px);
}
.pricing-card.featured {
    border-color: var(--blue-primary);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.15);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}
.pricing-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 42px;
}
.pricing-amount {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-100);
}
.pricing-amount strong {
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-amount span {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}
.pricing-features li {
    font-size: 15px;
    color: var(--gray-700);
    padding-left: 28px;
    position: relative;
    font-weight: 500;
}
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 18px;
}
/* ====================================
   CTA SECTION
   ==================================== */

.cta-section {
    padding: 100px 0;
    background: var(--gradient-blue);
}

@media (max-width: 768px) {
.cta-section {
    padding: 80px 0;
}
}

@media (max-width: 480px) {
.cta-section {
    padding: 60px 0;
}
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}

@media (max-width: 768px) {
.cta-content h2 {
    font-size: 36px;
}
}

@media (max-width: 480px) {
.cta-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}
}
.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
.cta-content p {
    font-size: 16px;
    margin-bottom: 28px;
}
}

@media (max-width: 480px) {
.cta-content p {
    font-size: 15px;
    margin-bottom: 24px;
}
}
.cta-content .btn-primary {
    background: var(--white);
    color: var(--blue-primary);
}
.cta-content .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* ====================================
   FOOTER
   ==================================== */

.site-footer {
    padding: 60px 0 40px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
.footer-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
}
}
.footer-brand .brand-mark {
    color: var(--blue-primary);
}
.footer-links {
    display: flex;
    gap: 32px;
}

@media (max-width: 640px) {
.footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
}
}

@media (max-width: 480px) {
.footer-links {
    flex-direction: column;
    gap: 16px;
}
}
.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--blue-primary);
}
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}
.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {
.hero h1 {
    font-size: 52px;
}
.services-grid {
    grid-template-columns: repeat(2, 1fr);
}
.trust-items {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.hero {
    padding: 60px 0 80px;
}
.hero h1 {
    font-size: 42px;
}
.hero-lead {
    font-size: 18px;
}
.hero-actions {
    flex-direction: column;
}
.hero-stats {
    gap: 32px;
}
.services-grid {
    grid-template-columns: 1fr;
}
.trust-items {
    grid-template-columns: 1fr;
}
.section-header h2 {
    font-size: 36px;
}
.cta-content h2 {
    font-size: 36px;
}
.footer-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
}
}

@media (max-width: 480px) {
.hero h1 {
    font-size: 36px;
}
.hero-stats {
    flex-direction: column;
    gap: 20px;
}
.section {
    padding: 60px 0;
}
.section-header h2 {
    font-size: 32px;
}
.preview-body {
    padding: 24px;
}
.preview-score {
    grid-template-columns: 1fr;
    text-align: center;
}
}

/* ====================================
   ACCESSIBILITY & PERFORMANCE
   ==================================== */

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
}
/* Focus styles for keyboard navigation */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
}
/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--blue-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
}
.skip-link:focus {
    top: 0;
}
/* Ensure text remains visible during font load */
body {
    text-rendering: optimizeLegibility;
}

/* ====================================
   MOBILE NAVIGATION — CANONICAL
   Overrides all earlier conflicting rules.
   Uses #primary-nav-links (ID) for
   higher specificity than class rules.
   ==================================== */

/* Desktop: hide CTA buttons duplicated inside the panel */
@media (min-width: 1170px) {
  .mobile-nav-ctas {
    display: none;
  }
}

/* Tighten nav at mid-range widths (1170–1350px) so links + CTAs fit comfortably */
@media (min-width: 1170px) and (max-width: 1350px) {
  .nav {
    gap: 20px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a,
  .nav-dropdown-toggle {
    font-size: 13px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 1169px) {

  /* Show the hamburger, hide the desktop action buttons */
  .site-header .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
  }

  .site-header .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .site-header .nav-toggle:hover {
    border-color: var(--blue-primary);
  }

  .site-header .nav-toggle[aria-expanded="true"] {
    border-color: var(--blue-primary);
    background: var(--blue-pale);
  }

  .site-header .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-header .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .nav-actions {
    display: none !important;
  }

  /* Nav panel: floats below the sticky header, full viewport width */
  #primary-nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 3px solid var(--blue-primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    padding: 6px 0 24px;
    flex-direction: column;
    gap: 0;
    z-index: 200;
    max-height: none;
    overflow: visible;
    width: 100%;
    flex: none;
  }

  #primary-nav-links.is-open {
    display: flex !important;
  }

  /* Direct link items */
  #primary-nav-links > a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    background: transparent;
  }

  #primary-nav-links > a:hover {
    background: var(--gray-50);
    color: var(--blue-darker);
  }

  /* Services dropdown button */
  .site-header .nav-dropdown {
    width: 100%;
  }

  .site-header .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
  }

  .site-header .nav-dropdown-toggle:hover {
    background: var(--gray-50);
    color: var(--blue-darker);
  }

  /* Services dropdown: expands inline, not as a floating layer */
  .site-header .nav-dropdown-menu {
    position: static !important;
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--gray-50);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: unset;
  }

  .site-header .nav-dropdown-menu.is-open {
    display: flex;
  }

  .site-header .nav-dropdown-menu a {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    white-space: normal;
  }

  .site-header .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .site-header .nav-dropdown-menu a:hover {
    color: var(--blue-darker);
    background: var(--blue-pale);
  }

  /* CTA buttons at the bottom of the panel */
  .mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px 8px;
    margin-top: 12px;
    border-top: 1px solid var(--gray-200);
  }

  .mobile-nav-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 10px;
  }
}

/* ====================================
   GET STARTED PAGE
   ==================================== */

.get-started-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.get-started-card,
.info-card,
.step-card,
.audit-option-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.get-started-card {
  padding: 32px;
}

.form-intro {
  margin-bottom: 24px;
}

.form-intro h2 {
  margin: 0 0 10px;
}

.form-intro p {
  margin: 0;
  color: #475569;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.form-field label,
.fieldset-title {
  font-weight: 700;
  color: #0f172a;
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

.form-field input:not([type="checkbox"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(14, 165, 233, 0.22);
  border-color: #0ea5e9;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-help {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}

.required {
  color: #b91c1c;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-option {
  position: relative;
}

.choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-option label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 16px 18px;
  cursor: pointer;
  background: #fff;
  transition: 0.2s ease;
}

.choice-option label::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  transition: 0.2s ease;
}

.choice-option input:checked + label::before {
  background: #06b6d4;
  border-color: #06b6d4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 9px;
}

.choice-option label > div {
  flex: 1;
}

.choice-option label strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.choice-option label span {
  display: block;
  color: #64748b;
  font-size: 0.96rem;
}

.choice-option input:checked + label,
.choice-option input:focus-visible + label {
  border-color: #06b6d4;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-row input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sidebar-stack {
  display: grid;
  gap: 20px;
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.info-card p,
.info-card li {
  color: #475569;
}

.info-list,
.steps-list,
.audit-option-list,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-grid,
.audit-options-grid {
  display: grid;
  gap: 22px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.audit-option-card {
  padding: 24px;
}

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 800;
  margin-bottom: 14px;
}

.step-card h3,
.audit-option-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.step-card p,
.audit-option-card p {
  margin: 0;
  color: #475569;
}

.audit-options-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audit-option-card .service-price {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #0f172a;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-box .btn + .btn {
  margin-left: 12px;
}

/* get-started 2-col collapses at 900px */
@media (max-width: 900px) {
  .get-started-grid {
    grid-template-columns: 1fr;
  }
}

/* 3-col grids: go 2-col at tablet, 1-col at mobile */
@media (max-width: 768px) {
  .steps-grid,
  .audit-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .steps-grid,
  .audit-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .get-started-card {
    padding: 22px;
  }

  .cta-box .btn + .btn {
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ====================================
   SAMPLE REPORT PAGE
   ==================================== */

.report-shell {
  min-height: 100vh;
  background: var(--gray-50);
  padding: 36px 0 56px;
}

.report-page {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.11);
}

.report-cover {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 28px 36px 34px;
}

.report-cover-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.report-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}

.report-brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--white);
  padding: 5px;
}

.report-kicker {
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  white-space: nowrap;
}

.report-cover h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.report-cover p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
  max-width: 720px;
}

.report-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.95);
}

.report-body {
  padding: 32px 36px 40px;
  display: grid;
  gap: 28px;
}

.report-section {
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--blue-accent);
  border-radius: 14px;
  background: var(--white);
  padding: 22px;
}

.report-section h2 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--blue-dark);
  letter-spacing: -.01em;
}

.report-section p {
  color: var(--gray-700);
  font-size: 15px;
}

.summary-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: stretch;
}

.score-badge {
  border-radius: 16px;
  background: var(--blue-pale);
  border: 1px solid rgba(59,130,246,.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  text-align: center;
}

.score-badge strong {
  color: var(--blue-navy);
  font-weight: 900;
  line-height: 1;
  font-size: 44px;
  letter-spacing: -.03em;
}

.score-badge span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--blue-primary), rgba(59,130,246,0));
  margin: 14px 0 0;
}

.findings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
}

.findings-table th,
.findings-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  text-align: left;
}

.findings-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-600);
  font-weight: 800;
  background: var(--gray-50);
}

.findings-table tr:last-child td {
  border-bottom: none;
}

.report-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.report-chip.high {
  background: rgba(239,68,68,.14);
  color: var(--status-high);
}

.report-chip.medium {
  background: rgba(245,158,11,.18);
  color: #B45309;
}

.report-chip.good {
  background: rgba(16,185,129,.15);
  color: #047857;
}

.finding-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.finding-card {
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--blue-primary);
  border-radius: 12px;
  padding: 12px;
  background: #fbfdff;
}

.finding-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.finding-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.45;
}

.priority-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.priority-list li {
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue-dark);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  background: var(--white);
}

.priority-list strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 3px;
  font-size: 15px;
}

.priority-list small {
  color: var(--gray-600);
  display: block;
}

.priority-rank {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .report-shell {
    padding: 16px 0 28px;
  }

  .report-page {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .report-cover,
  .report-body {
    padding: 22px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .finding-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .finding-cards {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0.5in;
  }

  html,
  body {
    background: #fff !important;
    color: #111 !important;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-header,
  .hero-actions,
  .nav-actions,
  .btn,
  .footer-links,
  footer {
    display: none !important;
  }

  .report-shell {
    padding: 0;
    background: #fff;
  }

  .report-page {
    max-width: none;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .report-section,
  .finding-card,
  .priority-list li,
  .findings-table,
  .findings-table tr,
  .findings-table td,
  .findings-table th {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ====================================
   PRICING PAGE STYLES
   ==================================== */

.pricing-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-hero-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.pricing-hero p.lead {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* How pricing works */
.how-pricing-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.tier-explain {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tier-explain:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.08);
}

.tier-explain .tier-label {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-darker);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.tier-explain h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.tier-explain .tier-pages {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 10px;
}

.tier-explain p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Report pricing cards */
.report-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 840px) {
  .report-cards-grid {
    grid-template-columns: 1fr;
  }
}

.report-pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.report-pricing-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.10);
  transform: translateY(-2px);
}

.report-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.report-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.25;
}

.report-card-subtitle {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.report-card-icon {
  width: 48px;
  height: 48px;
  color: var(--blue-primary);
  margin-bottom: 20px;
}

.report-card-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 2;
}

.report-includes {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.report-includes li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 5px 0 5px 24px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.report-includes li:last-child {
  border-bottom: none;
}

.report-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--status-success);
  font-weight: 700;
  font-size: 13px;
}

/* Tiered pricing display */
.tier-pricing-row {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tier-price-cell {
  text-align: center;
}

.tier-price-cell .tier-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.tier-price-cell .tier-amount {
  font-size: 20px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.1;
}

.tier-price-cell .tier-pages-note {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

.tier-price-cell + .tier-price-cell {
  border-left: 1px solid var(--gray-200);
}

.report-card-footer {
  margin-top: auto;
  padding-top: 4px;
}

.report-card-footer a.btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Size note */
.size-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 10px;
  text-align: center;
}

/* What's always included */
.always-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 720px) {
  .always-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .always-included-grid {
    grid-template-columns: 1fr;
  }
}

.always-included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.always-included-item .ai-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.always-included-item .ai-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

.always-included-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.always-included-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .how-pricing-works {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .tier-pricing-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .tier-price-cell .tier-amount {
    font-size: 17px;
  }
}