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

:root {
  --navy: #1B3A4B;
  --navy-light: #244D63;
  --teal: #4A8B8C;
  --teal-hover: #3D7576;
  --sage: #8FBCB0;
  --sage-light: #A8CDBF;
  --bg: #F7FAFA;
  --bg-alt: #EEF4F3;
  --text: #1B3A4B;
  --text-secondary: #475569;
  --text-muted: #6B7F8E;
  --white: #FFFFFF;
  --border: #D6E4E1;
  --shadow-sm: 0 1px 3px rgba(27,58,75,0.06);
  --shadow-md: 0 4px 16px rgba(27,58,75,0.08);
  --shadow-lg: 0 8px 32px rgba(27,58,75,0.10);
  --shadow-xl: 0 16px 48px rgba(27,58,75,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,250,250,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 0.938rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.938rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--teal); color: #FFFFFF !important; }
.btn-primary:hover { background: var(--navy); color: #FFFFFF !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }

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

.btn-large { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }

.nav-cta { padding: 10px 24px; font-size: 0.875rem; }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  position: absolute; left: 5px; transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 9px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 21px; }
.mobile-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,139,140,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(143,188,176,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-alt); border: 1px solid var(--border);
  font-size: 0.813rem; font-weight: 600; color: var(--teal);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  color: var(--navy); margin-bottom: 20px; letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 40px; line-height: 1.7;
}

.hero-form { display: flex; gap: 12px; max-width: 460px; }
.hero-form input[type="email"] {
  flex: 1; padding: 16px 20px; border: 2px solid var(--border);
  border-radius: 12px; font-size: 1rem; font-family: 'Inter', sans-serif;
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.hero-form input[type="email"]:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(74,139,140,0.1); }
.hero-form input[type="email"]::placeholder { color: var(--text-muted); }

.hero-form-msg { margin-top: 12px; font-size: 0.875rem; min-height: 20px; }
.hero-form-msg.success { color: var(--teal); }
.hero-form-msg.error { color: #B54A32; }

.hero-social-proof {
  margin-top: 48px; display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; color: var(--text-muted);
}
.hero-social-proof img { width: 24px; height: 24px; border-radius: 4px; }

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

/* ─── BROWSER MOCKUP ─── */
.browser-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.4s ease;
}
.browser-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }

.browser-mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF6058; }
.browser-dot:nth-child(2) { background: #FFBE30; }
.browser-dot:nth-child(3) { background: #27CA40; }

.browser-mockup img {
  display: block; width: 100%; height: auto;
}

/* ─── SECTIONS ─── */
section { padding: 120px 0; }

.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--navy); margin-bottom: 20px; letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── HOW IT WORKS ─── */
.how-it-works { background: var(--white); }

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

.step {
  text-align: center; padding: 48px 32px;
  border-radius: var(--radius-lg); transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--teal);
  margin-bottom: 24px; border: 1px solid var(--border);
}

.step h3 {
  font-size: 1.375rem; margin-bottom: 12px;
  font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy);
}
.step p { color: var(--text-secondary); font-size: 0.938rem; line-height: 1.7; }

/* ─── FEATURES ─── */
.features-list { display: flex; flex-direction: column; gap: 120px; }

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-row.reverse .feature-visual { order: -1; }

.feature-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.75rem;
}
.feature-icon.people { background: rgba(74,139,140,0.1); }
.feature-icon.giving { background: rgba(143,188,176,0.2); }
.feature-icon.services { background: rgba(27,58,75,0.08); }
.feature-icon.groups { background: rgba(74,139,140,0.1); }
.feature-icon.checkins { background: rgba(143,188,176,0.15); }

.feature-content h3 { font-size: 1.75rem; margin-bottom: 8px; color: var(--navy); }
.feature-tagline { font-size: 1.125rem; color: var(--teal); font-weight: 500; margin-bottom: 16px; }
.feature-content p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.938rem; color: var(--text-secondary);
}
.feature-list li::before {
  content: '✓'; font-weight: 700; color: var(--teal);
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(74,139,140,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

.feature-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transform: perspective(1200px) rotateY(-2deg);
  transition: transform 0.4s ease;
}
.feature-visual:hover { transform: perspective(1200px) rotateY(0deg); }
.feature-visual img { display: block; width: 100%; height: auto; }

.feature-row.reverse .feature-visual {
  transform: perspective(1200px) rotateY(2deg);
}
.feature-row.reverse .feature-visual:hover { transform: perspective(1200px) rotateY(0deg); }

/* ─── COMPARISON ─── */
.comparison { background: var(--white); }

.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 900px; margin: 0 auto;
}

.comparison-card {
  padding: 48px 40px; border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.comparison-card.old { background: var(--bg); }
.comparison-card.pews {
  background: linear-gradient(145deg, rgba(143,188,176,0.1) 0%, rgba(74,139,140,0.08) 100%);
  border-color: rgba(74,139,140,0.25);
}

.comparison-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; font-weight: 700;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.comparison-card.pews h3 { color: var(--teal); border-color: rgba(74,139,140,0.3); }
.comparison-card.old h3 { color: var(--text-muted); }

.comparison-card ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.comparison-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.938rem; line-height: 1.6;
}
.comparison-card.old ul li::before { content: '✕'; color: #C44; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.comparison-card.pews ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.comparison-card.old ul li { color: var(--text-muted); }
.comparison-card.pews ul li { color: var(--text-secondary); }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 840px; margin: 0 auto 48px;
}

.pricing-card {
  padding: 48px 40px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: var(--white); position: relative;
}
.pricing-card.featured {
  border-color: var(--navy); border-width: 2px;
  box-shadow: var(--shadow-lg); background: var(--navy); color: var(--white);
}

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  padding: 6px 20px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card h3 { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }

.pricing-amount {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800;
  color: var(--text); margin-bottom: 4px;
}
.pricing-amount span { font-size: 1.125rem; font-weight: 400; color: var(--text-muted); }
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-card.featured .pricing-amount span { color: rgba(255,255,255,0.6); }

.pricing-desc {
  font-size: 0.875rem; color: var(--text-muted);
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.938rem; color: var(--text-secondary);
}
.pricing-features li::before { content: '✓'; font-weight: 700; color: var(--teal); font-size: 0.875rem; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-features li::before { color: var(--sage); }

.pricing-card.featured .btn-primary { background: var(--white); color: var(--navy) !important; }
.pricing-card.featured .btn-primary:hover { background: var(--sage-light); color: var(--navy) !important; }

.pricing-note {
  text-align: center; max-width: 600px; margin: 0 auto;
  padding: 32px; background: var(--bg-alt); border-radius: var(--radius-lg);
}
.pricing-note p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }
.pricing-note strong { color: var(--text); }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--white); }

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

.testimonial-card {
  padding: 40px 32px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: var(--bg); text-align: center;
}
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-alt); border: 2px solid var(--border);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1.25rem;
}
.testimonial-card p { font-size: 1rem; color: var(--text-muted); font-style: italic; line-height: 1.7; }
.testimonial-card .name {
  margin-top: 16px; font-style: normal;
  font-size: 0.813rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.02em;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(145deg, var(--navy) 0%, #142D3B 100%);
  color: var(--white); text-align: center;
}
.cta-section .section-label { color: var(--sage); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.8); margin: 0 auto 48px; }

.cta-form {
  display: flex; gap: 12px; max-width: 500px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.cta-form input {
  padding: 16px 20px; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px; font-size: 1rem; font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.1); color: var(--white);
  outline: none; transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: rgba(255,255,255,0.5); }
.cta-form input[name="EMAIL"] { flex: 1; min-width: 240px; }
.cta-form input[name="FNAME"] { width: 160px; }
.cta-form .btn { background: var(--teal); color: var(--white); font-weight: 700; }
.cta-form .btn:hover { background: var(--sage); color: var(--navy); transform: translateY(-1px); }

.cta-form-msg {
  width: 100%; text-align: center; font-size: 0.875rem; margin-top: 8px; min-height: 20px;
}
.cta-form-msg.success { color: #A8E6CF; }
.cta-form-msg.error { color: #FFB4A8; }

/* ─── FOOTER ─── */
footer { padding: 64px 0 48px; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand-block {}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img { width: 32px; height: 32px; border-radius: 6px; }
.footer-brand-block p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
  max-width: 280px;
}
.footer-brand-block .footer-ctm {
  margin-top: 16px; font-size: 0.75rem; color: var(--text-muted);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 0.813rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }

.footer-copy {
  text-align: center; font-size: 0.75rem; color: var(--text-muted);
  padding-top: 32px; border-top: 1px solid var(--border);
}

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.25rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ─── CONTENT SECTIONS ─── */
.content-section { padding: 100px 0; }
.content-section.alt { background: var(--white); }

.content-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--navy);
  margin-bottom: 24px;
}
.content-section p {
  font-size: 1.125rem; color: var(--text-secondary);
  line-height: 1.8; max-width: 720px;
}
.content-section p + p { margin-top: 16px; }
.content-center { text-align: center; }
.content-center p { margin-left: auto; margin-right: auto; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-category {
  margin-bottom: 48px;
}
.faq-category h3 {
  font-family: 'Inter', sans-serif; font-size: 0.813rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid var(--border);
}

.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; background: var(--white);
}
.faq-question {
  width: 100%; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question::after {
  content: '+'; font-size: 1.25rem; color: var(--teal);
  font-weight: 400; transition: transform 0.3s;
}
.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.938rem; color: var(--text-secondary); line-height: 1.7;
}

/* ─── PRICING PAGE SPECIFIC ─── */
.pricing-comparison-table {
  max-width: 800px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-comparison-table table {
  width: 100%; border-collapse: collapse;
}
.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 16px 24px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.938rem;
}
.pricing-comparison-table th {
  background: var(--bg-alt); font-weight: 700;
  color: var(--text); font-family: 'Inter', sans-serif;
}
.pricing-comparison-table td { color: var(--text-secondary); }
.pricing-comparison-table td:nth-child(2),
.pricing-comparison-table td:nth-child(3),
.pricing-comparison-table th:nth-child(2),
.pricing-comparison-table th:nth-child(3) { text-align: center; }
.pricing-comparison-table tr:last-child td { border-bottom: none; }

.cost-comparison {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.cost-card {
  padding: 40px 32px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); text-align: center;
}
.cost-card.old-way { background: var(--bg); }
.cost-card.pews-way {
  background: linear-gradient(145deg, rgba(143,188,176,0.1) 0%, rgba(74,139,140,0.08) 100%);
  border-color: rgba(74,139,140,0.25);
}
.cost-card h4 {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
  margin-bottom: 16px; color: var(--text);
}
.cost-card .cost-amount {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 800; margin-bottom: 8px;
}
.cost-card.old-way .cost-amount { color: var(--text-muted); }
.cost-card.pews-way .cost-amount { color: var(--teal); }
.cost-card .cost-detail {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
}
.cost-card ul {
  list-style: none; text-align: left; margin-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.cost-card ul li { font-size: 0.875rem; color: var(--text-secondary); }

/* ─── STATS BAR ─── */
.stats-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--teal);
}
.stat-label {
  display: block; font-size: 0.813rem; color: var(--text-muted);
  font-weight: 500; margin-top: 4px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 40px; background: var(--border);
}
@media (max-width: 768px) {
  .stats-grid { gap: 24px; }
  .stat-divider { display: none; }
  .stat-number { font-size: 1.5rem; }
}

/* ─── SCREENSHOT GALLERY ─── */
.screenshot-gallery { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-grid .gallery-item:nth-child(4),
.gallery-grid .gallery-item:nth-child(5) {
  grid-column: span 1;
}
.gallery-grid .gallery-item:nth-child(4) { grid-column: 1 / 2; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: 2 / 3; }
@media (min-width: 961px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: 1 / 2; }
  .gallery-grid .gallery-item:nth-child(5) { grid-column: 2 / 3; }
}
.gallery-item { text-align: center; }
.gallery-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-img img { display: block; width: 100%; height: auto; }
.gallery-caption {
  margin-top: 12px; font-size: 0.875rem; color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ─── COMING SOON ─── */
.coming-soon { background: var(--bg); }
.coming-soon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.coming-soon-item {
  text-align: center; padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border); background: var(--white);
  transition: border-color 0.3s, transform 0.3s;
}
.coming-soon-item:hover { border-color: var(--teal); transform: translateY(-2px); }
.coming-soon-icon { font-size: 2rem; margin-bottom: 12px; }
.coming-soon-item h3 {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.coming-soon-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) {
  .coming-soon-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 500px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-visual { order: 0; }
  .comparison-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cost-comparison { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 24px; gap: 20px; box-shadow: var(--shadow-md);
  }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 80px; }
  .page-hero { padding: 120px 0 60px; }
  .hero-form { flex-direction: column; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .cta-form input[name="FNAME"] { width: auto; }
  .features-list { gap: 80px; }
  .section-header { margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .content-section { padding: 60px 0; }
  .pricing-comparison-table { font-size: 0.875rem; }
  .pricing-comparison-table th,
  .pricing-comparison-table td { padding: 12px 16px; }
}
