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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1b1b1f;
  background-color: #f5f6fa;
  line-height: 1.6;
}

a {
  color: #0b63ce;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 28, 54, 0.98);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.logo:hover {
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: #26c281;
}

.main-nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.main-nav a {
  color: #e7ecf5;
  font-weight: 500;
}

.main-nav a:hover {
  color: #ffffff;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(7, 28, 54, 0.98);
  min-width: 220px;
  padding: 8px 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #e7ecf5;
  font-size: 0.85rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.top-bar-phone {
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero {
  background: radial-gradient(circle at top left, #1a3c72 0, #071c36 55%, #020712 100%);
  color: #fff;
  padding: 80px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9fb5d8;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 1rem;
  color: #d7e1f0;
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #26c281, #1ab06f);
  color: #031018;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2bd68f, #1ab06f);
}

.btn-outline {
  background: transparent;
  color: #f3f7ff;
  border-color: rgba(196, 208, 230, 0.65);
}

.btn-outline:hover {
  border-color: #ffffff;
}

.btn-full {
  width: 100%;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.9rem;
  color: #c4d2ea;
}

.hero-bullets li::before {
  content: "•";
  margin-right: 6px;
  color: #26c281;
}

.hero-image figure {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 60%);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(142, 174, 214, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.hero-image figcaption {
  font-size: 0.75rem;
  color: #b4c6e6;
  margin-top: 6px;
}

.trust-strip {
  background: #020712;
  color: #d7e1f0;
  padding: 14px 0;
  border-bottom: 1px solid #121829;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  font-size: 0.85rem;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 680px;
  font-size: 0.98rem;
  color: #4a5668;
  margin-bottom: 28px;
}

.split {
  padding: 64px 0;
  background: #f0f3fa;
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
  align-items: flex-start;
}

.split-text p {
  margin-bottom: 16px;
}

.checklist {
  list-style: none;
  margin-top: 8px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: #374052;
}

.checklist li::before {
  content: "✔";
  color: #26c281;
  margin-top: 2px;
}

.split-form-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 20px 22px;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.22);
}

.split-form-card h3 {
  margin-bottom: 14px;
}

.field {
  margin-bottom: 10px;
}

.field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: #4a5668;
}

input,
textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #cbd4e4;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #26c281;
  border-color: transparent;
}

.form-footnote {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #6a7485;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e4e7f0;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: #4a5668;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  font-size: 0.9rem;
  color: #374052;
}

.card ul li::before {
  content: "•";
  margin-right: 6px;
  color: #26c281;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  background: #f5f7fc;
  border-radius: 12px;
  padding: 16px 14px 18px;
  border: 1px solid #e0e4f0;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #071c36;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.step h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.88rem;
  color: #4a5668;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 24px;
}

.compliance-callout {
  background: #071c36;
  color: #f5f7ff;
  border-radius: 14px;
  padding: 18px 18px 20px;
}

.compliance-callout h3 {
  margin-bottom: 8px;
}

.compliance-callout ul {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.compliance-callout li + li {
  margin-top: 3px;
}

.small {
  font-size: 0.82rem;
}

.section-alt .columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.columns-tight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.columns-tight ul {
  list-style: none;
  font-size: 0.92rem;
}

.center {
  text-align: center;
  margin-top: 18px;
}

.hero-bullets-stacked {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(159, 181, 216, 0.35);
  border-radius: 999px;
  padding: 6px 10px;
  color: #d7e1f0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.urgency-band {
  background: #f7c948;
  color: #152033;
  padding: 26px 0;
}

.urgency-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto;
  gap: 24px;
  align-items: center;
}

.urgency-inner .eyebrow {
  color: #5a3b00;
  margin-bottom: 4px;
}

.urgency-inner h2 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.urgency-inner p {
  max-width: 720px;
}

.urgency-actions,
.risk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-dark-outline {
  color: #071c36;
  border-color: rgba(7, 28, 54, 0.45);
}

.btn-dark-outline:hover {
  border-color: #071c36;
}

.quote-benefits li + li {
  margin-top: 6px;
}

.mini-cta-card {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #d8e1ef;
  border-left: 4px solid #26c281;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(19, 33, 68, 0.08);
}

.mini-cta-card strong,
.mini-cta-card span {
  display: block;
}

.service-card h3 a {
  color: #071c36;
}

.service-card h3 a:hover {
  color: #0b63ce;
}

.service-deep-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-deep-links a {
  display: inline-flex;
  border: 1px solid #cbd4e4;
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffffff;
  color: #071c36;
  font-size: 0.9rem;
  font-weight: 600;
}

.proof-package {
  background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.deliverable-card {
  background: #ffffff;
  border: 1px solid #dfe6f2;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(19, 33, 68, 0.08);
}

.deliverable-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #071c36;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 10px;
}

.deliverable-card h3 {
  margin-bottom: 6px;
}

.deliverable-card p {
  color: #4a5668;
  font-size: 0.92rem;
}

.proof-cta {
  margin-top: 22px;
  padding: 18px;
  border-radius: 16px;
  background: #071c36;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.proof-cta p {
  color: #d7e1f0;
}

.risk-section {
  background: #f5f6fa;
}

.risk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.risk-card {
  background: #ffffff;
  border: 1px solid #dfe6f2;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(19, 33, 68, 0.08);
}

.risk-card-dark {
  background: #071c36;
  color: #ffffff;
}

.risk-card-dark .eyebrow,
.risk-card-dark h2 {
  color: #ffffff;
}

.checklist-light li {
  color: #d7e1f0;
}


.hero-microcopy {
  margin-top: 12px;
  color: #b9c9e4;
  font-size: 0.9rem;
  max-width: 620px;
}

.conversion-diagnostic {
  background: #ffffff;
  border-bottom: 1px solid #dfe6f2;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.8fr) minmax(240px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.diagnostic-card {
  background: #f5f8fd;
  border: 1px solid #dfe6f2;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(19, 33, 68, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diagnostic-card strong {
  color: #071c36;
  font-size: 1.05rem;
}

.diagnostic-card span {
  color: #4a5668;
  font-size: 0.95rem;
}

.service-area-clusters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.area-cluster {
  background: #ffffff;
  border: 1px solid #dfe6f2;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(19, 33, 68, 0.08);
}

.area-cluster h3 {
  color: #071c36;
  margin-bottom: 8px;
}

.area-cluster p {
  color: #4a5668;
  font-size: 0.93rem;
}

.industry-section {
  background: #f5f6fa;
}

.mobile-action-bar {
  display: none;
}

.cta-footer {
  background: #071c36;
  color: #ffffff;
  padding: 32px 0;
}

.cta-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-footer p {
  font-size: 0.95rem;
  color: #d7e1f0;
}

.cta-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: #020712;
  color: #9ea7bb;
  padding: 16px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-left p {
  max-width: 340px;
}

@media (max-width: 960px) {
  .hero-inner,
  .split-inner,
  .cards-grid,
  .steps-grid,
  .compliance-grid,
  .section-alt .columns,
  .columns-tight,
  .deliverables-grid,
  .risk-grid,
  .urgency-inner,
  .diagnostic-grid,
  .service-area-clusters,
  .cta-footer-inner,
  .footer-inner {
    grid-template-columns: 1fr !important;
    flex-direction: column;
  }

  .hero-inner,
  .split-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-image {
    order: -1;
  }

  .main-nav {
    display: none;
  }

  .top-bar-inner {
    justify-content: space-between;
  }

  .diagnostic-grid,
  .service-area-clusters,
  .cta-footer-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 0 44px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bullets,
  .hero-bullets-stacked,
  .proof-cta,
  .urgency-actions,
  .risk-actions {
    flex-direction: column;
  }

  .hero-bullets-stacked {
    display: flex;
  }

  .proof-cta {
    align-items: flex-start;
  }

  .split {
    padding: 48px 0;
  }

  .section {
    padding: 48px 0;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #071c36;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  }

  .mobile-action-bar a {
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-action-bar a:first-child {
    background: #26c281;
    color: #031018;
  }

  body {
    padding-bottom: 50px;
  }
}

/* High-value local area rebuilds */
.area-hero .hero-sub {
  max-width: 760px;
}
.area-diagnostic .section-title {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.cards-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-emphasis {
  border-color: rgba(255, 180, 86, 0.55);
  background: linear-gradient(145deg, rgba(255, 180, 86, 0.12), rgba(9, 34, 64, 0.96));
}
.area-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.area-pill-row a {
  color: #f8fbff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 700;
}
.area-pill-row a:hover {
  border-color: #ffb456;
  color: #ffcf8a;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-list details {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 800;
}
.faq-list p {
  margin: 12px 0 0;
  color: #c6d3e7;
}
@media (max-width: 760px) {
  .cards-grid-two {
    grid-template-columns: 1fr;
  }
  .area-pill-row {
    align-items: stretch;
  }
  .area-pill-row a {
    width: 100%;
    text-align: center;
  }
}
