/* ===========================================
   ABOUT BITCOIN FAUCETS PAGE STYLES
   Lightning Faucet - Educational Content Page
   =========================================== */

/* Page Layout */
.about-faucets-page {
    min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(247, 147, 26, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(247, 147, 26, 0.15);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-btc-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-btc-orange), var(--color-btc-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-btc-orange);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Illustration */
.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Background glow pulsing */
.glow-pulse {
    animation: glow-pulse 4s ease-in-out infinite;
    transform-origin: center;
}

.glow-pulse-delayed {
    animation: glow-pulse 4s ease-in-out infinite 2s;
    transform-origin: center;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Orbiting rings */
.orbit-ring {
    animation: orbit-rotate 20s linear infinite;
    transform-origin: center;
}

.orbit-ring-reverse {
    animation: orbit-rotate 15s linear infinite reverse;
    transform-origin: center;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Lightning bolt pulse */
.lightning-main {
    animation: lightning-pulse 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes lightning-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(247, 147, 26, 0.9));
        transform: scale(1.02);
    }
}

/* Floating coins */
.coin-1 {
    animation: coin-float-1 4s ease-in-out infinite;
}

.coin-2 {
    animation: coin-float-2 5s ease-in-out infinite 0.5s;
}

.coin-3 {
    animation: coin-float-3 4.5s ease-in-out infinite 1s;
}

.coin-4 {
    animation: coin-float-4 5s ease-in-out infinite 1.5s;
}

.coin-5 {
    animation: coin-float-5 4s ease-in-out infinite 2s;
}

@keyframes coin-float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(0, -15px) rotate(0deg); }
    75% { transform: translate(-5px, -8px) rotate(-5deg); }
}

@keyframes coin-float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -12px); }
}

@keyframes coin-float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -8px); }
}

@keyframes coin-float-4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, -10px); }
}

@keyframes coin-float-5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -6px); }
}

/* Satoshi particles */
.sat-particle {
    animation: sat-float 3s ease-in-out infinite;
}

.sat-1 { animation-delay: 0s; }
.sat-2 { animation-delay: 0.5s; }
.sat-3 { animation-delay: 1s; }
.sat-4 { animation-delay: 1.5s; }
.sat-5 { animation-delay: 2s; }
.sat-6 { animation-delay: 2.5s; }

@keyframes sat-float {
    0%, 100% {
        opacity: 0.4;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(0, -20px) scale(1.2);
    }
}

/* Electric sparks */
.spark {
    animation: spark-flash 2s ease-in-out infinite;
    opacity: 0;
}

.spark-1 { animation-delay: 0s; }
.spark-2 { animation-delay: 0.5s; }
.spark-3 { animation-delay: 1s; }
.spark-4 { animation-delay: 1.5s; }

@keyframes spark-flash {
    0%, 100% { opacity: 0; }
    10%, 30% { opacity: 1; }
    40% { opacity: 0; }
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 5rem 2rem;
}

.content-section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-header.centered {
    flex-direction: column;
    text-align: center;
}

.section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 147, 26, 0.15);
    border-radius: var(--radius-lg);
    color: var(--color-btc-orange);
}

.section-icon svg {
    width: 24px;
    height: 24px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.lead-paragraph {
    font-size: 1.15rem !important;
    color: var(--text-primary) !important;
}

/* Info Card */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border-left: 4px solid var(--color-btc-orange);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-btc-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-icon {
    width: 20px;
    height: 20px;
}

.info-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    background: var(--bg-primary);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
}

/* Timeline Card */
.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Era-specific card colors */
.timeline-card.genesis {
    border-left: 4px solid #22c55e;
}

.timeline-card.growth {
    border-left: 4px solid #3b82f6;
}

.timeline-card.challenge {
    border-left: 4px solid #ef4444;
}

.timeline-card.lightning {
    border-left: 4px solid var(--color-btc-orange);
    background: rgba(247, 147, 26, 0.03);
}

.timeline-card.future {
    border-left: 4px solid var(--color-btc-gold);
    background: rgba(255, 215, 0, 0.03);
}

/* Card Header with Year Badge */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

/* Year Badge - styled as a pill */
.timeline-year {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.timeline-year.genesis {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.timeline-year.growth {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.timeline-year.challenge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.timeline-year.lightning {
    background: rgba(247, 147, 26, 0.15);
    color: var(--color-btc-orange);
    border: 1px solid rgba(247, 147, 26, 0.3);
}

.timeline-year.future {
    background: rgba(255, 215, 0, 0.15);
    color: #d4a800;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Card Icon (if present) */
.card-icon {
    width: 28px;
    height: 28px;
    color: var(--color-btc-orange);
    flex-shrink: 0;
}

.timeline-card.genesis .card-icon {
    color: #22c55e;
}

.timeline-card.growth .card-icon {
    color: #3b82f6;
}

.timeline-card.challenge .card-icon {
    color: #ef4444;
}

/* Card Content */
.timeline-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-card p:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 2rem;
    padding: 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-lg);
    margin: 1.25rem 0;
}

.highlight-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55e;
}

.highlight-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Timeline Quote */
.timeline-quote {
    margin: 1.5rem 0 0;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-left: 3px solid var(--color-btc-orange);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Timeline List */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.timeline-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

/* Problem Box */
.problem-box {
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: 1rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.problem-item:last-child {
    margin-bottom: 0;
}

.problem-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1em;
    color: #ef4444;
}

/* Lightning Features */
.lightning-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(247, 147, 26, 0.1);
    border-radius: var(--radius-lg);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-btc-orange);
    border-radius: var(--radius-md);
    color: #000;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== PLATFORM SECTION ===== */
.platform-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.platform-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-btc-orange), var(--color-btc-gold));
    border-radius: var(--radius-full);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-btc-orange);
    box-shadow: 0 12px 40px rgba(247, 147, 26, 0.15);
}

.platform-card.featured {
    border-color: rgba(247, 147, 26, 0.3);
    background: rgba(247, 147, 26, 0.05);
}

.platform-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--color-btc-orange), #ff9f1c);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.platform-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

.platform-card-icon svg {
    width: 28px;
    height: 28px;
}

.platform-card-icon.free-sats {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.platform-card-icon.casino {
    background: rgba(247, 147, 26, 0.15);
    color: var(--color-btc-orange);
}

.platform-card-icon.micropayments {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.platform-card-icon.ai-agents {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.platform-card-icon.predictions {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.platform-card-icon.learn {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.platform-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.platform-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-btc-orange);
    text-decoration: none;
    transition: all 0.2s;
}

.platform-link:hover {
    color: var(--color-btc-gold);
}

.platform-link.featured {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-btc-orange), var(--color-btc-gold));
    color: #000;
    border-radius: var(--radius-full);
}

.platform-link.featured:hover {
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.4);
}

/* ===== COMPARISON SECTION ===== */
.why-lightning-section {
    background: var(--bg-primary);
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--bg-secondary);
}

.comparison-cell {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.comparison-cell.label {
    color: var(--text-secondary);
    font-weight: 500;
}

.comparison-cell.negative {
    color: #ef4444;
}

.comparison-cell.positive {
    color: #22c55e;
    font-weight: 600;
}

.comparison-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.comparison-cell.lightning .comparison-label {
    color: var(--color-btc-orange);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(247, 147, 26, 0.1) 100%);
    padding: 6rem 2rem;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-btc-orange), var(--color-btc-gold));
    color: #000;
    box-shadow: 0 4px 20px rgba(247, 147, 26, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(247, 147, 26, 0.5);
}

.cta-button.secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.cta-button.secondary:hover {
    border-color: var(--color-btc-orange);
    color: var(--color-btc-orange);
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-illustration {
    width: 200px;
    height: 200px;
    animation: float 4s ease-in-out infinite;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-primary);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: rgba(247, 147, 26, 0.3);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .faucet-illustration {
        max-width: 300px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline mobile adjustments */
    .timeline {
        gap: 1rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .card-header h3 {
        font-size: 1.15rem;
        min-width: auto;
        order: 2;
    }

    .timeline-year {
        order: 1;
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    .highlight-box {
        flex-direction: column;
        gap: 1rem;
    }

    .lightning-features {
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-row.header {
        display: none;
    }

    .comparison-cell {
        padding: 0.75rem 1rem;
    }

    .comparison-cell.label {
        background: var(--bg-secondary);
        font-weight: 600;
    }

    .comparison-cell:not(.label)::before {
        content: attr(data-label);
        font-size: 0.7rem;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-right: 0.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 3rem 1rem;
    }

    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Compact timeline on small screens */
    .timeline-card {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .card-header h3 {
        font-size: 1.05rem;
    }

    .timeline-card p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .highlight-stat {
        text-align: center;
    }

    .highlight-value {
        font-size: 1.1rem;
    }

    .timeline-quote {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .timeline-list li {
        font-size: 0.85rem;
    }

    .problem-item {
        font-size: 0.85rem;
    }

    .feature-text strong {
        font-size: 0.9rem;
    }

    .feature-text span {
        font-size: 0.8rem;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 4rem 1rem;
    }
}
