/* ==========================================================================
   Base & Reset
   ========================================================================== */
:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --secondary: #10B981;
    --secondary-hover: #059669;
    --accent: #F59E0B;
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --surface: #1E293B;
    --surface-border: #334155;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --shadow-glow: 0 0 24px rgba(79, 70, 229, 0.4);
    --shadow-panel: 0 10px 30px rgba(0, 0, 0, 0.3);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #818CF8, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--surface-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.glass-panel {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-panel);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    border-radius: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.main-nav {
    display: none;
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
    
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-secondary);
    }
    
    .nav-links a:hover {
        color: var(--text-primary);
    }
    
    .mobile-menu-btn {
        display: none;
    }

    .header-cta {
        display: block;
    }
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(2, 6, 23, 0.98);
    z-index: 200;
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.mobile-nav .btn {
    margin-top: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(16, 185, 129, 0.1));
    z-index: -1;
    border-radius: 30px;
    filter: blur(20px);
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

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

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.pricing-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 1px solid var(--primary);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    box-shadow: var(--shadow-glow);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 45px;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.plan-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--secondary);
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
}

/* ==========================================================================
   Features Deep Dive / Long-form SEO Content
   ========================================================================== */
.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .seo-content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .seo-content-grid:nth-child(even) .seo-text {
        order: 2;
    }
    
    .seo-content-grid:nth-child(even) .seo-image {
        order: 1;
    }
}

.seo-block {
    margin-bottom: 6rem;
}

.seo-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.seo-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.seo-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.seo-text ul {
    margin-bottom: 1.5rem;
}

.seo-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.seo-text li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
}

.seo-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-panel);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ==========================================================================
   Devices Grid
   ========================================================================== */
.devices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .devices-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .devices-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.device-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.device-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.device-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.device-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding-bottom: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background: #000;
    padding: 80px 0 0;
    border-top: 1px solid var(--surface-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
}

.trust-badges {
    display: flex;
    gap: 1rem;
}

.trust-badges img {
    opacity: 0.8;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #475569;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 1.5rem 0;
}

.bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.bottom-inner p {
    color: #475569;
    font-size: 0.9rem;
}

.seo-text-small {
    font-size: 0.75rem !important;
    max-width: 800px;
}

@media (min-width: 768px) {
    .bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: bounce-slight 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

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

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
}
@media (min-width: 992px) {
    .testimonials-wrapper {
        grid-template-columns: 300px 1fr;
    }
}
.rating-box {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.rating-score {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.stars, .small-stars {
    color: #FBBF24;
    letter-spacing: 2px;
}
.rating-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}
.featured-testimonial {
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    border-left: 4px solid var(--primary);
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-name {
    font-weight: 700;
    font-size: 1rem;
}
.author-device {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.testimonials-small-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .testimonials-small-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.small-testimonial {
    padding: 1.5rem;
}
.small-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    font-style: italic;
}
.small-author strong {
    display: block;
    color: var(--text-primary);
}
.small-author {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Stats & Notice Bars
   ========================================================================== */
.stats-bar {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.05), rgba(16, 185, 129, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
}
.stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .stats-inner {
        justify-content: space-around;
    }
}
.stat-num {
    font-size: 2.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}
.stat-lbl {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.notice-bar {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 4px solid #F59E0B;
    border-radius: var(--radius-md);
    color: #FDE68A;
    text-align: center;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.05);
}
.notice-bar strong {
    color: #F59E0B;
    font-weight: 700;
}

/* ==========================================================================
   Steps Grid (Como Funciona)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}
.step-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.step-desc a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ==========================================================================
   Downloads Grid
   ========================================================================== */
.downloads-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .downloads-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 992px) {
    .downloads-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.download-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.4);
}
.download-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.download-img {
    margin: 1.5rem 0;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.download-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* ==========================================================================
   Timeline / Flow Chart (Como Ativar)
   ========================================================================== */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}
.timeline-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-step:last-child {
    padding-bottom: 0;
}
.timeline-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timeline-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-foreground);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-glow-primary);
}
.timeline-line {
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    margin-top: 0.5rem;
    margin-bottom: -2.5rem;
}
.timeline-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding-top: 0.3rem;
}
.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.timeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow-card {
    width: 100%;
    max-width: 400px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
}
.flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.flow-icon svg {
    width: 24px;
    height: 24px;
}
.flow-text {
    flex-grow: 1;
}
.flow-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}
.flow-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}
.flow-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}
