*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f3f4f6;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0b1727;
  color: #e5e7eb;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo-main {
  font-weight: 700;
  font-size: 1rem;
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.main-nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #e5e7eb;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.main-nav a:hover {
  border-color: #2563eb;
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff 40%, #f3f4f6);
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.9rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1rem;
  color: #1f2937;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}

.btn.primary {
  background: #1d4ed8;
  color: #eff6ff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn.primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(30, 64, 175, 0.4);
}

.btn.secondary {
  background: #0f172a;
  color: #e5e7eb;
}

.btn.secondary:hover {
  background: #020617;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.btn.ghost {
  border-color: #1d4ed8;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.85);
}

.btn.ghost:hover {
  background: #1d4ed8;
  color: #eff6ff;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #1f2937;
}

.hero-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d4ed8;
}

.hero-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #0f172a;
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.45);
}

/* Sections */

.section {
  padding: 3.25rem 0;
  background: #f3f4f6;
}

.section-alt {
  background: #e5e7eb;
}

.section-accent {
  background: #0f172a;
  color: #e5e7eb;
}

.section h2 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: #4b5563;
}

.section-accent .section-intro {
  color: #d1d5db;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  border-color: #2563eb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Lists */

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

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

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

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.icon-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #1d4ed8;
  margin-top: 0.35rem;
}

/* Quotes */

.quote {
  margin: 0 0 1.1rem;
  font-style: italic;
  color: #111827;
  padding-left: 1.25rem;
  border-left: 3px solid #1d4ed8;
}

.section-alt .quote {
  color: #111827;
}

.quote-attrib {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Carriers */

.carriers {
  text-align: center;
}

.carriers .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.carrier-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.carrier-logo {
  min-width: 120px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
  color: #111827;
  background: #ffffff;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.carrier-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border-color: #2563eb;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  background: #020617;
  border-radius: 1.1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
}

.contact-card a {
  color: #bfdbfe;
  text-decoration: underline;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.25rem 0 1.4rem;
  font-size: 0.8rem;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .grid.two-col,
  .grid.three-col,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.75rem 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.25rem;
  }

  .header-inner {
    padding: 0.6rem 0;
  }

  .main-nav {
    gap: 0.4rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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