:root {
  --blue-950: #0a2540;
  --blue-800: #123f6d;
  --blue-650: #1f67a6;
  --blue-500: #2f80c7;
  --blue-100: #e8f3fb;
  --blue-050: #f5faff;
  --ink: #162033;
  --muted: #5c6f82;
  --line: #dbe7f0;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(10, 37, 64, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  color: var(--blue-950);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  max-width: 320px;
  line-height: 1.15;
  white-space: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--blue-100);
  color: var(--blue-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 78px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(80px, 11vw, 130px) clamp(20px, 6vw, 84px);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.76) 42%, rgba(10, 37, 64, 0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: #a8d8ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 2vw, 1.23rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--blue-650);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--blue-800);
}

.button.outline {
  border-color: var(--blue-650);
  color: var(--blue-800);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 28px clamp(20px, 4vw, 44px);
  background: var(--blue-050);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--blue-950);
  font-size: 1.02rem;
}

.trust-band span {
  margin-top: 5px;
  color: var(--muted);
}

.section,
.split-section,
.contact-layout {
  padding: clamp(64px, 9vw, 108px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.14rem;
  line-height: 1.25;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.why-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card,
.price-card,
.value-panel,
.check-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.card p,
.price-card p,
.split-section p,
.contact-info p,
.service-row p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background: var(--blue-050);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue-800);
  font-weight: 800;
}

.check-panel,
.value-panel {
  padding: 30px;
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0 0 12px 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue-650);
}

.cta-band {
  padding: clamp(58px, 8vw, 90px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--blue-800);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 680px;
  margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  padding: clamp(78px, 10vw, 124px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-650));
}

.page-hero.compact {
  padding-bottom: clamp(58px, 8vw, 86px);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.shaded {
  background: var(--blue-050);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-row span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-800);
  font-weight: 800;
}

.service-row h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: var(--blue-650);
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--blue-650);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 10px;
  color: var(--blue-950) !important;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card .button {
  width: 100%;
  margin-top: 22px;
}

.pricing-note {
  max-width: 820px;
  margin: 26px auto 0;
  color: var(--muted);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-details div {
  padding: 18px;
  border-left: 4px solid var(--blue-650);
  background: var(--blue-050);
}

.contact-details strong,
.contact-details span {
  display: block;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.contact-form label {
  color: var(--blue-950);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 128, 199, 0.2);
  border-color: var(--blue-500);
}

.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--blue-800);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.62));
  }

  .trust-band,
  .why-grid,
  .service-grid,
  .pricing-grid,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
    padding: 11px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    max-width: 220px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    min-height: 620px;
    padding: 70px 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.55rem;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
