/* ========================================
   BoardFusion Feature Pages Stylesheet
   Dark Blue Theme
   ======================================== */

/* ----------------------------------------
   Feature Hero (centered, full-width)
   ---------------------------------------- */
.feature-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    text-align: center;
    color: white;
}

.feature-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* ----------------------------------------
   Benefit Grid (Feature Pages)
   ---------------------------------------- */
.feature-benefits {
    padding: 5rem 0;
    background: var(--gray-50);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-300);
}

.benefit-item-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.benefit-icon,
.related-icon,
.problem-icon,
.solution-icon,
.included-icon,
.committee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--primary-50) 0%, #ffffff 100%);
    color: var(--primary-600);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.18);
}

.benefit-icon {
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.benefit-icon-large {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.benefit-item p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.feature-inline-icon {
    color: var(--primary-600);
    margin-right: 0.55rem;
    font-size: 0.95em;
    vertical-align: -0.05em;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.feature-list li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.95rem;
}
.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-600);
    font-weight: 700;
}

/* ----------------------------------------
   Feature Workflow
   ---------------------------------------- */
.feature-workflow {
    padding: 5rem 0;
    background: white;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.workflow-step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}
.workflow-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    border-color: var(--primary-300);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.workflow-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.workflow-step-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------
   Use Cases
   ---------------------------------------- */
.feature-use-cases {
    padding: 5rem 0;
    background: var(--gray-50);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    border-color: var(--primary-300);
}
.use-case-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.use-case-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------
   Related Features
   ---------------------------------------- */
.related-features {
    padding: 4rem 0;
    background: white;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.3s ease;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-300);
}

.related-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.related-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.related-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* ----------------------------------------
   Feature CTA
   ---------------------------------------- */
.feature-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    text-align: center;
}
.feature-cta h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}
.feature-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ----------------------------------------
   Integration Page Grid
   ---------------------------------------- */
.integration-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.integration-page-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.integration-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-300);
}

.integration-page-icon {
    margin-bottom: 1.25rem;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.integration-page-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.integration-page-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ----------------------------------------
   Feature Details Grid
   ---------------------------------------- */
.feature-details {
    padding: 5rem 0;
    background: var(--gray-50);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.detail-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}
.detail-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}
.detail-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------
   Dashboard Preview
   ---------------------------------------- */
.dashboard-preview-feature {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    max-width: 700px;
    margin: 2rem auto 0;
}

.dashboard-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-value.completed { color: #2563EB; }
.stat-value.in-progress { color: #2563EB; }
.stat-value.due-soon { color: #D97706; }
.stat-value.overdue { color: #DC2626; }

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 1024px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .integration-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-hero {
        padding: 8rem 0 4rem;
    }
    .hero-badge-icon {
        font-size: 2.5rem;
    }
    .benefit-grid,
    .benefit-grid-large,
    .workflow-steps,
    .details-grid,
    .integration-page-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-preview-feature {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Extended Feature Page Styles
   (Problem/Solution layout, Previews, etc.)
   ======================================== */

/* ----------------------------------------
   Back Link & Feature Badge (Hero variants)
   ---------------------------------------- */
.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--space-4);
    transition: color var(--transition-fast);
    text-decoration: none;
}
.back-link:hover {
    color: white;
}

.feature-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.feature-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.feature-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feature-hero-visual {
    max-width: 500px;
    margin: 2rem auto 0;
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

/* ----------------------------------------
   Feature Preview Boxes
   ---------------------------------------- */
.feature-preview {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 2rem auto 0;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.preview-dots {
    display: flex;
    gap: var(--space-2);
}
.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.preview-dots span:nth-child(1) { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:nth-child(3) { background: var(--primary-500); }

/* Agenda Preview */
.agenda-preview {
    padding: var(--space-6);
}
.agenda-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2);
    background: var(--neutral-50);
    transition: all var(--transition-fast);
}
.agenda-item.active {
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
}
.item-number {
    width: 28px;
    height: 28px;
    background: var(--primary-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}
.item-title {
    flex: 1;
    font-weight: 500;
    color: var(--neutral-800);
}
.item-time {
    font-size: 0.875rem;
    color: var(--neutral-500);
}
.item-badge {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-2);
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: var(--radius-sm);
}

/* Board Pack Preview */
.boardpack-preview {
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}
.pack-cover {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}
.pack-logo {
    font-size: 2rem;
    margin-bottom: var(--space-2);
}
.pack-title {
    font-weight: 600;
    font-size: 0.875rem;
}
.pack-date {
    font-size: 0.75rem;
    opacity: 0.8;
}
.pack-pages {
    display: flex;
    gap: var(--space-2);
}
.pack-page {
    width: 60px;
    height: 80px;
    background: var(--neutral-100);
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-200);
}

/* Transcript Preview */
.transcript-preview {
    padding: var(--space-6);
}
.transcript-line {
    padding: var(--space-3);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
}
.transcript-line.active {
    background: var(--primary-50);
}
.speaker {
    font-weight: 600;
    color: var(--primary-600);
    margin-right: var(--space-2);
}
.text {
    color: var(--neutral-700);
}
.cursor {
    animation: blink 1s infinite;
    color: var(--primary-600);
}
.text.typing {
    opacity: 0.7;
    font-style: italic;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Voting Preview */
.voting-preview {
    padding: var(--space-6);
}
.vote-motion {
    margin-bottom: var(--space-4);
}
.vote-motion h4 {
    font-size: 1rem;
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
}
.vote-motion p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin: 0;
}
.vote-results {
    margin-top: var(--space-4);
}
.vote-bar {
    display: flex;
    height: 36px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-3);
}
.vote-for {
    background: var(--success-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}
.vote-against {
    background: #EF4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}
.vote-abstain {
    background: var(--neutral-400);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}
.vote-status {
    text-align: center;
    font-weight: 600;
    padding: var(--space-2);
    border-radius: var(--radius-md);
}
.vote-status.passed {
    background: #DCFCE7;
    color: #166534;
}

/* Evaluation Preview */
.evaluation-preview {
    padding: var(--space-6);
    display: flex;
    align-items: flex-end;
    gap: var(--space-6);
}
.eval-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--space-3);
    height: 120px;
}
.eval-bar {
    width: 40px;
    background: linear-gradient(180deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-2);
}
.eval-bar span {
    font-size: 0.625rem;
    color: white;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}
.eval-score {
    text-align: center;
}
.score-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
}
.score-label {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* Committee Preview */
.committee-preview {
    padding: var(--space-6);
}
.committee-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
}
.committee-item.main {
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
}
.committee-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.committee-item span:nth-child(2) {
    flex: 1;
    font-weight: 500;
    color: var(--neutral-800);
}
.member-count {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-2);
    background: var(--neutral-200);
    border-radius: var(--radius-full);
    color: var(--neutral-600);
}
.committee-children {
    padding-left: var(--space-6);
    border-left: 2px solid var(--primary-200);
    margin-left: var(--space-4);
}

/* ----------------------------------------
   Problem Section
   ---------------------------------------- */
.feature-problem {
    padding: 5rem 0;
    background: var(--gray-50);
}
.feature-problem h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray-900);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.problem-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}
.problem-icon {
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}
.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}
.problem-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ----------------------------------------
   Solution Section
   ---------------------------------------- */
.feature-solution {
    padding: 5rem 0;
    background: white;
}
.feature-solution .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.feature-solution .section-header h2 {
    color: var(--gray-900);
}
.solution-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.solution-feature {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.solution-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-300);
}
.solution-icon {
    font-size: 1.45rem;
    margin: 0 auto 1rem;
}
.solution-feature h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}
.solution-feature p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ----------------------------------------
   Benefits Showcase
   ---------------------------------------- */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.benefit-showcase-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.benefit-showcase-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    border-color: var(--primary-300);
}
.benefit-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
    margin-bottom: 1rem;
}
.benefit-showcase-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}
.benefit-showcase-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ----------------------------------------
   Included Section
   ---------------------------------------- */
.feature-included {
    padding: 5rem 0;
    background: white;
}
.feature-included h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray-900);
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.included-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.included-item:hover {
    border-color: var(--primary-300);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}
.included-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}
.included-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}
.included-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ----------------------------------------
   How It Works (Feature Page variant)
   ---------------------------------------- */
.feature-how-it-works {
    padding: 5rem 0;
    background: white;
}
.feature-how-it-works h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray-900);
}
.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}
.how-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.how-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    border-color: var(--primary-300);
}
.how-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}
.how-step p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}
.how-arrow {
    font-size: 2rem;
    color: var(--primary-400);
    padding-top: 2.5rem;
    flex-shrink: 0;
}

/* ----------------------------------------
   Extended Responsive Rules
   ---------------------------------------- */
@media (max-width: 1200px) {
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .problem-grid,
    .solution-features,
    .benefits-showcase {
        grid-template-columns: 1fr;
    }
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-steps {
        flex-direction: column;
        align-items: center;
    }
    .how-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    .feature-preview {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}
