:root {
    --primary-color: #1F2937;
    --secondary-color: #6B7280;
    --accent-color: #3B82F6;

    .cta-banner {
        position: relative;
        padding: 110px 0;
        background:
            radial-gradient(1400px circle at -200px -200px, rgba(56, 189, 248, 0.18), transparent 55%),
            radial-gradient(900px circle at 90% 10%, rgba(147, 51, 234, 0.12), transparent 60%),
            linear-gradient(135deg, #020617 0%, #050b1d 60%, #030712 100%);
        color: #f8fafc;
    }

    .cta-panel {
        position: relative;
        z-index: 2;
        border-radius: 36px;
        border: 1px solid rgba(148, 163, 184, 0.2);
        background: rgba(2, 6, 23, 0.85);
        box-shadow: 0 45px 140px rgba(2, 6, 23, 0.55);
        padding: clamp(32px, 4vw, 60px);
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: clamp(24px, 4vw, 48px);
        overflow: hidden;
    }

    .cta-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.25), transparent 55%);
        pointer-events: none;
    }

    .cta-main {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .cta-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 18px;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.2);
        border: 1px solid rgba(59, 130, 246, 0.4);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .cta-header {
        margin: 0;
        text-align: left;
    }

    .cta-title {
        font-size: clamp(36px, 3.5vw, 54px);
        margin: 0;
        color: #f8fafc;
        line-height: 1.1;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    }

    .gradient-cta {
        background: linear-gradient(120deg, #60a5fa, #c084fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
    }

    .cta-subtitle {
        margin-top: 12px;
        margin-bottom: 0;
        color: #cbd5f5;
        font-size: 18px;
        line-height: 1.6;
    }

    .benefit-pills {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0;
    }

    .benefit-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(148, 163, 184, 0.2);
        color: #e2e8f0;
        font-size: 13px;
        font-weight: 600;
    }

    .benefit-pill:hover {
        border-color: rgba(94, 234, 212, 0.6);
        box-shadow: 0 10px 30px rgba(94, 234, 212, 0.25);
        transform: translateY(-2px);
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 32px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .btn-cta-primary {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: #f8fafc;
        box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
        border: none;
    }

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 50px rgba(37, 99, 235, 0.45);
    }

    .btn-cta-secondary {
        border: 1px solid rgba(148, 163, 184, 0.5);
        color: #e2e8f0;
        background: transparent;
    }

    .btn-cta-secondary:hover {
        background: rgba(15, 23, 42, 0.6);
        border-color: rgba(148, 163, 184, 0.8);
    }

    .cta-metrics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 14px;
    }

    .cta-metric {
        padding: 16px;
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.75);
        border: 1px solid rgba(148, 163, 184, 0.25);
    }

    .cta-metric-value {
        display: block;
        font-size: 26px;
        font-weight: 800;
        color: #f8fafc;
    }

    .cta-metric-label {
        color: #94a3b8;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .cta-side-card {
        position: relative;
        z-index: 1;
        padding: clamp(24px, 3vw, 40px);
        border-radius: 28px;
        background: rgba(15, 23, 42, 0.9);
        border: 1px solid rgba(148, 163, 184, 0.25);
        box-shadow: inset 0 0 60px rgba(37, 99, 235, 0.15);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cta-side-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.15);
        border: 1px solid rgba(59, 130, 246, 0.3);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .cta-side-head h3 {
        font-size: 28px;
        margin: 16px 0 10px;
    }

    .cta-side-head p {
        margin: 0;
        color: #cbd5f5;
        line-height: 1.6;
    }

    .cta-side-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .cta-side-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }

    .cta-side-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cta-side-list i {
        color: #34d399;
        margin-top: 4px;
    }

    .cta-side-list strong {
        display: block;
        font-size: 15px;
        color: #f8fafc;
    }

    .cta-side-list span {
        font-size: 13px;
        color: #94a3b8;
    }

    .cta-side-footer {
        margin-top: auto;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .cta-side-footer span {
        display: block;
        font-size: 13px;
        color: #94a3b8;
    }

    .cta-side-footer strong {
        font-size: 32px;
        color: #f8fafc;
    }

    .cta-side-footer small {
        color: #64748b;
    }

    .cta-side-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 16px;
        background: linear-gradient(135deg, #22d3ee, #0ea5e9);
        color: #0f172a;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cta-side-button:hover {
        transform: translateX(4px);
        box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
    }

    @media (max-width: 992px) {
        .cta-panel {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .cta-banner {
            padding: 80px 0;
        }

        .cta-panel {
            padding: 28px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-side-footer {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-side-button {
            justify-content: center;
        }
    }
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 40px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-video, .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.88) 0%, rgba(17, 24, 39, 0.88) 100%);
    z-index: 1;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 100%;
    padding: 0;
    animation: slideInUp 1s ease-out;
    padding-top: 30px;
}

.slide-image {
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out 0.3s backwards;
    perspective: 1200px;
    overflow: hidden;
}
}

.slide-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    display: block;
    position: relative;
    transform: translateZ(0);
}

.slide-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 90px rgba(59, 130, 246, 0.35);
    border-color: rgba(59, 130, 246, 0.4);
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: fadeInDown 1s ease-out 0.2s backwards, float 3s ease-in-out 1.2s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slide-badge:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.1);
}

.slide-description {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 20px;
    opacity: 0.98;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    max-width: 750px;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.slide-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slide-feature:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.slide-feature i {
    font-size: 18px;
    color: #3B82F6;
    animation: pulse-glow 2s ease-in-out infinite;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.btn-primary.btn-large {
    animation: buttonGlow 2.5s ease-in-out infinite;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 999px;
}

.landing-body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #030712;
    color: #e2e8f0;
}

.landing-main {
    display: block;
    background: linear-gradient(180deg, #030712 0%, #0f172a 55%, #0b1120 100%);
    color: #f8fafc;
    padding-top: 80px;
}

.experience-hero {
    position: relative;
    padding: 40px 0 60px;
    overflow: hidden;
    min-height: 100vh;
    background:
        radial-gradient(1200px circle at -200px -200px, rgba(59, 130, 246, 0.25), transparent 55%),
        radial-gradient(900px circle at 70% 20%, rgba(14, 165, 233, 0.12), transparent 60%),
        linear-gradient(135deg, #030712 0%, #020617 55%, #050d1a 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 28px;
    align-items: stretch;
    min-height: calc(100vh - 140px);
}

.hero-grid-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 clamp(12px, 3.6vw, 64px);
}

.hero-left {
    position: relative;
    height: 100%;
}

.hero-left-panel {
    position: relative;
    padding: 22px 26px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 55%), rgba(2, 6, 23, 0.7);
    box-shadow: 0 40px 120px rgba(5, 11, 27, 0.55);
    backdrop-filter: blur(12px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-left-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    pointer-events: none;
}

.hero-right {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 16px;
    align-content: stretch;
}

.hero-mode-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.mode-pill {
    flex: 1;
    min-width: 160px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mode-pill span {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.mode-pill small {
    color: #94a3b8;
    font-size: 12px;
}

.mode-pill.active {
    border-color: rgba(72, 187, 255, 0.8);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(107, 70, 193, 0.3));
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
}

.mode-pill:focus-visible {
    outline: 2px solid rgba(72, 187, 255, 0.6);
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.hero-glow-1 {
    top: 80px;
    left: -120px;
    background: #22d3ee;
}

.hero-glow-2 {
    bottom: -60px;
    right: -140px;
    background: #c084fc;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #a5b4fc;
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    display: inline-block;
}

.experience-hero h1 {
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.1;
    color: #f8fafc;
    margin-bottom: 20px;
    text-shadow: 0 6px 24px rgba(3, 7, 18, 0.5);
}

.text-gradient {
    display: block;
    background: linear-gradient(120deg, #38bdf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 18px;
    color: #f1f5f9;
    max-width: 520px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 12px;
    color: #cbd5f5;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.hero-signal {
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-signal p {
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #94a3b8;
}

.hero-signal strong {
    display: block;
    font-size: 24px;
    color: #f8fafc;
    margin: 6px 0;
}

.hero-signal span {
    font-size: 12px;
    color: #cbd5f5;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 16px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.metric-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #f8fafc;
}

.metric-label {
    color: #a1aaff;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.hero-preview {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 120px rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.avatar-stack {
    display: inline-flex;
    align-items: center;
}

.avatar-stack span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    font-weight: 600;
    color: #e2e8f0;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 999px;
    color: #34d399;
    font-weight: 600;
}

.preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.preview-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
}

.preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.trend-chip {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-weight: 600;
}

.hero-mini-card {
    margin-top: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
}

.hero-mini-card strong {
    font-size: 28px;
    display: block;
    color: #f8fafc;
}

.hero-timeline {
    margin-top: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12.5px;
    color: #94a3b8;
}

.live-indicator {
    color: #34d399;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.hero-timeline ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hero-timeline li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-timeline li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-time {
    font-weight: 600;
    color: #cbd5f5;
}

.hero-timeline strong {
    color: #f8fafc;
    display: block;
}

.hero-timeline span {
    color: #94a3b8;
    font-size: 13px;
}

.hero-logos {
    margin-top: 40px;
    text-align: center;
    color: #94a3b8;
}

.logo-marquee {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-pill {
    padding: 10px 26px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
    font-weight: 600;
    color: #cbd5f5;
}

.experience-ticker {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(2, 6, 23, 0.8);
}

.ticker-shell {
    display: flex;
    gap: 40px;
    overflow: hidden;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
    padding: 18px 0;
}

.ticker-shell span {
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #cbd5f5;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.momentum-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 118, 255, 0.08));
}

.momentum-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    color: #e2e8f0;
}

.momentum-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.momentum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.momentum-card {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.75);
    min-height: 210px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.momentum-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.8);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 20px;
    margin-bottom: 18px;
}

.momentum-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 13px;
    color: #a5b4fc;
}

.momentum-meta strong {
    color: #f8fafc;
    font-size: 14px;
}

.momentum-progress {
    margin-top: 50px;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.65);
}

.progress-bars {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.progress-row {
    display: grid;
    grid-template-columns: 1fr 200px 60px;
    align-items: center;
    gap: 18px;
    color: #cbd5f5;
}

.progress-track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #c084fc);
}

.pulse-showcase {
    padding: 130px 0;
    background: #050e1f;
}

.pulse-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 50px;
    align-items: center;
}

.pulse-media {
    position: relative;
}

.pulse-media img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 40px 120px rgba(5, 14, 31, 0.6);
    object-fit: cover;
}

.pulse-card {
    position: absolute;
    right: 30px;
    top: 40px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 20px;
    padding: 18px 22px;
    color: #f8fafc;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.pulse-card.alt {
    top: auto;
    bottom: 30px;
    left: 40px;
}

.pulse-content h2 {
    font-size: 44px;
    margin-bottom: 18px;
}

.pulse-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 10px;
}

.pulse-chips span {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.35);
    font-size: 13px;
    color: #e2e8f0;
}

.pulse-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.pulse-list li {
    display: flex;
    gap: 16px;
}

.list-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 8px;
    background: linear-gradient(140deg, #60a5fa, #c084fc);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.8);
}

.pulse-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pulse-actions .btn-outline-white {
    border-color: rgba(148, 163, 184, 0.4);
    color: #e2e8f0;
}

.pulse-legends {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #94a3b8;
}

.pulse-legends i {
    margin-right: 6px;
}

.text-success { color: #34d399; }
.text-warning { color: #fbbf24; }
.text-info { color: #60a5fa; }

@media (max-width: 1200px) {
    .hero-grid,
    .pulse-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid-full {
        padding: 0 24px;
    }

    .hero-right {
        order: -1;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-left-panel {
        padding: 28px;
    }

    .experience-hero,
    .hero-grid {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .landing-main {
        padding-top: 80px;
    }

    .experience-hero,
    .momentum-section,
    .pulse-showcase {
        padding: 70px 0 70px;
    }

    .hero-grid-full {
        padding: 0 16px;
    }

    .hero-badges,
    .hero-cta,
    .pulse-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .momentum-header {
        flex-direction: column;
    }

    .pulse-card {
        position: relative;
        inset: auto;
        margin-top: 16px;
    }

    .progress-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ticker-shell {
        animation-duration: 28s;
    }

    .hero-mode-switch {
        flex-direction: column;
    }

    .mode-pill {
        width: 100%;
    }
}

.slide-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s backwards;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: flex-start;
}

.stat {
    text-align: left;
    min-width: 120px;
    padding-bottom: 0;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    letter-spacing: -1px;
    animation: counting 2.5s ease-out 1.4s backwards;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 1.5s backwards;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 3s ease;
    border-radius: 10px;
    animation: slideProgress 3s linear infinite;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active::before {
    width: 100%;
    animation: indicatorProgress 5s linear;
}

@keyframes indicatorProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-icon {
    font-size: 24px;
    animation: shapeWave 2s ease-in-out infinite;
    display: inline-block;
}
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 48px;
    }
    
    .slide-description {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .slide-content {
        max-width: 700px;
        padding: 30px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-stats {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 100vh;
        margin-top: 0;
    }

    .slide {
        padding-top: 70px;
    }

    .slide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide-content {
        max-width: 100%;
        padding: 0 20px;
        padding-top: 30px;
    }

    .slide-image {
        max-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
    }

    .slide-image img {
        max-height: 300px;
        border-radius: 12px;
    }

    .slide-image img:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .slide-badge {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 16px;
    }

    .slide-title {
        font-size: 34px;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .slide-features {
        gap: 10px;
        margin-bottom: 28px;
    }
    
    .slide-feature {
        padding: 10px 18px;
        font-size: 14px;
        width: 100%;
    }

    .slide-buttons {
        gap: 12px;
        margin-bottom: 35px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
    }

    .slide-stats {
        gap: 20px;
        padding-top: 15px;
        justify-content: space-around;
    }

    .stat {
        text-align: center;
        min-width: 80px;
    }

    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 13px;
    }

    .slider-nav {
        padding: 0 15px;
    }

    .slider-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .slider-indicators {
        bottom: 25px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .indicator {
        width: 30px;
        height: 3px;
    }

    .scroll-indicator {
        bottom: 70px;
        font-size: 10px;
    }
    
    .scroll-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 25px 15px;
    }
    
    .slide-title {
    .hero-right {
        order: -1;
        display: flex;
        flex-direction: column;
    }

    .hero-preview {
        grid-column: auto;
    }

    .hero-mini-card,
    .hero-timeline {
        height: auto;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .slide-stats {
        justify-content: space-between;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--accent-color), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    background: white;
}

section:nth-child(even) {
    background: var(--light-color);
}


/* Features Section */
.features {
    background: #020617;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px circle at 10% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(900px circle at 70% 80%, rgba(236, 72, 153, 0.15), transparent 60%);
    opacity: 0.9;
}

.features > .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: #60a5fa;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 18px;
}

.section-description {
    font-size: 17px;
    color: #cbd5f5;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.45);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 230px;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(59, 130, 246, 0.08);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 40px 110px rgba(37, 99, 235, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #93c5fd;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
}

.feature-card p {
    color: #cbd5f5;
    margin: 0;
    line-height: 1.6;
}

.feature-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

.feature-foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-price span {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-rating {
    color: #fbbf24;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.contact-item i {
    font-size: 24px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* CTA Banner Section */
.cta-banner {
    position: relative;
    background: #f3f4f6 !important;
    padding: 100px 0;
    color: #1F2937 !important;
    text-align: center;
    overflow: hidden;
}

.cta-background-shapes {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.floating-icons {
    position: relative;
    height: 80px;
    margin-bottom: 40px;
}

.float-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.icon-3 {
    right: 5%;
    animation-delay: 1s;
}

.cta-header {
    margin-bottom: 50px;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    animation: slideInUp 0.8s ease-out;
    line-height: 1.2;
    text-shadow: none;
    color: #1F2937;
}

.gradient-cta {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 1;
    margin-bottom: 0;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
    font-weight: 600;
    color: #6B7280;
}

.benefit-pills {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    backdrop-filter: none;
    border: 2px solid #d1fae5;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #047857;
    transition: all 0.3s ease;
}

.benefit-pill:hover {
    background: #d1fae5;
    border-color: #6ee7b7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 120, 87, 0.15);
}

.benefit-pill i {
    font-size: 16px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: white;
    color: #059669;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f0fdf4;
}

.btn-cta-secondary {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
    backdrop-filter: none;
}

.btn-cta-secondary:hover {
    background: #d1fae5;
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
    transform: translateY(-4px);
}

.trust-section {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #047857;
    display: block;
    animation: counting 2.5s ease-out forwards;
}

.stat-text {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .benefit-pills {
        gap: 12px;
        margin-bottom: 40px;
    }

    .benefit-pill {
        padding: 8px 16px;
        font-size: 12px;
    }

    .cta-buttons {
        margin-bottom: 40px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 32px;
        font-size: 14px;
    }

    .trust-section {
        gap: 30px;
        padding-top: 40px;
    }

    .stat-value {
        font-size: 22px;
    }

    .float-icon {
        font-size: 24px;
    }
}


