:root {
  --navy: #061a2f;
  --navy-2: #082b50;
  --blue: #0b5cad;
  --light-blue: #f1f7ff;
  --orange: #ff4d00;
  --orange-2: #ff7a1a;
  --text: #0f2238;
  --muted: #5a6f8b;
  --line: #dce6f2;
  --soft: #f7faff;
  --white: #ffffff;
  --green: #08a86b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: initial;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,230,242,.95);
}

.nav-shell {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 206px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  color: var(--navy);
  text-decoration: none;
}

.main-nav a.active:after,
.main-nav a:not(.nav-button):hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
}

.nav-button {
  color: #fff !important;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(255,77,0,.22);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  margin: 6px 0;
  border-radius: 99px;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(11,92,173,.14), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #edf6ff 100%);
}

.hero:before {
  content: "";
  position: absolute;
  left: -180px;
  top: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: .08;
  background:
    repeating-linear-gradient(160deg, transparent 0 34px, #ef4444 35px 64px, transparent 65px 96px),
    radial-gradient(circle at 40% 40%, #1d4ed8 0 3px, transparent 4px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 58px;
  align-items: center;
  padding: 78px 0;
}

.kicker,
.section-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  width: min(700px, 100%);
  margin: 0 0 24px;
  color: #2d415d;
  font-size: 18px;
  line-height: 1.65;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 0 0 28px;
}

.hero-points span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #19314e;
  font-size: 14px;
  font-weight: 800;
}

.hero-points span:before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,77,0,.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 15px 25px rgba(255,77,0,.22);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid #c9d7e8;
}

.audit-card {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(6,26,47,.15);
}

.audit-eyebrow {
  width: fit-content;
  margin-bottom: 13px;
  color: #c94800;
  background: #fff0e8;
  border: 1px solid #ffd2bd;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.audit-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

form {
  display: grid;
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.two {
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

label {
  color: #526986;
  font-size: 12px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cbd8e8;
  border-radius: 7px;
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11,92,173,.11);
}

.form-button {
  height: 54px;
  color: #fff;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 25px rgba(255,77,0,.22);
}

.form-button[disabled] {
  opacity: .75;
  cursor: not-allowed;
}

.privacy-note {
  margin: -1px 0 0 !important;
  color: #788aa0 !important;
  font-size: 12px !important;
  text-align: center;
}

.form-message {
  display: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.form-message.success {
  display: block;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  display: block;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.credibility-strip {
  padding: 26px 0;
  color: #fff;
  background: var(--navy);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.credibility-grid div {
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}

.credibility-grid strong,
.credibility-grid span {
  display: block;
}

.credibility-grid strong {
  font-size: 17px;
}

.credibility-grid span {
  margin-top: 4px;
  color: #bed4ed;
  font-size: 13px;
  line-height: 1.35;
}

.case-section {
  padding: 76px 0;
  background: #fff;
}

.case-header {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.case-header h2,
.section-heading h2,
.markets h2,
.bottom-cta h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.case-header p,
.section-heading p,
.markets p,
.bottom-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.budget-card {
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 18px 36px rgba(6,26,47,.18);
}

.budget-card span,
.budget-card small {
  display: block;
  color: #bfd6f0;
  font-weight: 800;
}

.budget-card strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 44px;
  letter-spacing: -0.06em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.impact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6,26,47,.06);
}

.impact-card.accent {
  border-color: #ffd0bd;
  background: #fff7f1;
}

.impact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.impact-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.impact-card p {
  margin: 0;
  color: #405672;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.case-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.comparison-panel,
.case-copy {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-title h3,
.case-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.panel-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: #243b58;
  font-size: 14px;
}

th {
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.positive {
  color: var(--green);
  font-weight: 900;
}

.case-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.case-list div {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.case-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-list b {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.case-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.operational-upgrades {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.upgrade {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.upgrade span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}

.upgrade h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
}

.upgrade p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.services {
  padding: 76px 0;
  background: #f5f8fc;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.service-card {
  padding: 26px;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6,26,47,.05);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: #223a58;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.markets {
  padding: 76px 0;
  background: #fff;
}

.markets-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.markets-panel {
  display: grid;
  gap: 16px;
}

.market-row {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f5f9ff);
}

.market-row strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.market-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.bottom-cta {
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b3765);
}

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

.bottom-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
}

.bottom-cta p {
  color: #c8def5;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.footer-inner img {
  width: 150px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .case-header,
  .case-details-grid,
  .markets-grid {
    grid-template-columns: 1fr;
  }

  .audit-card {
    max-width: 760px;
  }

  .credibility-grid,
  .impact-grid,
  .operational-upgrades,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand img {
    width: 190px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .nav-shell {
    height: 76px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(6,26,47,.16);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav a.active:after,
  .main-nav a:not(.nav-button):hover:after {
    display: none;
  }

  .nav-button {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid {
    padding: 46px 0;
  }

  .hero-points,
  .field.two,
  .credibility-grid,
  .impact-grid,
  .operational-upgrades,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .panel-title,
  .bottom-cta-inner,
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .bottom-cta-inner,
  .footer-inner {
    align-items: center;
  }

  th,
  td {
    font-size: 13px;
    padding: 12px 9px;
  }
}
