:root {
    --green: #0D7C3B;
    --green-light: #E8F5ED;
    --green-dark: #095C2C;
    --blue: #1A56DB;
    --blue-light: #E8EEFB;
    --blue-dark: #133FA3;
    --yellow: #F5A623;
    --yellow-light: #FEF5E1;
    --yellow-dark: #D48C0E;
    --dark: #0F1B2D;
    --dark-soft: #1C2E45;
    --gray-700: #374151;
    --gray-500: #6B7280;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(15,27,45,0.08), 0 4px 14px rgba(15,27,45,0.04);
    --shadow-lg: 0 4px 20px rgba(15,27,45,0.1), 0 8px 32px rgba(15,27,45,0.06);
    --shadow-xl: 0 8px 40px rgba(15,27,45,0.12);
}
* { box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--gray-700); background: var(--white); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', 'Inter', sans-serif; color: var(--dark); font-weight: 700; line-height: 1.2; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* NAVBAR */
#mainNav { padding: 1rem 0; transition: all 0.35s ease; background: transparent; }
#mainNav.scrolled { background: rgba(15, 27, 45, 0.95); backdrop-filter: blur(12px); padding: 0.6rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.brand-icon { width: 38px; height: 38px; background: var(--green); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.brand-text { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--white); }
.brand-accent { color: var(--yellow); }
.navbar-toggler { border: none; color: var(--white); font-size: 1.5rem; padding: 0.25rem; }
.navbar-toggler:focus { box-shadow: none; }
.nav-link { color: rgba(255,255,255,0.8) !important; font-weight: 500; font-size: 0.95rem; padding: 0.5rem 1rem !important; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--white) !important; }
.nav-link.active { position: relative; }
.nav-link.active::after { content: ''; position: absolute; bottom: 4px; left: 1rem; right: 1rem; height: 2px; background: var(--yellow); border-radius: 1px; }

/* BUTTONS */
.btn-cta { background: var(--green); color: var(--white) !important; border: none; padding: 0.6rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: all 0.25s; text-decoration: none; }
.btn-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,124,59,0.35); }
.btn-cta-blue { background: var(--blue); color: var(--white) !important; border: none; padding: 0.6rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: all 0.25s; text-decoration: none; }
.btn-cta-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.35); }
.btn-outline-cta { border: 2px solid var(--green); color: var(--green) !important; padding: 0.6rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; background: transparent; transition: all 0.25s; }
.btn-outline-cta:hover { background: var(--green); color: var(--white) !important; }
.bg-green { background: var(--green); }
.bg-blue { background: var(--blue); }
.bg-yellow { background: var(--yellow); }

/* HERO */
.hero-section { background: linear-gradient(145deg, var(--dark) 0%, var(--dark-soft) 50%, #0A2540 100%); position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(13,124,59,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(26,86,219,0.1) 0%, transparent 50%), radial-gradient(circle at 60% 60%, rgba(245,166,35,0.06) 0%, transparent 40%); }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(13,124,59,0.15); border: 1px solid rgba(13,124,59,0.3); color: #5ED88B; padding: 0.45rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem; }
.hero-title { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 1.25rem; max-width: 620px; }
.text-gradient { background: linear-gradient(135deg, var(--yellow) 0%, #FFD700 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 540px; margin-bottom: 2rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-actions .btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.hero-actions .btn-outline-light { border-color: rgba(255,255,255,0.3); color: var(--white) !important; font-weight: 600; border-radius: var(--radius-sm); }
.hero-actions .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 3rem; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.trust-item i { color: var(--green); font-size: 0.9rem; }

/* HERO VISUAL */
.hero-visual { position: relative; height: 420px; }
.hero-card { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0.9rem 1.2rem; position: absolute; animation: float 6s ease-in-out infinite; }
.hero-card-main { top: 30px; left: 0; right: 0; animation-delay: 0s; }
.hero-card-float-1 { top: 120px; left: 20px; animation-delay: 1s; }
.hero-card-float-2 { top: 210px; right: 10px; left: 30px; animation-delay: 2s; }
.hero-card-float-3 { top: 300px; left: 10px; animation-delay: 3s; }
.card-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.card-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.card-value { color: var(--white); font-weight: 600; font-size: 0.95rem; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* STATS */
.stats-section { background: var(--white); padding: 4rem 0; border-bottom: 1px solid var(--gray-100); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 0.9rem; color: var(--gray-500); font-weight: 500; margin-top: 0.25rem; }

/* SECTIONS */
.section-header { margin-bottom: 3rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--green-light); color: var(--green); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--gray-500); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* PRODUCTS */
.products-section { padding: 5rem 0; background: var(--gray-50); }
.product-showcase { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; margin-bottom: 3rem; box-shadow: var(--shadow); }
.product-alt { background: var(--white); }
.product-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
.product-badge-green { background: var(--green-light); color: var(--green); }
.product-badge-blue { background: var(--blue-light); color: var(--blue); }
.product-title { font-size: 2rem; margin-bottom: 0.5rem; }
.product-tagline { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 1rem; }
.product-desc { margin-bottom: 1.5rem; line-height: 1.8; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-700); }
.feature-item i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* PRODUCT VISUAL */
.product-visual { background: var(--dark); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); }
.pv-header { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08); }
.pv-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 5px; }
.pv-dots span:nth-child(1) { background: #FF5F57; }
.pv-dots span:nth-child(2) { background: #FFBD2E; }
.pv-dots span:nth-child(3) { background: #28CA41; }
.pv-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.pv-body { padding: 1.25rem; }
.pv-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.pv-stat { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 0.75rem; }
.pv-stat-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.pv-stat-value { font-weight: 700; font-size: 1.05rem; }
.pv-chart { margin-bottom: 1.25rem; }
.pv-chart-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-bottom: 0.5rem; }
.pv-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.pv-bar { flex: 1; background: rgba(13,124,59,0.4); border-radius: 3px 3px 0 0; position: relative; transition: background 0.3s; }
.pv-bar.active { background: var(--green); }
.pv-bar span { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.pv-activity { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.75rem; }
.pv-activity-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.pv-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pv-dot.green { background: var(--green); }
.pv-dot.blue { background: var(--blue); }
.pv-dot.yellow { background: var(--yellow); }
.pv-time { margin-left: auto; color: rgba(255,255,255,0.3); font-size: 0.72rem; }
.pv-parish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1rem; }
.pv-parish-card { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 0.65rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.pv-parish-card i { color: var(--blue); }

/* WHY */
.why-section { padding: 5rem 0; background: var(--white); }
.why-card { background: var(--gray-50); border-radius: var(--radius); padding: 2rem 1.5rem; height: 100%; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--gray-100); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); margin-bottom: 1.25rem; }
.why-card h5 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* CTA */
.cta-section { padding: 5rem 0; background: linear-gradient(145deg, var(--dark) 0%, var(--dark-soft) 100%); }
.cta-title { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* PAGE HEADER */
.page-header { padding: 8rem 0 4rem; background: linear-gradient(145deg, var(--dark) 0%, var(--dark-soft) 100%); }
.page-header .section-badge { margin-bottom: 1rem; }
.page-title { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 700px; margin-bottom: 1rem; }
.page-subtitle { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; }

/* SERVICES */
.services-grid-section { padding: 5rem 0; background: var(--gray-50); }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2rem; height: 100%; border: 1px solid var(--gray-100); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-featured { border-color: var(--green); border-width: 2px; }
.service-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); margin-bottom: 1.25rem; }
.service-card h4 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.service-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.service-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--gray-700); padding: 0.3rem 0; }
.service-list li i { color: var(--green); font-size: 0.85rem; }

/* TECH */
.tech-section { padding: 5rem 0; background: var(--white); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.tech-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 1.5rem 1rem; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-100); transition: transform 0.2s; }
.tech-item:hover { transform: translateY(-2px); }
.tech-item i { font-size: 1.8rem; color: var(--blue); }
.tech-item span { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }

/* PRICING */
.pricing-section { padding: 4rem 0; background: var(--gray-50); }
.pricing-alt { background: var(--white); }
.pricing-product-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.pricing-product-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); }
.pricing-product-header h3 { margin: 0; font-size: 1.5rem; }
.pricing-product-header p { margin: 0; color: var(--gray-500); font-size: 0.9rem; }
.price-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; height: 100%; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card-popular { border-color: var(--green); border-width: 2px; box-shadow: var(--shadow-lg); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); padding: 0.25rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.price-tier { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.price-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.price-amount { margin-bottom: 0.5rem; }
.price-currency { font-size: 1rem; font-weight: 600; color: var(--gray-500); vertical-align: super; }
.price-value { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--dark); }
.price-period { font-size: 0.9rem; color: var(--gray-500); }
.price-members { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.price-features { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.88rem; }
.price-features li i { font-size: 0.85rem; }
.price-features li .bi-check-circle-fill { color: var(--green); }
.price-features li .bi-x-circle { color: var(--gray-300); }
.price-features li.disabled { color: var(--gray-300); }

/* SETUP */
.setup-section { padding: 4rem 0; background: var(--gray-50); }
.setup-card { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; border: 1px solid var(--gray-100); }
.setup-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.setup-card > .row > .col-lg-6:first-child p { color: var(--gray-500); }
.setup-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.setup-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.setup-item i { color: var(--green); }

/* CONTACT */
.contact-section { padding: 4rem 0 5rem; background: var(--gray-50); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 0.35rem; }
.contact-form-card > p { color: var(--gray-500); margin-bottom: 1.5rem; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--gray-300); padding: 0.6rem 0.9rem; font-size: 0.92rem; }
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,124,59,0.12); }
.input-group-text { background: var(--gray-50); border-color: var(--gray-300); color: var(--gray-500); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.interest-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.interest-option { cursor: pointer; }
.interest-option input { display: none; }
.interest-option span { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.9rem; border: 1px solid var(--gray-300); border-radius: 50px; font-size: 0.85rem; transition: all 0.2s; color: var(--gray-700); }
.interest-option input:checked + span { background: var(--green-light); border-color: var(--green); color: var(--green); font-weight: 600; }
.interest-option span:hover { border-color: var(--green); }
.contact-info-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { display: flex; gap: 1rem; background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--gray-100); transition: transform 0.2s; }
.contact-info-card:hover { transform: translateX(4px); }
.ci-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); flex-shrink: 0; }
.contact-info-card h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info-card p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.ci-link { font-size: 0.88rem; font-weight: 600; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; }
.ci-link:hover { color: var(--green-dark); }

/* FOOTER */
.site-footer { background: var(--dark); padding: 4rem 0 2rem; color: rgba(255,255,255,0.6); }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand .brand-text { font-size: 1.2rem; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-heading { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-contact li i { color: var(--green); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 3rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.82rem; margin: 0; color: rgba(255,255,255,0.35); }
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══ FAQ ═══ */
.faq-nav-section { background: var(--white); border-bottom: 1px solid var(--gray-100); position: sticky; top: 56px; z-index: 100; }
.faq-nav-bar { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.75rem 0; scrollbar-width: none; -ms-overflow-style: none; }
.faq-nav-bar::-webkit-scrollbar { display: none; }
.faq-nav-pill { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.9rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--gray-500); text-decoration: none; white-space: nowrap; border: 1px solid var(--gray-100); transition: all 0.2s; background: var(--gray-50); }
.faq-nav-pill:hover { border-color: var(--green); color: var(--green); }
.faq-nav-pill.active { background: var(--green); color: var(--white); border-color: var(--green); }
.faq-nav-pill i { font-size: 0.85rem; }

.faq-section { padding: 3rem 0 5rem; background: var(--gray-50); }

.faq-search-wrap { max-width: 600px; margin: 0 auto 3rem; }
.faq-search-box { display: flex; align-items: center; gap: 0.75rem; background: var(--white); border: 1.5px solid var(--gray-300); border-radius: var(--radius); padding: 0.75rem 1.25rem; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-search-box:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,124,59,0.1); }
.faq-search-box i { color: var(--gray-500); font-size: 1.1rem; }
.faq-search-box input { flex: 1; border: none; outline: none; font-size: 0.95rem; font-family: 'Inter', sans-serif; background: transparent; color: var(--dark); }
.faq-search-box input::placeholder { color: var(--gray-300); }
.faq-search-box kbd { background: var(--gray-100); border: 1px solid var(--gray-300); border-radius: 4px; padding: 0.15rem 0.45rem; font-size: 0.72rem; color: var(--gray-500); font-family: 'Inter', sans-serif; }
.faq-search-count { text-align: center; font-size: 0.82rem; color: var(--gray-500); margin-top: 0.5rem; }

.faq-category { margin-bottom: 3rem; }
.faq-cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.faq-cat-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); flex-shrink: 0; }
.faq-cat-header h3 { font-size: 1.3rem; margin: 0; }
.faq-cat-header p { margin: 0; font-size: 0.85rem; color: var(--gray-500); }

.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); margin-bottom: 0.5rem; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.open { border-color: var(--green); box-shadow: 0 2px 12px rgba(13,124,59,0.08); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border: none; background: none; cursor: pointer; text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--dark); font-family: 'Inter', sans-serif; transition: color 0.2s; }
.faq-trigger:hover { color: var(--green); }
.faq-trigger i { font-size: 1rem; color: var(--gray-500); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-trigger i { transform: rotate(45deg); color: var(--green); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.25rem; }
.faq-item.open .faq-body { max-height: 800px; padding: 0 1.25rem 1.25rem; }
.faq-body p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 0.75rem; }
.faq-body ul, .faq-body ol { font-size: 0.9rem; color: var(--gray-700); padding-left: 1.25rem; margin-bottom: 0.75rem; }
.faq-body li { margin-bottom: 0.3rem; }
.faq-body a { color: var(--green); font-weight: 600; text-decoration: none; }
.faq-body a:hover { text-decoration: underline; }
.faq-body code { background: var(--dark); color: var(--yellow); padding: 0.15rem 0.45rem; border-radius: 4px; font-size: 0.82rem; font-family: 'Courier New', monospace; }

/* FAQ tables */
.faq-table-wrap { overflow-x: auto; margin-bottom: 1rem; }
.faq-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.faq-table th { background: var(--dark); color: var(--white); padding: 0.6rem 1rem; text-align: left; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.faq-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.faq-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.faq-table td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.faq-table tbody tr:hover { background: var(--gray-50); }

/* FAQ columns (FOSA/BOSA, interest types) */
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.faq-col-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 1rem; }
.faq-col-card h6 { font-size: 0.88rem; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem; }
.faq-col-card h6 i { color: var(--green); }
.faq-col-card p { font-size: 0.85rem; color: var(--gray-500); margin: 0; line-height: 1.6; }

/* FAQ timeline */
.faq-timeline { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.5rem; }
.faq-tl-item { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 0.75rem; background: var(--gray-50); border-radius: var(--radius-sm); font-size: 0.88rem; border-left: 3px solid var(--green); }
.faq-tl-week { font-weight: 700; color: var(--green); min-width: 70px; font-size: 0.8rem; font-family: 'Courier New', monospace; }

/* FAQ comparison */
.faq-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.faq-compare-card { border-radius: var(--radius-sm); padding: 1rem; }
.faq-compare-card h6 { font-size: 0.88rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.faq-compare-card ul { list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.faq-compare-card li { padding: 0.2rem 0; }
.faq-compare-legacy { background: #FEF2F2; border: 1px solid #FECACA; }
.faq-compare-legacy h6 { color: #991B1B; }
.faq-compare-legacy li::before { content: '✗ '; color: #DC2626; }
.faq-compare-nodi { background: var(--green-light); border: 1px solid #A7F3D0; }
.faq-compare-nodi h6 { color: var(--green-dark); }
.faq-compare-nodi li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.faq-tag-bad { background: #FEE2E2; color: #DC2626; padding: 0.1rem 0.5rem; border-radius: 50px; font-size: 0.7rem; font-weight: 600; }
.faq-tag-good { background: #D1FAE5; color: var(--green-dark); padding: 0.1rem 0.5rem; border-radius: 50px; font-size: 0.7rem; font-weight: 600; }

/* FAQ CTA */
.faq-cta { margin-top: 2rem; }
.faq-cta-inner { background: linear-gradient(145deg, var(--dark) 0%, var(--dark-soft) 100%); border-radius: var(--radius-lg); padding: 3rem; text-align: center; position: relative; overflow: hidden; }
.faq-cta-inner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(13,124,59,0.2) 0%, transparent 70%); }
.faq-cta-icon { width: 56px; height: 56px; background: rgba(13,124,59,0.2); border: 1px solid rgba(13,124,59,0.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #5ED88B; margin: 0 auto 1rem; }
.faq-cta-inner h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.faq-cta-inner p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.faq-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.faq-cta-actions .btn-outline-cta { border-color: rgba(255,255,255,0.3); color: var(--white) !important; }
.faq-cta-actions .btn-outline-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ═══ TECHY POLISH ═══ */

/* Grid dots on page headers */
.page-header { position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }

/* Monospace accents on stat numbers */
.stat-number { font-family: 'Courier New', 'Sora', monospace; letter-spacing: -1px; }

/* Code-style product visual headers */
.pv-title { font-family: 'Courier New', monospace; letter-spacing: 0.03em; }

/* Subtle grid bg on tech section */
.tech-section { background-image: linear-gradient(var(--gray-100) 1px, transparent 1px), linear-gradient(90deg, var(--gray-100) 1px, transparent 1px); background-size: 40px 40px; }

/* ═══ BLOG ═══ */
.blog-section { padding: 3rem 0 5rem; background: var(--gray-50); }

.blog-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.blog-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--gray-50); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%); }
.blog-card-placeholder i { font-size: 3rem; color: rgba(255,255,255,0.15); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 0.6rem; }
.blog-card-meta i { margin-right: 0.2rem; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-desc { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 0.75rem; }
.blog-card-read { font-size: 0.85rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-card:hover .blog-card-read { text-decoration: underline; }

.blog-empty { text-align: center; padding: 4rem 1rem; }
.blog-empty i { font-size: 3rem; color: var(--gray-300); margin-bottom: 1rem; display: block; }
.blog-empty h4 { color: var(--dark); margin-bottom: 0.5rem; }
.blog-empty p { color: var(--gray-500); }

.blog-pagination { margin-top: 2.5rem; }
.blog-pagination .page-link { color: var(--green); border-color: var(--gray-100); font-size: 0.88rem; padding: 0.5rem 0.9rem; }
.blog-pagination .page-item.active .page-link { background: var(--green); border-color: var(--green); color: var(--white); }
.blog-pagination .page-link:hover { background: var(--green-light); }

/* Blog Post Detail */
.blog-back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; font-weight: 500; margin-bottom: 1rem; transition: color 0.2s; }
.blog-back-link:hover { color: var(--white); }
.blog-post-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 0.5rem; }
.blog-post-meta i { margin-right: 0.25rem; }
.blog-post-section { padding: 3rem 0 5rem; background: var(--white); }
.blog-post-hero-img { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }
.blog-post-hero-img img { width: 100%; height: auto; display: block; }
.blog-post-lead { font-size: 1.15rem; color: var(--gray-500); line-height: 1.8; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.blog-post-body { font-size: 1rem; line-height: 1.9; color: var(--gray-700); }
.blog-post-body h2, .blog-post-body h3, .blog-post-body h4 { margin-top: 2rem; margin-bottom: 0.75rem; color: var(--dark); }
.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-body a { color: var(--green); font-weight: 500; }
.blog-post-body ul, .blog-post-body ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.blog-post-body blockquote { border-left: 3px solid var(--green); padding-left: 1.25rem; margin: 1.5rem 0; color: var(--gray-500); font-style: italic; }
.blog-post-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 1rem 0; }
.blog-post-body code { background: var(--dark); color: var(--yellow); padding: 0.15rem 0.45rem; border-radius: 4px; font-size: 0.88rem; }
.blog-post-body pre { background: var(--dark); color: #e0e0e0; padding: 1.25rem; border-radius: var(--radius-sm); overflow-x: auto; margin: 1.25rem 0; font-size: 0.88rem; line-height: 1.6; }
.blog-post-body pre code { background: none; padding: 0; color: inherit; }

.blog-post-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.blog-post-share { display: flex; align-items: center; gap: 0.75rem; }
.blog-post-share span { font-size: 0.88rem; color: var(--gray-500); }
.blog-post-share a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--gray-50); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-500); text-decoration: none; transition: all 0.2s; }
.blog-post-share a:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ═══ END FAQ + POLISH ═══ */

/* RESPONSIVE */
@media (max-width: 991px) {
    .product-features { grid-template-columns: 1fr; }
    .setup-items { grid-template-columns: 1fr; }
    .product-showcase { padding: 2rem; }
    #navMenu { background: var(--dark); padding: 1rem; border-radius: var(--radius); margin-top: 0.5rem; }
}
@media (max-width: 767px) {
    .hero-section { padding-top: 70px; }
    .hero-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 0.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .price-value { font-size: 2.2rem; }
    .pv-stat-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-card { padding: 1.5rem; }
    .faq-columns, .faq-compare-grid { grid-template-columns: 1fr; }
    .faq-search-box kbd { display: none; }
    .faq-nav-bar { gap: 0.35rem; }
}
