:root {
  --blue: #123c69;
  --blue-dark: #0b2745;
  --blue-light: #eaf2fb;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
  font-size: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #374151;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  white-space: nowrap;
  color: #374151;
  font-size: 13px;
  font-family: inherit;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}
.nav-links a.btn,
.nav-links a.nav-btn {
  color: var(--blue-dark);
  padding: 13px 22px;
}

.nav-links a.btn:hover,
.nav-links a.nav-btn:hover {
  color: #ffffff;
  background: var(--blue-dark);
}
.nav-links a:hover,
.dropbtn:hover {
  color: var(--blue);
}

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 200;
}

.dropdown-content a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  font-size: 13px;
}

.dropdown-content a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--blue);
  box-shadow: 0 10px 24px rgba(18, 60, 105, .18);
}

.btn:hover {
  background: var(--blue-dark);
  color: #ffffff;
}

.btn.secondary {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-btn {
  padding: 12px 20px;
}

/* HERO */

.hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 85% 15%, rgba(18,60,105,.16), transparent 32%),
    linear-gradient(135deg, #eaf2fb 0%, #ffffff 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(18,60,105,.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 6vw, 70px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
  color: var(--blue-dark);
}

.hero p {
  font-size: 20px;
  color: #374151;
  max-width: 670px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.trust-line {
  font-size: 14px;
  color: #4b5563;
}

.trust-line a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.hero-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(18,60,105,.85), rgba(18,60,105,.55)),
    linear-gradient(135deg, #dbeafe, #eff6ff);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.caption {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 14px;
  color: #374151;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .10);
  max-width: 360px;
}

.hero-image .caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
}

/* SECTIONS */

section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-card h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* CARDS */

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: #4b5563;
}

.card-link {
  text-decoration: none;
  display: block;
}

.card-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  transition: .15s ease;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 16px;
  font-weight: 800;
}

/* BADGES */

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(18,60,105,.16);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.badge.dark {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
  color: #fff;
}

/* ABOUT */

.about-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card p {
  color: #374151;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--blue-light);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* SOCIAL */

.social-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
}

.social-image {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  flex: 0 0 auto;
}

.social-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

/* LISTS */

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding-left: 30px;
  position: relative;
  color: #374151;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

/* CONTACT */

.contact-card {
  background: var(--blue-light);
  border: 1px solid rgba(18,60,105,.12);
  border-radius: 24px;
  padding: 30px;
}

.contact-card p {
  margin: 8px 0;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* CTA */

.cta-band {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.16), transparent 30%),
    var(--blue-dark);
  color: #fff;
  border-radius: 32px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
}

.cta-band .btn {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
  justify-self: end;
  box-shadow: none;
}

.cta-band .btn:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

/* LEGAL / CONTENT PAGES */

.page-hero {
  padding: 80px 0 50px;
  background:
    radial-gradient(circle at 85% 15%, rgba(18,60,105,.16), transparent 32%),
    linear-gradient(135deg, #eaf2fb 0%, #ffffff 72%);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  max-width: 700px;
  color: #374151;
  font-size: 18px;
  margin: 0;
}

.content {
  padding: 70px 0;
}

.policy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.policy-card h2 {
  color: var(--blue-dark);
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  margin-top: 0;
  margin-bottom: 18px;
  color: #374151;
}

.policy-card ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 22px;
}

.policy-card li {
  margin-bottom: 10px;
  color: #374151;
}

/* FOOTER */

footer {
  background: #081f38;
  color: #d1d5db;
  padding: 46px 0;
  font-size: 14px;
}

footer strong {
  color: #fff;
}

footer a {
  color: #d1d5db;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(2, 72px);
  gap: 14px;
  justify-content: center;
  align-content: start;
}

.footer-badge {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tiny {
  margin-top: 26px;
  color: #9ca3af;
  font-size: 12px;
}
/* CONTACT SECTION BACKGROUND */

#contact {
  position: relative;
  background:
    linear-gradient(rgba(8,31,56,.1), rgba(8,31,56,.1)),
    url("images/pnw.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

#contact .section-heading h2,
#contact .section-heading p {
  color: #ffffff;
}

#contact .contact-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.55);
}

#contact .about-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

#contact .about-image {
  border-color: rgba(255,255,255,.18);
}
/* ABOUT SECTION BACKGROUND */

#about {
  position: relative;
  background-image:
    linear-gradient(rgba(18,60,105,.2), rgba(18,60,105,.2)),
    url("images/mountain-lake.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 78px 0;
}

#about .eyebrow,
#about h2,
#about p {
  color: #ffffff;
}

#about .badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #ffffff;
}

#about .about-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}

#about .about-image {
  border-color: rgba(255,255,255,.18);
}
/* RESPONSIVE */

@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand span {
    max-width: 260px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .cta-band,
  .footer-grid,
  .about-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-image,
  .hero-image img {
    min-height: 300px;
  }

  .about-image {
    max-width: 280px;
  }

  .social-card {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 32px;
  }

  .cta-band .btn {
    justify-self: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-badges {
    grid-template-columns: repeat(3, 72px);
    justify-content: start;
  }

  .policy-card {
    padding: 28px;
  }
  .ssl-badge {
  margin-top: 14px;
}

.ssl-badge img {
  height: 100px;
  width: auto;
  object-fit: contain;
}


}
