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

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1E2D;
  --gold: #C9A227;
  --linen: #FAF6EF;
  --graphite: #2E2E2E;
  --olive: #5B6B4D;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--graphite);
  background: var(--linen);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.85rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.7;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
nav {
  background: var(--navy);
  color: var(--linen);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.logo img {
  max-height: 50px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 1rem;
  }
  
  .logo img {
    max-height: 35px;
  }
}

@media (max-width: 640px) {
  .logo img {
    max-height: 32px;
  }
}

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

.nav-links a {
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--linen);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding: 1rem 0;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  nav {
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    padding: 0.5rem;
  }
  
  .mobile-nav {
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.5rem 0;
  }
  
  .mobile-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}

.btn-primary {
  background: var(--navy);
  color: var(--linen);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

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

.btn-secondary:hover {
  background: var(--navy);
  color: var(--linen);
}

/* Hero Section */
.hero {
  background: var(--linen);
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.verse-chip {
  font-style: italic;
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.6;
}

.verse-ref {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--olive);
  margin-left: 0.5rem;
}

@media (max-width: 640px) {
  .verse-chip {
    font-size: 0.9rem;
  }
  
  .verse-ref {
    font-size: 0.8rem;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.text-link {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta a, .hero-cta button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Sections */
section {
  padding: 4rem 0;
}

@media (max-width: 640px) {
  section {
    padding: 2rem 0;
  }
  
  .container {
    padding: 0 1.25rem;
  }
  
  .container-sm {
    padding: 0 1.25rem;
  }
}

.section-white {
  background: white;
}

.section-linen {
  background: var(--linen);
}

.section-navy {
  background: var(--navy);
  color: var(--linen);
}

.section-gold {
  background: var(--gold);
  color: var(--navy);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  
  .section-subtitle {
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}

/* Cards & Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--linen);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.card-white {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}

.card-white:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .card, .card-white {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .card-content {
    font-size: 0.95rem;
  }
}

.card-content {
  color: var(--graphite);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .card-content {
    font-size: 0.925rem;
    line-height: 1.65;
  }
}

.icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Steps */
.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 1.25rem;
}

.step-content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* Prayer Box */
.prayer-box {
  background: var(--linen);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--navy);
  max-width: 900px;
  margin: 3rem auto 0;
}

.prayer-box h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.prayer-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.prayer-note {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Testimonials */
.testimonial {
  background: var(--linen);
  padding: 1.5rem;
  border-radius: 8px;
}

.quote-mark {
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid rgba(91, 107, 77, 0.2);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--navy);
}

.author-title {
  font-size: 0.875rem;
  opacity: 0.7;
}

.author-location {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.25rem;
}

/* CTA Band */
.cta-band {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.email-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.email-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.email-form button {
  background: var(--navy);
  color: var(--linen);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.email-form button:hover {
  background: rgba(11, 30, 45, 0.9);
}

@media (max-width: 640px) {
  .email-form {
    flex-direction: column;
  }
}

/* Footer */
footer {
  background: var(--navy);
  color: var(--linen);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Compact Footer Styles */
.footer-grid-compact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 1rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-title-compact {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--linen);
  font-weight: 600;
}

.footer-links-compact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links-compact a {
  color: rgba(250, 246, 239, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.875rem;
}

.footer-links-compact a:hover {
  color: var(--gold);
}

.footer-links-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.75rem;
}

.footer-links-two-column > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-two-column a {
  color: var(--linen);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  font-size: 0.875rem;
}

.footer-links-two-column a:hover {
  opacity: 1;
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid-compact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-links-two-column {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Page Header */
.page-header {
  background: var(--navy);
  color: var(--linen);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .page-header {
    padding: 1.5rem 0;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  
  .page-header p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Print Cards */
.print-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.print-card {
  background: var(--linen);
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 1.5rem;
  aspect-ratio: 3.5 / 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.print-card h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}

.print-card-verse {
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.print-card-reminder {
  font-size: 0.75rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .print-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  nav, footer, .mobile-menu-btn, .btn {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .print-card {
    page-break-inside: avoid;
  }
}

/* Liturgy Cards */
.liturgy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.liturgy-card {
  background: rgba(250, 246, 239, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.liturgy-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: bold;
}

.liturgy-title {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.liturgy-description {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.liturgy-prompt {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
  .liturgy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .liturgy-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/* About Page Styles */
.about-intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.photo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--olive) 100%);
  color: var(--linen);
  font-size: 3rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-text h2 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.about-intro-text p {
  margin-bottom: 1rem;
}

.scripture-callout {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.scripture-callout .scripture-text {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--graphite);
  margin-bottom: 0.75rem;
}

.scripture-callout .scripture-ref {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  text-align: right;
  display: block;
}

.hero-simple {
  background: var(--navy);
  color: var(--linen);
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero-simple h1 {
  color: var(--linen);
  margin: 0;
}

/* Responsive - About Page */
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-photo {
    justify-content: center;
  }
  
  .hero-simple {
    padding: 3rem 0 2rem;
  }
  
  .scripture-callout {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
  
  .scripture-callout .scripture-text {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .photo-circle {
    width: 150px;
    height: 150px;
  }
  
  .photo-placeholder {
    font-size: 2.5rem;
  }
  
  .about-intro-grid {
    gap: 1.5rem;
  }
  
  .hero-simple {
    padding: 2.5rem 0 1.5rem;
  }
}

/* How It Works Page Styles */
.verse-inline {
  font-style: italic;
  color: var(--gold);
  font-size: 0.9em;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }

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

@media (prefers-reduced-motion: reduce) {
  .timeline-step {
    animation: none;
    opacity: 1;
  }
}

.timeline-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  color: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.timeline-content p {
  line-height: 1.7;
  color: var(--graphite);
}

.card-preview-small {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.mini-card {
  width: 140px;
  height: 80px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.card-front-mini {
  background: linear-gradient(135deg, var(--linen) 0%, #fff 100%);
  border: 1px solid rgba(11, 30, 45, 0.1);
}

.card-back-mini {
  background: var(--linen);
  border: 1px solid rgba(11, 30, 45, 0.1);
}

.qr-visual {
  text-align: center;
  margin-top: 1rem;
}

.btn-ghost {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--linen);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
  line-height: 1.7;
}

.feature-list li:last-child {
  border-bottom: none;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.resource-card {
  background: var(--linen);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--graphite);
}

.resource-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.resource-card p {
  margin-bottom: 0.5rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: var(--linen);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  text-align: center;
}

.partner-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.partner-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-question h3 {
  color: var(--navy);
  margin: 0;
  font-size: 1.25rem;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-left: 1rem;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  line-height: 1.7;
  color: var(--graphite);
  margin: 0;
}

/* Responsive - How It Works */
@media (max-width: 968px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .timeline {
    gap: 2rem;
  }
  
  .timeline-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .card-preview-small {
    flex-direction: column;
    align-items: center;
  }
  
  .mini-card {
    width: 200px;
    height: 115px;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Flip Card for How It Works - Step 1 */
.flip-card-container-small {
  width: 3.5in;
  height: 2in;
  margin: 1.5rem auto;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

.flip-card-inner-small {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  transform-origin: center center;
}

.flip-card-container-small.flipped .flip-card-inner-small {
  transform: rotateY(180deg);
}

.flip-card-front-small,
.flip-card-back-small {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0.125in;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.flip-card-back-small {
  transform: rotateY(180deg);
}

.flip-card-container-small:active {
  transform: scale(0.98);
  transition: transform 0.1s;
}

.card-front-small {
  background: var(--navy);
  color: var(--linen);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100%;
  width: 100%;
}

.card-front-small::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4in;
  height: 1.4in;
  background: url('images/logo-icon-only.png') center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.card-front-small .card-safe-area {
  position: relative;
  z-index: 1;
  padding: 0.25in;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.card-front-small h1 {
  font-size: 18pt;
  margin: 0 0 0.1in 0;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: var(--linen);
}

.card-front-small h2 {
  font-size: 15pt;
  font-weight: 600;
  margin: 0 0 0.15in 0;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.card-front-small p {
  font-size: 8.5pt;
  font-style: italic;
  line-height: 1.35;
  max-width: 2.8in;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0.2in;
  color: var(--linen);
}

.card-back-small {
  background: var(--linen);
  color: var(--graphite);
  padding: 0.25in 0.3in;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2in;
  align-items: center;
}

.card-back-small .card-back-content h3 {
  font-size: 11pt;
  margin: 0 0 0.08in 0;
  color: var(--navy);
}

.card-back-small .card-back-content p {
  font-size: 8pt;
  margin: 0 0 0.08in 0;
  line-height: 1.3;
}

.card-back-small .card-back-content ul {
  font-size: 8pt;
  margin: 0 0 0.08in 0;
  padding-left: 0.18in;
  line-height: 1.4;
}

.card-back-small .card-back-content ul li {
  margin-bottom: 0.02in;
}

.card-back-small .verse-small {
  font-size: 7pt;
  font-style: italic;
  margin: 0;
  opacity: 0.8;
}

.card-back-small .card-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08in;
}

.card-back-small .card-qr p {
  font-size: 6.5pt;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  opacity: 0.7;
}

.flip-hint {
  text-align: center;
  color: var(--gold);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .flip-card-container-small {
    width: 300px;
    height: 171px;
    max-width: 90vw;
  }
  
  .flip-card-front-small h1 {
    font-size: 1rem !important;
  }
  
  .flip-card-front-small h2 {
    font-size: 0.75rem !important;
  }
  
  .flip-card-front-small p {
    font-size: 0.65rem !important;
  }
}

