﻿/* =========================
   BASE
========================= */

body {
    background: var(--app-bg);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

/* =========================
   TOPBAR (STICKY)
========================= */

.topbar,
.landing-topbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    min-height: 72px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.86);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow .2s ease, background .2s ease;
}

    .topbar.scrolled,
    .landing-topbar.scrolled {
        background: rgba(255,255,255,0.94);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    }

.brand,
.brand:hover,
.brand:focus {
    text-decoration: none;
}

    .brand.landing-brand {
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--primary), #4338ca);
        color: #ffffff !important;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .01em;
        box-shadow: 0 10px 22px rgba(79,70,229,0.20);
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

        .brand.landing-brand:hover {
            color: #ffffff !important;
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(79,70,229,0.26);
        }

        .brand.landing-brand:active {
            transform: translateY(0);
        }

/* =========================
   BUTTONS (SAAS)
========================= */

.btn {
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 13px;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
    padding: 8px 16px;
}

    .btn-primary:hover {
        background: var(--primary-hover);
    }

.btn-outline-secondary {
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: white;
}

/* =========================
   HERO
========================= */

.hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
}

.hero-sub {
    margin-top: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin-inline: auto;
}

/* =========================
   SECTIONS
========================= */

.landing-main {
    padding-top: 0;
}

.landing-section {
    padding: 80px 0;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
}

/* =========================
   CARDS
========================= */

.feature-box {
    padding: 20px;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all .2s ease;
}

    .feature-box:hover {
        transform: translateY(-4px);
    }

/* =========================
   STEPS
========================= */

.step-box {
    padding: 20px;
}

.step-number {
    width: 44px;
    height: 44px;
    margin: auto;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* =========================
   FOOTER PRO
========================= */

.footer {
    margin-top: 80px;
    padding: 50px 0 25px;
    background: linear-gradient(180deg, #0f172a, #0b1220);
    color: #cbd5f5;
}

/* BRAND */
.footer-brand {
    font-weight: 700;
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 13px;
    color: #94a3b8;
    max-width: 280px;
    line-height: 1.6;
}

/* BADGE */
.footer-badge {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(79,70,229,0.15);
    color: #a5b4fc;
}

/* TITLES */
.footer-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

/* LINKS */
.footer-link {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 6px;
    transition: all .15s ease;
}

    .footer-link:hover {
        color: white;
    }

/* CTA BOX */
.footer-cta-box {
    background: rgba(255,255,255,0.03);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    display: inline-block;
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 20px 0;
}

/* BOTTOM */
.footer-bottom {
    font-size: 12px;
    color: #64748b;
}

/* BOTTOM LINKS */
.footer-bottom-links a {
    margin-left: 12px;
    color: #64748b;
    text-decoration: none;
}

    .footer-bottom-links a:hover {
        color: white;
    }

/* =========================
   APPLY PAGE
========================= */

.landing-apply-section {
    padding-top: 90px;
}

.landing-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary-soft, rgba(79,70,229,0.10));
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.apply-info-card,
.apply-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.apply-info-card {
    position: sticky;
    top: 92px;
}

.apply-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

    .apply-point:first-of-type {
        border-top: none;
        padding-top: 0;
    }

.apply-point-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.apply-point-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.apply-point-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.apply-note {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.6;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
}

.apply-form-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.apply-form-card .form-control {
    min-height: 44px;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .apply-info-card {
        position: static;
        top: auto;
    }
}

/* =========================
   SUCCESS STATE
========================= */

.apply-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn .4s ease;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transform: scale(0.8);
    animation: popIn .4s ease forwards;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   ERROR STATE
========================= */

.apply-error {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn .3s ease;
}

.error-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    animation: popIn .3s ease;
}

/* =========================
   HERO POLISHED
========================= */

.hero-section-polished {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    background: radial-gradient(circle at top left, rgba(79,70,229,0.12), transparent 34%), radial-gradient(circle at top right, rgba(14,165,233,0.10), transparent 30%), linear-gradient(180deg, #ffffff 0%, var(--app-bg) 100%);
}

    .hero-section-polished::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 78%);
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    margin-bottom: 18px;
}

.hero-section-polished .hero-title {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.hero-section-polished .hero-sub {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

    .hero-actions .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.hero-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}

@media (max-width: 575.98px) {
    .hero-section-polished {
        padding: 72px 0 56px;
    }

        .hero-section-polished .hero-sub {
            font-size: 15px;
        }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-trust-row {
        align-items: flex-start;
        flex-direction: column;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================
   PROBLEM SECTION
========================= */

.problem-section {
    background: linear-gradient(180deg, var(--app-bg) 0%, #ffffff 100%);
}

.section-header {
    max-width: 820px;
    margin: 0 auto;
}

    .section-header .section-title {
        font-size: clamp(28px, 3vw, 40px);
        line-height: 1.2;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 16px;
    }

.section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.problem-card {
    height: 100%;
    padding: 26px;
    border-radius: 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .problem-card:hover {
        transform: translateY(-4px);
        border-color: rgba(79,70,229,0.28);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
    }

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(79,70,229,0.10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.problem-card h5 {
    font-size: 17px;
    font-weight: 750;
    color: var(--text-main);
    margin-bottom: 10px;
}

.problem-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   SOLUTION SECTION
========================= */

.solution-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 88% 12%, rgba(79, 70, 229, 0.10), transparent 26% ), linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
}

    .solution-section::before {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -180px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(14, 165, 233, 0.05);
        pointer-events: none;
    }

    .solution-section .container {
        position: relative;
        z-index: 1;
    }

.solution-title {
    margin-bottom: 18px;
    color: var(--text-main);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.solution-subtitle {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.solution-value-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.solution-value-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

    .solution-value-item i {
        width: 22px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 22px;
        margin-top: 1px;
        border-radius: 50%;
        background: rgba(34, 197, 94, 0.10);
        color: #16a34a;
        font-size: 10px;
    }

.solution-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.solution-lifecycle {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: radial-gradient( circle at top right, rgba(79, 70, 229, 0.11), transparent 32% ), rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.solution-stage {
    position: relative;
    padding: 21px 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .solution-stage::after {
        content: "";
        position: absolute;
        top: -58px;
        right: -58px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(79, 70, 229, 0.055);
        pointer-events: none;
    }

    .solution-stage:hover {
        transform: translateY(-3px);
        border-color: rgba(79, 70, 229, 0.25);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
    }

.solution-stage-assess {
    border-left: 4px solid #2563eb;
}

.solution-stage-plan {
    border-left: 4px solid #7c3aed;
}

.solution-stage-execute {
    border-left: 4px solid #16a34a;
}

.solution-stage-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px 1fr 42px;
    align-items: center;
    gap: 14px;
}

.solution-stage-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.23);
}

.solution-stage-plan .solution-stage-number {
    background: #7c3aed;
}

.solution-stage-execute .solution-stage-number {
    background: #16a34a;
}

.solution-stage-heading {
    min-width: 0;
}

.solution-stage-eyebrow {
    margin-bottom: 3px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.065em;
}

.solution-stage-heading h5 {
    margin: 0;
    color: var(--text-main);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.solution-stage-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(37, 99, 235, 0.09);
    color: #2563eb;
    font-size: 17px;
}

.solution-stage-plan .solution-stage-icon {
    background: rgba(124, 58, 237, 0.09);
    color: #7c3aed;
}

.solution-stage-execute .solution-stage-icon {
    background: rgba(22, 163, 74, 0.09);
    color: #16a34a;
}

.solution-stage-text {
    position: relative;
    z-index: 1;
    margin: 15px 0 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.solution-stage-tags {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

    .solution-stage-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 27px;
        padding: 5px 10px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: #f8fafc;
        color: var(--text-secondary);
        font-size: 10px;
        font-weight: 750;
        white-space: nowrap;
    }

.solution-stage-connector {
    position: relative;
    width: 34px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

    .solution-stage-connector span {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient( 180deg, rgba(79, 70, 229, 0.34), rgba(79, 70, 229, 0.08) );
    }

    .solution-stage-connector i {
        position: absolute;
        bottom: -1px;
        padding: 2px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary);
        font-size: 9px;
    }

@media (max-width: 991.98px) {

    .solution-actions {
        margin-bottom: 12px;
    }

    .solution-lifecycle {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {

    .solution-lifecycle {
        padding: 16px;
        border-radius: 20px;
    }

    .solution-stage {
        padding: 17px;
        border-radius: 17px;
    }

    .solution-stage-header {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .solution-stage-number {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .solution-stage-icon {
        display: none;
    }

    .solution-stage-heading h5 {
        font-size: 15px;
    }

    .solution-stage-tags {
        gap: 6px;
    }

        .solution-stage-tags span {
            font-size: 9px;
        }

    .solution-stage-connector {
        margin-left: 25px;
    }

    .solution-actions {
        align-items: stretch;
        flex-direction: column;
    }

        .solution-actions .btn {
            width: 100%;
        }
}

/* =========================
   EXECUTION & COLLABORATION
========================= */

.execution-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 10% 10%, rgba(37, 99, 235, 0.08), transparent 28% ), radial-gradient( circle at 90% 90%, rgba(124, 58, 237, 0.07), transparent 28% ), linear-gradient( 180deg, #ffffff 0%, var(--app-bg) 100% );
}

.execution-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.execution-main-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
    padding: 38px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: radial-gradient( circle at top right, rgba(79, 70, 229, 0.14), transparent 34% ), linear-gradient( 135deg, #ffffff 0%, #f8fafc 100% );
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}

.execution-main-content {
    min-width: 0;
}

.execution-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.10);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.execution-main-content h3 {
    max-width: 540px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 820;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.execution-main-content > p {
    max-width: 560px;
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.execution-main-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.execution-main-point {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

    .execution-main-point i {
        width: 21px;
        height: 21px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 21px;
        margin-top: 1px;
        border-radius: 50%;
        background: rgba(22, 163, 74, 0.10);
        color: #16a34a;
        font-size: 9px;
    }

.execution-main-visual {
    position: relative;
}

    .execution-main-visual::before {
        content: "";
        position: absolute;
        inset: 9% 4% -8% 12%;
        border-radius: 30px;
        background: rgba(79, 70, 229, 0.09);
        filter: blur(1px);
        transform: rotate(3deg);
    }

.execution-project-card {
    position: relative;
    z-index: 1;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.execution-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 15px;
}

    .execution-project-header small {
        display: block;
        margin-bottom: 4px;
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.055em;
    }

    .execution-project-header strong {
        display: block;
        color: var(--text-main);
        font-size: 15px;
        font-weight: 800;
    }

    .execution-project-header > span {
        min-width: 54px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.10);
        color: var(--primary);
        font-size: 12px;
        font-weight: 850;
    }

.execution-progress {
    height: 8px;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9eef6;
}

    .execution-progress i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--primary), #38bdf8);
    }

.execution-task-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.execution-task {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 11px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
}

    .execution-task > span {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #f1f5f9;
        color: var(--text-muted);
        font-size: 12px;
    }

    .execution-task.completed > span {
        background: rgba(22, 163, 74, 0.10);
        color: #16a34a;
    }

    .execution-task.active {
        border-color: rgba(79, 70, 229, 0.24);
        background: rgba(79, 70, 229, 0.035);
    }

        .execution-task.active > span {
            background: rgba(79, 70, 229, 0.10);
            color: var(--primary);
        }

    .execution-task strong {
        display: block;
        margin-bottom: 2px;
        color: var(--text-main);
        font-size: 12px;
        font-weight: 750;
    }

    .execution-task small {
        display: block;
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 650;
    }

.execution-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.execution-feature-card {
    position: relative;
    min-height: 225px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .execution-feature-card::after {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(79, 70, 229, 0.055);
    }

    .execution-feature-card:hover {
        transform: translateY(-4px);
        border-color: rgba(79, 70, 229, 0.26);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
    }

.execution-feature-icon {
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    font-size: 17px;
}

    .execution-feature-icon.task {
        background: rgba(37, 99, 235, 0.10);
        color: #2563eb;
    }

    .execution-feature-icon.chat {
        background: rgba(124, 58, 237, 0.10);
        color: #7c3aed;
    }

    .execution-feature-icon.reminder {
        background: rgba(245, 158, 11, 0.11);
        color: #d97706;
    }

    .execution-feature-icon.notification {
        background: rgba(22, 163, 74, 0.10);
        color: #16a34a;
    }

.execution-feature-card h5 {
    position: relative;
    z-index: 1;
    margin-bottom: 9px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 780;
}

.execution-feature-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.execution-feature-meta {
    position: relative;
    z-index: 1;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.5;
}

@media (max-width: 991.98px) {

    .execution-main-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .execution-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .execution-main-visual {
        max-width: 620px;
    }
}

@media (max-width: 575.98px) {

    .execution-main-card {
        padding: 20px;
        border-radius: 22px;
    }

    .execution-project-card {
        padding: 18px;
        border-radius: 19px;
    }

    .execution-feature-grid {
        grid-template-columns: 1fr;
    }

    .execution-feature-card {
        min-height: auto;
        padding: 20px;
    }

    .execution-project-header {
        align-items: flex-start;
    }
}

.hero-trust-row {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.hero-trust-item {
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
    backdrop-filter: blur(6px);
}

@media (max-width: 575.98px) {

    .hero-trust-item {
        width: 100%;
        justify-content: flex-start;
    }
}

.model-flow-note {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 860px;
    margin: 28px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(79, 70, 229, 0.16);
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.055);
}

.model-flow-note-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
}

.model-flow-note strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 800;
}

.model-flow-note span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 575.98px) {
    .model-flow-note {
        align-items: flex-start;
        padding: 15px;
    }
}

/* =========================
   MODEL SECTION
========================= */

.model-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--app-bg) 100%);
}

.model-card {
    height: 100%;
    padding: 24px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .model-card:hover {
        transform: translateY(-4px);
        border-color: rgba(79,70,229,0.28);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    }

.model-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.model-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(79,70,229,0.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.model-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}

.model-card h5 {
    font-size: 17px;
    font-weight: 750;
    color: var(--text-main);
    margin-bottom: 10px;
}

.model-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 575.98px) {
    .model-card {
        padding: 20px;
    }
}

/* =========================
   HOW IT WORKS SECTION
========================= */

.how-section {
    background: radial-gradient(circle at top left, rgba(79,70,229,0.08), transparent 28%), linear-gradient(180deg, var(--app-bg) 0%, #ffffff 100%);
}

.how-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

    .how-timeline::before {
        content: "";
        position: absolute;
        top: 33px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(90deg, rgba(79,70,229,0.08), rgba(79,70,229,0.36), rgba(79,70,229,0.08));
        z-index: 0;
    }

.how-step {
    position: relative;
    z-index: 1;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(8px);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .how-step:hover {
        transform: translateY(-4px);
        border-color: rgba(79,70,229,0.28);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    }

.how-step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 14px 28px rgba(79,70,229,0.25);
}

.how-step-content h5 {
    font-size: 16px;
    font-weight: 750;
    color: var(--text-main);
    margin-bottom: 10px;
}

.how-step-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .how-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

        .how-timeline::before {
            display: none;
        }
}

@media (max-width: 575.98px) {
    .how-timeline {
        grid-template-columns: 1fr;
    }

    .how-step {
        padding: 20px;
    }
}

/* =========================
   OUTPUTS SECTION
========================= */

.outputs-section {
    background: #ffffff;
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.output-card {
    position: relative;
    min-height: 245px;
    padding: 24px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .output-card::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -50px;
        top: -50px;
        border-radius: 999px;
        background: rgba(79,70,229,0.08);
        transition: transform .2s ease, opacity .2s ease;
    }

    .output-card:hover {
        transform: translateY(-4px);
        border-color: rgba(79,70,229,0.28);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    }

        .output-card:hover::after {
            transform: scale(1.15);
            opacity: .9;
        }

.output-card-highlight {
    background: radial-gradient(circle at top right, rgba(79,70,229,0.14), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.output-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(79,70,229,0.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 22px;
}

.output-card h5 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 750;
    color: var(--text-main);
    margin-bottom: 10px;
}

.output-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .outputs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .outputs-grid {
        grid-template-columns: 1fr;
    }

    .output-card {
        min-height: auto;
        padding: 20px;
    }
}

/* =========================
   AUDIENCE SECTION
========================= */

.audience-section {
    background: radial-gradient(circle at bottom left, rgba(79,70,229,0.08), transparent 28%), linear-gradient(180deg, #ffffff 0%, var(--app-bg) 100%);
}

.audience-title {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 18px;
}

.audience-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.audience-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .audience-card:hover {
        transform: translateX(4px);
        border-color: rgba(79,70,229,0.28);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    }

.audience-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(79,70,229,0.22);
}

.audience-card h5 {
    font-size: 16px;
    font-weight: 750;
    color: var(--text-main);
    margin-bottom: 6px;
}

.audience-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 575.98px) {
    .audience-card {
        grid-template-columns: 40px 1fr;
        padding: 18px;
    }

    .audience-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}

/* =========================
   FINAL CTA SECTION
========================= */

.final-cta-section {
    background: linear-gradient(180deg, var(--app-bg) 0%, #ffffff 100%);
    padding-bottom: 40px;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 64px 36px;
    border-radius: 28px;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 28%), radial-gradient(circle at bottom right, rgba(14,165,233,0.22), transparent 30%), linear-gradient(135deg, #312e81 0%, #4f46e5 52%, #0f172a 100%);
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

    .final-cta-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 85%);
        pointer-events: none;
    }

    .final-cta-card > * {
        position: relative;
        z-index: 1;
    }

.final-cta-eyebrow {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
}

.final-cta-card h2 {
    max-width: 980px;
    margin: 0 auto 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.final-cta-card p {
    max-width: 840px;
    margin: 0 auto;
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.75;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

    .final-cta-actions .btn-primary {
        background: #ffffff;
        color: var(--primary);
    }

        .final-cta-actions .btn-primary:hover {
            background: #f8fafc;
            color: var(--primary-hover);
        }

    .final-cta-actions .btn-outline-secondary {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.22);
        color: #ffffff;
    }

        .final-cta-actions .btn-outline-secondary:hover {
            background: rgba(255,255,255,0.14);
            color: #ffffff;
        }

@media (max-width: 575.98px) {
    .final-cta-card {
        padding: 44px 22px;
        border-radius: 22px;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .final-cta-actions .btn {
            width: 100%;
        }
}

.footer-cta-text {
    max-width: 260px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================
   LANDING NAV
========================= */

.landing-nav-container {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.landing-brand {
    white-space: nowrap;
}

.landing-nav {
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.landing-nav-link {
    position: relative;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

    .landing-nav-link:hover {
        color: var(--primary);
        background: rgba(79,70,229,0.08);
        text-decoration: none;
    }

    .landing-nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 4px;
        height: 2px;
        border-radius: 999px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .2s ease;
    }

    .landing-nav-link:hover::after {
        transform: scaleX(1);
    }

.landing-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .landing-nav-container {
        display: flex;
        justify-content: space-between;
        min-height: 64px;
        gap: 14px;
    }

    .landing-nav-actions {
        gap: 6px;
    }

        .landing-nav-actions .btn {
            height: 36px;
            min-width: auto;
            padding: 0 12px;
            font-size: 12px;
        }

    .landing-lang-switch {
        height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .brand.landing-brand {
        height: 36px;
        padding: 0 14px;
    }
}

@media (max-width: 420px) {
    .landing-nav-actions .btn-outline-secondary {
        display: none;
    }
}

/* =========================
   LANDING TOPBAR ACTIONS
========================= */

.landing-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

    .landing-nav-actions .btn {
        height: 40px;
        min-width: 72px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        border-radius: 999px !important;
        font-size: 13px;
        font-weight: 750;
        line-height: 1;
    }

    .landing-nav-actions .btn-primary {
        min-width: 72px;
        padding: 0 18px;
        box-shadow: 0 10px 22px rgba(79,70,229,0.20);
    }

        .landing-nav-actions .btn-primary:hover {
            box-shadow: 0 14px 28px rgba(79,70,229,0.26);
        }

    .landing-nav-actions .btn-outline-secondary {
        min-width: 108px;
        background: #ffffff;
        border-color: var(--border);
        color: var(--text-secondary);
    }

        .landing-nav-actions .btn-outline-secondary:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            color: var(--text-main);
        }

/* =========================
   LANGUAGE SWITCH
========================= */

.landing-lang-switch {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.landing-lang-link {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1;
    transition: color .2s ease;
}

    .landing-lang-link:hover {
        color: var(--primary);
        text-decoration: none;
    }

    .landing-lang-link.active {
        color: var(--primary);
    }

.landing-lang-separator {
    color: var(--text-soft);
    font-weight: 600;
}

/* =========================
   ASSESSMENT ANALYSIS PREVIEW
========================= */

.assessment-preview-section {
    margin-top: -10px;
    background: linear-gradient(180deg, var(--app-bg) 0%, #ffffff 100%);
}

.assessment-preview-header {
    max-width: 840px;
    margin: 0 auto 38px;
}

    .assessment-preview-header h2 {
        font-size: clamp(30px, 3.6vw, 48px);
        line-height: 1.12;
        letter-spacing: -0.04em;
        font-weight: 850;
        color: var(--text-main);
        margin-bottom: 16px;
    }

    .assessment-preview-header p {
        max-width: 760px;
        margin: 0 auto;
        color: var(--text-muted);
        font-size: 16px;
        line-height: 1.75;
    }

.assessment-preview-shell {
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.95);
    box-shadow: 0 32px 90px rgba(15,23,42,0.13), inset 0 1px 0 rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
}

.assessment-preview-topbar {
    height: 68px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.preview-browser-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.preview-browser-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

    .preview-browser-dots span {
        width: 10px;
        height: 10px;
        border-radius: 999px;
    }

        .preview-browser-dots span:nth-child(1) {
            background: #fb7185;
        }

        .preview-browser-dots span:nth-child(2) {
            background: #fbbf24;
        }

        .preview-browser-dots span:nth-child(3) {
            background: #4ade80;
        }

.preview-browser-chip {
    max-width: 280px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-status-pill {
    height: 34px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    flex-shrink: 0;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 750;
}

    .preview-status-pill span {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
    }

.assessment-preview-body {
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 0;
    min-height: 500px;
    background: radial-gradient(circle at top right, rgba(79,70,229,0.07), transparent 32%), linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.preview-axis-panel,
.preview-question-panel,
.preview-output-panel {
    padding: 22px;
}

.preview-axis-panel {
    background: rgba(255,255,255,0.82);
    border-right: 1px solid var(--border);
}

.preview-axis-tab,
.preview-category-item {
    box-shadow: 0 8px 18px rgba(15,23,42,0.035);
}

.preview-question-panel {
    background: linear-gradient(180deg, rgba(248,250,252,0.95), rgba(241,245,249,0.92));
    position: relative;
}

.preview-output-panel {
    background: #ffffff;
    border-left: 1px solid var(--border);
    position: relative;
}

.preview-output-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.preview-output-subtitle {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.4;
}

.preview-output-generated-badge {
    position: static;
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34,197,94,0.10);
    color: #16a34a;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.preview-panel-title {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 16px;
}

.preview-axis-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.preview-axis-tabs {
    gap: 8px;
    margin-bottom: 16px;
}

.preview-category-list {
    gap: 8px;
}

.preview-axis-tab,
.preview-category-item {
    padding: 13px 14px;
    border-radius: 15px;
}

.preview-axis-tab,
.preview-category-item {
    position: relative;
    padding: 15px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    overflow: hidden;
}

    .preview-axis-tab.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #ffffff;
    }

    .preview-axis-tab.completed {
        background: #f8fafc;
    }

    .preview-axis-tab strong,
    .preview-category-item strong {
        display: block;
        font-size: 13px;
        font-weight: 850;
        color: inherit;
        margin-bottom: 4px;
    }

    .preview-axis-tab small,
    .preview-category-item small {
        color: inherit;
        opacity: .72;
        font-size: 12px;
        font-weight: 700;
    }

    .preview-axis-tab span {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 0;
        height: 4px;
        border-radius: 999px;
        background: rgba(255,255,255,0.75);
    }

    .preview-axis-tab.completed span {
        background: var(--primary);
    }

.preview-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-category-item.active {
    background: #eff6ff;
    border-color: rgba(79,70,229,0.28);
}

.preview-category-item.completed::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    right: 15px;
    top: 18px;
    border-radius: 999px;
    background: #22c55e;
}

.preview-question-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

    .preview-question-header h3 {
        color: var(--text-main);
        font-size: 20px;
        line-height: 1.35;
        font-weight: 850;
        margin: 0;
    }

.preview-score-badge {
    min-width: 88px;
    height: 40px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 850;
}

.preview-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.preview-option {
    min-height: 42px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

    .preview-option span {
        width: 15px;
        height: 15px;
        border-radius: 999px;
        border: 2px solid #cbd5e1;
        flex-shrink: 0;
    }

    .preview-option strong {
        color: var(--text-secondary);
        font-size: 13px;
        font-weight: 750;
    }

    .preview-option.selected {
        border-color: rgba(79,70,229,0.36);
        background: linear-gradient(90deg, rgba(79,70,229,0.10), #ffffff);
        box-shadow: inset 4px 0 0 var(--primary);
    }

        .preview-option.selected span {
            border-color: var(--primary);
            box-shadow: inset 0 0 0 4px #ffffff;
            background: var(--primary);
        }

        .preview-option.selected strong {
            color: var(--text-main);
        }

.preview-question-header {
    margin-bottom: 18px;
}

.preview-options {
    gap: 10px;
    margin-bottom: 18px;
}

.preview-form-block {
    margin-bottom: 18px;
}

    .preview-form-block label {
        display: block;
        color: var(--text-muted);
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 8px;
    }

.preview-textarea {
    min-height: 76px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
}

    .preview-textarea span {
        display: block;
        height: 9px;
        border-radius: 999px;
        background: #e2e8f0;
        margin-bottom: 10px;
    }

        .preview-textarea span:last-child {
            margin-bottom: 0;
        }

.preview-analysis-strip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(79,70,229,0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(79,70,229,0.08);
}

    .preview-analysis-strip span {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--primary);
        animation: previewPulse 1.2s infinite ease-in-out;
    }

@keyframes previewPulse {
    0%, 100% {
        opacity: .35;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.preview-output-score.modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(79,70,229,0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226,232,240,0.95);
    color: var(--text-main);
    box-shadow: 0 16px 38px rgba(15,23,42,0.07);
}

.preview-score-main small {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
}

.preview-score-main strong {
    display: block;
    color: var(--text-main);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.preview-score-main span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(79,70,229,0.09);
    color: var(--primary);
    font-size: 11px;
    font-weight: 850;
}

.preview-score-ring {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: conic-gradient(var(--primary) 0 74%, #e9eef6 74% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}

    .preview-score-ring::before {
        content: "";
        position: absolute;
    }

    .preview-score-ring div {
        width: 56px;
        height: 56px;
        border-radius: 999px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 18px;
        font-weight: 900;
        box-shadow: 0 8px 18px rgba(15,23,42,0.08);
    }

.preview-output-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(226,232,240,0.88);
    box-shadow: 0 12px 28px rgba(15,23,42,0.045);
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}

.preview-output-card-title {
    color: var(--text-main);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 14px;
}

.preview-mini-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .preview-mini-bars span {
        display: block;
        color: var(--text-secondary);
        font-size: 12px;
        font-weight: 750;
        margin-bottom: 6px;
    }

    .preview-mini-bars i {
        display: block;
        height: 8px;
        border-radius: 999px;
        background: #e9eef6;
        overflow: hidden;
    }

    .preview-mini-bars b {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary), #60a5fa);
    }

.preview-insight-line {
    position: relative;
    padding: 13px 14px 13px 36px;
    border-radius: 16px;
    background: #f8fafc;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 10px;
}

    .preview-insight-line::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 16px;
        width: 9px;
        height: 9px;
        border-radius: 999px;
        bottom: auto;
    }

    .preview-insight-line.success::before {
        background: #22c55e;
        box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
    }

    .preview-insight-line.warning::before {
        background: #f59e0b;
        box-shadow: 0 0 0 4px rgba(245,158,11,0.12);
    }


.preview-output-score {
    padding: 22px;
    margin-bottom: 14px;
}

.preview-mini-bars {
    gap: 14px;
}

    .preview-mini-bars span {
        display: flex;
        justify-content: space-between;
        color: var(--text-secondary);
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .preview-mini-bars i {
        height: 9px;
        border-radius: 999px;
        background: #eef2f7;
    }

    .preview-mini-bars b {
        background: linear-gradient(90deg, var(--primary), #38bdf8);
    }

@media (max-width: 1199.98px) {
    .assessment-preview-body {
        grid-template-columns: 250px 1fr;
    }

    .preview-output-panel {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: 260px 1fr 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .preview-output-score,
    .preview-output-card {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .assessment-preview-topbar {
        height: auto;
        padding: 16px;
        flex-wrap: wrap;
    }

    .assessment-preview-body {
        grid-template-columns: 1fr;
    }

    .preview-axis-panel,
    .preview-output-panel {
        border: none;
        border-top: 1px solid var(--border);
    }

    .preview-output-panel {
        display: block;
    }

    .preview-output-score,
    .preview-output-card {
        margin-bottom: 16px;
    }

    .preview-question-header {
        flex-direction: column;
    }

    .preview-score-badge {
        align-self: flex-start;
    }
}

/* =========================
   LEFT PANEL CLEANUP
========================= */

.preview-axis-panel {
    padding: 22px 20px;
}

.preview-axis-tab {
    padding: 15px 16px;
    border-radius: 18px;
}

.preview-category-list {
    gap: 6px;
    padding-top: 10px;
    border-top: 1px dashed rgba(148,163,184,0.28);
}

.preview-category-item {
    padding: 10px 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
}

    .preview-category-item.active {
        background: rgba(79,70,229,0.06);
        border-color: rgba(79,70,229,0.16);
    }

    .preview-category-item strong {
        font-size: 12px;
        font-weight: 800;
    }

    .preview-category-item small {
        font-size: 11px;
        opacity: .68;
    }

    .preview-category-item.completed::before {
        width: 8px;
        height: 8px;
        right: 12px;
        top: 14px;
    }

/* =========================
   ASSESSMENT PREVIEW FINAL OVERRIDES
========================= */

.assessment-preview-body {
    grid-template-columns: 250px 1fr 320px;
    min-height: 500px;
}

/* LEFT PANEL */
.preview-axis-panel {
    padding: 22px 18px;
    background: rgba(255,255,255,0.88);
}

.preview-axis-tab {
    padding: 14px 15px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 18px rgba(15,23,42,0.035);
}

    .preview-axis-tab.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #ffffff;
    }

    .preview-axis-tab.completed {
        background: #ffffff;
    }

    .preview-axis-tab strong {
        font-size: 13px;
        font-weight: 850;
    }

    .preview-axis-tab small {
        font-size: 12px;
        font-weight: 750;
    }

    .preview-axis-tab span {
        left: 14px;
        right: 14px;
        bottom: 0;
        height: 4px;
    }

/* CATEGORY AS SUB LEVEL */
.preview-category-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(148,163,184,0.28);
}

.preview-category-item {
    padding: 10px 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
}

    .preview-category-item.active {
        background: rgba(79,70,229,0.06);
        border-color: rgba(79,70,229,0.16);
    }

    .preview-category-item strong {
        font-size: 12px;
        font-weight: 800;
    }

    .preview-category-item small {
        font-size: 11px;
        font-weight: 700;
        opacity: .68;
    }

    .preview-category-item.completed::before {
        width: 8px;
        height: 8px;
        right: 12px;
        top: 14px;
    }

/* COMPACT CENTER */
.preview-question-header {
    margin-bottom: 18px;
}

.preview-options {
    gap: 10px;
    margin-bottom: 18px;
}

.preview-form-block {
    margin-bottom: 14px;
}

.preview-textarea {
    min-height: 66px;
    padding: 14px 16px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .landing-nav-container {
        gap: 14px;
    }

    .landing-nav {
        gap: 2px;
    }

    .landing-nav-link {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 12px;
    }

    .landing-nav-actions {
        gap: 6px;
    }

        .landing-nav-actions .btn {
            padding-right: 12px;
            padding-left: 12px;
        }
}

/* =========================================================
   PREMIUM LANDING POLISH OVERRIDES
   Keep this section at the end of the file.
========================================================= */

:root {
    --landing-section-space: clamp(72px, 8vw, 112px);
    --landing-card-radius: 22px;
    --landing-panel-radius: 30px;
    --landing-shadow-soft: 0 16px 46px rgba(15, 23, 42, 0.07);
    --landing-shadow-hover: 0 24px 64px rgba(15, 23, 42, 0.12);
    --landing-border-soft: rgba(226, 232, 240, 0.86);
}

body {
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--app-bg) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.landing-main {
    overflow: hidden;
}

.landing-section {
    position: relative;
    padding-top: var(--landing-section-space);
    padding-bottom: var(--landing-section-space);
}

    .landing-section > .container {
        position: relative;
        z-index: 2;
    }

.section-header {
    max-width: 880px;
}

    .section-header .section-title,
    .solution-title,
    .audience-title {
        text-wrap: balance;
    }

.section-subtitle,
.solution-subtitle,
.audience-subtitle {
    text-wrap: pretty;
}

.landing-eyebrow {
    min-height: 30px;
    padding: 7px 13px;
    border: 1px solid rgba(79, 70, 229, 0.10);
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.92) 0%, rgba(79, 70, 229, 0.075) 100% );
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* TOPBAR */

.landing-topbar {
    border-bottom-color: rgba(226, 232, 240, 0.76);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.025);
}

    .landing-topbar.scrolled {
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 14px 42px rgba(15, 23, 42, 0.09), 0 1px 0 rgba(15, 23, 42, 0.04);
    }

.brand.landing-brand {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 52%, #2563eb 100%);
    box-shadow: 0 12px 26px rgba(79, 70, 229, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.landing-nav-link {
    font-weight: 700;
}

.landing-nav-actions .btn,
.hero-actions .btn,
.solution-actions .btn,
.final-cta-actions .btn {
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

    .landing-nav-actions .btn:hover,
    .hero-actions .btn:hover,
    .solution-actions .btn:hover,
    .final-cta-actions .btn:hover {
        transform: translateY(-1px);
    }

/* HERO */

.hero-section-polished {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding-top: clamp(96px, 10vw, 136px);
    padding-bottom: clamp(80px, 9vw, 116px);
    background: radial-gradient(circle at 12% 12%, rgba(79, 70, 229, 0.15), transparent 30%), radial-gradient(circle at 88% 8%, rgba(14, 165, 233, 0.12), transparent 28%), radial-gradient(circle at 50% 115%, rgba(124, 58, 237, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #f8fafc 72%, var(--app-bg) 100%);
}

    .hero-section-polished::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 24px;
        width: min(920px, 82vw);
        height: 160px;
        transform: translateX(-50%);
        border-radius: 50%;
        background: rgba(79, 70, 229, 0.08);
        filter: blur(70px);
        pointer-events: none;
    }

.hero-content {
    max-width: 960px;
}

.hero-section-polished .hero-title {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(42px, 5.7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.048em;
    text-wrap: balance;
}

.hero-section-polished .hero-sub {
    max-width: 790px;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.75;
    text-wrap: pretty;
}

.hero-actions {
    margin-top: 34px;
}

    .hero-actions .btn {
        min-height: 48px;
        padding-right: 22px !important;
        padding-left: 22px !important;
        border-radius: 12px !important;
    }

    .hero-actions .btn-primary {
        box-shadow: 0 14px 30px rgba(79, 70, 229, 0.20);
    }

.hero-trust-row {
    gap: 10px;
    margin-top: 30px;
}

.hero-trust-item {
    min-height: 34px;
    padding: 6px 12px;
    border-color: rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-trust-dot {
    width: 7px;
    height: 7px;
}

/* ASSESSMENT PREVIEW */

.assessment-preview-section {
    position: relative;
    z-index: 3;
    margin-top: -86px;
    padding-top: 0;
    background: transparent;
}

.assessment-preview-shell {
    border-radius: 30px;
    border-color: rgba(226, 232, 240, 0.82);
    box-shadow: 0 38px 100px rgba(15, 23, 42, 0.14), 0 2px 10px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.assessment-preview-topbar {
    height: 62px;
}

.preview-axis-panel,
.preview-question-panel,
.preview-output-panel {
    padding-top: 24px;
    padding-bottom: 24px;
}

.preview-axis-tab,
.preview-output-card,
.preview-output-score.modern,
.preview-option,
.preview-textarea {
    border-color: var(--landing-border-soft);
}

.preview-axis-tab,
.preview-output-card,
.preview-output-score.modern {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.preview-output-score.modern {
    background: radial-gradient(circle at 90% 8%, rgba(79, 70, 229, 0.13), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* GENERIC CARD POLISH */

.problem-card,
.model-card,
.how-step,
.output-card,
.audience-card,
.execution-feature-card {
    border-color: var(--landing-border-soft);
    box-shadow: var(--landing-shadow-soft);
}

    .problem-card:hover,
    .model-card:hover,
    .how-step:hover,
    .output-card:hover,
    .audience-card:hover,
    .execution-feature-card:hover {
        border-color: rgba(79, 70, 229, 0.26);
        box-shadow: var(--landing-shadow-hover);
    }

.problem-card,
.model-card,
.output-card,
.execution-feature-card {
    border-radius: var(--landing-card-radius);
}

/* PROBLEM */

.problem-section {
    padding-top: calc(var(--landing-section-space) + 20px);
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.055), transparent 30%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.problem-card {
    padding: 30px;
}

.problem-icon {
    min-width: 46px;
    height: 32px;
    margin-bottom: 20px;
}

/* SOLUTION */

.solution-section {
    background: radial-gradient(circle at 92% 8%, rgba(124, 58, 237, 0.10), transparent 25%), radial-gradient(circle at 4% 96%, rgba(14, 165, 233, 0.06), transparent 24%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.solution-lifecycle {
    border-radius: var(--landing-panel-radius);
    border-color: rgba(226, 232, 240, 0.84);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.solution-stage {
    border-radius: 21px;
    border-color: rgba(226, 232, 240, 0.90);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

    .solution-stage:hover {
        transform: translateY(-4px);
    }

.solution-stage-tags span {
    background: rgba(248, 250, 252, 0.92);
}

/* MODEL */

.model-section {
    background: radial-gradient(circle at 15% 0%, rgba(79, 70, 229, 0.055), transparent 28%), linear-gradient(180deg, #ffffff 0%, var(--app-bg) 100%);
}

.model-card {
    min-height: 250px;
    padding: 28px;
}

.model-icon,
.output-icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.model-flow-note {
    max-width: 900px;
    margin-top: 32px;
    border-radius: 18px;
    border-color: rgba(79, 70, 229, 0.18);
    background: linear-gradient( 135deg, rgba(79, 70, 229, 0.075), rgba(14, 165, 233, 0.045) );
    box-shadow: 0 12px 34px rgba(79, 70, 229, 0.075);
}

/* HOW IT WORKS */

.how-section {
    background: radial-gradient(circle at 8% 10%, rgba(79, 70, 229, 0.08), transparent 28%), radial-gradient(circle at 92% 90%, rgba(14, 165, 233, 0.055), transparent 26%), linear-gradient(180deg, var(--app-bg) 0%, #ffffff 100%);
}

.how-timeline {
    gap: 20px;
}

.how-step {
    min-height: 280px;
    padding: 26px;
}

.how-step-number {
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(79, 70, 229, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* OUTPUTS */

.outputs-section {
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.045), transparent 28%), #ffffff;
}

.outputs-grid {
    gap: 20px;
}

.output-card {
    min-height: 250px;
    padding: 28px;
}

    .output-card p {
        max-width: 96%;
    }

.output-card-highlight {
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 36%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* EXECUTION */

.execution-section {
    background: radial-gradient(circle at 10% 8%, rgba(37, 99, 235, 0.09), transparent 26%), radial-gradient(circle at 90% 90%, rgba(124, 58, 237, 0.08), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.execution-main-card {
    border-radius: 30px;
    border-color: rgba(226, 232, 240, 0.84);
    box-shadow: 0 32px 84px rgba(15, 23, 42, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.execution-project-card {
    border-color: rgba(226, 232, 240, 0.90);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.execution-feature-grid {
    gap: 18px;
}

.execution-feature-card {
    min-height: 235px;
    padding: 24px;
}

/* AUDIENCE */

.audience-section {
    background: radial-gradient(circle at 0% 100%, rgba(79, 70, 229, 0.08), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.audience-card {
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.94);
}

    .audience-card:hover {
        transform: translateX(6px);
    }

/* FINAL CTA */

.final-cta-section {
    padding-top: calc(var(--landing-section-space) - 10px);
    padding-bottom: 56px;
    background: linear-gradient(180deg, #ffffff 0%, var(--app-bg) 100%);
}

.final-cta-card {
    padding: clamp(54px, 7vw, 78px) clamp(26px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 32px;
    background: radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.18), transparent 26%), radial-gradient(circle at 88% 88%, rgba(56, 189, 248, 0.22), transparent 30%), linear-gradient(135deg, #312e81 0%, #4f46e5 48%, #172554 100%);
    box-shadow: 0 34px 96px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

    .final-cta-card h2 {
        max-width: 980px;
        text-wrap: balance;
    }

    .final-cta-card p {
        max-width: 840px;
        text-wrap: pretty;
    }

/* FOOTER */

.footer {
    margin-top: 0;
    padding-top: 58px;
    background: radial-gradient(circle at 85% 0%, rgba(79, 70, 229, 0.15), transparent 26%), linear-gradient(180deg, #0f172a 0%, #070d19 100%);
}

.footer-cta-box {
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

/* ACCESSIBILITY & MOTION */

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.24);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* RESPONSIVE POLISH */

@media (max-width: 1199.98px) {
    .hero-section-polished {
        min-height: auto;
    }

    .assessment-preview-section {
        margin-top: -54px;
    }

    .execution-main-card {
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    .landing-section {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .hero-section-polished {
        padding-top: 92px;
        padding-bottom: 96px;
    }

    .assessment-preview-section {
        margin-top: -42px;
    }

    .problem-card,
    .model-card,
    .output-card,
    .execution-feature-card {
        padding: 24px;
    }

    .how-step {
        min-height: 250px;
    }
}

@media (max-width: 767.98px) {
    .landing-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .hero-section-polished {
        min-height: auto;
        padding-top: 76px;
        padding-bottom: 76px;
    }

        .hero-section-polished .hero-title {
            font-size: clamp(38px, 11vw, 52px);
        }

    .assessment-preview-section {
        margin-top: -26px;
    }

    .assessment-preview-shell {
        border-radius: 22px;
    }

    .solution-lifecycle,
    .execution-main-card,
    .final-cta-card {
        border-radius: 24px;
    }

    .how-step {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .hero-section-polished {
        padding-top: 68px;
        padding-bottom: 66px;
    }

        .hero-section-polished .hero-title {
            font-size: clamp(35px, 11.5vw, 46px);
            line-height: 1.06;
        }

        .hero-section-polished .hero-sub {
            font-size: 15px;
            line-height: 1.7;
        }

    .hero-trust-row {
        max-width: 100%;
    }

    .hero-trust-item {
        min-height: 36px;
    }

    .assessment-preview-section {
        margin-top: -18px;
    }

    .assessment-preview-topbar {
        min-height: 60px;
    }

    .solution-lifecycle,
    .execution-main-card {
        padding: 17px;
    }

    .problem-card,
    .model-card,
    .output-card,
    .execution-feature-card {
        padding: 21px;
        border-radius: 18px;
    }

    .model-card,
    .output-card,
    .execution-feature-card {
        min-height: auto;
    }

    .final-cta-card {
        padding: 46px 22px;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {

    .hero-section-polished {
        padding-top: 58px;
        padding-bottom: 54px;
    }

        .hero-section-polished .hero-title {
            max-width: 340px;
            margin-right: auto;
            margin-left: auto;
            font-size: 35px;
            line-height: 1.04;
            letter-spacing: -0.045em;
        }

        .hero-section-polished .hero-sub {
            max-width: 350px;
            font-size: 14px;
            line-height: 1.65;
        }

    .hero-actions {
        max-width: 350px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-trust-row {
        max-width: 350px;
        gap: 7px;
    }

    .hero-trust-item {
        min-height: 34px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .assessment-preview-section {
        margin-top: -8px;
    }

    .assessment-preview-shell {
        border-radius: 18px;
    }

    .assessment-preview-topbar {
        padding: 12px;
    }

    .preview-browser-chip {
        max-width: 180px;
        font-size: 10px;
    }

    .preview-status-pill {
        font-size: 10px;
    }

    .preview-axis-panel,
    .preview-question-panel,
    .preview-output-panel {
        padding: 16px;
    }

    .landing-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-header .section-title,
    .solution-title,
    .audience-title {
        font-size: 27px;
        line-height: 1.14;
    }

    .section-subtitle,
    .solution-subtitle,
    .audience-subtitle {
        font-size: 14px;
        line-height: 1.65;
    }

    .solution-lifecycle,
    .execution-main-card {
        padding: 15px;
    }

    .solution-stage,
    .problem-card,
    .model-card,
    .output-card,
    .execution-feature-card {
        padding: 18px;
    }

        .solution-stage-text,
        .problem-card p,
        .model-card p,
        .output-card p,
        .execution-feature-card p {
            font-size: 13px;
            line-height: 1.6;
        }

    .landing-nav-actions .btn-primary {
        min-width: 58px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .brand.landing-brand {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 11px;
    }
}

/* =========================================================
   LANDING MOBILE — FINAL FIX
   Keep this block at the very end of landing.css
========================================================= */

@media (max-width: 767.98px) {

    html {
        scroll-padding-top: 72px;
    }

    body {
        overflow-x: hidden;
    }

    .landing-main {
        overflow: hidden;
    }

    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    /* -----------------------------------------------------
       TOPBAR
    ----------------------------------------------------- */

    .topbar,
    .landing-topbar {
        min-height: 62px;
    }

    .landing-nav-container {
        min-height: 62px;
        gap: 8px;
    }

    .brand.landing-brand {
        height: 34px;
        padding: 0 11px;
        font-size: 10px;
        letter-spacing: 0;
        box-shadow: 0 8px 18px rgba(79, 70, 229, 0.18);
    }

    .landing-nav-actions {
        gap: 5px;
    }

        .landing-nav-actions .btn {
            height: 34px;
            min-width: auto;
            padding: 0 11px;
            font-size: 11px;
        }

        .landing-nav-actions .btn-primary {
            min-width: 56px;
            padding-right: 12px;
            padding-left: 12px;
        }

    .landing-lang-switch {
        height: 34px;
        gap: 4px;
        padding: 0 9px;
        font-size: 10px;
    }

    /* -----------------------------------------------------
       GLOBAL SECTIONS
    ----------------------------------------------------- */

    .landing-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .section-header {
        max-width: 100%;
    }

    .landing-eyebrow {
        min-height: 27px;
        margin-bottom: 11px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .section-header .section-title,
    .solution-title,
    .audience-title {
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
        font-size: 27px;
        line-height: 1.14;
        letter-spacing: -0.032em;
        text-wrap: balance;
    }

    .section-subtitle,
    .solution-subtitle,
    .audience-subtitle {
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
        line-height: 1.65;
        text-wrap: pretty;
    }

    .section-header + .row,
    .section-header + .how-timeline,
    .section-header + .outputs-grid,
    .section-header + .execution-layout {
        margin-top: 30px !important;
    }

    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero-section-polished {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-eyebrow {
        margin-bottom: 13px;
    }

    .hero-section-polished .hero-title {
        max-width: 355px;
        margin-right: auto;
        margin-bottom: 15px;
        margin-left: auto;
        font-size: clamp(34px, 9.4vw, 43px);
        line-height: 1.04;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .hero-section-polished .hero-sub {
        max-width: 355px;
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions {
        max-width: 355px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin: 24px auto 0;
    }

        .hero-actions .btn {
            width: 100%;
            min-height: 42px;
            border-radius: 10px !important;
            font-size: 12px;
        }

    .hero-trust-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        max-width: 355px;
        margin: 20px auto 0;
    }

    .hero-trust-item {
        width: auto;
        min-width: 0;
        min-height: 34px;
        justify-content: flex-start;
        gap: 6px;
        padding: 6px 9px;
        font-size: 9px;
        line-height: 1.25;
        text-align: left;
    }

    .hero-trust-dot {
        width: 6px;
        height: 6px;
        flex: 0 0 6px;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.10);
    }

    /* -----------------------------------------------------
       ASSESSMENT APP MOCK
    ----------------------------------------------------- */

    .assessment-preview-section {
        z-index: 3;
        margin-top: -8px;
        padding-top: 0;
        padding-bottom: 56px;
    }

    .assessment-preview-shell {
        width: 100%;
        max-width: 390px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 22px 58px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
    }

    .assessment-preview-topbar {
        min-height: 54px;
        height: auto;
        padding: 11px 12px;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .preview-browser-left {
        gap: 7px;
        min-width: 0;
    }

    .preview-browser-dots {
        gap: 4px;
    }

        .preview-browser-dots span {
            width: 6px;
            height: 6px;
        }

    .preview-browser-chip {
        max-width: 170px;
        height: 28px;
        padding: 0 9px;
        font-size: 8px;
    }

    .preview-status-pill {
        height: 28px;
        gap: 5px;
        padding: 0 8px;
        font-size: 8px;
    }

        .preview-status-pill span {
            width: 6px;
            height: 6px;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.10);
        }

    .assessment-preview-body {
        display: block;
        min-height: 0;
        background: linear-gradient( 180deg, #f8fafc 0%, #f1f5f9 100% );
    }

    /* Masaüstü navigasyon panelini mobilde göstermiyoruz */
    .preview-axis-panel {
        display: none;
    }

    .preview-question-panel {
        padding: 17px;
        border: 0;
        background: linear-gradient( 180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.96) );
    }

    .preview-question-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .preview-panel-title {
        margin-bottom: 8px;
        font-size: 8px;
    }

    .preview-question-header h3 {
        max-width: 245px;
        font-size: 14px;
        line-height: 1.35;
    }

    .preview-score-badge {
        min-width: 64px;
        height: 30px;
        flex: 0 0 64px;
        font-size: 10px;
    }

    .preview-options {
        gap: 7px;
        margin-bottom: 12px;
    }

    .preview-option {
        min-height: 36px;
        gap: 8px;
        padding: 0 10px;
        border-radius: 10px;
    }

        .preview-option span {
            width: 12px;
            height: 12px;
        }

        .preview-option strong {
            font-size: 10px;
            line-height: 1.3;
        }

    /* Mobil mock'u gereksiz uzatan alanlar */
    .preview-form-block {
        display: none;
    }

    .preview-analysis-strip {
        margin-top: 1px;
        padding: 7px 10px;
        font-size: 9px;
        box-shadow: none;
    }

        .preview-analysis-strip span {
            width: 6px;
            height: 6px;
        }

    .preview-output-panel {
        display: block;
        padding: 17px;
        border: 0;
        border-top: 1px solid var(--border);
        background: #ffffff;
    }

    .preview-output-score.modern {
        gap: 12px;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    }

    .preview-score-main small {
        margin-bottom: 5px;
        font-size: 8px;
    }

    .preview-score-main strong {
        margin-bottom: 6px;
        font-size: 30px;
    }

    .preview-score-main span {
        padding: 5px 8px;
        font-size: 8px;
    }

    .preview-score-ring {
        width: 58px;
        height: 58px;
    }

        .preview-score-ring div {
            width: 42px;
            height: 42px;
            font-size: 13px;
        }

    .preview-output-card {
        padding: 13px;
        margin-bottom: 9px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

        .preview-output-card:last-child {
            margin-bottom: 0;
        }

    .preview-output-card-title {
        margin-bottom: 9px;
        font-size: 10px;
    }

    .preview-mini-bars {
        gap: 8px;
    }

        .preview-mini-bars span {
            margin-bottom: 4px;
            font-size: 9px;
        }

        .preview-mini-bars i {
            height: 6px;
        }

    .preview-insight-line {
        margin-bottom: 7px;
        padding: 9px 9px 9px 28px;
        border-radius: 10px;
        font-size: 9px;
        line-height: 1.4;
    }

        .preview-insight-line:last-child {
            margin-bottom: 0;
        }

        .preview-insight-line::before {
            top: 12px;
            left: 11px;
            width: 7px;
            height: 7px;
        }

    /* -----------------------------------------------------
       PROBLEM
    ----------------------------------------------------- */

    .problem-section {
        padding-top: 56px;
    }

        .problem-section .row {
            --bs-gutter-y: 12px;
        }

    .problem-card {
        min-height: auto;
        padding: 19px;
        border-radius: 17px;
    }

    .problem-icon {
        min-width: 39px;
        height: 27px;
        margin-bottom: 13px;
        padding: 0 9px;
        font-size: 9px;
    }

    .problem-card h5 {
        margin-bottom: 7px;
        font-size: 15px;
    }

    .problem-card p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* -----------------------------------------------------
       SOLUTION
    ----------------------------------------------------- */

    .solution-section .row {
        --bs-gutter-y: 30px;
    }

    .solution-title,
    .solution-subtitle {
        margin-left: 0;
        text-align: left;
    }

    .solution-title {
        font-size: 28px;
    }

    .solution-subtitle {
        margin-bottom: 18px;
    }

    .solution-value-list {
        gap: 8px;
        margin-bottom: 20px;
    }

    .solution-value-item {
        gap: 8px;
        font-size: 12px;
        line-height: 1.5;
    }

        .solution-value-item i {
            width: 19px;
            height: 19px;
            flex-basis: 19px;
            font-size: 8px;
        }

    .solution-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

        .solution-actions .btn {
            width: 100%;
            min-height: 40px;
        }

    .solution-lifecycle {
        margin-top: 0;
        padding: 14px;
        border-radius: 20px;
    }

    .solution-stage {
        padding: 16px;
        border-radius: 16px;
    }

    .solution-stage-header {
        grid-template-columns: 39px 1fr;
        gap: 10px;
    }

    .solution-stage-number {
        width: 39px;
        height: 39px;
        border-radius: 11px;
        font-size: 10px;
    }

    .solution-stage-icon {
        display: none;
    }

    .solution-stage-eyebrow {
        font-size: 8px;
    }

    .solution-stage-heading h5 {
        font-size: 14px;
    }

    .solution-stage-text {
        margin: 12px 0;
        font-size: 11px;
        line-height: 1.55;
    }

    .solution-stage-tags {
        gap: 5px;
    }

        .solution-stage-tags span {
            min-height: 24px;
            padding: 4px 7px;
            font-size: 8px;
        }

    .solution-stage-connector {
        height: 22px;
        margin-left: 22px;
    }

    /* -----------------------------------------------------
       MODEL
    ----------------------------------------------------- */

    .model-section .row {
        --bs-gutter-y: 12px;
    }

    .model-card {
        min-height: auto;
        padding: 18px;
        border-radius: 17px;
    }

    .model-card-top {
        margin-bottom: 14px;
    }

    .model-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 10px;
    }

    .model-badge {
        padding: 5px 8px;
        font-size: 8px;
    }

    .model-card h5 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .model-card p {
        font-size: 11px;
        line-height: 1.55;
    }

    .model-flow-note {
        align-items: flex-start;
        gap: 10px;
        margin-top: 18px;
        padding: 13px;
        border-radius: 14px;
    }

    .model-flow-note-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 9px;
        font-size: 12px;
    }

    .model-flow-note strong {
        font-size: 11px;
    }

    .model-flow-note span {
        font-size: 10px;
        line-height: 1.5;
    }

    /* -----------------------------------------------------
       HOW IT WORKS
    ----------------------------------------------------- */

    .how-timeline {
        grid-template-columns: 1fr;
        gap: 11px;
    }

        .how-timeline::before {
            display: none;
        }

    .how-step {
        min-height: auto;
        padding: 18px;
        border-radius: 17px;
    }

    .how-step-number {
        width: 40px;
        height: 40px;
        margin-bottom: 13px;
        border-radius: 11px;
        font-size: 10px;
    }

    .how-step-content h5 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .how-step-content p {
        font-size: 11px;
        line-height: 1.55;
    }

    /* -----------------------------------------------------
       OUTPUTS
    ----------------------------------------------------- */

    .outputs-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .output-card {
        min-height: auto;
        padding: 19px;
        border-radius: 17px;
    }

    .output-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 14px;
        border-radius: 11px;
        font-size: 10px;
    }

    .output-card h5 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .output-card p {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.55;
    }

    /* -----------------------------------------------------
       EXECUTION
    ----------------------------------------------------- */

    .execution-layout {
        gap: 14px;
    }

    .execution-main-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px;
        border-radius: 20px;
    }

    .execution-main-badge {
        min-height: 26px;
        margin-bottom: 12px;
        padding: 5px 9px;
        font-size: 8px;
    }

    .execution-main-content h3 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 1.16;
    }

    .execution-main-content > p {
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 1.6;
    }

    .execution-main-points {
        gap: 7px;
    }

    .execution-main-point {
        gap: 7px;
        font-size: 10px;
        line-height: 1.5;
    }

        .execution-main-point i {
            width: 18px;
            height: 18px;
            flex-basis: 18px;
            font-size: 7px;
        }

    .execution-main-visual {
        max-width: 100%;
    }

        .execution-main-visual::before {
            inset: 8% 3% -5% 9%;
            border-radius: 20px;
        }

    .execution-project-card {
        padding: 16px;
        border-radius: 17px;
    }

    .execution-project-header {
        gap: 10px;
        margin-bottom: 11px;
    }

        .execution-project-header small {
            font-size: 8px;
        }

        .execution-project-header strong {
            font-size: 12px;
        }

        .execution-project-header > span {
            min-width: 46px;
            height: 29px;
            font-size: 10px;
        }

    .execution-progress {
        height: 6px;
        margin-bottom: 14px;
    }

    .execution-task-list {
        gap: 7px;
    }

    .execution-task {
        grid-template-columns: 29px 1fr;
        gap: 8px;
        padding: 9px;
        border-radius: 11px;
    }

        .execution-task > span {
            width: 29px;
            height: 29px;
            border-radius: 8px;
            font-size: 9px;
        }

        .execution-task strong {
            font-size: 10px;
        }

        .execution-task small {
            font-size: 8px;
        }

    .execution-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .execution-feature-card {
        min-height: auto;
        padding: 18px;
        border-radius: 17px;
    }

    .execution-feature-icon {
        width: 39px;
        height: 39px;
        margin-bottom: 14px;
        border-radius: 11px;
        font-size: 14px;
    }

    .execution-feature-card h5 {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .execution-feature-card p {
        margin-bottom: 12px;
        font-size: 11px;
        line-height: 1.55;
    }

    .execution-feature-meta {
        padding-top: 10px;
        font-size: 8px;
    }

    /* -----------------------------------------------------
       AUDIENCE
    ----------------------------------------------------- */

    .audience-section .row {
        --bs-gutter-y: 28px;
    }

    .audience-title,
    .audience-subtitle {
        margin-left: 0;
        text-align: left;
    }

    .audience-grid {
        gap: 9px;
    }

    .audience-card {
        grid-template-columns: 38px 1fr;
        gap: 10px;
        padding: 16px;
        border-radius: 16px;
    }

        .audience-card:hover {
            transform: translateY(-2px);
        }

    .audience-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 10px;
    }

    .audience-card h5 {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .audience-card p {
        font-size: 10px;
        line-height: 1.5;
    }

    /* -----------------------------------------------------
       FINAL CTA
    ----------------------------------------------------- */

    .final-cta-section {
        padding-top: 52px;
        padding-bottom: 36px;
    }

    .final-cta-card {
        padding: 42px 19px;
        border-radius: 21px;
    }

        .final-cta-card h2 {
            max-width: 340px;
            margin-bottom: 13px;
            font-size: 27px;
            line-height: 1.13;
        }

        .final-cta-card p {
            max-width: 340px;
            font-size: 12px;
            line-height: 1.65;
        }

    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        max-width: 320px;
        margin: 22px auto 0;
    }

        .final-cta-actions .btn {
            width: 100%;
            min-height: 40px;
            font-size: 11px;
        }

    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .footer {
        margin-top: 0;
        padding: 38px 0 20px;
    }

    .footer-brand {
        font-size: 14px;
    }

    .footer-text {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.55;
    }

    .footer-title {
        margin-bottom: 9px;
        font-size: 11px;
    }

    .footer-link {
        margin-bottom: 5px;
        font-size: 11px;
    }

    .footer-cta-box {
        width: 100%;
        padding: 13px;
        border-radius: 12px;
    }

    .footer-cta-text {
        max-width: 100%;
        font-size: 10px;
    }

    .footer-bottom {
        font-size: 9px;
    }

    .footer-bottom-links a {
        margin-left: 8px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .container {
        padding-right: 13px;
        padding-left: 13px;
    }

    .brand.landing-brand {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 9px;
    }

    .landing-lang-switch {
        padding-right: 7px;
        padding-left: 7px;
    }

    .landing-nav-actions .btn-primary {
        min-width: 50px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .hero-section-polished .hero-title {
        max-width: 325px;
        font-size: 33px;
    }

    .hero-section-polished .hero-sub,
    .hero-actions,
    .hero-trust-row {
        max-width: 325px;
    }

    .hero-trust-item {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 8px;
    }

    .assessment-preview-shell {
        border-radius: 17px;
    }

    .preview-browser-chip {
        max-width: 145px;
    }

    .section-header .section-title,
    .solution-title,
    .audience-title {
        font-size: 25px;
    }

    .solution-stage-tags span {
        padding-right: 6px;
        padding-left: 6px;
        font-size: 7px;
    }

    .final-cta-card h2 {
        font-size: 25px;
    }
}

/* =========================================================
   LANDING BRAND — FINAL
   Minimal abstract mark + wordmark
   Keep this block at the very end of landing.css
========================================================= */

.brand.landing-brand,
.brand.landing-brand:hover,
.brand.landing-brand:focus,
.brand.landing-brand:active {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    width: auto;
    height: 36px;
    min-height: 36px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: none !important;
    color: var(--text-main) !important;
    text-decoration: none;
    box-shadow: none !important;
    transform: none !important;
    white-space: nowrap;
}

.landing-brand-mark {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(79, 70, 229, 0.16);
    border-radius: 8px;
    background: linear-gradient( 135deg, var(--primary) 0%, #6366f1 100% );
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.landing-brand-chevron {
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg) translate(-1px, 1px);
}

.landing-brand-name {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand.landing-brand:hover .landing-brand-mark,
.brand.landing-brand:focus .landing-brand-mark {
    transform: translateY(-1px);
    background: linear-gradient( 135deg, var(--primary-hover) 0%, #4f46e5 100% );
    box-shadow: 0 6px 14px rgba(79, 70, 229, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand.landing-brand:active .landing-brand-mark {
    transform: translateY(0);
}

html[data-theme="dark"] .landing-brand-name {
    color: var(--text-main);
}

html[data-theme="dark"] .landing-brand-mark {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

@media (max-width: 767.98px) {
    .brand.landing-brand,
    .brand.landing-brand:hover,
    .brand.landing-brand:focus,
    .brand.landing-brand:active {
        gap: 8px;
        height: 34px;
        min-height: 34px;
        font-size: 13px;
    }

    .landing-brand-mark {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        border-radius: 7px;
    }

    .landing-brand-chevron {
        width: 6px;
        height: 6px;
    }

    .landing-brand-name {
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .brand.landing-brand,
    .brand.landing-brand:hover,
    .brand.landing-brand:focus,
    .brand.landing-brand:active {
        gap: 7px;
    }

    .landing-brand-mark {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .landing-brand-name {
        font-size: 12px;
    }
}