@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1f2f4f;
  --deep-navy: #162848;
  --sky: #f4f6fb;
  --sand: #f4f6fb;
  --sun: #f1b23f;
  --sun-dark: #df9b28;
  --ink: #1c2230;
  --muted: #5f6b82;
  --card: #ffffff;
  --shadow: 0 12px 28px rgba(18, 31, 56, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sky);
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  animation: slideDown 0.6s ease-out;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  background: #f0f3f9;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.brand-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: #f1f4fb;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav a.nav-active {
  color: #ffffff;
}

.nav a.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--sun);
  border-radius: 999px;
}

.ghost-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--sun);
  font-family: inherit;
  font-weight: 700;
  color: #1d1d1d;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 70px 0 60px;
  background: #f7f8fc;
}

.sub-hero {
  padding: 70px 0 60px;
  background: #f7f8fc;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.sub-hero h1 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  margin: 12px 0 16px;
  color: var(--deep-navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 16px;
  color: var(--deep-navy);
}

.eyebrow {
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: #425a7d;
}

.lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.primary-btn,
.secondary-btn,
.accent-btn {
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: var(--sun);
  color: #1c1c1c;
  box-shadow: 0 10px 18px rgba(246, 180, 67, 0.35);
}

.secondary-btn {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(31, 47, 79, 0.35);
}

.accent-btn {
  background: var(--sun);
  color: #1d1d1d;
  border: none;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.video-card {
  width: min(480px, 100%);
  aspect-ratio: 16 / 9;
  background: #0d0f14;
  border-radius: 22px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: -40% 40% auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(241, 178, 63, 0.35), transparent 70%);
}

.video-overlay {
  display: grid;
  place-items: center;
  gap: 10px;
  color: #c9d4e8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 1;
}

.play-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
}

.play-dot::after {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
  margin-left: 4px;
}

.floating-tag {
  position: absolute;
  top: 12%;
  right: -4%;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 33, 64, 0.18);
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-navy);
  animation: float 4s ease-in-out infinite;
}

.floating-tag.second {
  top: auto;
  right: auto;
  left: -6%;
  bottom: 12%;
  animation-delay: 1.5s;
}

.audience {
  padding: 30px 0 70px;
  background: #ffffff;
}

.page-hero {
  padding: 48px 0 30px;
  background: #ffffff;
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero-inner.center {
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.media-placeholder {
  background: #0e0f13;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tile-section {
  padding: 10px 0 40px;
  background: #ffffff;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.icon-tile {
  background: #eef3f9;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.icon-tile h3 {
  font-size: 15px;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

.icon-tile p {
  font-size: 12px;
  color: var(--muted);
}

.tile-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}

.resource-section {
  padding: 30px 0 70px;
  background: #f7f9fc;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.resource-panel {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e5eaf2;
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.06);
}

.resource-panel.compact {
  padding: 18px;
}

.resource-panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.resource-panel-head h3 {
  font-size: 16px;
  color: var(--deep-navy);
}

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  background: #f0f2f7;
  border: none;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
}

.tab.active {
  background: #dfe6f3;
  color: var(--deep-navy);
}

.resource-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 10px;
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e7ecf4;
  background: #ffffff;
}

.resource-info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.resource-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}

.resource-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.resource-meta {
  font-size: 12px;
  color: var(--muted);
}

.resource-meta.small {
  font-size: 11px;
  color: #7b879b;
}

.download-btn {
  background: var(--sun);
  color: #1d1d1d;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.course-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.course-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}

.course-head h3 {
  font-size: 16px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.course-head p {
  font-size: 12px;
  color: var(--muted);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
  font-size: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "+";
  color: var(--sun-dark);
  margin-right: 8px;
  font-weight: 700;
}

.link-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.link-list a {
  text-decoration: none;
  color: var(--deep-navy);
  font-size: 13px;
}

.help-card p {
  margin: 10px 0 14px;
  font-size: 12px;
  color: var(--muted);
}

.section-center {
  padding: 50px 0;
  background: #ffffff;
}

.section-center.alt {
  background: #f7f9fc;
}

.section-head.compact {
  margin-bottom: 18px;
}

.featured-card {
  background: #eef3f9;
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.course-title h3 {
  font-size: 18px;
  margin: 8px 0 10px;
  color: var(--deep-navy);
}

.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--deep-navy);
  background: #dfe6f3;
  padding: 4px 10px;
  border-radius: 999px;
}

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

.stat-row {
  display: flex;
  gap: 26px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}

.stat-row strong {
  display: block;
  font-size: 16px;
  color: var(--deep-navy);
}

.stat-row span {
  font-size: 11px;
  color: var(--muted);
}

.dark-btn {
  background: #3a3d45;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.preview-box {
  background: #d7dbe2;
  border-radius: 12px;
  min-height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  padding: 14px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.support-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e6eaf2;
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.06);
}

.support-card h3 {
  font-size: 15px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

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

.support-list {
  list-style: none;
  margin: 12px 0 16px;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.link-stack {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.link-item {
  background: #f7f9fc;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #e6eaf2;
  font-size: 12px;
  color: var(--deep-navy);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.tool-card {
  background: #f4f6f9;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #dfe5ef;
  color: var(--deep-navy);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 12px;
  font-weight: 700;
}

.tool-card h4 {
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

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

.stat-strip {
  background: #ffffff;
  padding: 10px 0 40px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  text-align: center;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e6eaf2;
}

.stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-navy);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.resource-card-alt {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e6eaf2;
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.06);
}

.resource-card-alt h3 {
  font-size: 15px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.resource-card-alt p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
  font-size: 12px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "-";
  color: var(--navy);
  margin-right: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.expert-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e6eaf2;
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.06);
}

.expert-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.expert-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dfe6f3;
  color: var(--deep-navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}

.expert-card h4 {
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 2px;
}

.expert-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.expert-meta {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}

.support-minimal {
  background: #ffffff;
}

.support-minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  text-align: center;
}

.support-minimal-card {
  padding: 10px 12px;
}

.support-minimal-card h3 {
  font-size: 14px;
  color: var(--deep-navy);
  margin: 10px 0 6px;
}

.support-minimal-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f3f8;
  color: var(--deep-navy);
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  font-size: 12px;
  font-weight: 700;
}

.mini-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--deep-navy);
  text-decoration: underline;
}

.content-section {
  padding: 60px 0;
  background: #ffffff;
}

.content-section.alt {
  background: var(--sky);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 47, 79, 0.2);
  font-size: 12px;
  color: var(--navy);
  background: #fff;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.panel h3 {
  font-size: 18px;
  color: var(--deep-navy);
}

.panel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid rgba(31, 47, 79, 0.08);
  font-size: 13px;
  color: var(--deep-navy);
}

.panel-card span {
  color: var(--muted);
  font-weight: 500;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.08);
}

.info-card h3 {
  color: var(--deep-navy);
  margin-bottom: 10px;
  font-size: 16px;
}

.info-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(24, 36, 60, 0.08);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}

.step h4 {
  font-size: 15px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-head {
  max-width: 640px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  margin: 8px 0 12px;
  color: var(--deep-navy);
}

.section-head p {
  color: var(--muted);
  line-height: 1.6;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.resource-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 12px 26px rgba(16, 30, 54, 0.08);
  display: grid;
  gap: 12px;
  animation: fadeInUp 0.8s ease both;
}

.resource-card:nth-child(2) {
  animation-delay: 0.1s;
}

.resource-card:nth-child(3) {
  animation-delay: 0.2s;
}

.resource-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.resource-card h3 {
  color: var(--deep-navy);
  font-size: 18px;
}

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

.resource-card ul li::before {
  content: "+";
  color: var(--sun-dark);
  margin-right: 8px;
}

.program {
  padding: 40px 0 70px;
  background: var(--sky);
}

.program .section-head .eyebrow {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--deep-navy);
  letter-spacing: 0;
}

.program .section-head h2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.08);
}

.feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--deep-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 12px;
  font-size: 12px;
}

.feature h4 {
  color: var(--deep-navy);
  font-size: 16px;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.testimonials {
  padding: 70px 0 80px;
  background: #ffffff;
}

.testimonials .section-head .eyebrow {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--deep-navy);
  letter-spacing: 0;
}

.testimonials .section-head h2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.quote {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 26px rgba(16, 30, 54, 0.08);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.quote-meta {
  margin-top: 18px;
  display: grid;
  gap: 4px;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 13px;
}

.cta {
  background: var(--navy);
  color: #fff;
  padding: 46px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta h2 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: #151821;
  color: #d5d5d5;
  padding: 46px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.site-footer a {
  color: #d5d5d5;
  text-decoration: none;
  display: block;
  margin: 8px 0;
  font-size: 13px;
}

.site-footer h5 {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .hero-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 50px;
  }

  .trust {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .floating-tag {
    display: none;
  }

  .resource-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
