
:root {
  --navy: #052b52;
  --navy-dark: #031f3d;
  --gold: #d89112;
  --gold-dark: #b8790b;
  --text: #0b2545;
  --muted: #42546b;
  --line: #d9e2ec;
  --soft: #f8fafc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

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

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

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4ebf3;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
  color: #101820;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(6, 31, 58, .68) 0%, rgba(6, 31, 58, .50) 35%, rgba(6, 31, 58, .10) 72%),
    url("assets/hero-image.png") center center / cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.hero-inner {
  padding: 72px 0;
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.7px;
  text-shadow: 0 3px 14px rgba(0,0,0,.36);
}

.hero p {
  margin: 0 0 30px;
  max-width: 650px;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  padding: 15px 24px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid transparent;
  letter-spacing: .2px;
}

.button.gold {
  background: var(--gold);
  color: #ffffff;
}

.button.gold:hover {
  background: var(--gold-dark);
}

.button.outline {
  color: #ffffff;
  border-color: #ffffff;
}

.button.outline:hover {
  background: #ffffff;
  color: var(--navy);
}

.product-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.product-card {
  min-height: 140px;
  padding: 24px 14px;
  border-right: 1px solid var(--line);
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.product-card:last-child {
  border-right: 0;
}

.product-icon {
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.content-panel {
  background: #ffffff;
  padding: 36px 0 22px;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.08fr .95fr 1.24fr;
  gap: 34px;
  align-items: start;
}

.section-title {
  margin: 0 0 18px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: .2px;
}

.about p,
.focus-text p,
.check-list li,
.footer-text,
.contact-mini {
  font-size: 14.5px;
}

.about p {
  margin: 0 0 18px;
  color: #112d4c;
}

.learn-more {
  display: inline-flex;
  margin-top: 8px;
  background: var(--gold);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 900;
}

.focus-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  margin-bottom: 17px;
}

.focus-icon {
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
}

.focus-text strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 14.5px;
}

.focus-text p {
  margin: 0;
  color: #223a56;
  line-height: 1.35;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #223650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  font-size: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.quote-box {
  border: 1px solid #cdd8e5;
  border-radius: 10px;
  padding: 20px 26px 24px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(5, 35, 68, .04);
}

.quote-box .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d3dbe5;
  border-radius: 5px;
  padding: 12px;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: #ffffff;
}

.quote-form textarea {
  grid-column: 1 / -1;
  min-height: 112px;
  resize: vertical;
}

.quote-form button {
  grid-column: 1 / -1;
  background: var(--gold);
  color: #ffffff;
  border: 0;
  border-radius: 5px;
  padding: 14px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-form button:hover {
  background: var(--gold-dark);
}

.site-footer {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #ffffff;
  padding: 30px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 1.25fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.footer-logo {
  max-width: 230px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-divider {
  border-left: 1px solid rgba(255,255,255,.35);
  padding-left: 32px;
}

.footer-text {
  color: #edf4fb;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #ffffff;
}

.footer-links a:hover {
  color: var(--gold);
}

.linkedin {
  width: 27px;
  height: 27px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-top: 14px;
  font-weight: 900;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 20px;
  padding-top: 16px;
  font-size: 14px;
  color: #dce8f4;
}

.legal-main {
  background: var(--soft);
  padding: 64px 0;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 12px 28px rgba(5,35,68,.07);
}

.legal-card h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 42px;
}

.legal-card h2 {
  margin-top: 32px;
  color: var(--navy);
  font-size: 24px;
}

.legal-card p {
  color: #263a52;
}

@media (max-width: 1080px) {
  .home-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .navbar {
    height: auto;
    display: block;
    padding: 16px 0;
  }
  .logo {
    height: 64px;
  }
  .nav-links {
    margin-top: 12px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero {
    min-height: 560px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    font-size: 17px;
  }
  .home-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-divider {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quote-form {
    grid-template-columns: 1fr;
  }
}
