/* =====================================================================
   CSS CUSTOM PROPERTIES
   ===================================================================== */
:root {
  --crosshatch: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20path%20%7B%20fill%3A%20none%3B%20stroke%3A%20rgba(255,255,255,0.059)%3B%20stroke-width%3A%201.01px%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20vector-effect%3D%22non-scaling-stroke%22%20d%3D%22M416%2C192L256%2C320L96%2C192L256%2C64L416%2C192z%20M96-64L256%2C64L416-64%20M416%2C576V448L256%2C576%20M256%2C576L96%2C448v128%20M512%2C191L512%2C191L352%2C320l160%2C128.3L672%2C320L352%2C64l320-256%20M512%2C191L672%2C64L352-192%20M160-192L-160%2C64l320%2C256L0%2C448.3%20M0%2C448.3%20L-160%2C320L160%2C64l-320-256%20M416%2C448L256%2C320L96%2C448%20M96-64v76.8%20M416-64v76.8%20M352%2C64v76.8%20M160%2C64v76.8%20M96%2C192v76.8%20M416%2C192%20l-0.5%2C76.8%20M352%2C320v76.8%20M160%2C320v76.8%20M160%2C115.2l15.8%2C13%20M352%2C115.2l-16.2%2C13%20M352%2C371.2l-16.2%2C13%20M160%2C371.2l16.2%2C13%20M671.5%2C575.4l-160-128l-160%2C128%20M159.5%2C575.4l-160-128l-160%2C128%22%20%2F%3E%3C%2Fsvg%3E');
  --crosshatch-size: 615px;
}

/* =====================================================================
   RESET + BASE
   ===================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #171a1c;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 60px;
}

/* Subtle background pattern */
body::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: var(--crosshatch);
  background-size: var(--crosshatch-size);
  background-position: center;
  background-repeat: repeat;
}

/* Apply pattern to opaque sections so it shows through their solid backgrounds */
.section,
.pricing-section,
#home,
#school,
#family,
#about,
#support,
.cp-cta {
  background-image: var(--crosshatch);
  background-size: var(--crosshatch-size);
  background-repeat: repeat;
}

/* All direct children stack above pattern */
body > * {
  position: relative;
  z-index: 1;
}

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #ffc904;
}

p {
  line-height: 1.75;
}

.section-label {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(23, 26, 28, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.logo:hover {
  color: #ffc904;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  border-radius: 4px;
  display: block;
  transition:
    color 0.3s,
    transform 0.3s;
}

.nav-links li a:hover {
  color: #ffc904;
  transform: translateY(-2px);
}

.nav-blog {
  margin-left: 16px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: rgba(23, 26, 28, 0.97);
  padding: 16px;
  text-align: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px;
  margin: 4px 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.mobile-menu a:hover {
  background-color: rgba(238, 215, 90, 0.1);
  color: #ffc904;
}

/* =====================================================================
   LAYOUT UTILITIES
   ===================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 24px;
  background-color: #171a1c;
}

hr.divider {
  border: none;
  height: 1px;
  background: rgba(226, 232, 240, 0.1);
  margin: 0;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.25em;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.375em;
  font-weight: 400;
  color: #ffc904;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1em;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-secondary-links {
  margin-top: 16px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-secondary-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  margin: 0 8px;
  transition: color 0.25s;
}

.hero-secondary-links a:hover {
  color: #ffc904;
}

.hero-img {
  width: 100%;
  border-radius: 12px;
  border: 4px solid #ffc904;
  box-shadow: 0 10px 30px rgba(255, 201, 4, 0.2);
}

/* =====================================================================
   CARDS (verbatim from home.html CSS)
   ===================================================================== */
.cp-problem-grid,
.cp-solution-grid,
.cp-benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.cp-problem-grid,
.cp-solution-grid {
  grid-template-columns: repeat(2, 1fr);
}

.cp-benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cp-card {
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  padding: 48px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.cp-card:hover,
.cp-benefit-card:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(238, 215, 90, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(238, 215, 90, 0.15);
}

.cp-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
}

.cp-card-icon svg {
  width: 100%;
  height: 100%;
}

.cp-card h3 {
  font-size: 1.75em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #ffffff;
}

.cp-card > p {
  font-size: 1em;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
  color: #ffffff;
}

.cp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-card ul li {
  font-size: 1em;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  color: #ffffff;
}

.cp-card ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ffc904;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 11px;
}

.cp-benefit-card {
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  padding: 56px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.cp-benefit-number {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #ffc904;
  margin-bottom: 16px;
  line-height: 1;
}

.cp-benefit-label {
  font-size: 1em;
  line-height: 1.75;
  font-weight: 300;
  color: #ffffff;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1em;
  font-weight: 600;
  border-radius: 2.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: #ffc904;
  color: #1a202c;
}

.btn-primary:hover {
  background: #f5e477;
  color: #1a202c;
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(238, 215, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffc904;
}

.btn-outline:hover {
  background: rgba(238, 215, 90, 0.1);
  color: #ffc904;
  transform: scale(1.04);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9em;
}

/* =====================================================================
   CTA SECTION
   ===================================================================== */
.cp-cta {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(135deg, #0b1117 0%, #1a1f26 50%, #0b1117 100%);
}

.cp-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cp-cta h2 {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cp-cta p {
  font-size: 1em;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

/* =====================================================================
   PRICING SECTION
   ===================================================================== */
.pricing-section {
  padding: 100px 24px;
  background-color: #0b1117;
}

.pricing-section .section-header {
  margin-bottom: 16px;
}

.pricing-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

/* Pricing cards use inline styles from the original embed */
.pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
  color: #e2e8f0;
  font-size: 0.6rem;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.pricing-cols {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-cols {
    flex-direction: row;
    justify-content: center;
  }
}

.pricing-card {
  text-align: center;
  flex: 1;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #171a1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: 0.25s;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card .hd {
  color: #1e2321;
  background: #ffc904;
  padding: 20px;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0;
}

.pricing-card .price {
  background: #2d3748;
  font-size: 2.8em;
  font-weight: 700;
  padding: 25px 20px;
  color: #f8fafc;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card .price .desc {
  font-size: 0.35em;
  color: #cbd5e1;
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.3;
}

.pricing-card .blurb {
  background: #1a202c;
  padding: 15px 20px;
  font-size: 1.3em;
  color: #e2e8f0;
  font-weight: 400;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .sec {
  padding: 20px 0;
}

.pricing-card .cat {
  margin-bottom: 20px;
}

.pricing-card .cat:last-child {
  margin-bottom: 0;
}

.pricing-card .ct {
  background: #2d3748;
  color: #ffc904;
  font-size: 1.1em;
  font-weight: 700;
  padding: 10px 20px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card .row:nth-child(odd) {
  background: #1a202c;
}

.pricing-card .row:nth-child(even) {
  background: #2d3748;
}

.pricing-card .row:last-child {
  border-bottom: 0;
}

.pricing-card .name {
  color: #e2e8f0;
  font-weight: 400;
  flex: 1;
  text-align: left;
}

.pricing-card .ok {
  color: #3fab91;
  font-weight: 700;
}

.pricing-card .buy {
  background: #171a1c;
  padding: 20px;
}

.pricing-card .act {
  display: block;
  width: 100%;
  color: #1e2321;
  background: #ffc904;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.4em;
  transition: 0.25s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
}

.pricing-card .act:hover {
  background: #d6c24c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 215, 90, 0.4);
}

.pricing-note {
  font-size: 0.9em;
  color: #a0aec0;
  margin-top: 8px;
}

.pricing-note a {
  color: #ffc904;
  text-decoration: underline;
}

.pricing-callout {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 1.5rem 2rem;
  background: rgba(238, 215, 90, 0.1);
  border: 2px solid rgba(238, 215, 90, 0.3);
  border-radius: 8px;
  text-align: center;
}

.pricing-callout p {
  color: #e2e8f0;
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
}

.pricing-callout strong {
  color: #ffc904;
  display: block;
  margin-bottom: 0.75rem;
}

/* Carpool-only plan */
.carpool-plan-section {
  padding: 60px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.carpool-plan-section h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 20px;
}

.carpool-plan-section p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
}

/* =====================================================================
   SCHOOL / FAMILY RESOURCE SECTIONS
   ===================================================================== */
#home {
  background-color: #171a1c;
}

#school,
#family,
#about,
#support {
  background-color: #0b1117;
}

.resources-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.resources-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.resource-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.resource-col {
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.resource-col:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(238, 215, 90, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(238, 215, 90, 0.12);
}

.resource-col h3 {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.resource-col ul {
  list-style: none;
  padding: 0;
}

.resource-col ul li {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.resource-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ffc904;
}

/* =====================================================================
   FAQ ACCORDION (details/summary)
   ===================================================================== */
.faq-group {
  margin-bottom: 48px;
}

.faq-group-title {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

details.faq-item {
  border: 1px solid rgba(238, 215, 90, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

details.faq-item[open] {
  border-color: rgba(238, 215, 90, 0.4);
}

details.faq-item > summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 41, 59, 0.3);
  transition:
    background 0.25s,
    color 0.25s;
  user-select: none;
}

details.faq-item > summary::-webkit-details-marker {
  display: none;
}

details.faq-item > summary::after {
  content: '+';
  color: #ffc904;
  font-size: 1.4em;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.25s;
  line-height: 1;
}

details.faq-item[open] > summary::after {
  transform: rotate(45deg);
}

details.faq-item > summary:hover {
  background: rgba(30, 41, 59, 0.5);
  color: #ffc904;
}

.faq-body {
  padding: 24px;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  background: rgba(30, 41, 59, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.faq-body p {
  margin-bottom: 16px;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

.faq-body ul,
.faq-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.faq-body li {
  margin-bottom: 8px;
}

.faq-body strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.faq-body a {
  color: #ffc904;
  text-decoration: underline;
}

.faq-body a:hover {
  color: #f5e477;
}

/* =====================================================================
   FAMILY SECTION — VIDEOS
   ===================================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.video-col {
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.video-col:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(238, 215, 90, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(238, 215, 90, 0.12);
}

.video-col h3 {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.video-label {
  font-size: 0.875em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 20px 0 8px;
}

.video-label:first-of-type {
  margin-top: 0;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.3);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Dismissal steps */
.dismissal-steps {
  margin-top: 20px;
}

.dismissal-steps ol {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.dismissal-steps ol li {
  counter-increment: steps;
  padding-left: 44px;
  position: relative;
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
}

.dismissal-steps ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 3px;
  width: 28px;
  height: 28px;
  background: #ffc904;
  color: #1a202c;
  font-weight: 700;
  font-size: 0.8em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dismissal-steps .kicker {
  color: #ffc904;
  font-weight: 600;
}

.dismissal-simple {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================================================================
   ABOUT SECTION
   ===================================================================== */
.about-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-col {
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  padding: 40px;
  transition: border-color 0.25s;
}

.about-col:hover {
  border-color: rgba(238, 215, 90, 0.6);
}

.about-col h3 {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.about-col h3:first-child {
  margin-top: 0;
}

.about-col p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}

/* =====================================================================
   SUPPORT SECTION
   ===================================================================== */
.support-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-section .section-header {
  text-align: center;
  margin-bottom: 16px;
}

.support-desc {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  text-align: center;
}

.support-desc a {
  color: #ffc904;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  text-align: center;
}

.support-item {
  border: 1px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  padding: 32px 16px;
  transition: border-color 0.25s;
}

.support-item:hover {
  border-color: rgba(238, 215, 90, 0.5);
}

.support-item h3 {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.support-item a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.25s;
}

.support-item a:hover {
  color: #ffc904;
}

.support-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 215, 90, 0.3);
  border-radius: 50%;
  transition: border-color 0.25s;
}

.support-item a:hover .support-icon {
  border-color: rgba(238, 215, 90, 0.7);
}

/* =====================================================================
   NEWSLETTER FORM
   ===================================================================== */
.newsletter-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}

.newsletter-section h2 {
  font-size: 1em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input[type='email'] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(238, 215, 90, 0.3);
  border-radius: 2.5rem;
  color: #ffffff;
  font-size: 1em;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type='email']:focus {
  border-color: rgba(238, 215, 90, 0.6);
}

.newsletter-form input[type='email']::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* =====================================================================
   BLOG TAG / CATEGORY PAGES (old Hugo card structure)
   ===================================================================== */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.post-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 28px;
}

/* =====================================================================
   BLOG LISTING PAGE
   ===================================================================== */
.blog-hero {
  padding: 80px 24px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-hero p {
  font-size: 1.1em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.post-card {
  background: rgba(30, 41, 59, 0.3);
  border: 2px solid rgba(238, 215, 90, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  border-color: rgba(238, 215, 90, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(238, 215, 90, 0.1);
  color: inherit;
}

.post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-title {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #ffffff;
  transition: color 0.25s;
}

.post-card:hover .post-card-title {
  color: #ffffff;
}

.post-meta {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.post-excerpt {
  font-size: 0.95em;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  flex: 1;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  background: rgba(238, 215, 90, 0.15);
  color: #ffc904;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 500;
}

.read-more {
  color: #ffc904;
  font-weight: 600;
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =====================================================================
   BLOG POST PAGE
   ===================================================================== */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.post-header {
  margin-bottom: 40px;
}

.post-header h1 {
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.post-meta-bar {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.post-featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 48px;
  display: block;
}

.post-content {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.625em;
  font-weight: 700;
  color: #ffc904;
  margin-top: 48px;
  margin-bottom: 20px;
}

.post-content h3 {
  font-size: 1.25em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 36px;
  margin-bottom: 16px;
}

.post-content h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
  margin-bottom: 12px;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.post-content strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.post-content em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.post-content a {
  color: #ffc904;
  text-decoration: underline;
}

.post-content a:hover {
  color: #f5e477;
}

.post-content hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.post-content pre {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  overflow-x: auto;
  border: 1px solid rgba(238, 215, 90, 0.1);
}

.post-content code {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.post-content pre code {
  padding: 0;
  font-size: 0.875em;
  background: none;
}

.post-content blockquote {
  border-left: 4px solid #ffc904;
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.post-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-footer-tags h3 {
  font-size: 0.9em;
  font-weight: 600;
  color: #ffc904;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* =====================================================================
   DOWNLOAD SECTION
   ===================================================================== */
.download-desc {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-page {
  padding: 120px 24px 80px;
}

.download-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.download-page-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer.site-footer {
  background-color: #0b1117;
  background-image: var(--crosshatch);
  background-size: var(--crosshatch-size);
  background-repeat: repeat;
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 48px;
  transition: color 0.25s;
}

.footer-brand:hover {
  color: #ffc904;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: flex-start;
}

.footer-col:last-child {
  margin-left: auto;
}

.footer-col h3 {
  font-size: 0.85em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9em;
  text-decoration: none;
  transition: color 0.25s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}

.footer-social a:hover {
  color: #ffc904;
}

.footer-app-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copyright {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.35);
}

/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
  font-size: 2.25em;
  font-weight: 800;
  color: #ffc904;
  margin-bottom: 8px;
}

.legal-subtitle {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.legal-date {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.45);
}

.legal-content {
  font-size: 0.9375em;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-content strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.legal-content u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a {
  color: #ffc904;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #f5e477;
}

/* =====================================================================
   RESPONSIVE — 768px
   ===================================================================== */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }

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

  .hero-title {
    font-size: 2.25em;
  }

  .hero-img-wrap {
    display: none;
  }

  .section {
    padding: 60px 16px;
  }

  .cp-problem-grid,
  .cp-solution-grid {
    grid-template-columns: 1fr;
  }

  .cp-cta {
    padding: 80px 16px;
  }

  .cp-cta h2 {
    font-size: 2.25em;
  }

  .section-title {
    font-size: 1.75em;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
  }

  .about-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-page-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download-page-img {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-cols {
    flex-direction: column;
    gap: 32px;
  }

  .post-header h1 {
    font-size: 1.875em;
  }

  .blog-hero h1 {
    font-size: 2.25em;
  }

  .pricing-cols {
    flex-direction: column;
  }
}

/* =====================================================================
   RESPONSIVE — 480px
   ===================================================================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875em;
  }

  .section-title {
    font-size: 1.5em;
  }

  .cp-card {
    padding: 32px;
  }

  .cp-card h3 {
    font-size: 1.375em;
  }

  .cp-benefit-number {
    font-size: 3.5em;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .carpool-plan-section {
    padding: 40px 16px 80px;
  }

  .resources-section {
    padding: 60px 16px;
  }

  .about-section {
    padding: 60px 16px;
  }

  .support-section {
    padding: 60px 16px;
  }
}
