:root {
  --navy: #06324a;
  --navy-dark: #041f2e;
  --red: #a32924;
  --red-dark: #7f1f1b;
  --white: #ffffff;
  --off-white: #f6f7f8;
  --light-gray: #e7eaed;
  --mid-gray: #6b747b;
  --text: #172129;
  --shadow: 0 18px 45px rgba(3, 31, 46, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 50, 74, 0.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 260px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 12px 18px;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, rgba(4,31,46,.97), rgba(6,50,74,.91) 55%, rgba(6,50,74,.82)),
    radial-gradient(circle at 90% 20%, rgba(163,41,36,.55), transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -160px -230px auto;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 85px solid rgba(255,255,255,.035);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--red);
}

.eyebrow.light {
  color: #e7a8a4;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 1;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

h1 span {
  color: #efb6b2;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 720px;
  font-size: 1.16rem;
  color: rgba(255,255,255,.86);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: .2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
}

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

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: white;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .78rem;
  color: rgba(255,255,255,.78);
}

.hero-card {
  background: white;
  color: var(--text);
  padding: 38px;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}

.hero-card h2 {
  font-size: 2.4rem;
  color: var(--navy);
}

.hero-card ul {
  padding-left: 20px;
  margin: 24px 0;
}

.hero-card li {
  margin: 8px 0;
}

.text-link {
  font-weight: 800;
  color: var(--red);
  text-decoration: none;
}

.intro-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  background: var(--off-white);
}

.intro-strip p {
  margin: 0;
  text-align: center;
  color: #48525a;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-heading p:last-child {
  font-size: 1.08rem;
  color: var(--mid-gray);
}

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

.service-card {
  padding: 32px 28px;
  border: 1px solid var(--red);
  border-top: 5px solid var(--red);
  border-radius: 12px;
  background: white;
  box-shadow: 0 12px 30px rgba(6,50,74,.04);
}

.service-card .icon {
  width: 46px;
  height: 46px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3f5;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 28px;
}

.service-card h3 {
  color: var(--navy);
}

.more-services {
  margin-top: 28px;
  padding: 30px;
  background: var(--off-white);
  border-left: 5px solid var(--navy);
  border-radius: 8px;
}

.more-services h3 {
  margin-bottom: 6px;
  color: var(--navy);
}

.more-services p {
  margin: 0;
  color: var(--mid-gray);
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,.78);
}

.lead.dark {
  color: #525e66;
}

.process {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.process > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.process span {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.process p {
  margin: 0;
  color: rgba(255,255,255,.75);
}

.process strong {
  color: white;
}

.feature-panel {
  background: white;
  color: var(--text);
  padding: 42px;
  border-radius: 12px;
}

.feature-panel h3 {
  font-size: 2.35rem;
  color: var(--navy);
}

.feature-panel p {
  color: #5f6970;
}

.mini-label {
  color: var(--red) !important;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.about-grid {
  grid-template-columns: .8fr 1.2fr;
}

.about-mark {
  background: var(--off-white);
  border-radius: 14px;
  padding: 55px;
  box-shadow: var(--shadow);
}

.service-area {
  padding: 65px 0;
  background: var(--red);
  color: white;
}

.service-area-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.service-area h2 {
  margin-bottom: 10px;
}

.service-area p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255,255,255,.83);
}

.quote-section {
  background: #f3f5f6;
}

.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.contact-placeholder {
  margin-top: 35px;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(6,50,74,.06);
}

.contact-placeholder p {
  margin: 6px 0;
}

.contact-placeholder span {
  color: var(--red);
}

.quote-form {
  background: white;
  border-radius: 12px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cfd6da;
  border-radius: 6px;
  font: inherit;
  color: var(--text);
  background: white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(163,41,36,.18);
  border-color: var(--red);
}

.full-width {
  width: 100%;
  border: 0;
}

.form-note {
  margin-bottom: 0;
  font-size: .76rem;
  color: #8b949a;
}

footer {
  background: #031722;
  color: rgba(255,255,255,.72);
  padding: 55px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.footer-grid p {
  max-width: 650px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
}

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

  .main-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--light-gray);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

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

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

  .hero-grid {
    gap: 35px;
  }

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

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

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

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 205px;
  }

  .main-nav {
    top: 74px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-card {
    padding: 27px;
  }

  .section {
    padding: 72px 0;
  }

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

  .feature-panel,
  .quote-form,
  .about-mark {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
