:root {
  --navy: #071a33;
  --blue: #0c3765;
  --blue-2: #11588c;
  --gold: #f4b52b;
  --gold-dark: #c98b10;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5e6b7c;
  --line: #dce4ee;
  --soft: #f4f7fb;
  --shadow: 0 20px 45px rgba(7, 26, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 26, 51, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  max-height: 56px;
  object-fit: contain;
  background-color: white;
  padding: 4px;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  opacity: 1;
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.nav-call {
  background: var(--gold);
  color: var(--navy);
  opacity: 1 !important;
  box-shadow: 0 8px 22px rgba(244, 181, 43, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: url("hero-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 51, 0.88) 0%, rgba(7, 26, 51, 0.72) 48%, rgba(7, 26, 51, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--navy);
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.hero-highlight {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(244, 181, 43, 0.24);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(7, 26, 51, 0.1);
}

.btn:hover,
.btn:focus-visible,
.nav-call:hover,
.nav-call:focus-visible {
  transform: translateY(-1px);
}

.trust-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  max-width: 720px;
}

.trust-strip li {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.two-column,
.contact-inner,
.feature-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about {
  background: var(--soft);
}

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

.info-grid article,
.service-card,
.reason-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.07);
}

.info-grid article {
  padding: 22px;
}

.info-grid p,
.service-card p,
.contact p {
  color: var(--muted);
}

.icon,
.service-icon,
.reason-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #eaf2fb;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

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

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

.service-card {
  padding: 24px;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 181, 43, 0.65);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
}

.feature-band,
.urgent-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.feature-band {
  padding: 56px 0;
}

.feature-band h2,
.urgent-cta h2 {
  color: var(--white);
}

.feature-band p,
.urgent-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.feature-phone,
.big-phone {
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.feature-phone {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.reasons {
  background: var(--soft);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article {
  min-height: 142px;
  padding: 20px 16px;
}

.reason-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.urgent-cta {
  padding: 80px 0;
  text-align: center;
}

.urgent-inner {
  max-width: 790px;
}

.urgent-inner .hero-actions {
  justify-content: center;
}

.big-phone {
  display: block;
  margin: 20px 0 4px;
  font-size: clamp(2.1rem, 6vw, 4rem);
}

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

.contact-card {
  padding: 30px;
  font-style: normal;
}

.contact-card a {
  color: var(--blue);
  font-weight: 900;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 36px 0 92px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 96px;
  max-height: 60px;
  object-fit: contain;
  background-color: white;
  padding: 4px;
  border-radius: 6px;
}

.footer-brand p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-info a {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
}

.footer-bottom {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.mobile-actions {
  display: none;
}

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

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-call {
    margin-top: 8px;
    justify-content: center;
  }

  .two-column,
  .contact-inner,
  .feature-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .feature-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 126px;
    max-height: 50px;
  }

  .site-nav {
    top: 68px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 88px);
  }

  .hero {
    min-height: 84vh;
    background-position: center;
  }

  .hero-overlay {
    background: rgba(7, 26, 51, 0.82);
  }

  .hero-content {
    padding: 72px 0 48px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .hero-highlight {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .info-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip li {
    justify-content: flex-start;
  }

  .section {
    padding: 64px 0;
  }

  .service-card {
    min-height: auto;
  }

  .reason-grid {
    gap: 10px;
  }

  .reason-grid article {
    min-height: 124px;
    padding: 16px 12px;
  }

  .site-footer {
    padding-bottom: 112px;
  }

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

  .footer-info {
    align-items: flex-start;
  }

  .mobile-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .mobile-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 900;
    color: var(--navy);
    background: var(--gold);
    box-shadow: 0 10px 28px rgba(7, 26, 51, 0.24);
  }

  .mobile-actions a:last-child {
    background: #24c363;
    color: var(--white);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
