:root {
  --navy: #0a1f5c;
  --blue: rgba(11, 94, 215, 1);
  --blue-light: #2d55e8;
  --blue-soft: #eef3ff;
  --blue-tag: #e8eeff;
  --blue-tag-text: #1a3ecf;
  --text: #111827;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --panel: #f4f5f7;
  --white: #ffffff;
  --green: #10b981;
  --radius: 12px;
}


.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ═══════════ BREADCRUMB ═══════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0 6px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb a.active {
  color: var(--blue);
  font-weight: 500;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ═══════════ HERO SPLIT ═══════════ */
.hero-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  padding: 24px 0 48px;
}

.hero-media {
  position: relative;
}

.hero-img {
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #3a2410 0%, #1f1408 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hero-img svg {
  width: 150px;
  height: 130px;
  opacity: 0.5;
  fill: #c9a86a;
}

.vetting-badge {
  position: absolute;
  bottom: -22px;
  right: -16px;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  max-width: 210px;
}

.vetting-badge .vb-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.vetting-badge .vb-head svg {
  width: 15px;
  height: 15px;
  fill: var(--green);
}

.vetting-badge .vb-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-content h1 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.hero-checklist {
  list-style: none;
  margin: 16px 0 22px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}

.hero-checklist li svg {
  width: 16px;
  height: 16px;
  fill: var(--blue);
  flex-shrink: 0;
}

.btn-get-started {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}

.btn-get-started:hover {
  background: var(--blue-light);
}

/* ═══════════ WILLMAKER SECTION ═══════════ */
.willmaker {
  background: var(--panel);
  padding: 40px 0 48px;
}

.willmaker-head {
  background: rgba(11, 94, 215, 1);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 32px;
}

.willmaker-head h2 {
  font-size: 19px;
  font-weight: 700;
  color: white;
}

.willmaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.wm-left h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.wm-checklist {
  list-style: none;
  margin-bottom: 24px;
}

.wm-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 11px;
}

.wm-checklist li svg {
  width: 15px;
  height: 15px;
  fill: var(--blue);
  flex-shrink: 0;
}

.wm-video {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a2e 0%, #0f1729 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wm-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.wm-play {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.wm-video:hover .wm-play {
  transform: scale(1.1);
}

.wm-play svg {
  width: 26px;
  height: 26px;
  fill: var(--blue);
  margin-left: 3px;
}

/* ═══════════ FEATURES ═══════════ */

.features {
  padding: 56px 0;
  text-align: center;
}

.features h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.features .feat-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px
}

.feat-card {
  background: rgba(239, 246, 255, 1);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(13, 78, 179, 0.15);
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(to right, rgba(6, 29, 72, 1) 0%, rgba(13, 78, 179, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feat-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(11, 94, 215, 1);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 13px;
  color: rgba(106, 114, 130, 1);
  line-height: 1.3;
}

/* ═══════════ RESOURCE PANELS ═══════════ */
.resources {
  padding: 0 0 56px;
}

.resources h2 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.res-panel {
  background: var(--blue-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.res-head {
  background: var(--blue);
  padding: 13px 20px;
}

.res-head h3 {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.res-body {
  padding: 18px 20px 22px;
}

.res-body>p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

.res-links {
  list-style: none;
  margin-bottom: 18px;
}

.res-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blue);
 text-decoration: none;
  padding: 6px 0;
  transition: opacity 0.15s;
}

.res-links li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.res-links li a svg {
  width: 13px;
  height: 13px;
  fill: var(--muted-light);
  flex-shrink: 0;
}

.res-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.res-btn:hover {
  background: var(--blue-light);
}

/* ═══════════ DARK CTA ═══════════ */
.dark-cta {
  padding: 0 0 60px;
}

.dark-cta-inner {
  background: linear-gradient(120deg, rgba(4, 22, 57, 1) 0%, rgba(13, 55, 128, 1) 50%, rgba(12, 86, 197, 1) 100%);
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
}

.dca-img {
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #2c3e50, #4a5d70);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dca-img svg {
  width: 120px;
  height: 150px;
  fill: rgba(255, 255, 255, 0.4);
}

.dca-content h2 {
  font-size: 24px;
  font-weight:800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.dca-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 24px;
}

.dca-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
}

.dca-checklist li svg {
  width: 15px;
  height: 15px;
  fill: #4ade80;
  flex-shrink: 0;
}

.dca-search-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.dca-search {
  display: flex;
  gap: 10px;
}

.dca-search input {
  flex: 1;
  border: none;
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  outline: none;
}

.dca-search button {
  background: rgb(255 255 255 / 12%);
  color: white;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.15s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dca-search button:hover {
  background: var(--blue-light);
}

.dca-search button svg {
  width: 16px;
  height: 16px;
  fill: white;
}



/* ═══════════ RESPONSIVE 1024 ═══════════ */
@media (max-width: 1024px) {
  nav {
    padding: 0 28px;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 13px;
  }

  .container {
    padding: 0 28px;
  }

  .hero-split {
    grid-template-columns: 360px 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  footer {
    padding: 44px 28px 28px;
  }
}

/* ═══════════ RESPONSIVE 768 ═══════════ */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 60px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    top: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 16px 0 36px;
  }

  .vetting-badge {
    right: 16px;
  }

  .hero-content h1 {
    font-size: 23px;
  }

  .willmaker-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wm-left h3 {
    font-size: 20px;
  }

  .features {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dark-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .dca-content h2 {
    font-size: 20px;
  }

  .dca-checklist {
    grid-template-columns: 1fr;
  }

  .dca-search {
    flex-direction: column;
  }

  .dca-search button {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  footer {
    padding: 36px 20px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ═══════════ RESPONSIVE 480 ═══════════ */
@media (max-width: 480px) {
  .hero-img {
    height: 210px;
  }

  .vetting-badge {
    position: static;
    max-width: none;
    margin-top: 14px;
    right: 0;
  }

  .features>h2,
  .resources>h2 {
    font-size: 21px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}