/* CitizenAce Website Styles */

:root {
  --primary-red: #DC2626;
  --primary-red-dark: #B91C1C;
  --primary-red-light: #FEE2E2;
  --green: #10B981;
  --green-light: #D1FAE5;
  --purple: #8B5CF6;
  --purple-light: #EDE9FE;
  --orange: #F59E0B;
  --orange-light: #FEF3C7;
  --blue: #3B82F6;
  --blue-light: #DBEAFE;
  --teal: #14B8A6;
  --teal-light: #CCFBF1;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --background: #FFFFFF;
  --background-alt: #F9FAFB;
  --background-dark: #111827;
  --border: #E5E7EB;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
}

.logo-text span {
  color: var(--primary-red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary-red);
}

.nav-cta {
  background: var(--primary-red) !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-red-dark) !important;
  transform: translateY(-1px);
}

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

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: calc(var(--header-height) + 60px) 24px 80px;
  background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  max-width: 320px;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

.store-icon {
  width: 22px;
  height: 22px;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  background: var(--background-alt);
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.proof-item {
  text-align: center;
}

.proof-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
}

.proof-stars {
  font-size: 24px;
  color: #FBBF24;
  letter-spacing: 2px;
}

.proof-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.feature-icon.icon-green { background: var(--green-light); color: var(--green); }
.feature-icon.icon-purple { background: var(--purple-light); color: var(--purple); }
.feature-icon.icon-orange { background: var(--orange-light); color: var(--orange); }
.feature-icon.icon-blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.icon-teal { background: var(--teal-light); color: var(--teal); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 24px;
  background: var(--background-alt);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  color: var(--text-muted);
  font-size: 24px;
  margin-top: 12px;
}

/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshots {
  padding: 100px 24px;
  overflow: hidden;
  background: var(--background-alt);
}

.screenshots-container {
  max-width: 1200px;
  margin: 0 auto;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  justify-items: center;
}

.screenshot-item {
  text-align: center;
  width: 100%;
  max-width: 200px;
}

.screenshot-phone {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.screenshot-item:hover .screenshot-phone {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-item p {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 24px;
  background: var(--background-alt);
}

.pricing-cards {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-cards-three {
  max-width: 1100px;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-badge-green {
  background: var(--green);
}

.pricing-card-yearly {
  border-color: var(--green);
}

.pricing-savings {
  color: var(--green) !important;
  font-weight: 600 !important;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-header p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features .check {
  color: var(--green);
  font-weight: 700;
}

.pricing-features .x {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 24px;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-380px * 6 - 24px * 6));
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  min-height: 80px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-red-light);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 24px;
  background: var(--background-alt);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

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

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 24px;
  background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
  text-align: center;
}

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

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-note {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--background-dark);
  color: white;
  padding: 60px 24px 40px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .screenshot-item {
    max-width: 180px;
  }

  .pricing-cards-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .pricing-card {
    padding: 28px 20px;
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    align-items: center;
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone-mockup {
    max-width: 260px;
  }

  .social-proof-content {
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .proof-divider {
    width: 1px;
    height: 32px;
  }

  .proof-number {
    font-size: 24px;
  }

  .proof-label {
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  /* Features - Horizontal Scroll */
  .features {
    padding: 60px 0;
  }

  .features .section-header {
    padding: 0 24px;
  }

  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 24px 24px;
    scrollbar-width: none;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: start;
  }

  /* How It Works */
  .steps {
    flex-direction: column;
    gap: 24px;
  }

  .step-arrow {
    display: none;
  }

  .step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .step-content {
    text-align: left;
  }

  /* Screenshots - Horizontal Scroll with larger images */
  .screenshots {
    padding: 60px 0;
  }

  .screenshots .section-header {
    padding: 0 24px;
  }

  .screenshots-container {
    padding: 0;
  }

  .screenshots-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 24px 24px;
    scrollbar-width: none;
  }

  .screenshots-grid::-webkit-scrollbar {
    display: none;
  }

  .screenshot-item {
    flex-shrink: 0;
    width: 200px;
    max-width: none;
    scroll-snap-align: center;
  }

  .screenshot-phone {
    border-radius: 20px;
  }

  .screenshot-phone img {
    border-radius: 20px;
  }

  /* Pricing - Horizontal Scroll */
  .pricing {
    padding: 60px 0;
  }

  .pricing .section-header {
    padding: 0 24px;
  }

  .pricing-cards,
  .pricing-cards-three {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 20px 24px 24px;
    max-width: none;
    scrollbar-width: none;
  }

  .pricing-cards::-webkit-scrollbar,
  .pricing-cards-three::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: center;
  }

  .pricing-card-featured {
    order: 0;
  }

  /* Testimonials */
  .testimonials-track {
    animation-duration: 30s;
  }

  .testimonial-card {
    width: 300px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-324px * 6 - 24px * 6));
    }
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Scroll fade hints for carousels */
  .features-grid,
  .screenshots-grid,
  .pricing-cards,
  .pricing-cards-three {
    mask-image: linear-gradient(
      to right,
      black 0%,
      black 85%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      black 0%,
      black 85%,
      transparent 100%
    );
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 16px;
  }

  .phone-mockup {
    max-width: 220px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* Features on small mobile */
  .feature-card {
    width: 260px;
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  /* Screenshots on small mobile - bigger for better visibility */
  .screenshot-item {
    width: 180px;
  }

  .screenshot-phone {
    border-radius: 16px;
  }

  .screenshot-phone img {
    border-radius: 16px;
  }

  .screenshot-item p {
    font-size: 13px;
    margin-top: 12px;
  }

  /* Pricing on small mobile */
  .pricing-card {
    width: 280px;
    padding: 28px 20px;
  }

  /* Testimonials on small mobile */
  .testimonial-card {
    width: 280px;
    padding: 24px;
  }

  .testimonial-card > p {
    font-size: 14px;
    min-height: 70px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-304px * 6 - 24px * 6));
    }
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* FAQ on small mobile */
  .faq-item summary {
    font-size: 15px;
    padding: 16px 20px;
  }

  .faq-item p {
    font-size: 14px;
    padding: 0 20px 16px;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Help)
   ============================================ */
.page-header {
  padding: calc(var(--header-height) + 48px) 24px 48px;
  background: var(--background-alt);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-secondary);
}

.main {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.last-updated {
  display: inline-block;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.content-section ul, .content-section ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.content-section li {
  margin-bottom: 8px;
}

.content-section a {
  color: var(--primary-red);
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

/* Help page FAQ styling */
.faq-section {
  margin-bottom: 48px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--primary-red);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.faq-answer {
  color: var(--text-secondary);
  padding-left: 36px;
}

.contact-box {
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.contact-box h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Print styles */
@media print {
  .header, .footer, .hero-cta, .final-cta {
    display: none;
  }

  .main {
    max-width: 100%;
  }
}
