/* ==========================================================================
   Nuriomail Homepage Styles (Indigo Theme)
   ========================================================================== */

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.hero-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-primary-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-secondary-lg, .btn-card-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-secondary-lg:hover, .btn-card-secondary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 20px;
}

.stat-item h3 {
    font-size: 1.85rem;
    color: var(--brand-primary);
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.3);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--brand-primary-light);
    color: var(--brand-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-card code {
    background: var(--brand-primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--brand-primary);
    font-weight: 600;
}

/* Pricing Cards */
.modules-section {
    padding: 20px 0 70px;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.module-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.module-card.highlight {
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.module-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.module-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.spec-list {
    margin-bottom: 32px;
    flex-grow: 1;
}

.spec-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.spec-list li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.faq-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.faq-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Banner */
.cta-banner {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 70px 0;
}

.cta-banner h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; }
    .modules-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}