:root {
    --bg-dark: #ffffff;
    --bg-panel: #ffffff;
    --bg-body: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent: #1e40af;
    --accent-hover: #1d4ed8;
    --accent-light: #eff6ff;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(30, 64, 175, 0.1), 0 10px 10px -5px rgba(30, 64, 175, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* TOPBAR */
.topbar {
    height: 72px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.topbar.scrolled {
    height: 64px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.logo-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-container img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.logo-container:hover img {
    transform: scale(1.02);
}

.nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.nav li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.nav li a:hover {
    background-color: #f1f5f9;
    color: var(--text-main);
}

.nav li a.active {
    background-color: var(--accent-light);
    color: var(--accent);
}

/* PRZYCISKI */
.btn {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #f1f5f9;
    color: var(--text-main);
    border-color: #cbd5e1;
}

.btn-success {
    background: var(--success);
    color: #ffffff;
}

.btn-success:hover {
    background: #15803d;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

/* HERO SECTION */
.hero {
    padding: 160px 40px 100px 40px;
    background: radial-gradient(100% 100% at 50% 0%, #eff6ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 993px) {
    .hero-container {
        grid-template-columns: 1fr 1.2fr;
    }
    .hero-content {
        grid-column: 2;
    }
    .hero-visual {
        grid-column: 1;
        grid-row: 1;
    }
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-content h1 span {
    color: var(--text-main);
    display: block;
    font-size: 32px;
    font-weight: 500;
    margin-top: 8px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* INTERAKTIVNY DYNAMICZNY SCHEMAT (DATA FLOW) */
.hero-visual {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.diagram-title {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-align: center;
}

.flow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.flow-step {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: all 0.3s;
    z-index: 2;
}

.flow-step:hover {
    transform: translateX(4px);
    border-color: var(--accent);
    background: #ffffff;
}

.flow-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.flow-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.flow-info p {
    font-size: 12px;
    color: var(--text-muted);
}



/* SEKCJA ZALET (BENEFITS) */
.section {
    padding: 100px 40px;
}

.section-alt {
    background-color: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

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

.section-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: inline-block;
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: 100px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.benefit-num {
    font-size: 32px;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-num {
    color: var(--accent-light);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* KOMPONENTY SYSTEMU */
.components-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.component-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.component-card:hover {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.component-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #cbd5e1;
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.component-badge.accent {
    background: var(--accent);
    color: #ffffff;
}

.component-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.component-description {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: "✓";
    font-weight: 800;
    color: var(--success);
}

/* LORA SPOTLIGHT */
.lora-highlight {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.lora-highlight h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
}

.lora-highlight p {
    color: #93c5fd;
    font-size: 16px;
    margin-bottom: 24px;
}

.lora-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lora-feat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
}

.lora-feat-item h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 8px;
}

.lora-feat-item p {
    color: #cbd5e1;
    font-size: 12px;
    margin-bottom: 0;
}

/* INTERAKTYWNA PREZENTACJA KALIBRACJI */
.calib-demo-container {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.calib-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.calib-step-tab {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.calib-step-tab.active {
    background: var(--accent-light);
    color: var(--accent);
}

.calib-content-box {
    text-align: center;
    padding: 20px 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calib-illustration {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
}

.calib-illustration.active {
    border-color: var(--accent);
    color: var(--accent);
    animation: pulseGlow 1.5s infinite ease-in-out;
}

.calib-illustration.success {
    border-color: var(--success);
    background: #dcfce7;
    color: var(--success);
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(30, 64, 175, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 64, 175, 0); }
}

.calib-timer {
    font-size: 40px;
    font-weight: 800;
    font-family: monospace;
    color: var(--accent);
    margin-bottom: 12px;
    display: none;
}

.calib-progress-bar-bg {
    width: 300px;
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    display: none;
}

.calib-progress-bar-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
}

/* KALKULATOR ROI */
.roi-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roi-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roi-label-val {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.roi-val-bubble {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Custom Slider Styling */
.roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 100px;
    background: var(--border);
    outline: none;
    transition: background 0.3s;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
    transition: transform 0.1s, background-color 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--accent-hover);
}

.roi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
    transition: transform 0.1s, background-color 0.2s;
}

.roi-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background: var(--accent-hover);
}

/* Numeric input styling */
.roi-number-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    background-color: var(--bg-body);
    transition: all 0.2s;
}

.roi-number-input:focus {
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Percentage segmented control tabs */
.roi-percent-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
}

.roi-tab-btn {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.5);
}

.roi-tab-btn.active {
    background: #ffffff;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

/* Interactive thresholds box */
.roi-prog-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.roi-prog-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.roi-prog-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.roi-prog-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Result panels (Investment vs Gain) */
.roi-outputs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .roi-outputs-container {
        grid-template-columns: 1fr;
    }
}

.roi-section-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.roi-section-box h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.investment-box {
    background: #f8fafc;
}

.gain-box {
    background: var(--accent-light);
    border-color: #bfdbfe;
}

.gain-box h4 {
    color: var(--accent);
}

.roi-output-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roi-output-list li {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.roi-output-icon {
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
}

.highlight-blue {
    color: var(--accent);
    font-weight: 700;
}

/* Call to Action Box */
.roi-cta-box {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.2);
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 40px;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1200px;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-banner p {
    color: #bfdbfe;
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-secondary {
    background: #ffffff;
    color: var(--accent);
    border: none;
}

.cta-banner .btn-secondary:hover {
    background: #f8fafc;
    color: var(--accent-hover);
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 40px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .lora-highlight {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .roi-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0 20px;
    }

    .topbar-left {
        gap: 20px;
    }

    .nav {
        display: none; /* Ukrywamy nawigację na korzyść prostego layoutu */
    }

    .section {
        padding: 60px 20px;
    }

    .hero {
        padding: 120px 20px 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h1 span {
        font-size: 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* TIMELINE SYSTEM */
a.flow-step.clickable {
    text-decoration: none;
    color: inherit;
}

a.flow-step.clickable:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* NEW SPLIT SECTIONS LAYOUT */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: flex-start;
}

.section-split-left {
    position: sticky;
    top: 100px;
}

.section-split-left h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-top: 12px;
    margin-bottom: 24px;
}

.section-split-left .section-tag {
    margin-bottom: 8px;
}

.section-split-left p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.section-split-right p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.section-split-right h3 {
    font-size: 20px;
    color: var(--accent);
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Beautiful custom list styling */
.split-list {
    list-style: none;
    margin-bottom: 24px;
}

.split-list li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.split-list li strong {
    color: var(--text-main);
}

/* Steps list styling */
.split-steps {
    list-style: none;
    margin-bottom: 24px;
    counter-reset: step-counter;
}

.split-steps li {
    position: relative;
    padding-left: 56px;
    margin-bottom: 24px;
}

.split-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid #bfdbfe;
}

.split-steps li h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-main);
}

.split-steps li p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Premium Table Styling */
.split-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.split-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: #ffffff;
}

.split-table th {
    background: var(--bg-body);
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.split-table td {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
}

.split-table tr:last-child td {
    border-bottom: none;
}

/* Media query for mobile split layout stacking */
@media (max-width: 992px) {
    .section-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-split-left {
        position: static;
    }
    
    .section-split-left h2 {
        margin-bottom: 16px;
    }
}


