body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
}

.hero-section {
    padding: 150px 0 100px;
    background: white;
}

.section-spacing {
    padding: 100px 0;
}

.pricing-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    padding: 25px;
    background: white;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.pricing-card {
    padding: 40px;
    background: white;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.pricing-card.highlight {
    border: 2px solid #F97316;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-accent {
    background: #F97316;
    color: white;
}

.btn-accent:hover {
    background: #ea580c;
    color: white;
}

.footer-section {
    background: white;
    border-top: 1px solid #eee;
}

.footer-section a {
    text-decoration: none;
    color: #6c757d;
}

.footer-section a:hover {
    color: #000;
}


/*----- LANDING PAGE ----*/


:root {
    --primary: #1e3a5f; /* deep blue */
    --accent: #f97316; /* orange */
    --bg: #f8fafc; /* light */
    --text: #0f172a; /* slate */
    --muted: #475569; /* muted */
    --card: #ffffff;
    --border: rgba(2, 6, 23, 0.1);
    --shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
    --shadow2: 0 10px 30px rgba(2, 6, 23, 0.06);
    --radius: 18px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
            Inter,
            system-ui,
            -apple-system,
            Segoe UI,
            Roboto,
            Arial,
            sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
a {
    color: inherit;
}
.container-tight {
    max-width: 1120px;
}

/* Ultra-premium header */
.navbar {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-link {
    color: var(--muted);
    font-weight: 600;
}
.nav-link:hover {
    color: var(--text);
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 700;
}
.btn-primary:hover {
    background: #162c47;
    border-color: #162c47;
}
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 800;
}
.btn-accent:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff;
}
.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
}
.btn-ghost:hover {
    border-color: rgba(2, 6, 23, 0.22);
    background: rgba(255, 255, 255, 0.5);
}

/* Hero */
.hero {
    padding: 110px 0 70px;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -240px -240px auto -240px;
    height: 520px;
    background:
            radial-gradient(
                    closest-side,
                    rgba(249, 115, 22, 0.22),
                    transparent 70%
            ),
            radial-gradient(closest-side, rgba(30, 58, 95, 0.2), transparent 70%);
    filter: blur(0px);
    pointer-events: none;
}
.hero-card {
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.7)
    );
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.kicker {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.4rem 0.7rem;
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 999px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
}
.hero h1 {
    letter-spacing: -0.03em;
}
.lead {
    color: var(--muted);
}
.mini-trust {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 80px 0;
}
.section-title {
    letter-spacing: -0.02em;
}
.sub {
    color: var(--muted);
    max-width: 760px;
}

/* Trust stats */
.stats {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow2);
    padding: 26px 20px;
    height: 100%;
}
.stat .num {
    font-size: 46px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}
.stat .label {
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.35rem;
}

/* Cards */
.cardx {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    height: 100%;
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
}
.cardx:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.18);
    color: var(--accent);
    font-weight: 900;
}

/* Pricing */
.pricing {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.price-card {
    padding: 34px 28px;
}
.badge-reco {
    background: rgba(249, 115, 22, 0.14);
    color: #c2410c;
    border: 1px solid rgba(249, 115, 22, 0.22);
    font-weight: 800;
}
.price {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.ul-clean {
    list-style: none;
    padding-left: 0;
    margin: 18px 0 0;
    color: var(--muted);
}
.ul-clean li {
    display: flex;
    gap: 0.55rem;
    padding: 0.4rem 0;
    align-items: flex-start;
}
.tick {
    color: var(--accent);
    font-weight: 900;
    line-height: 1.2;
}

/* FAQ */
.accordion-button {
    font-weight: 800;
    color: var(--text);
}
.accordion-button:not(.collapsed) {
    background: rgba(30, 58, 95, 0.06);
    color: var(--primary);
}
.accordion-item {
    border: 1px solid var(--border);
    border-radius: 14px !important;
    overflow: hidden;
}
.accordion-item + .accordion-item {
    margin-top: 12px;
}

/* Footer */
footer {
    background: #fff;
    border-top: 1px solid var(--border);
}
.footer-link {
    color: var(--muted);
    text-decoration: none;
}
.footer-link:hover {
    color: var(--text);
    text-decoration: underline;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
            opacity 0.6s ease,
            transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skip link (a11y) */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #fff;
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 9999;
}
.skip-link:focus {
    left: 14px;
    top: 14px;
}

/* Small tweaks */
.shadow-soft {
    box-shadow: var(--shadow2);
}
.hero-visual {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-image: url("/images/hero-preview.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: -40px;
    background:
            radial-gradient(
                    circle at 20% 20%,
                    rgba(249, 115, 22, 0.18),
                    transparent 55%
            ),
            radial-gradient(
                    circle at 80% 30%,
                    rgba(30, 58, 95, 0.18),
                    transparent 55%
            ),
            radial-gradient(
                    circle at 45% 85%,
                    rgba(249, 115, 22, 0.12),
                    transparent 60%
            );
    filter: blur(0px);
    pointer-events: none;
}
.hero-visual .label {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    color: var(--primary);
}

.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
}

.contact-modal-content{
    background:white;
    margin:10% auto;
    padding:25px;
    width:90%;
    max-width:500px;
    border-radius:8px;
}

.contact-close{
    float:right;
    font-size:26px;
    cursor:pointer;
}

/* FIX HORIZONTAL OVERFLOW ONLY */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.hero::before {
    left: 0;
    right: 0;
    width: 100%;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero .d-flex.flex-wrap.gap-2.align-items-center {
        justify-content: center;
        text-align: center;
    }

    .hero .btn {
        width: auto;
    }

    .mini-trust {
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }

    .hero-visual,
    .cardx,
    .stat,
    .hero-card {
        max-width: 100%;
    }
}

/* PLATFORM PREVIEW CARDS */

.platform-preview-section {
    background:
            radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.08), transparent 30%),
            radial-gradient(circle at 90% 15%, rgba(249, 115, 22, 0.10), transparent 30%),
            #f8fafc;
}

.platform-card {
    position: relative;
    overflow: hidden;
    padding: 32px 32px 28px;
    border-radius: 26px;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
}

.platform-card-blue::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.13), transparent 38%),
            linear-gradient(180deg, rgba(37, 99, 235, 0.04), transparent 55%);
}

.platform-card-green::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(22, 163, 74, 0.13), transparent 38%),
            linear-gradient(180deg, rgba(22, 163, 74, 0.04), transparent 55%);
}

.platform-card-orange::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.16), transparent 38%),
            linear-gradient(180deg, rgba(249, 115, 22, 0.05), transparent 55%);
}

.platform-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.platform-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon-blue {
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.06));
}

.platform-icon-green {
    color: #16a34a;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.20), rgba(22, 163, 74, 0.07));
}

.platform-icon-orange {
    color: #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0.07));
}

.platform-card h3 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin: 0 0 8px;
}

.platform-subtitle {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.platform-blue-text {
    color: #2563eb;
}

.platform-green-text {
    color: #16a34a;
}

.platform-orange-text {
    color: #f97316;
}

.platform-card p {
    position: relative;
    z-index: 1;
    color: #172033;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 28px;
}

.platform-image-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
}

.platform-preview-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.platform-card:hover .platform-preview-img {
    transform: scale(1.035);
}

@media (max-width: 991px) {
    .platform-card {
        padding: 28px 24px 24px;
    }

    .platform-card h3 {
        font-size: 26px;
    }

    .platform-card p {
        font-size: 16px;
    }

    .platform-card-header {
        gap: 16px;
    }

    .platform-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-radius: 18px;
    }
}

@media (max-width: 575px) {
    .platform-card-header {
        flex-direction: column;
    }

    .platform-card h3 {
        font-size: 28px;
    }
}

/* ===== MODERN FEATURES SECTION ===== */

.features-modern-section {
    position: relative;
    background:
            radial-gradient(circle at 12% 10%, rgba(30, 58, 95, 0.08), transparent 26%),
            radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.10), transparent 24%),
            linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%);
}

.features-lead {
    max-width: 860px;
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--muted);
}

/* TOP FEATURE BOXES */
.feature-box {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    border-radius: 22px;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.10);
}

.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
}

.feature-box-blue::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.12), transparent 34%),
            linear-gradient(180deg, rgba(59, 130, 246, 0.03), transparent 60%);
}

.feature-box-green::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.12), transparent 34%),
            linear-gradient(180deg, rgba(34, 197, 94, 0.03), transparent 60%);
}

.feature-box-orange::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.14), transparent 34%),
            linear-gradient(180deg, rgba(249, 115, 22, 0.04), transparent 60%);
}

.feature-box-purple::before {
    background:
            radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.14), transparent 34%),
            linear-gradient(180deg, rgba(168, 85, 247, 0.04), transparent 60%);
}

.feature-box-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 6, 23, 0.05);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}

.feature-box-icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.06));
}

.feature-box-icon-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.06));
}

.feature-box-icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.20), rgba(249, 115, 22, 0.07));
}

.feature-box-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.20), rgba(168, 85, 247, 0.07));
}

.feature-box-title {
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.feature-box-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* LOWER PANELS */
.feature-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.06);
    padding: 30px 28px;
}

.feature-panel-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.feature-panel-badge {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(30, 58, 95, 0.10);
    border: 1px solid rgba(30, 58, 95, 0.12);
}

.feature-panel-badge-accent {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.16);
}

.feature-panel-title {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.feature-panel-sub {
    color: var(--muted);
    line-height: 1.6;
}

.feature-panel-text {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 22px;
}

/* STEPS */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(2, 6, 23, 0.06);
}

.step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--muted);
    line-height: 1.65;
}

.step-content strong {
    color: var(--text);
    font-weight: 800;
}

/* BENEFITS */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(2, 6, 23, 0.06);
    color: var(--text);
    line-height: 1.65;
}

.benefit-check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.14);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 900;
    margin-top: 1px;
}

@media (max-width: 991px) {
    .feature-panel,
    .feature-box {
        padding: 24px 20px;
    }

    .feature-panel-title {
        font-size: 1.4rem;
    }

    .feature-box-title {
        font-size: 1.25rem;
    }

    .features-lead {
        font-size: 1rem;
        line-height: 1.75;
    }
}

@media (max-width: 575px) {
    .feature-panel-top {
        align-items: flex-start;
    }

    .step-item,
    .benefit-list li {
        padding: 12px;
    }
}