/* ========================================
       CSS VARIABLES
    ======================================== */
    :root {
        --primary: #0f172a;
        --secondary: #334155;
        --accent: #10b981;
        --accent-dark: #059669;
        --accent-light: #d1fae5;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --bg-light: #f8fafc;
        --border: #e2e8f0;
        --step-1: #3b82f6;
        --step-2: #8b5cf6;
        --step-3: #ec4899;
        --step-4: #f59e0b;
        --step-5: #10b981;
        --step-6: #06b6d4;
        --step-7: #6366f1;
        --step-8: #ef4444;
    }

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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--text-dark);
        background: var(--bg-light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========================================
       HERO SECTION
    ======================================== */
    .how-hero {
        position: relative;
        padding: 160px 0 70px;
        text-align: center;
        background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
        overflow: hidden;
    }

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

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent);
        margin-bottom: 20px;
        background: var(--accent-light);
        padding: 8px 16px;
        border-radius: 30px;
    }

    .how-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 16px;
        opacity: 0;
        transform: translateY(30px);
    }

    .how-subtitle {
        font-size: 1.25rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(30px);
    }

    .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
    }

    .hero-orb.orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(16, 185, 129, 0.08);
        top: -200px;
        left: -150px;
    }

    .hero-orb.orb-2 {
        width: 400px;
        height: 400px;
        background: rgba(139, 92, 246, 0.06);
        bottom: -100px;
        right: -100px;
    }

    .hide-mobile {
        display: inline;
    }

    /* ========================================
       STEPS SECTION
    ======================================== */
    .steps-section {
        padding: 30px 0 100px;
    }

    .step-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 100px;
        opacity: 0;
        transform: translateY(40px);
    }

    .step-row:last-child {
        margin-bottom: 0;
    }

    .step-row-reverse {
        direction: rtl;
    }

    .step-row-reverse > * {
        direction: ltr;
    }

    .step-content {
        padding-right: 40px;
    }

    .step-row-reverse .step-content {
        padding-right: 0;
        padding-left: 40px;
    }

    .step-number {
        font-size: 4rem;
        font-weight: 800;
        color: var(--border);
        line-height: 1;
        margin-bottom: -10px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
        color: white;
    }

    .step-content h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 16px;
    }

    .step-content p {
        font-size: 1.05rem;
        color: var(--text-light);
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .step-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag {
        background: white;
        border: 1px solid var(--border);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-dark);
    }

    .step-tags .tag:hover {
        border-color: var(--accent);
        background: var(--accent-light);
    }

    /* Folder List */
    .folder-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .folder-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid var(--border);
        font-weight: 500;
        color: var(--text-dark);
    }

    .folder-item i {
        color: var(--accent);
        font-size: 1.2rem;
    }

    /* Data Grid */
    .data-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .data-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid var(--border);
        text-align: center;
    }

    .data-item i {
        font-size: 1.5rem;
        color: var(--accent);
    }

    .data-item span {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-dark);
    }

    /* Checks List */
    .checks-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .check-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: white;
        border-radius: 12px;
        border: 1px solid var(--border);
        font-weight: 500;
        color: var(--text-dark);
    }

    .check-item i {
        font-size: 1.3rem;
        color: var(--step-4);
    }

    /* Alerts List */
    .alerts-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .alert-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: #fef2f2;
        border-radius: 12px;
        border-left: 4px solid #ef4444;
    }

    .alert-item i {
        font-size: 1.3rem;
        color: #ef4444;
        flex-shrink: 0;
    }

    .alert-item .alert-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .alert-item .alert-text strong {
        font-size: 0.95rem;
        color: var(--text-dark);
    }

    .alert-item .alert-text span {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    /* Privacy Badges */
    .privacy-badges {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .privacy-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: var(--accent-light);
        border-radius: 12px;
        font-weight: 500;
        color: var(--accent-dark);
    }

    .privacy-badge i {
        font-size: 1.3rem;
    }

    /* Export Formats */
    .export-formats {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .format-badge {
        background: white;
        border: 1px solid var(--border);
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    /* ========================================
       STEP VISUAL CARDS
    ======================================== */
    .step-visual {
        position: relative;
    }

    .visual-card {
        background: white;
        border-radius: 20px;
        padding: 28px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border);
        min-height: 300px;
    }

    /* Upload Card */
    .upload-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .upload-zone {
        border: 2px dashed var(--accent);
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        background: var(--accent-light);
    }

    .upload-zone i {
        font-size: 3rem;
        color: var(--accent);
        margin-bottom: 12px;
    }

    .upload-zone p {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .upload-zone span {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .file-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .file-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: var(--bg-light);
        border-radius: 10px;
    }

    .file-item i:first-child {
        font-size: 1.3rem;
        color: var(--text-light);
    }

    .file-item span {
        flex: 1;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    .file-item .check {
        color: var(--accent);
    }

    .file-item .loading {
        color: var(--step-4);
        animation: spin 1s linear infinite;
    }

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

    /* AI Card */
    .ai-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ai-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border);
        font-weight: 600;
        color: var(--text-dark);
    }

    .ai-header i {
        font-size: 1.5rem;
        color: var(--step-2);
    }

    .ai-results {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ai-result-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: var(--bg-light);
        border-radius: 12px;
    }

    .ai-result-item > i {
        font-size: 1.5rem;
        color: var(--text-light);
    }

    .ai-result-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .ai-result-info .doc-name {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-dark);
    }

    .ai-result-info .doc-type {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    .ai-result-item .confidence {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--accent);
    }

    /* Folders Card */
    .folders-card {
        display: flex;
        align-items: flex-start;
    }

    .folders-tree {
        width: 100%;
    }

    .folder-root {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 16px;
    }

    .folder-root i {
        font-size: 1.5rem;
        color: var(--accent);
    }

    .folder-children {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 30px;
    }

    .folder-branch {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        background: var(--bg-light);
        border-radius: 10px;
        font-weight: 500;
        color: var(--text-dark);
    }

    .folder-branch.active {
        background: var(--accent-light);
        color: var(--accent-dark);
    }

    .folder-branch i {
        font-size: 1.2rem;
        color: var(--text-light);
    }

    .folder-branch.active i {
        color: var(--accent);
    }

    .folder-count {
        margin-left: auto;
        background: white;
        padding: 2px 10px;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Data Card */
    .data-card {
        display: flex;
        flex-direction: column;
    }

    .data-table {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .table-header {
        display: grid;
        grid-template-columns: 2fr 2fr 1fr 1fr;
        gap: 12px;
        padding: 12px 16px;
        background: var(--bg-light);
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .table-row {
        display: grid;
        grid-template-columns: 2fr 2fr 1fr 1fr;
        gap: 12px;
        padding: 14px 16px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 10px;
        font-size: 0.9rem;
        align-items: center;
    }

    .table-row .doc-name {
        font-weight: 500;
        color: var(--text-dark);
    }

    .table-row .amount {
        font-weight: 600;
    }

    .amount.positive {
        color: var(--accent);
    }

    .amount.negative {
        color: #ef4444;
    }

    /* Checks Card */
    .checks-card {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .checks-monitor {
        width: 100%;
    }

    .monitor-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border);
        font-weight: 600;
        color: var(--text-dark);
    }

    .monitor-header i {
        font-size: 1.5rem;
        color: var(--step-5);
    }

    .status-dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        margin-left: auto;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .monitor-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }

    .monitor-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-radius: 12px;
        font-weight: 500;
    }

    .monitor-item.ok {
        background: #dcfce7;
        color: #166534;
    }

    .monitor-item.ok i {
        color: #22c55e;
        font-size: 1.3rem;
    }

    .monitor-item.warning {
        background: #fef3c7;
        color: #92400e;
    }

    .monitor-item.warning i {
        color: #f59e0b;
        font-size: 1.3rem;
    }

    .monitor-item.alert {
        background: #fee2e2;
        color: #991b1b;
    }

    .monitor-item.alert i {
        color: #ef4444;
        font-size: 1.3rem;
    }

    /* Alerts Card */
    .alerts-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .alerts-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border);
        font-weight: 600;
        color: var(--text-dark);
    }

    .alerts-header i {
        font-size: 1.5rem;
        color: #ef4444;
    }

    .alert-count {
        background: #ef4444;
        color: white;
        padding: 2px 10px;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-left: auto;
    }

    .alerts-feed {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .alert-feed-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .alert-feed-item.critical {
        background: #fee2e2;
        color: #991b1b;
    }

    .alert-feed-item.critical i {
        color: #ef4444;
    }

    .alert-feed-item.warning {
        background: #fef3c7;
        color: #92400e;
    }

    .alert-feed-item.warning i {
        color: #f59e0b;
    }

    .alert-feed-item.info {
        background: #dbeafe;
        color: #1e40af;
    }

    .alert-feed-item.info i {
        color: #3b82f6;
    }

    /* Privacy Card */
    .privacy-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
        position: relative;
    }

    .privacy-shield {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .privacy-shield i {
        font-size: 3rem;
        color: white;
    }

    .privacy-orbit {
        position: absolute;
        border: 1px dashed var(--accent-light);
        border-radius: 50%;
    }

    .privacy-orbit.orbit-1 {
        width: 150px;
        height: 150px;
        animation: orbit1 8s linear infinite;
    }

    .privacy-orbit.orbit-2 {
        width: 200px;
        height: 200px;
        animation: orbit2 12s linear infinite reverse;
    }

    .privacy-orbit .orbit-dot {
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
        top: -5px;
        left: 50%;
    }

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

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

    .privacy-text {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        position: relative;
        z-index: 2;
    }

    /* Export Card */
    .export-card {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .export-preview {
        width: 100%;
        background: var(--bg-light);
        border-radius: 16px;
        padding: 24px;
    }

    .export-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 16px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .export-header i {
        font-size: 1.5rem;
        color: var(--accent);
    }

    .export-sections {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }

    .export-section {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: white;
        border-radius: 10px;
        font-weight: 500;
        color: var(--text-dark);
    }

    .export-section i {
        color: var(--text-light);
    }

    .export-actions {
        display: flex;
        justify-content: center;
    }

    .export-btn {
        background: var(--accent);
        color: white;
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
    }

    /* ========================================
       MEANS SECTION
    ======================================== */
    .means-section {
        padding: 100px 0;
        background: white;
    }

    .means-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .means-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 12px;
    }

    .means-header p {
        font-size: 1.15rem;
        color: var(--text-light);
    }

    .means-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 900px;
        margin: 0 auto 40px;
    }

    .means-card {
        padding: 32px;
        background: var(--bg-light);
        border-radius: 20px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
    }

    .means-card i {
        font-size: 2.5rem;
        color: var(--text-light);
        margin-bottom: 16px;
    }

    .means-card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .means-card .strikethrough {
        font-size: 0.9rem;
        font-weight: 600;
        color: #ef4444;
        text-decoration: line-through;
        text-decoration-thickness: 2px;
    }

    .means-result {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
        background: var(--accent-light);
        border-radius: 16px;
        opacity: 0;
        transform: translateY(20px);
    }

    .means-result i {
        font-size: 1.8rem;
        color: var(--accent);
    }

    .means-result span {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--accent-dark);
    }

    /* ========================================
       FLOW SECTION
    ======================================== */
    .flow-section {
        padding: 100px 0;
        background: var(--primary);
        color: white;
    }

    .flow-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .flow-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
    }

    .flow-steps {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .flow-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        opacity: 0;
        transform: translateY(20px);
    }

    .flow-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

    .flow-step:hover .flow-icon {
        background: var(--accent);
        color: white;
        transform: scale(1.1);
    }

    .flow-icon.highlight {
        background: var(--accent);
        color: white;
    }

    .flow-step span {
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
    }

    .flow-arrow {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.3);
        opacity: 0;
        transform: translateX(-10px);
    }

    /* ========================================
       MISSION SECTION
    ======================================== */
    .mission-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    }

    .mission-card {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(30px);
    }

    .mission-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        margin: 0 auto 24px;
    }

    .mission-card h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    .mission-card p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
    }

    .mission-card strong {
        color: white;
        font-weight: 700;
    }

    /* ========================================
       CTA SECTION
    ======================================== */
    .how-cta {
        padding: 100px 0;
        background: white;
        text-align: center;
    }

    .how-cta .cta-content {
        opacity: 0;
        transform: translateY(30px);
    }

    .how-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 16px;
    }

    .how-cta p {
        font-size: 1.15rem;
        color: var(--text-light);
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .how-cta .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .how-cta .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.05rem;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .how-cta .cta-btn.primary {
        background: var(--accent);
        color: white;
        box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    }

    .how-cta .cta-btn.primary:hover {
        background: var(--accent-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    }

    .how-cta .cta-btn.secondary {
        background: var(--bg-light);
        color: var(--primary);
        border: 1px solid var(--border);
    }

    .how-cta .cta-btn.secondary:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 1024px) {
        .step-row {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .step-row-reverse {
            direction: ltr;
        }

        .step-content {
            padding-right: 0;
            text-align: center;
        }

        .step-row-reverse .step-content {
            padding-left: 0;
        }

        .step-tags,
        .folder-list,
        .checks-list,
        .alerts-list,
        .privacy-badges,
        .export-formats {
            justify-content: center;
        }

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

        .how-title {
            font-size: 2.5rem;
        }

        .flow-arrow {
            display: none;
        }

        .flow-steps {
            gap: 30px;
        }
    }

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

        .how-subtitle {
            font-size: 1.1rem;
        }

        .step-content h3 {
            font-size: 1.5rem;
        }

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

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

        .flow-step {
            flex: 0 0 calc(50% - 15px);
        }

        .flow-arrow {
            display: none;
        }

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

        .how-cta .cta-btn {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }

        .hide-mobile {
            display: none;
        }
    }