:root {
  --navy: #071b33;
  --navy-2: #0b2a4a;
  --blue: #0b8ee8;
  --blue-2: #36b7ff;
  --yellow: #f8c400;
  --white: #ffffff;
  --muted: #d7e3ef;
  --text: #102033;
  --light: #f4f8fc;
  --shadow: 0 20px 50px rgba(7, 27, 51, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 27, 51, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.98) 0%, rgba(7, 27, 51, 0.92) 43%, rgba(7, 27, 51, 0.25) 100%),
    url("assets/cover-banner.jpg") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  background: rgba(248, 196, 0, 0.18);
  border-radius: 50%;
  filter: blur(20px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  max-width: 760px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn.primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--yellow);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin: 8px 0 14px;
}

.section {
  padding: 90px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 1fr;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--navy);
}

.center {
  text-align: center;
}

.max-width {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 22px;
  border-radius: 18px;
  background: var(--light);
  border-left: 6px solid var(--blue);
}

.feature span {
  display: inline-block;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 6px;
}

.feature strong {
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
}

.services {
  background: var(--light);
}

.cards,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card,
.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.card h3,
.price-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.section-image {
  border-radius: 26px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.pricing {
  background: var(--navy);
  color: var(--white);
}

.pricing h2,
.pricing p {
  color: var(--white);
}

.price-card {
  color: var(--text);
}

.price-card.highlighted {
  transform: translateY(-12px);
  border: 3px solid var(--yellow);
}

.service-area {
  background: linear-gradient(135deg, var(--light), #ffffff);
}

.contact {
  background: var(--light);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-details {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 22px;
}

.contact-details p {
  margin-top: 14px;
}

.full {
  width: 100%;
}

.footer {
  background: #04111f;
  color: var(--muted);
  padding: 26px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy);
    padding: 16px 4%;
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
    padding: 92px 0;
  }

  .hero-content,
  .split,
  .split.reverse,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.highlighted {
    transform: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
