/* TitheFlow Styles */
:root {
  --navy: #1a3a6b;
  --gold: #f0c040;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --green: #16a34a;
  --red: #dc2626;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Inter, Arial, sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

/* NAV */
.navbar { background: var(--navy); padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 1.25rem; }
.logo-icon { font-size: 1.4rem; color: var(--gold); }
.logo-text { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); padding: 6px 12px; border-radius: 6px; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 8px; }

/* BUTTONS */
.btn { display: inline-block; padding: 10px 20px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; text-align: center; }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: #e6b030; border-color: #e6b030; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border-color: transparent; }
.btn-ghost:hover { color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-success { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-secondary { background: var(--gray-100); color: var(--gray-800); border-color: var(--gray-200); }
.btn-secondary:hover { background: var(--gray-200); }
.btn-block { display: block; width: 100%; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%); color: var(--white); padding: 90px 0; }
.hero .container { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(240,192,64,0.2); color: var(--gold); border: 1px solid rgba(240,192,64,0.4); padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.hero-content h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-card { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); color: var(--gray-800); }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.church-avatar { width: 44px; height: 44px; background: var(--navy); color: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.hero-card-header strong { display: block; font-size: 0.95rem; }
.hero-card-header span { font-size: 0.8rem; color: var(--gray-600); }
.hero-card-amount { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.hero-card-label { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 20px; }
.hero-card-btn { background: var(--gold); color: var(--navy); text-align: center; padding: 12px; border-radius: 8px; font-weight: 700; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 500px; margin: 0 auto; }

/* FEATURES */
.features { padding: 80px 0; background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-600); }

/* HOW IT WORKS */
.how-it-works { padding: 80px 0; }
.steps { display: flex; align-items: flex-start; gap: 20px; }
.step { flex: 1; text-align: center; }
.step-number { width: 56px; height: 56px; background: var(--navy); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin: 0 auto 16px; }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--gray-600); }
.step-arrow { font-size: 2rem; color: var(--gray-400); padding-top: 14px; flex-shrink: 0; }

/* PRICING */
.pricing { padding: 80px 0; background: var(--gray-50); }
.pricing-card { max-width: 480px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); text-align: center; border: 2px solid var(--navy); }
.pricing-badge { display: inline-block; background: var(--navy); color: var(--gold); padding: 6px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--gray-600); }
.pricing-note { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.95rem; color: var(--gray-800); }
.pricing-features li:last-child { border-bottom: none; }

/* CTA */
.cta { background: var(--navy); color: var(--white); padding: 80px 0; text-align: center; }
.cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* FOOTER */
.footer { background: var(--gray-800); color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.7; }
.footer-secure { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 0.95rem; font-family: inherit; color: var(--gray-800); background: var(--white); transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }
.form-check { display: flex; align-items: center; gap: 10px; }
.form-check input { width: 18px; height: 18px; cursor: pointer; }

/* AUTH PAGES */
.auth-page { min-height: calc(100vh - 64px); background: var(--gray-50); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: var(--white); border-radius: 16px; padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow); }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo .logo-icon { font-size: 2rem; color: var(--navy); }
.auth-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 6px; }
.auth-subtitle { text-align: center; color: var(--gray-600); font-size: 0.9rem; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--gray-600); }
.auth-footer a { color: var(--navy); font-weight: 600; }

/* ALERTS */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 20px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* PAGE HERO */
.page-hero { background: var(--navy); color: var(--white); padding: 50px 0; }
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* DASHBOARD LAYOUT */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
.sidebar { background: var(--navy); padding: 30px 0; }
.sidebar-logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.sidebar-logo span { color: var(--white); font-weight: 700; font-size: 1rem; }
.sidebar-nav { list-style: none; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all 0.2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,0.1); color: var(--white); }
.sidebar-nav a.active { border-left: 3px solid var(--gold); }
.sidebar-nav .nav-icon { font-size: 1rem; width: 20px; }
.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 12px 0; }
.main-content { padding: 32px; background: var(--gray-50); }
.content-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.content-header h1 { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.content-header p { font-size: 0.9rem; color: var(--gray-600); margin-top: 2px; }

/* STATS GRID */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.stat-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.stat-sub { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.card-title { font-size: 1rem; font-weight: 700; color: var(--navy); }

/* TABLES */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-50); color: var(--gray-600); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid var(--gray-200); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }

/* BADGES */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-pending { background: #fef9c3; color: #854d0e; }
.badge-error { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* GIVE PAGE */
.give-page { padding: 50px 0; }
.give-layout { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.church-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.church-avatar-lg { width: 64px; height: 64px; background: var(--navy); color: var(--gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.church-header h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.church-header p { font-size: 0.9rem; color: var(--gray-600); }
.give-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.give-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.amount-btn { padding: 12px; border: 2px solid var(--gray-200); border-radius: 8px; background: var(--white); font-size: 1rem; font-weight: 700; color: var(--gray-800); cursor: pointer; transition: all 0.2s; text-align: center; }
.amount-btn:hover, .amount-btn.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.custom-amount-wrap { margin-bottom: 20px; }
.frequency-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.freq-tab { flex: 1; padding: 9px; border: 2px solid var(--gray-200); border-radius: 8px; background: var(--white); font-size: 0.85rem; font-weight: 600; cursor: pointer; text-align: center; transition: all 0.2s; }
.freq-tab:hover, .freq-tab.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.donate-btn { width: 100%; padding: 16px; background: var(--gold); color: var(--navy); border: none; border-radius: 10px; font-size: 1.1rem; font-weight: 800; cursor: pointer; margin-top: 20px; transition: background 0.2s; }
.donate-btn:hover { background: #e6b030; }
.secure-note { text-align: center; font-size: 0.8rem; color: var(--gray-400); margin-top: 12px; }
.church-search { max-width: 600px; margin: 0 auto 40px; }
.church-search .form-input { font-size: 1rem; padding: 14px 18px; }
.churches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.church-card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform 0.2s; }
.church-card:hover { transform: translateY(-2px); }
.church-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.church-card p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 14px; }

/* REGISTER CHURCH */
.register-page { padding: 50px 0; }
.register-card { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.register-card h1 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.register-card .subtitle { color: var(--gray-600); margin-bottom: 32px; }
.section-divider { border: none; border-top: 1px solid var(--gray-200); margin: 28px 0; }
.section-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 16px; }

/* EMBED PAGE */
.embed-code { background: var(--gray-800); color: #e2e8f0; padding: 20px; border-radius: 10px; font-family: monospace; font-size: 0.9rem; overflow-x: auto; white-space: pre-wrap; word-break: break-all; }
.copy-btn { margin-top: 12px; }

/* CONTACT / STATIC PAGES */
.static-page { padding: 60px 0; max-width: 760px; margin: 0 auto; }
.static-page h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.static-page .lead { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 40px; }
.static-page h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 32px 0 10px; }
.static-page p, .static-page li { color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }
.static-page ul { padding-left: 20px; }

/* STRIPE CARD ELEMENT */
.stripe-card-element { border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 12px 14px; background: var(--white); }
.stripe-card-element.StripeElement--focus { border-color: var(--navy); }
.stripe-card-element.StripeElement--invalid { border-color: var(--red); }
#card-errors { color: var(--red); font-size: 0.85rem; margin-top: 6px; }

/* PAGINATION */
.pagination { display: flex; gap: 6px; align-items: center; margin-top: 20px; }
.page-btn { padding: 7px 13px; border: 1px solid var(--gray-200); border-radius: 6px; font-size: 0.85rem; color: var(--gray-800); background: var(--white); cursor: pointer; text-decoration: none; }
.page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-btn:hover:not(.active) { background: var(--gray-100); }

/* FILTERS */
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; align-items: flex-end; }
.filters .form-group { margin-bottom: 0; }

/* UTILITY */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-600); }
.text-small { font-size: 0.85rem; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.empty-state { text-align: center; padding: 50px 20px; color: var(--gray-400); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { font-size: 0.95rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .churches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .give-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .churches-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .filters { flex-direction: column; }
  .content-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .frequency-tabs { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .register-card { padding: 24px; }
  .auth-card { padding: 28px; }
}

/* ── NEW SECTIONS ── */

/* Hero trust line */
.hero-trust { display:flex; gap:12px; align-items:center; font-size:0.85rem; color:rgba(255,255,255,0.65); flex-wrap:wrap; }

/* Hero mockup */
.hero-mockup { background:#fff; border-radius:20px; padding:0; box-shadow:0 24px 80px rgba(0,0,0,0.35); overflow:hidden; max-width:360px; margin:0 auto; }
.mockup-header { background:var(--navy); padding:18px 20px; display:flex; align-items:center; gap:12px; }
.mockup-avatar { width:38px; height:38px; background:var(--gold); color:var(--navy); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.mockup-church-info strong { display:block; color:#fff; font-size:0.9rem; }
.mockup-church-info span { color:rgba(255,255,255,0.6); font-size:0.75rem; }
.mockup-body { padding:20px; }
.mockup-label { font-size:0.75rem; font-weight:700; color:var(--gray-600); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:8px; }
.mockup-amounts { display:grid; grid-template-columns:repeat(4,1fr); gap:6px; margin-bottom:12px; }
.mockup-amounts span { text-align:center; padding:8px 4px; border:1.5px solid var(--gray-200); border-radius:6px; font-size:0.85rem; font-weight:600; color:var(--gray-800); }
.mockup-amounts span.active { background:var(--navy); color:#fff; border-color:var(--navy); }
.mockup-freq { display:flex; gap:6px; margin-bottom:12px; }
.mockup-freq span { flex:1; text-align:center; padding:7px 4px; border:1.5px solid var(--gray-200); border-radius:6px; font-size:0.78rem; font-weight:600; color:var(--gray-600); }
.mockup-freq span.active { background:var(--navy); color:#fff; border-color:var(--navy); }
.mockup-fund { border:1.5px solid var(--gray-200); border-radius:6px; padding:9px 12px; font-size:0.85rem; color:var(--gray-800); margin-bottom:12px; }
.mockup-btn { background:var(--gold); color:var(--navy); text-align:center; padding:12px; border-radius:8px; font-weight:800; font-size:0.95rem; margin-bottom:8px; }
.mockup-secure { text-align:center; font-size:0.72rem; color:var(--gray-400); }

/* Proof bar */
.proof-bar { background:var(--white); border-bottom:1px solid var(--gray-200); padding:20px 0; }
.proof-items { display:flex; justify-content:center; align-items:center; gap:0; flex-wrap:wrap; }
.proof-item { text-align:center; padding:8px 40px; }
.proof-item strong { display:block; font-size:1.6rem; font-weight:800; color:var(--navy); }
.proof-item span { font-size:0.85rem; color:var(--gray-600); }
.proof-divider { width:1px; height:40px; background:var(--gray-200); }

/* Testimonials */
.testimonials { padding:80px 0; background:var(--gray-50); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card { background:var(--white); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); }
.testimonial-stars { color:#f59e0b; font-size:1rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-card p { color:var(--gray-600); font-size:0.95rem; line-height:1.7; margin-bottom:20px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:40px; height:40px; background:var(--navy); color:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1rem; flex-shrink:0; }
.testimonial-author strong { display:block; font-size:0.9rem; color:var(--gray-800); }
.testimonial-author span { font-size:0.8rem; color:var(--gray-600); }

/* Pricing layout */
.pricing-layout { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; max-width:860px; margin:0 auto; }
.pricing-card.featured { border:2px solid var(--navy); }
.pricing-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:12px; }
.fee-example { background:var(--gray-50); border-radius:10px; padding:20px; margin-bottom:16px; }
.fee-row { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid var(--gray-200); font-size:0.9rem; color:var(--gray-600); }
.fee-row:last-child { border-bottom:none; }
.fee-row.total { font-weight:700; color:var(--navy); font-size:1rem; }
.fee-note { font-size:0.85rem; color:var(--gray-600); line-height:1.6; }
.pricing-explainer h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:16px; }

/* CTA extras */
.cta-content { text-align:center; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color:#fff; }

/* Give page improvements */
.give-info { }
.give-trust-box { background:var(--gray-50); border-radius:10px; padding:20px; }
.give-trust-item { display:flex; align-items:center; gap:10px; padding:7px 0; font-size:0.9rem; color:var(--gray-600); border-bottom:1px solid var(--gray-200); }
.give-trust-item:last-child { border-bottom:none; }
.form-select-lg { font-size:1rem; padding:12px 14px; }
.cover-fees-box { background:#f0fdf4; border:1.5px solid #bbf7d0; border-radius:10px; padding:14px 16px; margin-bottom:20px; }
.cover-fees-label { display:flex; align-items:flex-start; gap:12px; cursor:pointer; }
.cover-fees-label input { margin-top:3px; width:18px; height:18px; flex-shrink:0; cursor:pointer; }
.cover-fees-text strong { display:block; font-size:0.9rem; color:#166534; margin-bottom:2px; }
.cover-fees-text span { font-size:0.82rem; color:#166534; }
.search-row { display:flex; gap:10px; }
.form-input-lg { font-size:1rem; padding:14px 18px; }
.church-card-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.church-card-avatar { width:44px; height:44px; background:var(--navy); color:var(--gold); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.church-card-header h3 { font-size:1rem; font-weight:700; color:var(--navy); margin:0; }
.church-card-header p { font-size:0.82rem; color:var(--gray-600); margin:2px 0 0; }
.church-card-desc { font-size:0.85rem; color:var(--gray-600); margin-bottom:14px; line-height:1.6; }

/* Responsive additions */
@media (max-width:1024px) {
  .pricing-layout { grid-template-columns:1fr; max-width:480px; }
  .testimonials-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .proof-items { gap:0; }
  .proof-item { padding:8px 20px; }
  .proof-divider { display:none; }
  .search-row { flex-direction:column; }
  .cta-actions { flex-direction:column; align-items:center; }
}
