/* =============================================
   GST Feature Page Shared Stylesheet
   milaanerp.com/gst/feature-page.css
   ============================================= */

.feature-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1B5EBC 60%, #13459A 100%);
    padding: 100px 0 60px; position: relative; overflow: hidden;
}
.feature-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.feature-hero .container { position: relative; z-index: 1; }

.feature-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    padding: 6px 16px; border-radius: 50px; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px;
}
.feature-hero-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.feature-hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.8);
    line-height: 1.7; margin-bottom: 32px; max-width: 600px;
}
.feature-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.feature-hero-meta { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.feature-hero-stat { text-align: center; }
.feature-hero-stat .stat-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.feature-hero-stat .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }

.article-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; }
.article-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.article-breadcrumb a:hover { color: #fff; }
.article-breadcrumb span { color: rgba(255,255,255,0.4); }
.article-breadcrumb .current { color: rgba(255,255,255,0.9); }

.feature-body { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 40px 0; }
.feature-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; transition: all 0.3s; }
.feature-card:hover { border-color: #1B5EBC; box-shadow: 0 12px 40px rgba(27,94,188,0.12); transform: translateY(-4px); }
.feature-card-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #1B5EBC, #13459A); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card-icon i { color: #fff; font-size: 1.3rem; }
.feature-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.feature-card p { color: #475569; font-size: 0.92rem; line-height: 1.6; margin: 0; }

.section-heading { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: #0f172a; text-align: center; margin-bottom: 12px; }
.section-sub { color: #64748b; text-align: center; margin-bottom: 40px; font-size: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.how-it-works { background: #f8fafc; border-radius: 20px; padding: 48px; margin: 48px 0; }
.steps-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; margin: 32px 0; position: relative; }
.steps-flow::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, #1B5EBC, #10B981); z-index: 0; }
.flow-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.flow-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #1B5EBC, #13459A); color: #fff; font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(27,94,188,0.3); }
.flow-step h4 { font-weight: 700; color: #0f172a; margin-bottom: 6px; font-size: 0.95rem; }
.flow-step p { font-size: 0.82rem; color: #64748b; margin: 0; }

.cta-banner { background: linear-gradient(135deg, #0f172a, #1B5EBC); border-radius: 20px; padding: 56px 40px; text-align: center; color: #fff; margin: 48px 0; }
.cta-banner h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.benefit-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.benefit-list li { display: flex; align-items: center; gap: 10px; color: #475569; font-size: 0.95rem; }
.benefit-list li i { color: #10B981; flex-shrink: 0; }

.info-card { background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 1px solid #bfdbfe; border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.info-card h4 { color: #1B5EBC; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.info-card p { color: #3b82f6; margin: 0; font-size: 0.95rem; }

.warning-box { background: linear-gradient(135deg, #fff7ed, #ffedd5); border: 1px solid #fed7aa; border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.warning-box h4 { color: #c2410c; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.warning-box p { color: #92400e; margin: 0; font-size: 0.95rem; }

.success-box { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1px solid #a7f3d0; border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.success-box h4 { color: #059669; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.success-box p { color: #065f46; margin: 0; font-size: 0.95rem; }

.pricing-note { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 20px 24px; margin: 32px 0; display: flex; align-items: center; gap: 16px; }
.pricing-note i { color: #1B5EBC; font-size: 1.5rem; flex-shrink: 0; }
.pricing-note p { margin: 0; color: #1e40af; }

.highlight-box { background: #0f172a; color: #fff; border-radius: 16px; padding: 28px 32px; margin: 32px 0; }
.highlight-box h3 { color: #60a5fa; font-family: 'Outfit', sans-serif; margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,0.8); margin: 0; }

.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
.data-table th { background: #1B5EBC; color: #fff; padding: 12px 16px; text-align: left; font-size: 0.9rem; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid #e2e8f0; color: #475569; font-size: 0.9rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: #f8fafc; }

.faq-section { margin-top: 48px; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 16px 20px; background: #f8fafc; cursor: pointer; font-weight: 600; color: #0f172a; display: flex; justify-content: space-between; align-items: center; transition: all 0.2s; }
.faq-q:hover { background: #eff6ff; color: #1B5EBC; }
.faq-a { padding: 16px 20px; color: #475569; line-height: 1.7; border-top: 1px solid #e2e8f0; display: none; }

.page-body-text { color: #475569; line-height: 1.8; margin-bottom: 16px; }
.page-section { margin-bottom: 56px; }
.page-section h2 { font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.page-section h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: #1B5EBC; margin: 24px 0 10px; }
.page-section ul, .page-section ol { padding-left: 24px; margin-bottom: 16px; }
.page-section li { color: #475569; line-height: 1.7; margin-bottom: 8px; }

@media (max-width: 768px) {
    .feature-hero { padding: 80px 0 40px; }
    .how-it-works { padding: 32px 20px; }
    .cta-banner { padding: 40px 20px; }
    .benefit-list { grid-template-columns: 1fr; }
    .steps-flow::before { display: none; }
    .feature-body { padding: 40px 16px; }
}
