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

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

:root {
  --blue: #1B3A6B;
  --blue-hover: #254e94;
  --white: #FFFFFF;
  --dark-gray: #3D3D3D;
  --light-bg: #F5F7FA;
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(27, 58, 107, 0.10);
  --shadow-hover: 0 10px 36px rgba(27, 58, 107, 0.18);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ── Navigation ─────────────────────────────── */
nav {
  background: var(--blue);
  padding: 0 2.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  color: white;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #0f2040 0%, var(--blue) 45%, #254e94 100%);
  color: white;
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 110px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 2rem;
  animation: fadeInDown 0.7s ease both;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  line-height: 1.25;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

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

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s;
  border: none;
  font-family: 'Inter', sans-serif;
}

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

.btn-white:hover {
  background: #eef2fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  transform: translateY(-2px);
}

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

.btn-blue:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 107, 0.3);
}

.btn-blue-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-blue-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

/* ── Section Base ───────────────────────── */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #121e30;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--dark-gray);
  max-width: 600px;
  line-height: 1.75;
}

.bg-light {
  background: var(--light-bg);
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ── Service Cards ───────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue), #254e94);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  color: #121e30;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* ── Bio Cards ───────────────────────────── */
.bio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bio-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}

.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.bio-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bio-placeholder-photo {
  width: 100%;
  height: 290px;
  background: linear-gradient(135deg, #dce6f5, #b8ceec);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-placeholder-photo svg {
  width: 80px;
  height: 80px;
  stroke: rgba(27, 58, 107, 0.35);
  fill: none;
  stroke-width: 1.5;
}

.bio-card-body {
  padding: 1.75rem;
}

.bio-card-body h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: #121e30;
  margin-bottom: 0.3rem;
}

.bio-card-role {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
  display: block;
}

.bio-card-body p {
  font-size: 0.93rem;
  color: var(--dark-gray);
  line-height: 1.75;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.tag {
  background: var(--light-bg);
  color: var(--blue);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── Page Header ─────────────────────────── */
.page-header {
  background: linear-gradient(150deg, #0f2040 0%, var(--blue) 50%, #254e94 100%);
  color: white;
  padding: 4.5rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Podcast ─────────────────────────────── */
.podcast-featured {
  background: linear-gradient(135deg, var(--blue), #254e94);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.podcast-featured-artwork {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.podcast-featured-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.podcast-featured-info {
  flex: 1;
  min-width: 220px;
}

.podcast-featured-info .badge {
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.podcast-featured-info h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.podcast-featured-info p {
  font-size: 0.93rem;
  opacity: 0.88;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.episode-item {
  background: white;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.episode-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.ep-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), #254e94);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ep-info h4 {
  font-family: 'Merriweather', serif;
  font-size: 0.98rem;
  color: #121e30;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.ep-info p {
  font-size: 0.86rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

.ep-meta {
  font-size: 0.78rem;
  color: #9CA3AF;
  margin-top: 0.25rem;
}

.ep-play {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.ep-play:hover {
  background: var(--blue-hover);
  transform: scale(1.1);
}

.ep-play svg {
  fill: white;
  margin-left: 2px;
}

.platform-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  align-items: center;
}

.platform-row p {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.92rem;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.platform-badge:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ── Mini Courses ────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.course-card-header {
  background: linear-gradient(135deg, var(--blue), #254e94);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.course-card-header img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.course-header-placeholder {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-header-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 1.5;
}

.course-card-header-info h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.course-card-header-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.course-card-body {
  padding: 1.75rem;
}

.course-card-body h4 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #121e30;
  margin-bottom: 0.7rem;
}

.course-card-body > p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.course-topics {
  list-style: none;
  margin-bottom: 1.5rem;
}

.course-topics li {
  font-size: 0.88rem;
  color: var(--dark-gray);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.course-topics li:last-child {
  border-bottom: none;
}

.course-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

/* ── Contact ─────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: #121e30;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-info > p {
  font-size: 0.97rem;
  color: var(--dark-gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-item {
  background: var(--light-bg);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1rem;
}

.contact-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #121e30;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #121e30;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.78rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--dark-gray);
  background: var(--light-bg);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 2px solid #66bb6a;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: linear-gradient(150deg, #0f2040 0%, var(--blue) 50%, #254e94 100%);
  color: white;
  text-align: center;
  padding: 5.5rem 2rem;
}

.cta-section h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

/* ── Divider ─────────────────────────────── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Mission / Stats ─────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat-box .stat-number {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* ── Team Preview (Home) ─────────────────── */
.team-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-preview-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.team-preview-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(27, 58, 107, 0.15);
  margin-bottom: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-preview-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dce6f5, #b8ceec);
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(27, 58, 107, 0.15);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.team-preview-placeholder svg {
  width: 50px;
  height: 50px;
  stroke: rgba(27,58,107,0.4);
  fill: none;
  stroke-width: 1.5;
}

.team-preview-card:hover img,
.team-preview-card:hover .team-preview-placeholder {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(27, 58, 107, 0.22);
}

.team-preview-card h4 {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #121e30;
  margin-bottom: 0.3rem;
}

.team-preview-card span {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
}

/* ── Footer ──────────────────────────────── */
footer {
  background: #0c1a30;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 3.5rem 2.5rem 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 52px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.89rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.89rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col p {
  font-size: 0.89rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 820px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--blue);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.15rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  .episode-item {
    grid-template-columns: 48px 1fr;
  }

  .ep-play {
    display: none;
  }

  .podcast-featured {
    flex-direction: column;
  }

  .footer-main {
    padding: 2.5rem 1.25rem 2rem;
  }

  .footer-bottom {
    padding: 1.25rem;
  }
}
