:root {
  --navy: #0d182b;
  --navy-2: #121f35;
  --panel: #1b2b48;
  --panel-2: #223653;
  --yellow: #ead23d;
  --gold: #ffa51b;
  --green: #2fc46d;
  --white: #ffffff;
  --muted: #cad4e5;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.top-line {
  height: 10px;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 24, 43, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: 148px 1fr 220px;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 118px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
}

.site-nav a.active,
.site-nav a:hover,
.nav-dropdown > button.active,
.nav-dropdown > button:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  z-index: 40;
}

.dropdown-menu a {
  display: block;
  white-space: nowrap;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.search-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #20386d;
  color: var(--white);
  padding: 14px 16px;
  font: inherit;
}

.search-form input::placeholder,
.contact-form input::placeholder {
  color: #d6dded;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  display: grid;
  align-items: center;
  background: #020508;
}

.hero-bg,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(3, 8, 8, 0.82), rgba(3, 8, 8, 0.68)), url("../images/hero-bg-1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: #12203a;
}

.btn-dark {
  background: #12203a;
  color: var(--white);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.hero-art {
  justify-self: end;
}

.hero-art img {
  max-height: 610px;
  object-fit: contain;
}

.section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.service-grid,
.plan-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-detail-band .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.plan-card,
.post-card,
.quote-panel,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card,
.post-card {
  min-height: 275px;
  padding: 34px;
}

.service-card p,
.post-card p {
  font-weight: 600;
}

.card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #213f88;
  color: var(--yellow);
  font-weight: 900;
}

.capability-card {
  position: relative;
  overflow: hidden;
}

.capability-card::after {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  content: "";
  background: rgba(234, 210, 61, 0.1);
}

.capability-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #213f88, #152a55);
  color: var(--yellow);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.capability-icon svg {
  width: 36px;
  height: 36px;
}

.capability-card h3,
.capability-card p {
  position: relative;
  z-index: 1;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 800;
}

.about-band {
  background-image: linear-gradient(90deg, rgba(18, 31, 53, 0.88), rgba(18, 31, 53, 0.98)), url("../images/about-bg1.jpg");
  background-size: cover;
  background-position: center;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.media-panel img {
  margin: auto;
  max-height: 460px;
  object-fit: contain;
}

.check-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 16px;
  padding-left: 34px;
  color: var(--white);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.check-list.large li {
  font-size: 20px;
}

.plan-card {
  min-height: 330px;
  padding: 38px;
}

.plan-card.featured {
  background: var(--yellow);
  color: #12203a;
}

.plan-card.featured p,
.plan-card.featured .check-list li {
  color: #182640;
}

.price {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 38px;
  font-weight: 900;
}

.featured .price {
  color: #12203a;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #07111f;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
  font-weight: 700;
}

.quote-panel {
  padding: 42px;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 800;
}

.notice {
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 700;
}

.notice.success {
  background: rgba(47, 196, 109, 0.16);
  border: 1px solid rgba(47, 196, 109, 0.5);
}

.notice.error {
  background: rgba(255, 165, 27, 0.16);
  border: 1px solid rgba(255, 165, 27, 0.5);
}

.turnstile-wrap {
  margin: 6px 0 20px;
}

.post-card time {
  color: var(--yellow);
  font-weight: 800;
}

.narrow {
  max-width: 850px;
}

.policy-date {
  color: var(--yellow);
  font-weight: 800;
}

.policy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  font-size: 30px;
}

.site-footer {
  background: var(--navy);
}

.footer-bg {
  padding: 96px 0;
  background-image: linear-gradient(rgba(13, 24, 43, 0.75), rgba(13, 24, 43, 0.75)), url("../images/footer-bg-1-1.jpg");
  background-size: cover;
  background-position: center;
}

.footer-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-radius: 8px;
  background: var(--yellow);
  color: #12203a;
}

.footer-panel p {
  margin: 0;
  color: #12203a;
}

.footer-panel nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-weight: 600;
}

@media (max-width: 1060px) {
  .nav-shell {
    grid-template-columns: 130px 44px 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 102px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav-dropdown,
  .nav-dropdown > button {
    width: 100%;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

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

  .search-form {
    justify-self: end;
    width: min(240px, 100%);
  }

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

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-shell {
    min-height: 82px;
    grid-template-columns: 104px 44px;
    justify-content: space-between;
  }

  .search-form {
    display: none;
  }

  .brand img {
    width: 96px;
  }

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

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-art img {
    max-height: 360px;
    margin-inline: auto;
  }

  .section,
  .page-hero,
  .footer-bg {
    padding: 64px 0;
  }

  .service-grid,
  .plan-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .plan-card,
  .post-card,
  .quote-panel,
  .contact-form {
    padding: 26px;
  }

  .footer-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
