:root {
  --navy: #061a34;
  --navy-deep: #041428;
  --navy-dark: #0a2545;
  --accent: #f2a01b;
  --accent-dark: #d98710;
  --text: #10243b;
  --muted: #6a7b90;
  --light: #f4f7fb;
  --card: #ffffff;
  --border: #e2e8f1;
}

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

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

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

.container {
  width: 1120px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.topbar {
  background: #04152c;
  color: #c9d5e6;
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar-right span + span {
  margin-left: 18px;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #0b2a52 0%, #061a34 100%);
  color: #ffffff;
  padding-bottom: 84px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
}

.nav-wrap {
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0a2545;
  font-weight: 700;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #c7d3e4;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: #d7e3f4;
}

.nav-links a {
  padding-bottom: 6px;
  position: relative;
}

.nav-links a.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-cta {
  background: var(--accent);
  color: #0a2545;
}

.btn-primary {
  background: var(--accent);
  color: #0a2545;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: #0a2545;
  color: #ffffff;
  border: none;
  width: 100%;
  height: 44px;
  border-radius: 6px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 38px;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: #dbe5f4;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  margin: 18px auto 24px;
  max-width: 640px;
  color: #c5d3e7;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  color: #c8d4e6;
  font-size: 12px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.scroll-indicator {
  width: 22px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin: 34px auto 0;
  position: relative;
}

.scroll-indicator::after {
  content: "";
  width: 4px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section {
  padding: 80px 0;
}

.section-eyebrow {
  text-align: center;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-eyebrow.light {
  text-align: left;
  color: #f2b54a;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  color: #0f243b;
}

.section-subtext {
  max-width: 660px;
  margin: 12px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 22px rgba(6, 26, 52, 0.06);
}

.card h3 {
  font-size: 16px;
  margin: 10px 0 6px;
}

.card p {
  font-size: 13px;
  color: var(--muted);
}

.card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid;
  display: grid;
  place-items: center;
  color: #2c4868;
}

.card-icon.blue {
  background: #e4edff;
  border-color: #b6c9ff;
}

.card-icon.red {
  background: #ffe7e7;
  border-color: #ffb4b4;
}

.card-icon.green {
  background: #e7f7ed;
  border-color: #a5e0bd;
}

.card-icon.purple {
  background: #efe8ff;
  border-color: #cbb8ff;
}

.card-icon.amber {
  background: #fff1df;
  border-color: #ffd2a1;
}

.card-icon.teal {
  background: #e2f7f4;
  border-color: #a4ded6;
}

.card-icon.orange {
  background: #ffe9d6;
  border-color: #ffc08a;
}

.card-icon.slate {
  background: #e9eef5;
  border-color: #c6d2e3;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.tag {
  background: #f1f4f8;
  color: #56677c;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}

.card-link {
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
}

.industries {
  background: #ffffff;
}

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

.industry-card {
  text-align: center;
  padding: 20px 14px;
  border-top: 1px solid var(--border);
}

.industry-card h4 {
  margin-top: 12px;
  font-size: 15px;
}

.industry-card p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.industry-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  background: #eef3fa;
  border-radius: 10px;
  border: 1px solid #d6dfeb;
  display: grid;
  place-items: center;
  color: #2c4868;
}

.why {
  background: #061a34;
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.why-left h2 {
  text-align: left;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-left h2 span {
  color: var(--accent);
}

.why-left p {
  color: #c6d4e7;
  font-size: 14px;
  margin-bottom: 18px;
}

.why-list {
  list-style: none;
  margin-bottom: 20px;
}

.why-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #e0e8f5;
  font-size: 13px;
}

.why-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 2px;
}

.why-list li::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  position: absolute;
  left: 6px;
  top: 3px;
  transform: rotate(35deg);
}

.why-right {
  display: grid;
  gap: 12px;
}

.why-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 10px;
  background: #0b274c;
  border: 1px solid #13355d;
}

.why-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.why-card p {
  font-size: 12px;
  color: #c6d4e7;
}

.why-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(242, 160, 27, 0.18);
  border: 1px solid rgba(242, 160, 27, 0.4);
  display: grid;
  place-items: center;
  color: #f2a01b;
}

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

.quote-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  margin-top: 32px;
  align-items: start;
}

.contact-card {
  background: #0a2545;
  color: #dce6f5;
  border-radius: 12px;
  padding: 22px;
}

.contact-card h4 {
  margin-bottom: 12px;
}

.contact-card ul {
  list-style: none;
  font-size: 13px;
  display: grid;
  gap: 10px;
}

.quote-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(6, 26, 52, 0.08);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 12px;
  color: #56677c;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: "Source Sans 3", sans-serif;
}

.order-card {
  margin-top: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.order-card h4 {
  margin-bottom: 10px;
}

.order-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: #06152b;
  color: #c6d4e7;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 32px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-text {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer h5 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 22px;
  font-size: 12px;
  color: #91a3bd;
}

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

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

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

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

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

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

  .hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  color: #c8d4e6;
  font-size: 12px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

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

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 42px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


