/* ==============================
   AdiaHR - Production Ready Site.css
   Bootstrap 4 + AdminLTE 3 compatible
============================== */

/* ---------- Root ---------- */
:root {
    --navy: #0a2e4e;
    --navy2: #0f4778;
    --navy3: #173b63;
    --orange: #e85626;
    --orange2: #ff6a2b;
    --primary: #0d6efd;
    --primary-dark: #4f46e5;
    --primary-soft: rgba(13, 110, 253, 0.12);
    --ink: #111827;
    --text: #1f2937;
    --text-muted: #6b7280;
    --bg: #f8fafc;
    --card: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.14);
    --ring: rgba(232, 86, 38, 0.35);
    --shadow-sm: 0 6px 18px rgba(2, 8, 23, 0.06);
    --shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
    --shadow-lg: 0 18px 40px rgba(2, 8, 23, 0.12);
    --shadow-xl: 0 22px 50px rgba(2, 8, 23, 0.14);
    --radius-xs: 10px;
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 20px;
    --footer: #0f172a;
    --footer2: #111827;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

    body,
    body.landing-body {
        margin: 0;
        font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        background: var(--bg);
        color: var(--text);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        padding-top: 74px;
    }

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

img,
iframe {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

/* ---------- Layout ---------- */
.landing-main {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding,
section {
    padding: 72px 0;
}

.bg-light {
    background: #f8fafc !important;
}

.bg-white {
    background: #ffffff !important;
}

.hidden {
    display: none !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
}

.text-muted {
    color: var(--text-muted) !important;
}

.small,
small {
    font-size: 0.9rem;
}

.lead {
    color: var(--text-muted);
}

.headline {
    font-size: 44px;
    line-height: 1.08;
    margin: 12px 0 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
}

    .headline span {
        color: var(--orange);
    }

.sub {
    color: var(--text-muted);
    max-width: 680px;
    font-size: 1.06rem;
    line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

    .btn:focus {
        outline: none;
        box-shadow: 0 0 0 0.22rem var(--ring);
    }

.btn-sm {
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.92rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(13, 110, 253, 0.18);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        filter: brightness(1.03);
        color: #ffffff;
    }

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
}

    .btn-outline-primary:hover {
        background: var(--primary);
        color: #ffffff;
    }

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #ffffff;
}

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

.btn-ghost {
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
}

    .btn-ghost:hover {
        background: rgba(2, 8, 23, 0.04);
        transform: translateY(-1px);
    }

/* ---------- Badges ---------- */
.badge,
.why-badge,
.compliance-badge,
.cta-badge,
.features-badge,
.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.badge {
    background: rgba(232, 86, 38, 0.08);
    color: var(--orange);
    border: 1px solid var(--ring);
}

.badge-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border-strong);
}

.why-badge,
.compliance-badge,
.cta-badge,
.features-badge,
.pricing-badge {
    background: var(--primary-soft);
    color: var(--primary);
}

/* ---------- Header / Navbar ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar {
    padding: 12px 0;
}

.site-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: var(--text);
    font-weight: 600;
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--orange);
    }

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navbar-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar .nav-item + .nav-item {
    margin-left: 6px;
}

.navbar-nav .nav-link {
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary);
    }

    .navbar-nav .nav-link.active {
        background: rgba(232, 86, 38, 0.1);
        color: var(--orange);
    }

.navbar .dropdown-menu {
    z-index: 1100;
    margin-top: 8px;
}

.dropdown-menu-lg {
    min-width: 260px;
    padding: 12px 0;
}

.dropdown-header {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    padding: 8px 20px;
}

.dropdown-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

    .dropdown-item i {
        width: 18px;
    }

.dropdown-divider {
    margin: 8px 0;
}

/* ---------- Hero ---------- */
.hero,
.hero-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero {
    padding: 64px 0 38px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-section {
    background: radial-gradient(circle at top left, #eef2ff, #ffffff 60%);
}

    .hero-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(13, 110, 253, 0.1);
        filter: blur(120px);
        top: -100px;
        left: -100px;
    }

.hero-shot {
    border-radius: 16px;
    border: 1px solid rgba(2, 8, 23, 0.08);
    box-shadow: 0 14px 40px rgba(2, 8, 23, 0.14);
    overflow: hidden;
}

.hero-section img {
    transition: 0.4s;
}

    .hero-section img:hover {
        transform: scale(1.03);
    }

.hero-card {
    background: #ffffff;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.hero-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

    .hero-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

.tick {
    color: #22c55e;
}

/* ---------- Dark Hero Optional ---------- */
.hero-promo {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 45%, var(--navy2) 100%);
    padding: 64px 0 72px;
    color: #ffffff;
}

.hero-badge,
.promo-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.promo-countdown {
    background: var(--orange2);
    color: #111111;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 800;
}

.hero-points {
    margin: 12px 0 0;
    padding-left: 18px;
}

    .hero-points li {
        margin: 6px 0;
        color: rgba(255, 255, 255, 0.92);
    }

/* ---------- Sections ---------- */
.why-section,
.features-section {
    background: #ffffff;
}

.compliance-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cta-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.cta-subtitle {
    max-width: 640px;
    margin: auto;
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.cta-note,
.compliance-note,
.pricing-note {
    font-size: 13px;
    color: #6c757d;
}

/* ---------- Cards ---------- */
.section-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

    .section-card .section-head {
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(2, 8, 23, 0.06);
        padding-bottom: 12px;
    }

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}

    .section-head h2 {
        margin: 0;
        font-size: 30px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--ink);
    }

.card,
.p-card,
.feature-card,
.integration-card,
.plan-card,
.why-card,
.feature-box,
.pricing-card,
.resource-card,
.contact-card,
.compliance-card,
.stat-card,
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
}

.card {
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(2, 8, 23, 0.06);
    padding: 18px;
}

    .card h3 {
        margin: 8px 0 6px;
        font-size: 18px;
        font-weight: 800;
        color: var(--ink);
    }

    .card p {
        color: var(--text-muted);
        margin: 0;
    }

.hover-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .hover-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(2, 8, 23, 0.1);
        border-color: rgba(232, 86, 38, 0.25);
    }

.icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(232, 86, 38, 0.08);
    display: grid;
    place-items: center;
    color: var(--orange);
    border: 1px solid var(--ring);
}

/* ---------- Why Cards ---------- */
.why-card {
    border-radius: 18px;
    border-top: 4px solid var(--primary);
    padding: 32px 26px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

/* ---------- Features ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(2, 8, 23, 0.06);
    padding: 28px;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(232, 86, 38, 0.25);
    }

.feature-icon {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--navy);
}

.feature-title {
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.feature-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.feature-box {
    border-radius: 18px;
    border-top: 4px solid var(--primary);
    padding: 32px 26px;
    height: 100%;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.feature-list {
    text-align: left;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

    .feature-list li {
        display: flex;
        gap: 10px;
        margin: 10px 0;
        color: var(--text);
    }

        .feature-list li i {
            color: #22c55e;
            margin-top: 2px;
        }

/* ---------- Tabs ---------- */
.nav-tabs {
    border-bottom: 0;
    gap: 8px;
}

    .nav-tabs .nav-link {
        border: 0 !important;
        font-weight: 800;
        color: var(--navy);
        padding: 10px 16px;
        border-radius: 10px;
        background: transparent;
    }

        .nav-tabs .nav-link:hover {
            background: rgba(2, 8, 23, 0.04);
        }

        .nav-tabs .nav-link.active {
            background: var(--orange2);
            color: #ffffff;
        }

/* ---------- Tables ---------- */
.table-wrap {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    margin: 0;
}

    .table thead th {
        position: sticky;
        top: 0;
        background: #f1f5f9;
        color: var(--ink);
        font-weight: 800;
        text-align: left;
        padding: 12px 14px;
        border-bottom: 1px solid var(--border);
    }

    .table tbody th,
    .table tbody td {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(2, 8, 23, 0.06);
        vertical-align: top;
    }

    .table tbody tr:nth-child(odd) td,
    .table tbody tr:nth-child(odd) th {
        background: rgba(2, 8, 23, 0.02);
    }

/* ---------- Pricing ---------- */
.pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
}

.plan-card {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(2, 8, 23, 0.06);
}

    .plan-card .plan-title {
        padding: 16px 18px;
        border-bottom: 1px solid rgba(2, 8, 23, 0.06);
        font-weight: 900;
    }

    .plan-card .plan-body {
        padding: 18px;
    }

    .plan-card .price {
        font-size: 2.2rem;
        font-weight: 900;
        margin: 12px 0 6px;
        color: var(--ink);
    }

        .plan-card .price small {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-muted);
        }

    .plan-card.highlight {
        border-color: rgba(232, 86, 38, 0.35);
        box-shadow: 0 16px 40px rgba(232, 86, 38, 0.18);
    }

.pricing-card {
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.pricing-highlight {
    border-top: 5px solid var(--primary);
}

.pricing-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
}

.pricing-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 6px;
}

.pricing-sub {
    color: #6c757d;
    margin-bottom: 20px;
}

.pricing-features,
.plan ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    text-align: left;
}

    .pricing-features li,
    .plan li {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #374151;
    }

.list-unstyled i {
    background: #f0f4f9;
    padding: 0.45rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    line-height: 1.1;
    text-align: center;
    margin-right: 0.5rem;
    color: var(--navy);
}

/* ---------- Trust ---------- */
.trust {
    padding: 18px 0;
    border-top: 1px solid rgba(2, 8, 23, 0.06);
    border-bottom: 1px solid rgba(2, 8, 23, 0.06);
    background: #ffffff;
}

.trust-head {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: center;
    opacity: 0.9;
}

.trust-badge {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* ---------- Product / Integrations ---------- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.p-card {
    display: block;
    padding: 18px;
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(2, 8, 23, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .p-card:hover {
        border-color: rgba(232, 86, 38, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(2, 8, 23, 0.1);
    }

.integration-card {
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(2, 8, 23, 0.06);
    padding: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

    .integration-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(232, 86, 38, 0.22);
    }

    .integration-card h4 {
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 6px;
    }

    .integration-card p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 0;
    }

    .integration-card i {
        background: #f0f4f9;
        padding: 0.6rem;
        border-radius: 50%;
        color: var(--navy);
    }

/* ---------- Screenshots ---------- */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.screenshot-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(2, 8, 23, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .screenshot-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
        border-color: rgba(232, 86, 38, 0.22);
    }

    .screenshot-card img {
        display: block;
        width: 100%;
        height: auto;
        transition: 0.3s;
    }

    .screenshot-card:hover img {
        transform: scale(1.05);
    }

.screenshot-caption {
    padding: 12px 14px;
    font-weight: 900;
    color: var(--ink);
    border-top: 1px solid rgba(2, 8, 23, 0.06);
}

/* ---------- Compliance / CTA ---------- */
.compliance-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .compliance-list li {
        margin-bottom: 10px;
        font-size: 15px;
        color: #374151;
    }

.compliance-card {
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.compliance-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.cta-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(2, 8, 23, 0.08);
    padding: 28px;
}

    .cta-box h3 {
        margin: 0 0 8px;
        font-weight: 900;
    }

    .cta-box p {
        margin: 0 0 16px;
        color: var(--text-muted);
    }

.cta-section.cta-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
}

    .cta-section.cta-gradient .btn-primary {
        background: #ffffff;
        color: var(--primary);
    }

/* ---------- Stats / Testimonials / Resources ---------- */
.stat-card {
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

    .stat-card h2 {
        font-size: 32px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 6px;
    }

    .stat-card p {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

.testi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 320px;
    max-width: 360px;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
}

    .testimonial-card p {
        font-size: 15px;
        color: #374151;
        margin-bottom: 14px;
    }

    .testimonial-card strong {
        display: block;
        font-size: 14px;
    }

    .testimonial-card span {
        font-size: 13px;
        color: #6c757d;
    }

.resource-card {
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .resource-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .resource-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

/* ---------- Contact ---------- */
.contact-section {
    background: #f8f9fa;
}

.contact-card {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

    .contact-card:hover {
        transform: translateY(-3px);
    }

    .contact-card h5 {
        color: #333333;
    }

/* ---------- Page Header ---------- */
.page-header {
    padding: 96px 0 72px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-header-light {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-header-dark {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #ffffff;
}

    .page-header-dark h1,
    .page-header-dark p,
    .page-header-dark .page-breadcrumb span,
    .page-header-dark .page-breadcrumb a {
        color: #e5e7eb;
    }

.page-header-content {
    max-width: 900px;
}

.page-breadcrumb {
    font-size: 14px;
    margin-bottom: 14px;
    color: #6c757d;
}

    .page-breadcrumb a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

    .page-breadcrumb span {
        margin: 0 6px;
    }

.page-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    color: #0f172a;
}

.page-header p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 14px;
    color: #6c757d;
}

.page-header-dark p {
    color: #cbd5f5;
}

.page-header-divider {
    width: 72px;
    height: 4px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--primary), #38bdf8);
    border-radius: 999px;
}

.page-header-cta {
    margin-top: 24px;
}

.page-header-compact {
    padding: 56px 0 40px;
}

    .page-header-compact h1 {
        font-size: 32px;
    }

    .page-header-compact p {
        font-size: 15px;
        margin-top: 8px;
    }

    .page-header-compact .page-header-divider {
        margin-top: 16px;
        width: 48px;
        height: 3px;
    }

    .page-header-compact .page-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, var(--footer) 0%, var(--footer2) 100%);
    color: #cbd5e1;
    padding: 64px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

    .site-footer h6 {
        color: #ffffff;
        font-weight: 900;
        margin-bottom: 12px;
        letter-spacing: 0.01em;
    }

    .site-footer a {
        color: #cbd5e1;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: color 0.15s ease;
    }

        .site-footer a:hover {
            color: #38bdf8;
        }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 12px;
}

.footer-about {
    color: rgba(203, 213, 225, 0.92);
    line-height: 1.65;
    margin: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 10px;
        color: rgba(203, 213, 225, 0.9);
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-contact i {
        margin-top: 3px;
        color: #38bdf8;
        min-width: 16px;
    }

.social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .social-icons i {
        font-size: 18px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
    }

        .social-icons i:hover {
            color: #38bdf8;
            background: rgba(56, 189, 248, 0.12);
            transform: translateY(-2px);
        }

.footer-bottom {
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13px;
    color: rgba(203, 213, 225, 0.85);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(203, 213, 225, 0.9);
    margin-bottom: 12px;
}

    .footer-bottom-links a {
        color: #38bdf8;
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 0;
    }

        .footer-bottom-links a:hover {
            text-decoration: underline;
        }

    .footer-bottom-links span {
        white-space: nowrap;
    }

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: rgba(203, 213, 225, 0.8);
    line-height: 1.6;
}

footer {
    background: transparent;
    color: inherit;
    border: 0;
    padding: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .headline {
        font-size: 38px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .grid-cards,
    .screenshots-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .testi {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body,
    body.landing-body {
        padding-top: 68px;
    }

    .section-padding,
    section {
        padding: 56px 0;
    }

    .hero {
        padding: 52px 0 30px;
    }

    .headline {
        font-size: 32px;
    }

    .sub {
        font-size: 1rem;
    }

    .hero-list {
        grid-template-columns: 1fr;
    }

    .section-card {
        padding: 28px 18px;
    }

    .page-header {
        padding: 72px 0 56px;
    }

        .page-header h1 {
            font-size: 34px;
        }

        .page-header p {
            font-size: 16px;
        }

    .page-title-row {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .features,
    .grid-cards,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .btn {
        width: 100%;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-logo {
        height: 30px;
    }
}

/* ---------- Optional helpers ---------- */
.embed-responsive {
    border-radius: 12px;
    overflow: hidden;
}
.navbar-brand {
    display: flex !important;
    align-items: center;
    min-width: 120px;
}

.navbar-logo {
    height: 42px;
    width: auto;
    display: block;
    visibility: visible !important;
}
.hero-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.why-card {
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    transition: 0.3s;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }
.section-alt {
    background: #f8fafc;
}
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}
.shadow-soft {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.shadow-strong {
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
body {
    font-size: 16px;
}

/* HEADER ULTRA */
.header-ultra {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* NAVBAR */
.navbar {
    padding: 14px 0;
}

/* LOGO */
.navbar-logo {
    height: 42px;
}

/* NAV LINKS */
.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #2563eb;
    }

/* DROPDOWN */
.dropdown-ultra {
    border-radius: 14px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .dropdown-item i {
        color: #2563eb;
    }

/* BUTTONS */
.btn-login {
    border-radius: 8px;
    padding: 6px 14px;
}

.btn-cta {
    border-radius: 8px;
    padding: 6px 16px;
    font-weight: 600;
}

    .btn-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.hero-ultra {
    padding: 120px 0;
    background: linear-gradient(180deg,#f8fbff,#fff);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
}

    .hero-title span {
        color: #2563eb;
        display: block;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.trust-ultra {
    padding: 60px 0;
    background: #fff;
}

.step-card {
    padding: 25px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card-ultra {
    padding: 25px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

    .feature-card-ultra i {
        font-size: 28px;
        color: #2563eb;
        margin-bottom: 10px;
    }

.cta-ultra {
    padding: 100px 0;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
}

.testimonial-card {
    max-width: 600px;
    padding: 30px;
    border-radius: 16px;
    background: #f8fafc;
}

.hero-ultra {
    padding: 120px 0;
    background: linear-gradient(#f5f8ff,#fff);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
}

    .hero-title span {
        color: #2563eb;
    }

.hero-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.trust-logos span {
    margin: 0 15px;
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 10px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card {
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.demo-box {
    padding: 30px;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
    border-radius: 20px;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
}

.hero-section {
    padding: 120px 0;
    background: linear-gradient(#f8fbff,#fff);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
}

    .hero-title span {
        color: #2563eb;
    }

.hero-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.trust {
    padding: 60px 0;
}

.trust-box {
    padding: 12px 25px;
    background: #f3f4f6;
    border-radius: 10px;
    margin: 10px;
    display: inline-block;
}

.stats {
    padding: 60px 0;
}

.stat-card {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-card {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.demo-box {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg,#2563eb,#4f46e5);
    color: white;
}
.landing-hero {
    padding: 120px 0 70px;
    background: linear-gradient(180deg, #f5f8ff 0%, #eef3ff 100%);
    position: relative;
    overflow: hidden;
}

    .landing-hero::after {
        content: "";
        position: absolute;
        right: 0;
        top: 80px;
        width: 220px;
        height: 340px;
        background-image: radial-gradient(rgba(37, 99, 235, 0.18) 1px, transparent 1px);
        background-size: 14px 14px;
        opacity: 0.5;
        pointer-events: none;
    }

.landing-chip,
.landing-section-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf1ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.landing-hero-title {
    font-size: 3.55rem;
    line-height: 1.08;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin: 0;
}

    .landing-hero-title span {
        display: block;
        background: linear-gradient(90deg, #2563eb 0%, #4f46e5 70%, #7c3aed 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.landing-hero-sub {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 540px;
    color: #64748b;
    margin-bottom: 0;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.landing-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.landing-hero-visual {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.16);
    border-radius: 24px;
    padding: 14px;
    position: relative;
}

    .landing-hero-visual img {
        border-radius: 18px;
        width: 100%;
        height: auto;
        display: block;
    }

.landing-trust {
    padding: 26px 0 18px;
    background: #fff;
}

.landing-trust-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;
}

.landing-logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.landing-logo-box {
    min-width: 155px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.15;
}

    .landing-logo-box small {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: #64748b;
        margin-top: 4px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

.landing-stats {
    padding: 28px 0 36px;
    background: #fff;
}

.landing-stat-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.landing-stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-blue {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.icon-indigo {
    background: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
}

.icon-sky {
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
}

.icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.icon-purple {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.icon-pink {
    background: rgba(244, 63, 94, 0.12);
    color: #f43f5e;
}

.landing-stat-card h3 {
    margin: 0 0 2px;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.landing-stat-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.landing-features {
    padding: 70px 0 80px;
    background: #fff;
}

.landing-section-title {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.landing-section-sub {
    max-width: 700px;
    margin: 14px auto 0;
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
}

.landing-feature-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    padding: 28px;
    text-align: left;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .landing-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
    }

.landing-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.landing-feature-card h5 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.landing-feature-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.landing-product {
    padding: 88px 0 78px;
    background: linear-gradient(180deg, #f5f8ff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

    .landing-product::before {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -140px;
        width: 480px;
        height: 280px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    }

.landing-product-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 16px;
}

.landing-product-sub {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.landing-product-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

    .landing-product-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        color: #334155;
        font-weight: 500;
    }

    .landing-product-list i {
        color: #2563eb;
    }

.landing-product-stage {
    position: relative;
    min-height: 520px;
}

.landing-product-screen {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
    padding: 14px;
}

    .landing-product-screen img {
        width: 100%;
        border-radius: 16px;
    }

.landing-mobile-card {
    position: absolute;
    right: 40px;
    bottom: 10px;
    width: 190px;
    border-radius: 36px;
    background: #0f172a;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
}

.landing-mobile-card-inner {
    background: #fff;
    border-radius: 28px;
    padding: 18px 16px 20px;
    text-align: center;
}

.landing-mobile-top {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 16px;
}

.landing-mobile-check {
    width: 74px;
    height: 74px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

.landing-mobile-card h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.landing-mobile-time {
    color: #16a34a;
    font-size: 22px;
    font-weight: 800;
    margin: 8px 0 12px;
}

.landing-mobile-card small {
    color: #64748b;
    line-height: 1.5;
    font-size: 12px;
}

.landing-side-card {
    position: absolute;
    right: -6px;
    width: 210px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
}

    .landing-side-card i {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(249, 115, 22, 0.12);
        color: #f97316;
        font-size: 18px;
    }

    .landing-side-card strong {
        display: block;
        color: #0f172a;
        font-size: 15px;
        font-weight: 700;
    }

    .landing-side-card span {
        color: #64748b;
        font-size: 13px;
    }

.side-top {
    top: 70px;
}

.side-bottom {
    top: 190px;
}

.landing-proof-demo {
    padding: 78px 0 40px;
    background: #fff;
}

.landing-testimonial-card,
.landing-demo-card {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
}

.landing-testimonial-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
    padding: 30px;
    position: relative;
}

.landing-quote-icon {
    font-size: 42px;
    color: #1d4ed8;
    margin: 18px 0 16px;
}

.landing-testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 26px;
}

.landing-customer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landing-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    flex-shrink: 0;
}

.landing-customer strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
}

.landing-customer span {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-top: 2px;
}

.landing-stars {
    margin-top: 8px;
    color: #f59e0b;
    font-size: 14px;
}

.landing-testimonial-nav {
    position: absolute;
    right: 26px;
    bottom: 24px;
    display: flex;
    gap: 10px;
}

    .landing-testimonial-nav button {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: #f8fafc;
        color: #475569;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    }

.landing-demo-card {
    background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 100%);
    color: #fff;
    padding: 34px 32px;
    box-shadow: 0 24px 54px rgba(37, 99, 235, 0.24);
}

    .landing-demo-card h3 {
        color: #fff;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .landing-demo-card p {
        color: rgba(255, 255, 255, 0.86);
        line-height: 1.8;
        margin-bottom: 24px;
    }

.landing-demo-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

    .landing-demo-form .form-control {
        height: 56px;
        border-radius: 14px;
        border: 0;
        padding: 0 18px;
        font-size: 15px;
    }

.landing-demo-btn {
    height: 56px;
    border-radius: 14px;
    border: 0;
    padding: 0 24px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.landing-demo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

    .landing-demo-points i {
        margin-right: 8px;
        color: #86efac;
    }

.landing-bottom-cta {
    padding: 26px 0 0;
    background: #fff;
}

.landing-bottom-cta-wrap {
    background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 100%);
    border-radius: 24px 24px 0 0;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .landing-bottom-cta-wrap::after {
        content: "";
        position: absolute;
        right: 24px;
        bottom: -10px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        filter: blur(10px);
    }

.landing-bottom-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.landing-bottom-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.landing-bottom-left h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.9rem;
    font-weight: 800;
}

.landing-bottom-left p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.landing-bottom-right {
    display: flex;
    gap: 14px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199.98px) {
    .landing-hero-title {
        font-size: 3rem;
    }

    .landing-mobile-card {
        right: 0;
    }

    .landing-side-card {
        right: -10px;
    }
}

@media (max-width: 991.98px) {
    .landing-hero {
        padding: 105px 0 55px;
    }

    .landing-hero-title {
        font-size: 2.6rem;
    }

    .landing-product-stage {
        min-height: auto;
        padding-bottom: 230px;
    }

    .landing-side-card {
        right: 20px;
    }

    .landing-mobile-card {
        right: 40px;
        bottom: 0;
    }

    .landing-bottom-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-bottom-right {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .landing-hero-title,
    .landing-section-title,
    .landing-product-title {
        font-size: 2.1rem;
    }

    .landing-hero-actions,
    .landing-demo-form,
    .landing-bottom-right {
        flex-direction: column;
    }

        .landing-demo-btn,
        .landing-demo-form .form-control,
        .landing-bottom-right .btn {
            width: 100%;
        }

    .landing-hero-points,
    .landing-demo-points {
        gap: 12px;
        flex-direction: column;
    }

    .landing-logo-row {
        gap: 12px;
    }

    .landing-logo-box {
        min-width: calc(50% - 12px);
    }

    .landing-product-stage {
        padding-bottom: 260px;
    }

    .landing-mobile-card {
        width: 170px;
        right: 10px;
    }

    .landing-side-card {
        width: 180px;
        right: 0;
    }

    .landing-bottom-left {
        align-items: flex-start;
    }

        .landing-bottom-left h3 {
            font-size: 1.45rem;
        }
}

@media (max-width: 575.98px) {
    .landing-logo-box {
        min-width: 100%;
    }

    .landing-mobile-card,
    .landing-side-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .landing-product-stage {
        padding-bottom: 0;
    }

    .landing-product-screen {
        max-width: 100%;
    }
}
.hero-premium {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
    padding: 120px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
}

    .hero-title span {
        color: #4dabf7;
    }

.hero-subtitle {
    max-width: 600px;
    margin: auto;
    opacity: 0.8;
}

.section-premium {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

    .glass-card.small {
        padding: 20px;
        margin: 10px;
    }

.stat-premium h2 {
    font-size: 36px;
    font-weight: 700;
}

.stat-premium p {
    color: #6c757d;
}

.testimonial-premium {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-premium {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 80px 0;
}

.hero-premium {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    padding: 140px 0;
    color: #fff;
}

.hero-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.4), transparent);
    top: -100px;
    left: -100px;
    filter: blur(100px);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
}

    .hero-title span {
        color: #4dabf7;
    }

.hero-subtitle {
    max-width: 650px;
    margin: auto;
    opacity: 0.8;
}

.section-premium {
    padding: 100px 0;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
}

.glass-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.highlight-card {
    border: 1px solid rgba(255,255,255,0.2);
}

.glass-card.small {
    padding: 20px;
}

.stat-premium {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-premium {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hover-card {
    transition: all 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    }

.cta-premium {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 100px 0;
}

.cta-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    bottom: -100px;
    right: -100px;
    filter: blur(100px);
}

.product-image-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: 0.3s;
}

    .product-image-card:hover {
        transform: translateY(-6px);
    }