/* ============================================
   HyndSyte Church — Landing Page Styles
   Matches hosting.hyndsyte.com design language
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

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

.nav-logo a { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }

.nav-logo .logo { height: 80px; width: auto; filter: brightness(0) invert(1); }

.logo-text { color: #f9fafb; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }

.nav-menu { display: flex; gap: 2rem; align-items: center; }

.nav-link { text-decoration: none; color: #d1d5db; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; }

.nav-link:hover { color: #ffffff; }

.nav-phone { color: #93c5fd; font-weight: 600; }

.nav-login {
    background: #2563eb;
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-login:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.nav-toggle { display: none; flex-direction: column; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }

.nav-toggle span { display: block; width: 25px; height: 3px; background: #f9fafb; margin: 3px 0; transition: 0.3s; border-radius: 2px; }

/* Hero */
.church-hero { position: relative; padding: 160px 0 100px; background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #dbeafe 100%); overflow: hidden; }

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 8s ease-in-out infinite; }

.shape-1 { width: 400px; height: 400px; background: #f59e0b; top: -100px; right: -100px; }

.shape-2 { width: 300px; height: 300px; background: #3b82f6; bottom: -50px; left: -50px; animation-delay: -3s; opacity: 0.25; }

.shape-3 { width: 200px; height: 200px; background: #10b981; top: 40%; right: 20%; animation-delay: -6s; opacity: 0.2; }

@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-20px, 15px) scale(1.05); } 66% { transform: translate(15px, -10px) scale(0.95); } }

.church-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }

.hero-badge { display: inline-block; background: linear-gradient(135deg, #10b981, #059669); color: white; padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); }

.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #111827; letter-spacing: -0.03em; }

.hero-title em { font-style: normal; background: linear-gradient(135deg, #10b981 0%, #059669 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-subtitle { font-size: 1.25rem; color: #4b5563; margin-bottom: 2.5rem; line-height: 1.7; max-width: 540px; }

.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

.btn {
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary { background: #10b981; color: white; }

.btn-primary:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35); }

.btn-glow { position: relative; overflow: hidden; }

.btn-glow::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transform: translateX(-100%); animation: shimmer 3s infinite; }

@keyframes shimmer { 0% { transform: translateX(-100%); } 50%, 100% { transform: translateX(100%); } }

.btn-secondary { background: transparent; color: #10b981; border: 2px solid #10b981; }

.btn-secondary:hover { background: #10b981; color: white; }

.btn-large { padding: 1.1rem 2.25rem; font-size: 1.1rem; border-radius: 12px; }

.btn-small { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

.hero-stats { display: flex; gap: 3rem; }

.stat { text-align: center; }

.stat-number { font-size: 2.5rem; font-weight: 800; color: #10b981; line-height: 1; }

.stat-suffix { font-size: 1.5rem; font-weight: 700; color: #10b981; }

.stat-label { font-size: 0.875rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.5rem; display: block; }

/* Hero Visual — Church Preview */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.church-preview {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    animation: slideIn 1s ease-out;
}

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

.preview-header { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: #f3f4f6; border-bottom: 1px solid #e5e7eb; }

.preview-dots { display: flex; gap: 6px; }

.preview-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; }

.preview-dots span:first-child { background: #ef4444; }

.preview-dots span:nth-child(2) { background: #f59e0b; }

.preview-dots span:nth-child(3) { background: #10b981; }

.preview-title { font-size: 0.8rem; color: #6b7280; font-weight: 500; }

.preview-body { display: flex; height: 280px; }

.preview-sidebar { width: 110px; background: #f9fafb; border-right: 1px solid #e5e7eb; padding: 0.75rem; }

.nav-item { padding: 0.5rem; font-size: 0.75rem; color: #6b7280; border-radius: 6px; margin-bottom: 2px; }

.nav-item.active { background: #dcfce7; color: #10b981; font-weight: 600; }

.preview-main { flex: 1; padding: 0.75rem; overflow: hidden; }

.church-overview { display: flex; flex-direction: column; gap: 0.75rem; height: 100%; }

.overview-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }

.card-header { font-size: 0.7rem; font-weight: 600; color: #6b7280; text-transform: uppercase; margin-bottom: 0.25rem; }

.card-content { font-size: 0.8rem; color: #374151; font-weight: 500; }

/* Trust Bar */
.trust-bar { background: #111827; padding: 1.25rem 0; text-align: center; }

.trust-text { color: #9ca3af; font-size: 0.95rem; }

.trust-text strong { color: #d1d5db; }

/* Section Headers */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-header h2 { font-size: 2.75rem; font-weight: 800; margin-bottom: 1rem; color: #111827; letter-spacing: -0.02em; }

.section-header p { font-size: 1.125rem; color: #6b7280; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.section-header.light h2 { color: #ffffff; }

.section-header.light p { color: #9ca3af; }

.section-divider { height: 1px; background: linear-gradient(90deg, transparent, #e5e7eb, transparent); margin: 0 auto; max-width: 800px; }

/* Zeffy Payment Processing Section */
.zeffy-section { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); padding: 80px 0; }

.zeffy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1000px; margin: 0 auto; }

.zeffy-info { display: flex; flex-direction: column; gap: 2rem; }

.zeffy-logo-placeholder {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.zeffy-logo-placeholder h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }

.zeffy-logo-placeholder p { font-size: 1rem; opacity: 0.9; }

.zeffy-features { display: flex; flex-direction: column; gap: 1.5rem; }

.zeffy-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.zeffy-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.zeffy-feature svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.zeffy-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.zeffy-feature p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.zeffy-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.zeffy-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.zeffy-cta p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.zeffy-cta .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.zeffy-cta .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

/* Ministries Section */
.industries { background: #fef3c7; }

.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }

.industry-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    cursor: default;
}

.industry-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border-color: #fbbf24; }

.industry-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: white; }

.industry-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; color: #111827; }

.industry-card p { color: #4b5563; font-size: 0.95rem; line-height: 1.6; }

.cta-card { background: linear-gradient(135deg, #065f46 0%, #047857 100%); color: white; border: none; }

.cta-card:hover { border-color: transparent; }

.cta-card .industry-icon { background: rgba(255,255,255,0.15); }

.cta-card h3 { color: #ffffff; }

.cta-card p { color: #d1fae5; margin-bottom: 1.5rem; }

/* Dark Section (Features) */
.dark-section { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }

.dark-section .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.dark-section .feature-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-4px); }

.dark-section .feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #10b981, #059669); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: white; }

.dark-section .feature-card h3 { color: #ffffff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }

.dark-section .feature-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }

/* Process Section */
.process { background: #ffffff; }

.process-steps { display: flex; align-items: flex-start; gap: 1rem; max-width: 1100px; margin: 0 auto; }

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

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.process-step h3 { font-size: 1.15rem; font-weight: 700; color: #111827; margin-bottom: 0.75rem; }

.process-step p { color: #4b5563; font-size: 0.95rem; line-height: 1.6; }

.process-step p strong { color: #10b981; }

.process-arrow { display: flex; align-items: center; padding-top: 2.5rem; color: #d1d5db; flex-shrink: 0; }

.process-arrow svg { width: 20px; height: 20px; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); padding: 100px 0; }

.cta-box { text-align: center; max-width: 800px; margin: 0 auto; }

.cta-box h2 { font-size: 2.75rem; font-weight: 800; color: #111827; margin-bottom: 1rem; letter-spacing: -0.02em; }

.cta-box p { font-size: 1.15rem; color: #4b5563; margin-bottom: 2.5rem; line-height: 1.7; }

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.cta-note { color: #6b7280; font-size: 0.95rem; font-style: italic; }

/* Footer */
.footer { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); color: white; padding: 80px 0 20px; }

.footer-content { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }

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

.footer-logo-text { color: #f9fafb; font-weight: 700; font-size: 1.1rem; }

.footer-section p { color: #94a3b8; margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.95rem; }

.footer-contact { margin-top: 1rem; }

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #86efac;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-phone:hover { color: #ffffff; }

.footer-section h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; color: #f1f5f9; text-transform: uppercase; letter-spacing: 0.05em; }

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 0.65rem; }

.footer-section ul li a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }

.footer-section ul li a:hover { color: #ffffff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center; color: #64748b; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e293b;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    }
    .nav-menu.active { display: flex; }
    .nav-menu .nav-link { padding: 0.75rem 1rem; border-radius: 6px; }
    .nav-menu .nav-link:hover { background: rgba(255, 255, 255, 0.1); }
    .nav-toggle { display: flex; }
    .church-hero { padding: 120px 0 60px; }
    .church-hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .church-preview { max-width: 100%; }
    section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .features-grid, .industries-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); padding: 0; justify-content: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .cta-box h2 { font-size: 2rem; }
    .zeffy-content { grid-template-columns: 1fr; gap: 2rem; }
    .zeffy-cta { padding: 2rem; }
    .zeffy-cta h3 { font-size: 1.5rem; }
    .zeffy-cta p { font-size: 1rem; }
}
