:root {
  --navy: #1a2532;
  --navy-2: #223140;
  --navy-3: #2a3b4d;
  --orange: #f77905;
  --orange-dark: #d96600;
  --cream: #fff4e8;
  --white: #ffffff;
  --text-dark: #16212d;
  --light: #f5f7fa;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top, #17385d 0%, var(--navy) 42%, #081627 100%);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(11, 31, 58, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--orange);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-label,
.section-label-dark {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.8rem;
}

.eyebrow,
.section-label {
  color: var(--orange);
}

.section-label-dark {
  color: rgba(16, 35, 63, 0.72);
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  color: inherit;
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-text,
.section-text-dark {
  font-size: 1.06rem;
  max-width: 62ch;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
}

.section-text {
  color: rgba(16, 35, 63, 0.82);
}

.section-text-dark {
  color: rgba(16, 35, 63, 0.76);
}

.hero-buttons,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(245, 130, 31, 0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.34);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.btn-dark:hover {
  background: var(--navy-2);
}

.btn-outline-dark {
  color: var(--navy);
  border: 1.5px solid rgba(16, 35, 63, 0.24);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.logo-card {
  width: min(440px, 100%);
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  border-radius: 20px;
  filter: contrast(1.04) saturate(1.03);
}

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--light);
  color: var(--text-dark);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--white);
}

.section-story {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.card-accent {
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-item {
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: var(--text-dark);
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.08);
  border-left: 5px solid var(--orange);
  font-weight: 600;
}

.section-cta {
  background: linear-gradient(180deg, var(--cream), #fff2df);
  color: var(--text-dark);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.08);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
  background: rgba(0, 0, 0, 0.14);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .split,
  .cta-box,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    max-width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}