﻿html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    background: #ffffff;
    color: #111827;
    scroll-behavior: smooth;
}

/* =========================
   VARIABLES
========================= */

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --accent: #f2784b;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg-soft: #f8fafc;
}

/* =========================
   LAYOUT
========================= */

.container-landing {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   NAVBAR
========================= */

.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229,231,235,.7);
}

.landing-navbar-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
}

.landing-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 12px 30px rgba(124,58,237,.22);
}

.landing-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
}

/* =========================
   NAV LINKS
========================= */

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .landing-nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-weight: 500;
        transition: color .15s ease;
    }

        .landing-nav-links a:hover {
            color: var(--text);
        }

/* =========================
   BUTTONS
========================= */

.btn-landing-primary {
    height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white !important;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(124,58,237,.22);
    transition: transform .15s ease, opacity .15s ease;
}

    .btn-landing-primary:hover {
        color: white;
        opacity: .96;
        transform: translateY(-1px);
    }

.btn-landing-secondary {
    height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    background: white;
    transition: transform .15s ease, border-color .15s ease;
}

    .btn-landing-secondary:hover {
        color: var(--text);
        border-color: #d1d5db;
        transform: translateY(-1px);
    }

/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
}

    .hero-section .container-landing {
        max-width: 1440px;
    }

    /* =========================
   HERO GLOW
========================= */

    .hero-section::before {
        content: "";
        position: absolute;
        width: 640px;
        height: 640px;
        border-radius: 50%;
        background: radial-gradient( rgba(124,58,237,.18), transparent 70% );
        top: -220px;
        right: -120px;
        pointer-events: none;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient( rgba(124,58,237,.10), transparent 70% );
        bottom: -180px;
        left: -120px;
        pointer-events: none;
    }

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 58px;
    overflow: visible;
}

    .hero-grid > div:first-child {
        width: min(900px, 100%);
        margin: 0 auto;
        text-align: center;
    }

.hero-title {
    max-width: 900px;
    margin: 0 auto 24px;
    font-size: 72px;
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.05em;
}

.hero-subtitle {
    max-width: 820px;
    margin: 0 auto 36px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hero-badge {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   HERO MOCKUP
========================= */

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    overflow: visible;
}

.hero-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 60px rgba(15,23,42,.08);
}

/* =========================
   SECTION
========================= */

.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 18px;
    text-align: center;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .landing-nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-landing-primary,
    .btn-landing-secondary {
        width: 100%;
    }

    .section-title {
        font-size: 40px;
    }
}

/* =========================
   PROBLEM
========================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 24px;
    padding: 32px;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .problem-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(124,58,237,.12), rgba(124,58,237,.06) );
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.problem-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   STEPS
========================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: 0 14px 32px rgba(124,58,237,.22);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FEATURES
========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 24px;
    padding: 32px;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(124,58,237,.12), rgba(124,58,237,.06) );
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CRM
========================= */

.crm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 24px;
}

.crm-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.crm-subtitle {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.crm-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crm-item {
    display: flex;
    gap: 16px;
    color: #374151;
    line-height: 1.8;
}

.crm-check {
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(124,58,237,.22);
}

.crm-panel {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15,23,42,.08);
}

.crm-panel-header {
    height: 68px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(229,231,235,.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crm-dots {
    display: flex;
    gap: 8px;
}

    .crm-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d1d5db;
    }

.crm-panel-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.crm-timeline {
    padding: 32px;
}

.crm-event {
    display: flex;
    gap: 18px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(229,231,235,.7);
}

    .crm-event:last-child {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.crm-event-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.crm-event-text {
    color: var(--muted);
    margin-top: 6px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .crm-grid {
        grid-template-columns: 1fr;
    }

    .crm-title {
        font-size: 42px;
    }
}

/* =========================
   ROI
========================= */

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.roi-card,
.roi-result-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15,23,42,.05);
}

.roi-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roi-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
}

.roi-result-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-result-kicker {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.roi-result-value {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.roi-result-text {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .roi-wrapper {
        grid-template-columns: 1fr;
    }

    .roi-result-value {
        font-size: 52px;
    }
}

/* =========================
   WHY
========================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(229,231,235,.9);
    background: white;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .why-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.why-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.why-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.comparison-card {
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 32px;
    overflow-x: auto;
    box-shadow: 0 20px 50px rgba(15,23,42,.05);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

    .comparison-table th,
    .comparison-table td {
        padding: 18px;
        border-bottom: 1px solid rgba(229,231,235,.7);
        text-align: center;
    }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            text-align: left;
        }

    .comparison-table th {
        font-size: 14px;
        font-weight: 700;
        color: #6b7280;
        letter-spacing: .05em;
    }

    .comparison-table td {
        font-weight: 600;
    }

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SECTORS
========================= */

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card {
    position: relative;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 28px;
    padding: 32px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .sector-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(15,23,42,.06);
    }

.sector-featured {
    border: 1px solid rgba(124,58,237,.28);
    box-shadow: 0 20px 50px rgba(124,58,237,.08);
}

.sector-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
}

.sector-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(124,58,237,.12), rgba(124,58,237,.06) );
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
}

.sector-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.sector-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .sector-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PRICING
========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(15,23,42,.06);
    }

.pricing-featured {
    border: 1px solid rgba(124,58,237,.28);
    box-shadow: 0 24px 60px rgba(124,58,237,.10);
}

.pricing-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
}

.pricing-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    margin-bottom: 18px;
}

    .pricing-price span {
        font-size: 18px;
        font-weight: 500;
        color: var(--muted);
    }

.pricing-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

    .pricing-feature i {
        color: var(--primary);
    }

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-price {
        font-size: 48px;
    }
}

/* =========================
   FAQ
========================= */

.faq-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(229,231,235,.9) !important;
    border-radius: 24px !important;
    overflow: hidden;
    margin-bottom: 18px;
    background: white;
}

.accordion-button {
    min-height: 84px;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    background: white;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: rgba(124,58,237,.03);
        color: var(--primary);
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 0 28px 28px;
    color: var(--muted);
    line-height: 1.9;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section {
    padding: 100px 0;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    border-radius: 40px;
    padding: 80px 60px;
    color: white;
    text-align: center;
    box-shadow: 0 30px 70px rgba(124,58,237,.22);
}

    .final-cta-card::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -180px;
        right: -120px;
    }

    .final-cta-card::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        bottom: -120px;
        left: -120px;
    }

.final-cta-kicker {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 24px;
    opacity: .9;
}

.final-cta-title {
    position: relative;
    z-index: 2;
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.final-cta-subtitle {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.9;
    opacity: .92;
}

.final-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 18px;
}

    .final-cta-actions .btn-landing-secondary {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        color: white;
    }

        .final-cta-actions .btn-landing-secondary:hover {
            background: rgba(255,255,255,.16);
        }

/* =========================
   FOOTER
========================= */

.landing-footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(229,231,235,.9);
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.footer-text {
    color: var(--muted);
    line-height: 1.9;
    max-width: 380px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .footer-links a {
        color: var(--muted);
        text-decoration: none;
        transition: color .15s ease;
    }

        .footer-links a:hover {
            color: var(--text);
        }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(229,231,235,.8);
    text-align: center;
    color: var(--muted);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .final-cta-card {
        padding: 56px 32px;
    }

    .final-cta-title {
        font-size: 48px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE NAV
========================= */

.mobile-nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(229,231,235,.9);
    background: white;
    display: none;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    .mobile-nav-toggle:hover {
        background: #f9fafb;
    }

.mobile-nav {
    display: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .landing-nav-links {
        display: none;
    }

    .mobile-nav {
        position: absolute;
        top: 92px;
        left: 24px;
        right: 24px;
        background: white;
        border: 1px solid rgba(229,231,235,.9);
        border-radius: 24px;
        padding: 24px;
        box-shadow: 0 24px 60px rgba(15,23,42,.12);
        flex-direction: column;
        gap: 18px;
        z-index: 1200;
    }

        .mobile-nav.show {
            display: flex;
        }

        .mobile-nav a:not(.btn-landing-primary) {
            color: #111827;
            text-decoration: none;
            font-weight: 600;
        }

        .mobile-nav .btn-landing-primary {
            width: 100%;
        }
}

/* =========================
   HERO FLOATING
========================= */

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 24px 50px rgba(15,23,42,.10);
    animation: floating 4s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-1 {
    top: 40px;
    right: -20px;
}

.hero-floating-2 {
    bottom: 90px;
    left: -24px;
    animation-delay: 1s;
}

.hero-floating-3 {
    right: 56px;
    bottom: -24px;
    animation-delay: 2s;
}

.hero-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(124,58,237,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

    .hero-floating-icon.success {
        background: rgba(34,197,94,.10);
        color: #16a34a;
    }

    .hero-floating-icon.purple {
        background: rgba(124,58,237,.08);
        color: var(--primary);
    }

.hero-floating-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-floating-text {
    font-size: 14px;
    color: var(--muted);
}

/* =========================
   ANIMATION
========================= */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {

    .hero-floating-card {
        display: none;
    }
}

/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================
   LANDING LANGUAGE SWITCHER
========================= */

.landing-lang-form {
    margin: 0;
    padding: 0;
}

.landing-lang-btn {
    height: 38px;
    min-width: 64px;
    border: 1px solid rgba(124,58,237,.18);
    border-radius: 999px;
    background: #ffffff;
    color: #6d28d9;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
    transition: all .18s ease;
}

    .landing-lang-btn:hover {
        background: #f5f3ff;
        transform: translateY(-1px);
        box-shadow: 0 14px 32px rgba(15,23,42,.12);
    }

.mobile-nav .landing-lang-form {
    width: 100%;
}

.mobile-nav .landing-lang-btn {
    width: 100%;
}

/* =========================
   PARTNER APPLICATION
========================= */

.partner-application-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
}

    .partner-application-section::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        top: -180px;
        left: -180px;
        border-radius: 50%;
        background: radial-gradient( rgba(124, 58, 237, .12), transparent 70% );
        pointer-events: none;
    }

.partner-application-wrapper {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
    align-items: start;
    gap: 64px;
}

.partner-application-content {
    position: sticky;
    top: 120px;
}

.partner-application-title {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.partner-application-subtitle {
    max-width: 560px;
    margin: 0 0 38px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
}

.partner-application-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.partner-application-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 20px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .04);
}

.partner-application-benefit-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(124, 58, 237, .09);
    color: var(--primary);
    font-size: 17px;
}

.partner-application-benefit strong,
.partner-application-benefit span {
    display: block;
}

.partner-application-benefit strong {
    margin-bottom: 5px;
    color: var(--text);
    font-size: 16px;
}

.partner-application-benefit span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.partner-application-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(229, 231, 235, .92);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .08);
}

.partner-application-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

    .partner-application-card-head span {
        display: block;
        margin-bottom: 5px;
        color: var(--primary);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .partner-application-card-head h3 {
        margin: 0;
        color: var(--text);
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -.03em;
    }

.partner-application-card-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 14px 34px rgba(124, 58, 237, .22);
}

.partner-application-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.partner-application-field {
    min-width: 0;
}

.partner-application-field-wide {
    grid-column: 1 / -1;
}

.partner-application-field label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.partner-application-field .form-control,
.partner-application-field .form-select {
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: none;
}

.partner-application-field textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.partner-application-field .form-control:focus,
.partner-application-field .form-select:focus {
    border-color: rgba(124, 58, 237, .58);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .09);
}

.partner-application-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 0 18px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

    .partner-application-consent input {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        margin-top: 2px;
        accent-color: var(--primary);
    }

.partner-application-submit {
    width: 100%;
    margin-top: 4px;
}

    .partner-application-submit:disabled {
        opacity: .65;
        cursor: wait;
        transform: none;
    }

.partner-application-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

    .partner-application-result.success {
        border: 1px solid rgba(22, 163, 74, .18);
        background: rgba(22, 163, 74, .08);
        color: #15803d;
    }

    .partner-application-result.error {
        border: 1px solid rgba(220, 38, 38, .18);
        background: rgba(220, 38, 38, .07);
        color: #b91c1c;
    }

    .partner-application-result[hidden] {
        display: none;
    }

@media (max-width: 1100px) {
    .partner-application-wrapper {
        grid-template-columns: 1fr;
    }

    .partner-application-content {
        position: static;
    }

    .partner-application-subtitle {
        max-width: 760px;
    }
}

@media (max-width: 640px) {
    .partner-application-title {
        font-size: 38px;
    }

    .partner-application-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .partner-application-form-grid {
        grid-template-columns: 1fr;
    }

    .partner-application-field-wide {
        grid-column: auto;
    }

    .partner-application-card-head h3 {
        font-size: 24px;
    }
}

/* =========================
   VOICE DEMO MODAL
========================= */

body.voice-demo-modal-open {
    overflow: hidden;
}

.voice-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .voice-demo-modal.show {
        display: flex;
    }

.voice-demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .66);
    backdrop-filter: blur(8px);
    animation: voiceDemoBackdropIn .18s ease;
}

.voice-demo-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(15, 23, 42, .28);
    animation: voiceDemoModalIn .22s ease;
}

.voice-demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    color: #64748b;
    font-size: 17px;
    cursor: pointer;
    transition: all .16s ease;
}

    .voice-demo-modal-close:hover {
        background: #f8fafc;
        color: #111827;
        transform: rotate(4deg);
    }

.voice-demo-step {
    display: none;
}

    .voice-demo-step.active {
        display: block;
    }

.voice-demo-modal-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 16px 36px rgba(124, 58, 237, .24);
}

.voice-demo-modal-kicker {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.voice-demo-modal-title {
    margin: 0 50px 14px 0;
    color: var(--text);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.voice-demo-modal-subtitle {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

    .voice-demo-modal-subtitle strong,
    .voice-demo-modal-subtitle span {
        display: block;
    }

.voice-demo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.voice-demo-field {
    min-width: 0;
}

.voice-demo-field-wide {
    grid-column: 1 / -1;
}

.voice-demo-field label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.voice-demo-field .form-control {
    min-height: 50px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: none;
}

.voice-demo-field textarea.form-control {
    min-height: 96px;
    padding-top: 13px;
    resize: vertical;
}

.voice-demo-field .form-control:focus {
    border-color: rgba(124, 58, 237, .56);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .09);
}

.voice-demo-field small {
    display: block;
    margin-top: 7px;
    color: #94a3b8;
    font-size: 12px;
}

.voice-demo-password-wrapper {
    position: relative;
}

    .voice-demo-password-wrapper .form-control {
        padding-right: 52px;
    }

.voice-demo-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #64748b;
    transform: translateY(-50%);
}

    .voice-demo-password-toggle:hover {
        background: #f8fafc;
        color: var(--primary);
    }

.voice-demo-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

    .voice-demo-consent input {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        margin-top: 2px;
        accent-color: var(--primary);
    }

.voice-demo-submit {
    width: 100%;
    border: 0;
}

    .voice-demo-submit:disabled,
    .voice-demo-resend-btn:disabled {
        opacity: .65;
        cursor: wait;
        transform: none;
    }

.voice-demo-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

    .voice-demo-result.success {
        border: 1px solid rgba(22, 163, 74, .18);
        background: rgba(22, 163, 74, .08);
        color: #15803d;
    }

    .voice-demo-result.error {
        border: 1px solid rgba(220, 38, 38, .18);
        background: rgba(220, 38, 38, .07);
        color: #b91c1c;
    }

    .voice-demo-result[hidden] {
        display: none;
    }

.voice-demo-otp-wrapper {
    margin: 8px 0 22px;
}

.voice-demo-otp-input {
    width: 100%;
    height: 76px;
    border: 1px solid var(--border);
    border-radius: 18px;
    outline: none;
    background: #f8fafc;
    color: var(--text);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .28em;
    text-align: center;
    transition: all .16s ease;
}

    .voice-demo-otp-input:focus {
        border-color: rgba(124, 58, 237, .56);
        background: #ffffff;
        box-shadow: 0 0 0 5px rgba(124, 58, 237, .09);
    }

.voice-demo-resend-btn {
    width: 100%;
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.voice-demo-ready-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.voice-demo-ready-ring {
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 0 0 14px rgba(124, 58, 237, .08), 0 24px 60px rgba(124, 58, 237, .24);
    animation: voiceDemoPulse 2s infinite;
}

#voiceDemoReadyStep {
    text-align: center;
}

    #voiceDemoReadyStep .voice-demo-modal-title {
        margin-right: 0;
    }

.voice-demo-ready-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

    .voice-demo-ready-info div {
        padding: 16px 10px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: #f8fafc;
        color: #64748b;
        font-size: 12px;
        line-height: 1.5;
    }

    .voice-demo-ready-info i {
        display: block;
        margin-bottom: 9px;
        color: var(--primary);
        font-size: 18px;
    }

@keyframes voiceDemoBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes voiceDemoModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes voiceDemoPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@media (max-width: 640px) {
    .voice-demo-modal {
        padding: 12px;
    }

    .voice-demo-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 32px 20px 24px;
        border-radius: 24px;
    }

    .voice-demo-modal-title {
        margin-right: 42px;
        font-size: 29px;
    }

    .voice-demo-form-grid {
        grid-template-columns: 1fr;
    }

    .voice-demo-field-wide {
        grid-column: auto;
    }

    .voice-demo-ready-info {
        grid-template-columns: 1fr;
    }

    .voice-demo-otp-input {
        font-size: 29px;
        letter-spacing: .2em;
    }
}

/* =========================
   VOICE DEMO EXISTING ACCOUNT
========================= */

.voice-demo-result.voice-demo-existing-account {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(124, 58, 237, .18);
    border-radius: 18px;
    background: rgba(124, 58, 237, .055);
    color: var(--text);
}

.voice-demo-existing-account-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(124, 58, 237, .11);
    color: var(--primary);
    font-size: 18px;
}

.voice-demo-existing-account-content {
    flex: 1;
    min-width: 0;
}

    .voice-demo-existing-account-content strong {
        display: block;
        margin-bottom: 6px;
        color: var(--text);
        font-size: 16px;
    }

    .voice-demo-existing-account-content p {
        margin: 0 0 16px;
        color: var(--muted);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.6;
    }

.voice-demo-existing-account-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

    .voice-demo-existing-account-actions .btn-landing-primary {
        height: 42px;
        padding: 0 18px;
        font-size: 14px;
    }

.voice-demo-existing-account-forgot {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

    .voice-demo-existing-account-forgot:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

@media (max-width: 640px) {
    .voice-demo-result.voice-demo-existing-account {
        flex-direction: column;
    }

    .voice-demo-existing-account-actions {
        align-items: stretch;
        flex-direction: column;
    }

        .voice-demo-existing-account-actions .btn-landing-primary {
            width: 100%;
        }

    .voice-demo-existing-account-forgot {
        text-align: center;
    }
}

/* =========================
   LANDING VOICE DEMO LIVE
========================= */

.voice-demo-live-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

    .voice-demo-live-head .voice-demo-modal-title {
        margin-right: 0;
    }

.voice-demo-live-timer {
    min-width: 92px;
    height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(124, 58, 237, .16);
    border-radius: 14px;
    background: rgba(124, 58, 237, .06);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.voice-demo-live-card {
    padding: 28px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 24px;
    background: radial-gradient( circle at top, rgba(124, 58, 237, .08), transparent 55% ), #ffffff;
    text-align: center;
}

.voice-demo-live-orb {
    width: 92px;
    height: 92px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    appearance: none;
    border-radius: 50%;
    background: linear-gradient( 135deg, #e2e8f0, #cbd5e1 );
    color: #64748b;
    font-size: 30px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

    .voice-demo-live-orb:hover:not(:disabled) {
        transform: translateY(-2px);
    }

    .voice-demo-live-orb:focus-visible {
        outline: 4px solid rgba(124, 58, 237, .16);
        outline-offset: 4px;
    }

    .voice-demo-live-orb.connecting {
        background: linear-gradient( 135deg, #f59e0b, #d97706 );
        color: #ffffff;
        animation: voiceDemoOrbPulse 1.2s infinite;
    }

    .voice-demo-live-orb.connected,
    .voice-demo-live-orb.listening {
        background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
        color: #ffffff;
        box-shadow: 0 0 0 12px rgba(124, 58, 237, .07), 0 18px 45px rgba(124, 58, 237, .24);
    }

    .voice-demo-live-orb.customer-speaking {
        background: linear-gradient( 135deg, #0ea5e9, #0284c7 );
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(14, 165, 233, .09), 0 18px 45px rgba(14, 165, 233, .22);
    }

    .voice-demo-live-orb.ai-processing {
        background: linear-gradient( 135deg, #f59e0b, #d97706 );
        color: #ffffff;
        animation: voiceDemoOrbPulse 1.2s infinite;
    }

    .voice-demo-live-orb.ai-speaking {
        background: linear-gradient( 135deg, #8b5cf6, #6d28d9 );
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(124, 58, 237, .1), 0 18px 45px rgba(124, 58, 237, .28);
    }

.voice-demo-live-status {
    margin-bottom: 7px;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
}

.voice-demo-live-help {
    min-height: 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.voice-demo-live-wave {
    height: 38px;
    margin: 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .voice-demo-live-wave span {
        width: 5px;
        height: 8px;
        border-radius: 999px;
        background: rgba(124, 58, 237, .3);
    }

    .voice-demo-live-wave.active span {
        background: var(--primary);
        animation: voiceDemoWave .8s ease-in-out infinite;
    }

        .voice-demo-live-wave.active span:nth-child(2) {
            animation-delay: .1s;
        }

        .voice-demo-live-wave.active span:nth-child(3) {
            animation-delay: .2s;
        }

        .voice-demo-live-wave.active span:nth-child(4) {
            animation-delay: .3s;
        }

        .voice-demo-live-wave.active span:nth-child(5) {
            animation-delay: .4s;
        }

.voice-demo-live-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .voice-demo-live-actions .btn-landing-primary {
        min-width: 210px;
    }

.voice-demo-stop-btn {
    min-width: 160px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(220, 38, 38, .2);
    border-radius: 14px;
    background: rgba(220, 38, 38, .06);
    color: #b91c1c;
    font-weight: 700;
    transition: all .16s ease;
}

    .voice-demo-stop-btn:hover:not(:disabled) {
        background: rgba(220, 38, 38, .1);
        transform: translateY(-1px);
    }

    .voice-demo-stop-btn:disabled {
        opacity: .45;
        cursor: not-allowed;
    }

.voice-demo-transcript-panel {
    margin-top: 20px;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.voice-demo-transcript-head {
    min-height: 66px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(229, 231, 235, .8);
}

    .voice-demo-transcript-head strong,
    .voice-demo-transcript-head span {
        display: block;
    }

    .voice-demo-transcript-head strong {
        color: var(--text);
        font-size: 15px;
    }

    .voice-demo-transcript-head span {
        margin-top: 3px;
        color: var(--muted);
        font-size: 12px;
    }

.voice-demo-transcript-clear {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

    .voice-demo-transcript-clear:hover {
        color: var(--primary);
    }

.voice-demo-transcript {
    height: 230px;
    overflow-y: auto;
    padding: 18px;
    background: #f8fafc;
}

.voice-demo-transcript-empty {
    height: 100%;
    display: grid;
    place-items: center;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

.voice-demo-transcript-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
}

    .voice-demo-transcript-row:last-child {
        margin-bottom: 0;
    }

    .voice-demo-transcript-row.assistant {
        flex-direction: row-reverse;
    }

.voice-demo-transcript-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #e2e8f0;
    color: #475569;
    font-size: 13px;
}

.voice-demo-transcript-row.assistant
.voice-demo-transcript-avatar {
    background: rgba(124, 58, 237, .1);
    color: var(--primary);
}

.voice-demo-transcript-body {
    max-width: 78%;
    padding: 11px 13px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 6px 16px 16px 16px;
    background: #ffffff;
}

.voice-demo-transcript-row.assistant
.voice-demo-transcript-body {
    border-color: rgba(124, 58, 237, .13);
    border-radius: 16px 6px 16px 16px;
    background: rgba(124, 58, 237, .055);
}

.voice-demo-transcript-body strong {
    display: block;
    margin-bottom: 4px;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
}

.voice-demo-transcript-body p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
}

.voice-demo-transcript-row.typing
.voice-demo-transcript-body p {
    color: #64748b;
    font-style: italic;
}

.voice-demo-complete-panel {
    margin-top: 20px;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(22, 163, 74, .18);
    border-radius: 20px;
    background: rgba(22, 163, 74, .065);
}

    .voice-demo-complete-panel[hidden] {
        display: none;
    }

.voice-demo-complete-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(22, 163, 74, .12);
    color: #15803d;
    font-size: 19px;
}

.voice-demo-complete-panel strong {
    display: block;
    margin-bottom: 4px;
    color: #166534;
    font-size: 15px;
}

.voice-demo-complete-panel p {
    margin: 0;
    color: #4d7c5d;
    font-size: 13px;
    line-height: 1.5;
}

.voice-demo-complete-panel .btn-landing-primary {
    height: 42px;
    padding: 0 17px;
    font-size: 13px;
}

@keyframes voiceDemoOrbPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes voiceDemoWave {
    0%, 100% {
        height: 8px;
    }

    50% {
        height: 30px;
    }
}

@media (max-width: 640px) {
    .voice-demo-live-head {
        flex-direction: column;
    }

    .voice-demo-live-timer {
        align-self: flex-start;
    }

    .voice-demo-live-actions {
        flex-direction: column;
    }

        .voice-demo-live-actions .btn-landing-primary,
        .voice-demo-stop-btn {
            width: 100%;
        }

    .voice-demo-transcript {
        height: 200px;
    }

    .voice-demo-transcript-body {
        max-width: calc(100% - 45px);
    }

    .voice-demo-complete-panel {
        grid-template-columns: auto 1fr;
    }

        .voice-demo-complete-panel .btn-landing-primary {
            grid-column: 1 / -1;
            width: 100%;
        }
}

/* =========================
   LANDING PWA INSTALL
========================= */

.landing-pwa-install {
    position: fixed;
    top: 92px;
    right: 24px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

    .landing-pwa-install.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.landing-pwa-install-button {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 210px;
    padding: 9px 13px 9px 9px;
    border: 1px solid rgba(124, 58, 237, 0.22);
    border-radius: 16px;
    background: radial-gradient( circle at top left, rgba(124, 58, 237, 0.12), transparent 55% ), rgba(255, 255, 255, 0.96);
    color: #0f172a;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14), 0 8px 22px rgba(124, 58, 237, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .landing-pwa-install-button:hover {
        transform: translateY(-2px);
        border-color: rgba(124, 58, 237, 0.42);
        box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16), 0 10px 26px rgba(124, 58, 237, 0.18);
    }

    .landing-pwa-install-button:disabled {
        cursor: wait;
        opacity: 0.7;
    }

.landing-pwa-install-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.18);
}

    .landing-pwa-install-icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

.landing-pwa-install-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

    .landing-pwa-install-copy small {
        color: #7c3aed;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .landing-pwa-install-copy strong {
        color: #0f172a;
        font-size: 13px;
        font-weight: 800;
    }

.landing-pwa-install-button > i {
    color: #7c3aed;
    font-size: 13px;
}

.landing-pwa-ios-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 290px;
    padding: 18px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .landing-pwa-ios-panel.show {
        opacity: 1;
        transform: translateY(0);
    }

    .landing-pwa-ios-panel strong {
        display: block;
        padding-right: 30px;
        color: #0f172a;
        font-size: 15px;
        font-weight: 800;
    }

    .landing-pwa-ios-panel p {
        margin: 7px 0 14px;
        color: #64748b;
        font-size: 12px;
        line-height: 1.55;
    }

.landing-pwa-ios-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 9px;
    background: #f1f5f9;
    color: #64748b;
}

.landing-pwa-ios-step {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 11px;
    background: rgba(124, 58, 237, 0.07);
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

    .landing-pwa-ios-step + .landing-pwa-ios-step {
        margin-top: 7px;
    }

    .landing-pwa-ios-step i {
        width: 18px;
        color: #7c3aed;
        text-align: center;
    }

@media (max-width: 767.98px) {

    .landing-pwa-install {
        top: auto;
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .landing-pwa-install-button {
        width: 100%;
    }

    .landing-pwa-ios-panel {
        top: auto;
        right: 0;
        bottom: calc(100% + 10px);
        width: 100%;
    }
}

/* =========================
   LANDING BRAND
========================= */

.landing-logo {
    width: 150px;
    height: 62px;
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text);
    text-decoration: none;
    overflow: visible;
}

    .landing-logo:hover {
        color: var(--text);
        text-decoration: none;
    }

.landing-logo-image {
    display: block;
    width: 138px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    width: fit-content;
    min-height: 58px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    color: var(--text);
    text-decoration: none;
}

    .footer-brand:hover {
        color: var(--text);
        text-decoration: none;
    }

.footer-brand-logo {
    display: block;
    width: 150px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 992px) {

    .landing-logo {
        width: 122px;
        height: 54px;
        flex-basis: 122px;
    }

    .landing-logo-image {
        width: 112px;
        max-height: 50px;
    }

    .footer-brand-logo {
        width: 136px;
        max-height: 58px;
    }
}

@media (max-width: 576px) {

    .landing-navbar-inner {
        height: 68px;
    }

    .landing-logo {
        width: 106px;
        height: 48px;
        flex-basis: 106px;
    }

    .landing-logo-image {
        width: 98px;
        max-height: 44px;
    }

    .footer-brand-logo {
        width: 122px;
        max-height: 52px;
    }

    .mobile-nav {
        top: 78px;
        left: 14px;
        right: 14px;
    }
}

/* =========================
   LEGAL PAGES
========================= */

.legal-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, .82);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.legal-navbar-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .16s ease, transform .16s ease;
}

    .legal-back-link:hover {
        color: var(--primary);
        transform: translateX(-2px);
    }

.legal-page {
    min-height: calc(100vh - 80px);
    padding: 72px 0 100px;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, .08), transparent 34%), #f8fafc;
}

.legal-page-grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 38px;
}

.legal-sidebar {
    position: sticky;
    top: 112px;
}

.legal-sidebar-card {
    padding: 20px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.legal-sidebar-kicker {
    margin-bottom: 14px;
    padding: 0 10px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.legal-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .legal-sidebar-links a {
        min-height: 48px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        gap: 11px;
        border-radius: 14px;
        color: #64748b;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: all .16s ease;
    }

        .legal-sidebar-links a i {
            width: 19px;
            text-align: center;
        }

        .legal-sidebar-links a:hover {
            background: #f8fafc;
            color: var(--text);
        }

        .legal-sidebar-links a.active {
            background: rgba(124, 58, 237, .09);
            color: var(--primary);
        }

.legal-content {
    padding: 48px 54px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .07);
}

.legal-hero {
    padding-bottom: 38px;
    margin-bottom: 38px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-hero-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 16px 36px rgba(124, 58, 237, .22);
}

    .legal-hero-icon.danger {
        background: linear-gradient(135deg, #ef4444, #b91c1c);
        box-shadow: 0 16px 36px rgba(220, 38, 38, .18);
    }

.legal-kicker {
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.legal-hero > p {
    max-width: 760px;
    margin: 0 0 20px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.85;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 38px;
}

    .legal-section:last-of-type {
        margin-bottom: 0;
    }

    .legal-section h2 {
        margin: 0 0 15px;
        color: var(--text);
        font-size: 23px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: -.025em;
    }

    .legal-section p {
        margin: 0;
        color: #64748b;
        font-size: 15px;
        line-height: 1.9;
    }

    .legal-section ul {
        margin: 16px 0 0;
        padding-left: 21px;
        color: #64748b;
    }

    .legal-section li {
        margin-bottom: 10px;
        padding-left: 5px;
        font-size: 15px;
        line-height: 1.75;
    }

.legal-contact-card {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(124, 58, 237, .14);
    border-radius: 18px;
    background: rgba(124, 58, 237, .05);
}

    .legal-contact-card > div:first-child {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: rgba(124, 58, 237, .12);
        color: var(--primary);
    }

    .legal-contact-card strong,
    .legal-contact-card a {
        display: block;
    }

    .legal-contact-card strong {
        margin-bottom: 3px;
        color: #475569;
        font-size: 12px;
    }

    .legal-contact-card a {
        color: var(--primary);
        font-size: 15px;
        font-weight: 800;
        text-decoration: none;
    }

.legal-notice {
    margin-top: 42px;
    padding: 17px 19px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 16px;
    background: rgba(245, 158, 11, .07);
    color: #92400e;
    font-size: 13px;
    line-height: 1.65;
}

    .legal-notice i {
        margin-top: 3px;
    }

.legal-step-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-step {
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}

    .legal-step > span {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
    }

    .legal-step strong {
        display: block;
        margin-bottom: 5px;
        color: var(--text);
        font-size: 15px;
    }

    .legal-step p {
        font-size: 14px;
        line-height: 1.7;
    }

@media (max-width: 992px) {

    .legal-page {
        padding-top: 42px;
    }

    .legal-page-grid {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-links {
        flex-direction: row;
        overflow-x: auto;
    }

        .legal-sidebar-links a {
            flex: 0 0 auto;
        }
}

@media (max-width: 640px) {

    .legal-navbar-inner {
        min-height: 68px;
    }

    .legal-back-link {
        font-size: 12px;
    }

    .legal-content {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .legal-hero h1 {
        font-size: 36px;
    }

    .legal-hero > p {
        font-size: 15px;
    }

    .legal-section h2 {
        font-size: 20px;
    }
}

.legal-company-card {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    border: 1px solid rgba(124, 58, 237, .14);
    border-radius: 18px;
    background: rgba(124, 58, 237, .045);
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

    .legal-company-card strong {
        color: #111827;
        font-size: 17px;
    }

    .legal-company-card a {
        margin-top: 5px;
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
    }

.footer-company-info {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
}

/* =========================
   LEGAL DATA TABLE
========================= */

.legal-table-wrapper {
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

.legal-data-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #ffffff;
}

    .legal-data-table th,
    .legal-data-table td {
        padding: 16px 18px;
        border-bottom: 1px solid #e2e8f0;
        text-align: left;
        vertical-align: top;
    }

    .legal-data-table th {
        background: #f8fafc;
        color: #475569;
        font-size: 13px;
        font-weight: 800;
    }

    .legal-data-table td {
        color: #64748b;
        font-size: 14px;
        line-height: 1.65;
    }

        .legal-data-table td:first-child {
            width: 34%;
            color: #111827;
            font-weight: 700;
        }

    .legal-data-table tbody tr:last-child td {
        border-bottom: 0;
    }

.legal-application-info {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}

    .legal-application-info > strong {
        display: block;
        margin-bottom: 12px;
        color: #111827;
        font-size: 15px;
    }

    .legal-application-info ul {
        margin: 0;
    }

.legal-navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 576px) {
    .legal-navbar-actions {
        gap: 9px;
    }

        .legal-navbar-actions .landing-lang-btn {
            min-width: 54px;
            height: 36px;
        }

        .legal-navbar-actions .legal-back-link span {
            display: none;
        }
}

/* =========================
   LEGAL PAGES - MOBILE FIX
========================= */

@media (max-width: 767.98px) {

    body {
        overflow-x: hidden;
    }

    .legal-navbar {
        position: sticky;
        top: 0;
    }

        .legal-navbar .container-landing {
            padding-left: 14px;
            padding-right: 14px;
        }

    .legal-navbar-inner {
        min-height: 66px;
        gap: 10px;
    }

    .legal-navbar .landing-logo {
        width: 100px;
        height: 46px;
        flex: 0 0 100px;
    }

    .legal-navbar .landing-logo-image {
        width: 94px;
        max-height: 42px;
    }

    .legal-navbar-actions {
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

        .legal-navbar-actions .landing-lang-form {
            flex: 0 0 auto;
        }

        .legal-navbar-actions .landing-lang-btn {
            width: 48px;
            min-width: 48px;
            height: 36px;
            padding: 0;
            gap: 5px;
            font-size: 11px;
            box-shadow: none;
        }

            .legal-navbar-actions .landing-lang-btn i {
                font-size: 12px;
            }

    .legal-back-link {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: #ffffff;
        color: #64748b;
        font-size: 14px;
    }

        .legal-back-link span {
            display: none;
        }

    .legal-page {
        min-height: calc(100vh - 66px);
        padding: 18px 0 48px;
        background: radial-gradient( circle at top right, rgba(124, 58, 237, .07), transparent 28% ), #f8fafc;
    }

        .legal-page .container-landing {
            padding-left: 14px;
            padding-right: 14px;
        }

    .legal-page-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .legal-sidebar {
        position: static;
        width: 100%;
    }

    .legal-sidebar-card {
        width: 100%;
        padding: 8px;
        border-radius: 18px;
        box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    }

    .legal-sidebar-kicker {
        display: none;
    }

    .legal-sidebar-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        overflow: visible;
    }

        .legal-sidebar-links a {
            min-width: 0;
            min-height: 44px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            border: 1px solid transparent;
            border-radius: 12px;
            font-size: 11px;
            line-height: 1.25;
            white-space: normal;
        }

            .legal-sidebar-links a i {
                width: 17px;
                flex: 0 0 17px;
                font-size: 12px;
            }

            .legal-sidebar-links a.active {
                border-color: rgba(124, 58, 237, .14);
                background: rgba(124, 58, 237, .08);
            }

    .legal-content {
        width: 100%;
        padding: 24px 18px;
        border-radius: 22px;
        box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
    }

    .legal-hero {
        padding-bottom: 24px;
        margin-bottom: 26px;
    }

        .legal-hero h1 {
            margin-bottom: 14px;
            font-size: 31px;
            line-height: 1.12;
            letter-spacing: -.035em;
            overflow-wrap: anywhere;
        }

        .legal-hero > p {
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.72;
        }

    .legal-updated {
        font-size: 11px;
    }

    .legal-section {
        margin-bottom: 30px;
    }

        .legal-section h2 {
            margin-bottom: 12px;
            font-size: 19px;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .legal-section p {
            font-size: 14px;
            line-height: 1.75;
        }

        .legal-section ul {
            margin-top: 13px;
            padding-left: 18px;
        }

        .legal-section li {
            margin-bottom: 9px;
            padding-left: 2px;
            font-size: 14px;
            line-height: 1.65;
        }

    .legal-company-card {
        gap: 6px;
        padding: 16px;
        border-radius: 16px;
        font-size: 13px;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

        .legal-company-card strong {
            font-size: 16px;
        }

        .legal-company-card a {
            overflow-wrap: anywhere;
        }

    .legal-contact-card {
        padding: 14px;
        gap: 12px;
        border-radius: 15px;
    }

        .legal-contact-card > div:first-child {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            border-radius: 12px;
        }

        .legal-contact-card a {
            font-size: 14px;
            overflow-wrap: anywhere;
        }

    .legal-step-list {
        gap: 10px;
    }

    .legal-step {
        padding: 14px;
        gap: 12px;
        border-radius: 15px;
    }

        .legal-step > span {
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            border-radius: 10px;
            font-size: 13px;
        }

        .legal-step strong {
            font-size: 14px;
        }

        .legal-step p {
            font-size: 13px;
            line-height: 1.65;
        }

    .legal-notice {
        margin-top: 28px;
        padding: 14px;
        border-radius: 14px;
        font-size: 12px;
        line-height: 1.6;
    }

    .legal-table-wrapper {
        margin-top: 14px;
        border: 0;
        border-radius: 0;
        overflow: visible;
    }

    .legal-data-table {
        width: 100%;
        min-width: 0;
        display: block;
        background: transparent;
    }

        .legal-data-table thead {
            display: none;
        }

        .legal-data-table tbody,
        .legal-data-table tr,
        .legal-data-table td {
            display: block;
            width: 100%;
        }

        .legal-data-table tr {
            margin-bottom: 10px;
            padding: 14px;
            border: 1px solid #e2e8f0;
            border-radius: 15px;
            background: #f8fafc;
        }

        .legal-data-table td {
            padding: 0;
            border: 0;
            font-size: 13px;
            line-height: 1.6;
        }

            .legal-data-table td:first-child {
                width: 100%;
                margin-bottom: 6px;
                color: #111827;
                font-size: 14px;
                font-weight: 800;
            }

    .legal-application-info {
        margin-top: 14px;
        padding: 16px;
        border-radius: 15px;
    }

        .legal-application-info > strong {
            font-size: 14px;
        }

    .footer-company-info {
        padding: 0 14px;
        line-height: 1.6;
    }
}

@media (max-width: 420px) {

    .legal-sidebar-links {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 22px 16px;
    }

    .legal-hero h1 {
        font-size: 28px;
    }

    .legal-section h2 {
        font-size: 18px;
    }
}

/* =========================
   COOKIE CONSENT
========================= */

body.cookie-preferences-open {
    overflow: hidden;
}

.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 4800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
}

    .cookie-consent.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .cookie-consent[hidden] {
        display: none;
    }

.cookie-consent-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 18px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(124, 58, 237, .18);
    border-radius: 24px;
    background: radial-gradient( circle at top left, rgba(124, 58, 237, .10), transparent 34% ), rgba(255, 255, 255, .98);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .18), 0 14px 36px rgba(124, 58, 237, .10);
    backdrop-filter: blur(18px);
}

.cookie-consent-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 14px 30px rgba(124, 58, 237, .22);
}

.cookie-consent-content {
    min-width: 0;
}

    .cookie-consent-content strong {
        display: block;
        margin-bottom: 5px;
        color: var(--text);
        font-size: 16px;
        font-weight: 800;
        letter-spacing: -.015em;
    }

    .cookie-consent-content p {
        margin: 0;
        max-width: 700px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.65;
    }

    .cookie-consent-content a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
    }

        .cookie-consent-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

.cookie-consent-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-consent-button {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

    .cookie-consent-button:hover:not(:disabled) {
        transform: translateY(-1px);
    }

    .cookie-consent-button:disabled {
        opacity: .62;
        cursor: wait;
        transform: none;
    }

.cookie-consent-button-primary {
    border: 0;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(124, 58, 237, .20);
}

    .cookie-consent-button-primary:hover:not(:disabled) {
        color: #ffffff;
        box-shadow: 0 16px 34px rgba(124, 58, 237, .26);
    }

.cookie-consent-button-secondary {
    border: 1px solid var(--border);
    background: #ffffff;
    color: #475569;
}

    .cookie-consent-button-secondary:hover:not(:disabled) {
        border-color: rgba(124, 58, 237, .28);
        background: #faf9ff;
        color: var(--primary);
    }

/* =========================
   COOKIE PREFERENCES MODAL
========================= */

.cookie-preferences-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .cookie-preferences-modal.show {
        display: flex;
    }

.cookie-preferences-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .68);
    backdrop-filter: blur(8px);
    animation: cookieBackdropIn .18s ease;
}

.cookie-preferences-dialog {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 42px 110px rgba(15, 23, 42, .30);
    animation: cookieDialogIn .22s ease;
}

.cookie-preferences-header {
    position: relative;
    padding: 34px 72px 26px 32px;
    border-bottom: 1px solid #e2e8f0;
    background: radial-gradient( circle at top right, rgba(124, 58, 237, .10), transparent 42% ), #ffffff;
}

.cookie-preferences-kicker {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cookie-preferences-header h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.cookie-preferences-header p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
}

.cookie-preferences-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    color: #64748b;
    font-size: 17px;
    cursor: pointer;
    transition: color .16s ease, background .16s ease, transform .16s ease;
}

    .cookie-preferences-close:hover {
        background: #f8fafc;
        color: var(--text);
        transform: rotate(4deg);
    }

.cookie-preferences-list {
    padding: 8px 28px;
}

.cookie-preference-item {
    min-height: 128px;
    padding: 22px 4px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #e2e8f0;
}

    .cookie-preference-item:last-child {
        border-bottom: 0;
    }

.cookie-preference-copy {
    min-width: 0;
}

.cookie-preference-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 9px;
}

.cookie-preference-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(124, 58, 237, .08);
    color: var(--primary);
    font-size: 15px;
}

.cookie-preference-title strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.cookie-preference-title small {
    display: block;
    margin-top: 3px;
    color: #16a34a;
    font-size: 11px;
    font-weight: 800;
}

.cookie-preference-copy p {
    margin: 0;
    padding-left: 54px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.68;
}

/* =========================
   COOKIE SWITCH
========================= */

.cookie-switch {
    position: relative;
    width: 52px;
    height: 30px;
    flex: 0 0 52px;
    display: inline-flex;
    cursor: pointer;
}

    .cookie-switch input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .cookie-switch span {
        position: absolute;
        inset: 0;
        border-radius: 999px;
        background: #cbd5e1;
        transition: background .18s ease;
    }

        .cookie-switch span::after {
            content: "";
            position: absolute;
            top: 4px;
            left: 4px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 4px 10px rgba(15, 23, 42, .18);
            transition: transform .18s ease;
        }

    .cookie-switch input:checked + span {
        background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    }

        .cookie-switch input:checked + span::after {
            transform: translateX(22px);
        }

    .cookie-switch input:focus-visible + span {
        outline: 4px solid rgba(124, 58, 237, .14);
        outline-offset: 3px;
    }

    .cookie-switch.is-disabled {
        cursor: not-allowed;
        opacity: .72;
    }

        .cookie-switch.is-disabled span {
            background: #94a3b8;
        }

/* =========================
   COOKIE MODAL FOOTER
========================= */

.cookie-preferences-footer {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cookie-preferences-policy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

    .cookie-preferences-policy-link:hover {
        color: var(--primary);
    }

.cookie-preferences-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================
   FOOTER COOKIE BUTTON
========================= */

.footer-cookie-preferences {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color .15s ease;
}

    .footer-cookie-preferences:hover {
        color: var(--text);
    }

/* =========================
   COOKIE ANIMATIONS
========================= */

@keyframes cookieBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cookieDialogIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================
   COOKIE RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .cookie-consent-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cookie-consent-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 767.98px) {

    .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-consent-inner {
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        border-radius: 22px;
    }

    .cookie-consent-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
        font-size: 18px;
    }

    .cookie-consent-content strong {
        font-size: 15px;
    }

    .cookie-consent-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .cookie-consent-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cookie-consent-button {
        width: 100%;
        min-height: 43px;
        padding: 0 12px;
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    .cookie-consent-button-primary {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .cookie-preferences-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .cookie-preferences-dialog {
        width: 100%;
        max-height: calc(100vh - 20px);
        border-radius: 26px 26px 18px 18px;
    }

    .cookie-preferences-header {
        padding: 28px 58px 22px 20px;
    }

        .cookie-preferences-header h2 {
            font-size: 25px;
        }

        .cookie-preferences-header p {
            font-size: 13px;
            line-height: 1.62;
        }

    .cookie-preferences-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .cookie-preferences-list {
        padding: 4px 18px;
    }

    .cookie-preference-item {
        min-height: 0;
        padding: 19px 0;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-preference-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .cookie-preference-copy p {
        padding-left: 50px;
        font-size: 12px;
        line-height: 1.6;
    }

    .cookie-switch {
        width: 48px;
        height: 28px;
        flex-basis: 48px;
        margin-top: 4px;
    }

        .cookie-switch span::after {
            width: 20px;
            height: 20px;
        }

        .cookie-switch input:checked + span::after {
            transform: translateX(20px);
        }

    .cookie-preferences-footer {
        padding: 16px 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-preferences-policy-link {
        justify-content: center;
    }

    .cookie-preferences-footer-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 430px) {

    .cookie-consent-actions {
        grid-template-columns: 1fr;
    }

    .cookie-consent-button-primary {
        grid-column: auto;
        grid-row: auto;
    }

    .cookie-preference-item {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cookie-preference-title {
        align-items: flex-start;
    }

    .cookie-preference-copy p {
        padding-left: 0;
        margin-top: 10px;
    }

    .cookie-preferences-footer-actions {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ABOUT PAGE
========================= */

.about-page {
    overflow: hidden;
    background: #ffffff;
}

.about-hero {
    position: relative;
    padding: 110px 0 100px;
    background: radial-gradient( circle at top right, rgba(124, 58, 237, .12), transparent 36% ), radial-gradient( circle at bottom left, rgba(124, 58, 237, .07), transparent 32% ), #ffffff;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
    align-items: center;
    gap: 72px;
}

.about-hero-content h1 {
    max-width: 760px;
    margin: 0 0 26px;
    color: var(--text);
    font-size: 66px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.about-hero-content > p {
    max-width: 690px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.85;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-visual {
    position: relative;
    min-height: 480px;
}

.about-hero-card {
    border: 1px solid rgba(229, 231, 235, .95);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .10);
    backdrop-filter: blur(16px);
}

.about-hero-card-main {
    position: absolute;
    top: 78px;
    left: 46px;
    right: 34px;
    min-height: 300px;
    padding: 34px;
    border-radius: 30px;
}

.about-hero-card-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0 16px 38px rgba(124, 58, 237, .24);
}

.about-hero-card-main strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.about-hero-card-main span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.about-hero-card-small {
    position: absolute;
    z-index: 3;
    min-width: 230px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 19px;
}

.about-hero-card-top {
    top: 12px;
    right: -6px;
}

.about-hero-card-bottom {
    bottom: 20px;
    left: -10px;
}

.about-mini-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(124, 58, 237, .09);
    color: var(--primary);
    font-size: 17px;
}

    .about-mini-icon.success {
        background: rgba(22, 163, 74, .10);
        color: #16a34a;
    }

.about-hero-card-small strong,
.about-hero-card-small span {
    display: block;
}

.about-hero-card-small strong {
    margin-bottom: 3px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.about-hero-card-small span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

/* =========================
   ABOUT STORY
========================= */

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 72px;
}

.about-section-title {
    margin: 0;
    color: var(--text);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.about-story-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

    .about-story-copy p {
        margin: 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.9;
    }

/* =========================
   ABOUT VALUES
========================= */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    padding: 34px;
    border: 1px solid rgba(229, 231, 235, .95);
    border-radius: 26px;
    background: #ffffff;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .about-value-card:hover {
        transform: translateY(-4px);
        border-color: rgba(124, 58, 237, .20);
        box-shadow: 0 22px 50px rgba(15, 23, 42, .07);
    }

.about-value-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(124, 58, 237, .13), rgba(124, 58, 237, .06) );
    color: var(--primary);
    font-size: 22px;
}

.about-value-card h3 {
    margin: 0 0 13px;
    color: var(--text);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   ABOUT PLATFORM
========================= */

.about-platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.about-platform-panel {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, .95);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .08);
}

.about-platform-head {
    min-height: 82px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #e2e8f0;
    background: radial-gradient( circle at top left, rgba(124, 58, 237, .08), transparent 50% ), #ffffff;
}

    .about-platform-head span,
    .about-platform-head strong {
        display: block;
    }

    .about-platform-head > div:first-child > span {
        margin-bottom: 4px;
        color: var(--primary);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .about-platform-head > div:first-child > strong {
        color: var(--text);
        font-size: 18px;
        font-weight: 800;
    }

.about-platform-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #15803d;
    font-size: 12px;
    font-weight: 800;
}

    .about-platform-status span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 0 5px rgba(34, 197, 94, .10);
    }

.about-platform-items {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-platform-item {
    min-height: 66px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #f8fafc;
}

    .about-platform-item > div {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: rgba(124, 58, 237, .09);
        color: var(--primary);
        font-size: 16px;
    }

    .about-platform-item span {
        color: #475569;
        font-size: 14px;
        font-weight: 700;
    }

.about-platform-text {
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.about-platform-checks {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .about-platform-checks div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #374151;
        font-size: 15px;
        font-weight: 600;
    }

    .about-platform-checks i {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
        color: #ffffff;
        font-size: 11px;
        box-shadow: 0 8px 20px rgba(124, 58, 237, .18);
    }

/* =========================
   ABOUT COMPANY
========================= */

.about-company-card {
    padding: 42px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 28px;
    border: 1px solid rgba(124, 58, 237, .16);
    border-radius: 30px;
    background: radial-gradient( circle at top right, rgba(124, 58, 237, .10), transparent 40% ), #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.about-company-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 27px;
    box-shadow: 0 16px 38px rgba(124, 58, 237, .24);
}

.about-company-content h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.035em;
}

.about-company-content > p {
    max-width: 820px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.about-company-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

    .about-company-details > div {
        padding: 18px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        background: #f8fafc;
    }

    .about-company-details span,
    .about-company-details strong {
        display: block;
    }

    .about-company-details span {
        margin-bottom: 6px;
        color: #94a3b8;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .about-company-details strong {
        color: var(--text);
        font-size: 14px;
        font-weight: 800;
        overflow-wrap: anywhere;
    }

/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .about-hero-grid,
    .about-platform-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 992px) {

    .about-hero {
        padding: 80px 0 70px;
    }

    .about-hero-content h1 {
        font-size: 52px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-company-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {

    .about-hero {
        padding: 58px 0 54px;
    }

    .about-hero-grid {
        gap: 42px;
    }

    .about-hero-content h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .about-hero-content > p {
        font-size: 16px;
        line-height: 1.75;
    }

    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .about-hero-actions .btn-landing-primary,
        .about-hero-actions .btn-landing-secondary {
            width: 100%;
        }

    .about-hero-visual {
        min-height: 410px;
    }

    .about-hero-card-main {
        top: 52px;
        right: 8px;
        left: 8px;
        min-height: 280px;
        padding: 28px 22px;
    }

    .about-hero-card-small {
        min-width: 205px;
        padding: 13px 14px;
    }

    .about-hero-card-top {
        top: 0;
        right: 0;
    }

    .about-hero-card-bottom {
        bottom: 0;
        left: 0;
    }

    .about-section-title {
        font-size: 38px;
    }

    .about-story-copy p,
    .about-platform-text {
        font-size: 15px;
        line-height: 1.78;
    }

    .about-company-card {
        padding: 28px 22px;
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .about-company-icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 23px;
    }
}

@media (max-width: 480px) {

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-visual {
        min-height: 430px;
    }

    .about-hero-card-main strong {
        font-size: 22px;
    }

    .about-hero-card-small {
        min-width: 185px;
    }

    .about-mini-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .about-section-title {
        font-size: 32px;
    }

    .about-platform-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-platform-items {
        padding: 18px;
    }

    .about-platform-item {
        align-items: flex-start;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    overflow: hidden;
    background: #ffffff;
}

/* =========================
   CONTACT HERO
========================= */

.contact-hero {
    position: relative;
    padding: 110px 0 100px;
    background: radial-gradient( circle at top right, rgba(124, 58, 237, .12), transparent 36% ), radial-gradient( circle at bottom left, rgba(124, 58, 237, .07), transparent 32% ), #ffffff;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
    align-items: center;
    gap: 72px;
}

.contact-hero-content h1 {
    max-width: 760px;
    margin: 0 0 26px;
    color: var(--text);
    font-size: 66px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.contact-hero-content > p {
    max-width: 690px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.85;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================
   CONTACT HERO PANEL
========================= */

.contact-hero-panel {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, .95);
    border-radius: 30px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 30px 74px rgba(15, 23, 42, .10);
    backdrop-filter: blur(16px);
}

.contact-hero-panel-head {
    min-height: 96px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
    background: radial-gradient( circle at top left, rgba(124, 58, 237, .10), transparent 50% ), #ffffff;
}

.contact-hero-panel-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 14px 32px rgba(124, 58, 237, .24);
}

.contact-hero-panel-head span,
.contact-hero-panel-head strong {
    display: block;
}

.contact-hero-panel-head span {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-hero-panel-head strong {
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.contact-hero-panel-items {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-hero-panel-item {
    min-height: 72px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #f8fafc;
}

    .contact-hero-panel-item > div:first-child {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: rgba(124, 58, 237, .09);
        color: var(--primary);
        font-size: 16px;
    }

    .contact-hero-panel-item span,
    .contact-hero-panel-item strong,
    .contact-hero-panel-item a {
        display: block;
    }

    .contact-hero-panel-item span {
        margin-bottom: 4px;
        color: #94a3b8;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .contact-hero-panel-item strong,
    .contact-hero-panel-item a {
        color: var(--text);
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        overflow-wrap: anywhere;
    }

        .contact-hero-panel-item a:hover {
            color: var(--primary);
        }

.contact-hero-panel-status {
    padding: 14px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(22, 163, 74, .16);
    border-radius: 15px;
    background: rgba(22, 163, 74, .07);
    color: #15803d;
    font-size: 12px;
    font-weight: 800;
}

    .contact-hero-panel-status span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 0 5px rgba(34, 197, 94, .10);
    }

/* =========================
   CONTACT CHANNELS
========================= */

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-channel-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 17px;
    border: 1px solid rgba(229, 231, 235, .95);
    border-radius: 26px;
    background: #ffffff;
    color: var(--text);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .contact-channel-card:hover {
        color: var(--text);
        text-decoration: none;
        transform: translateY(-4px);
        border-color: rgba(124, 58, 237, .22);
        box-shadow: 0 22px 52px rgba(15, 23, 42, .08);
    }

.contact-channel-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient( 135deg, rgba(124, 58, 237, .13), rgba(124, 58, 237, .06) );
    color: var(--primary);
    font-size: 20px;
}

.contact-channel-card span,
.contact-channel-card strong {
    display: block;
}

.contact-channel-card span {
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.contact-channel-card strong {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-channel-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.contact-channel-arrow {
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 14px;
    transition: color .18s ease, transform .18s ease;
}

.contact-channel-card:hover .contact-channel-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

/* =========================
   CONTACT COMPANY
========================= */

.contact-company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    align-items: start;
    gap: 56px;
}

.contact-company-content > p {
    max-width: 760px;
    margin: 22px 0 32px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.contact-section-title {
    margin: 0;
    color: var(--text);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.contact-company-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-company-detail {
    min-height: 76px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}

    .contact-company-detail > div:first-child {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: rgba(124, 58, 237, .09);
        color: var(--primary);
        font-size: 16px;
    }

    .contact-company-detail span,
    .contact-company-detail strong {
        display: block;
    }

    .contact-company-detail span {
        margin-bottom: 5px;
        color: #94a3b8;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .contact-company-detail strong {
        color: var(--text);
        font-size: 14px;
        font-weight: 800;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

/* =========================
   SOCIAL MEDIA CARD
========================= */

.contact-social-card {
    padding: 32px;
    border: 1px solid rgba(124, 58, 237, .16);
    border-radius: 28px;
    background: radial-gradient( circle at top right, rgba(124, 58, 237, .10), transparent 45% ), #ffffff;
    box-shadow: 0 24px 62px rgba(15, 23, 42, .07);
}

.contact-social-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-social-head-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 14px 32px rgba(124, 58, 237, .23);
}

.contact-social-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-social-head h3 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.contact-social-card > p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .contact-social-links a {
        min-height: 54px;
        padding: 12px 15px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 13px;
        border: 1px solid #e2e8f0;
        border-radius: 15px;
        background: #f8fafc;
        color: #475569;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
    }

        .contact-social-links a:hover {
            border-color: rgba(124, 58, 237, .24);
            background: rgba(124, 58, 237, .055);
            color: var(--primary);
            transform: translateX(3px);
        }

        .contact-social-links a > i:first-child {
            width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: #ffffff;
            color: var(--primary);
            box-shadow: 0 7px 16px rgba(15, 23, 42, .07);
        }

        .contact-social-links a > i:last-child {
            color: #94a3b8;
            font-size: 12px;
        }

.contact-social-empty {
    padding: 17px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border: 1px solid rgba(245, 158, 11, .20);
    border-radius: 15px;
    background: rgba(245, 158, 11, .07);
    color: #92400e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

    .contact-social-empty i {
        margin-top: 3px;
    }

/* =========================
   CONTACT MAP
========================= */

.contact-map-head {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

    .contact-map-head > div:first-child {
        max-width: 760px;
    }

    .contact-map-head p {
        margin: 20px 0 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.8;
    }

.contact-map-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, .95);
    border-radius: 30px;
    background: #e2e8f0;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .10);
}

    .contact-map-card iframe {
        width: 100%;
        height: 520px;
        display: block;
        border: 0;
        filter: saturate(.90) contrast(.96);
    }

.contact-map-overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    width: min(430px, calc(100% - 48px));
    padding: 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, .60);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
    backdrop-filter: blur(16px);
}

.contact-map-pin {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 13px 30px rgba(124, 58, 237, .24);
}

.contact-map-overlay span,
.contact-map-overlay strong {
    display: block;
}

.contact-map-overlay span {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-map-overlay strong {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

.contact-map-overlay p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .contact-hero-grid,
    .contact-company-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-panel,
    .contact-social-card {
        width: min(720px, 100%);
    }

    .contact-channel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {

    .contact-hero {
        padding: 80px 0 70px;
    }

    .contact-hero-content h1 {
        font-size: 52px;
    }

    .contact-section-title {
        font-size: 40px;
    }

    .contact-map-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {

    .contact-hero {
        padding: 58px 0 54px;
    }

    .contact-hero-grid {
        gap: 42px;
    }

    .contact-hero-content h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .contact-hero-content > p {
        font-size: 16px;
        line-height: 1.75;
    }

    .contact-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .contact-hero-actions .btn-landing-primary,
        .contact-hero-actions .btn-landing-secondary {
            width: 100%;
        }

    .contact-hero-panel {
        border-radius: 24px;
    }

    .contact-hero-panel-head {
        padding: 20px;
    }

    .contact-hero-panel-items {
        padding: 18px;
    }

    .contact-channel-card {
        padding: 22px 18px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .contact-channel-arrow {
        display: none;
    }

    .contact-section-title {
        font-size: 36px;
    }

    .contact-company-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .contact-social-card {
        padding: 24px 20px;
        border-radius: 23px;
    }

    .contact-map-card {
        min-height: 440px;
        border-radius: 23px;
    }

        .contact-map-card iframe {
            height: 440px;
        }

    .contact-map-overlay {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        padding: 16px;
        border-radius: 17px;
    }
}

@media (max-width: 480px) {

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-panel-head {
        align-items: flex-start;
    }

    .contact-hero-panel-item {
        align-items: flex-start;
    }

    .contact-channel-card {
        grid-template-columns: 1fr;
    }

    .contact-channel-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .contact-section-title {
        font-size: 32px;
    }

    .contact-company-detail {
        align-items: flex-start;
    }

    .contact-social-head {
        align-items: flex-start;
    }

    .contact-map-overlay {
        grid-template-columns: 1fr;
    }

    .contact-map-pin {
        width: 44px;
        height: 44px;
    }
}

/* =========================
   HERO PRODUCT MOCKUP
========================= */

.hero-product-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .14), 0 18px 46px rgba(124, 58, 237, .08);
}

/* =========================
   PRODUCT TOPBAR
========================= */

.hero-product-topbar {
    min-height: 72px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #e2e8f0;
    background: radial-gradient( circle at top left, rgba(124, 58, 237, .08), transparent 45% ), #ffffff;
}

.hero-product-brand {
    display: flex;
    align-items: center;
}

    .hero-product-brand img {
        width: 112px;
        height: auto;
        max-height: 46px;
        object-fit: contain;
        object-position: left center;
    }

.hero-product-search {
    width: min(420px, 100%);
    min-height: 42px;
    margin: 0 auto;
    padding: 0 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 12px;
}

    .hero-product-search i {
        font-size: 12px;
    }

    .hero-product-search kbd {
        padding: 3px 7px;
        border: 1px solid #e2e8f0;
        border-radius: 7px;
        background: #ffffff;
        color: #64748b;
        box-shadow: none;
        font-family: inherit;
        font-size: 9px;
        font-weight: 700;
    }

.hero-product-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hero-product-topbar-actions button {
        position: relative;
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: #ffffff;
        color: #64748b;
        font-size: 14px;
    }

        .hero-product-topbar-actions button span {
            position: absolute;
            top: 7px;
            right: 7px;
            width: 6px;
            height: 6px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            background: #ef4444;
        }

.hero-product-user {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(124, 58, 237, .20);
}

/* =========================
   PRODUCT BODY
========================= */

.hero-product-body {
    height: 620px;
    display: grid;
    grid-template-columns: 66px minmax(230px, .9fr) minmax(500px, 1.8fr) minmax(250px, .95fr);
    background: #f8fafc;
}

/* =========================
   PRODUCT SIDEBAR
========================= */

.hero-product-sidebar {
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #e2e8f0;
    background: #111827;
}

.hero-product-sidebar-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(124, 58, 237, .28);
}

.hero-product-sidebar nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-product-sidebar-item {
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #94a3b8;
    font-size: 15px;
}

    .hero-product-sidebar-item.active {
        background: rgba(124, 58, 237, .20);
        color: #c4b5fd;
    }

.hero-product-sidebar-badge {
    position: absolute;
    top: 3px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111827;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
}

.hero-product-sidebar-bottom {
    width: 100%;
    margin-top: auto;
}

/* =========================
   CONVERSATIONS
========================= */

.hero-product-conversations {
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
    background: #ffffff;
}

.hero-conversation-head {
    min-height: 76px;
    padding: 16px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

    .hero-conversation-head strong,
    .hero-conversation-head span {
        display: block;
    }

    .hero-conversation-head strong {
        margin-bottom: 3px;
        color: var(--text);
        font-size: 16px;
        font-weight: 800;
    }

    .hero-conversation-head span {
        color: #94a3b8;
        font-size: 10px;
    }

    .hero-conversation-head button,
    .hero-conversation-filter button {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: grid;
        place-items: center;
        border: 1px solid #e2e8f0;
        border-radius: 11px;
        background: #ffffff;
        color: var(--primary);
        font-size: 11px;
    }

.hero-conversation-filter {
    padding: 12px 14px 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

    .hero-conversation-filter > div {
        min-height: 36px;
        padding: 0 11px;
        display: flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #e2e8f0;
        border-radius: 11px;
        background: #f8fafc;
        color: #94a3b8;
        font-size: 9px;
    }

.hero-conversation-tabs {
    padding: 0 14px 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #e2e8f0;
}

    .hero-conversation-tabs span {
        position: relative;
        padding: 7px 0;
        color: #94a3b8;
        font-size: 9px;
        font-weight: 700;
    }

        .hero-conversation-tabs span.active {
            color: var(--primary);
        }

            .hero-conversation-tabs span.active::after {
                content: "";
                position: absolute;
                right: 0;
                bottom: -10px;
                left: 0;
                height: 2px;
                border-radius: 999px;
                background: var(--primary);
            }

.hero-conversation-list {
    display: flex;
    flex-direction: column;
}

.hero-conversation-row {
    min-width: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
}

    .hero-conversation-row.active {
        background: rgba(124, 58, 237, .055);
        box-shadow: inset 3px 0 0 var(--primary);
    }

.hero-conversation-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    color: #5b21b6;
    font-size: 10px;
    font-weight: 800;
}

    .hero-conversation-avatar.blue {
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        color: #1d4ed8;
    }

    .hero-conversation-avatar.orange {
        background: linear-gradient(135deg, #ffedd5, #fed7aa);
        color: #c2410c;
    }

    .hero-conversation-avatar .online {
        position: absolute;
        right: -1px;
        bottom: -1px;
        width: 10px;
        height: 10px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        background: #22c55e;
    }

.hero-conversation-copy {
    min-width: 0;
}

.hero-conversation-title {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

    .hero-conversation-title strong {
        overflow: hidden;
        color: var(--text);
        font-size: 11px;
        font-weight: 800;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-conversation-title time {
        flex: 0 0 auto;
        color: #94a3b8;
        font-size: 8px;
    }

.hero-conversation-preview {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 9px;
}

    .hero-conversation-preview i {
        flex: 0 0 auto;
        color: #22c55e;
        font-size: 10px;
    }

    .hero-conversation-preview span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.hero-conversation-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

    .hero-conversation-tags span {
        min-height: 18px;
        padding: 0 7px;
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        background: #f1f5f9;
        color: #64748b;
        font-size: 7px;
        font-weight: 800;
    }

        .hero-conversation-tags span.hot {
            background: rgba(239, 68, 68, .09);
            color: #dc2626;
        }

/* =========================
   CHAT
========================= */

.hero-product-chat {
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
    background: #ffffff;
}

.hero-chat-header {
    min-height: 76px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.hero-chat-contact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

    .hero-chat-contact > div:last-child {
        min-width: 0;
    }

    .hero-chat-contact strong,
    .hero-chat-contact span {
        display: block;
    }

    .hero-chat-contact strong {
        margin-bottom: 4px;
        color: var(--text);
        font-size: 13px;
        font-weight: 800;
    }

    .hero-chat-contact span {
        color: #94a3b8;
        font-size: 9px;
    }

        .hero-chat-contact span i {
            margin-right: 3px;
            color: #22c55e;
        }

.hero-chat-header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .hero-chat-header-actions button {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #ffffff;
        color: #64748b;
        font-size: 10px;
    }

.hero-chat-statusbar {
    min-height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

    .hero-chat-statusbar div {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #64748b;
        font-size: 8px;
        font-weight: 700;
    }

    .hero-chat-statusbar i {
        color: var(--primary);
    }

.status-open {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.hero-chat-messages {
    min-height: 0;
    overflow: hidden;
    padding: 14px 16px 8px;
    background: radial-gradient( circle at top right, rgba(124, 58, 237, .035), transparent 36% ), #f8fafc;
}

.hero-chat-date {
    width: fit-content;
    margin: 0 auto 12px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #64748b;
    font-size: 7px;
    font-weight: 800;
}

.hero-message-row {
    margin-bottom: 11px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

    .hero-message-row.outgoing {
        justify-content: flex-end;
    }

.hero-message-avatar {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #ddd6fe;
    color: #5b21b6;
    font-size: 7px;
    font-weight: 800;
}

.hero-message-row > div:last-child,
.hero-message-row.outgoing > div {
    max-width: 78%;
}

.hero-message-bubble {
    padding: 9px 11px;
    border: 1px solid #e2e8f0;
    border-radius: 6px 14px 14px 14px;
    background: #ffffff;
    color: #334155;
    font-size: 9px;
    line-height: 1.55;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .03);
}

.hero-message-row.outgoing .hero-message-bubble {
    border-color: rgba(124, 58, 237, .16);
    border-radius: 14px 6px 14px 14px;
    background: rgba(124, 58, 237, .07);
}

.hero-message-row time {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
    font-size: 7px;
}

.hero-message-row.outgoing time {
    text-align: right;
}

    .hero-message-row.outgoing time i {
        color: #3b82f6;
    }

.hero-message-sender {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
}

.hero-appointment-card {
    margin-top: 8px;
    padding: 8px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(22, 163, 74, .14);
    border-radius: 11px;
    background: rgba(255, 255, 255, .82);
}

.hero-appointment-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(22, 163, 74, .10);
    color: #16a34a;
    font-size: 10px;
}

.hero-appointment-card strong,
.hero-appointment-card span {
    display: block;
}

.hero-appointment-card strong {
    margin-bottom: 2px;
    color: var(--text);
    font-size: 8px;
    font-weight: 800;
}

.hero-appointment-card span {
    color: #64748b;
    font-size: 7px;
}

.hero-appointment-card > i {
    color: #16a34a;
    font-size: 11px;
}

.hero-chat-composer {
    padding: 10px 14px 12px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.hero-chat-ai-suggestion {
    width: fit-content;
    margin-bottom: 7px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    background: rgba(124, 58, 237, .07);
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
}

.hero-chat-composer-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

    .hero-chat-composer-row button {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #ffffff;
        color: #64748b;
        font-size: 10px;
    }

.hero-chat-input {
    min-height: 36px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 8px;
}

.hero-chat-composer-row .hero-chat-send {
    border-color: transparent;
    background: linear-gradient( 135deg, var(--primary), var(--primary-dark) );
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(124, 58, 237, .20);
}

/* =========================
   CUSTOMER PANEL
========================= */

.hero-product-customer {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
}

.hero-customer-profile {
    padding: 24px 18px 18px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.hero-customer-avatar {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    color: #5b21b6;
    font-size: 14px;
    font-weight: 800;
}

.hero-customer-profile > strong,
.hero-customer-profile > span {
    display: block;
}

.hero-customer-profile > strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.hero-customer-profile > span {
    color: #94a3b8;
    font-size: 8px;
}

.hero-customer-score {
    margin-top: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(239, 68, 68, .13);
    border-radius: 12px;
    background: rgba(239, 68, 68, .055);
}

    .hero-customer-score > i {
        color: #ef4444;
        font-size: 14px;
    }

    .hero-customer-score span,
    .hero-customer-score strong {
        display: block;
        text-align: left;
    }

    .hero-customer-score span {
        margin-bottom: 2px;
        color: #94a3b8;
        font-size: 7px;
        font-weight: 700;
    }

    .hero-customer-score strong {
        color: #b91c1c;
        font-size: 10px;
        font-weight: 800;
    }

.hero-customer-section {
    padding: 17px;
    border-bottom: 1px solid #e2e8f0;
}

    .hero-customer-section:last-child {
        border-bottom: 0;
    }

.hero-customer-section-head {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .hero-customer-section-head strong {
        color: var(--text);
        font-size: 10px;
        font-weight: 800;
    }

    .hero-customer-section-head i {
        color: #94a3b8;
        font-size: 8px;
    }

.hero-customer-detail {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #64748b;
    font-size: 8px;
    line-height: 1.5;
}

    .hero-customer-detail:last-child {
        margin-bottom: 0;
    }

    .hero-customer-detail i {
        width: 12px;
        flex: 0 0 12px;
        margin-top: 2px;
        color: var(--primary);
        text-align: center;
    }

.hero-customer-activity {
    margin-bottom: 11px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

    .hero-customer-activity:last-child {
        margin-bottom: 0;
    }

.hero-customer-activity-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(22, 163, 74, .09);
    color: #16a34a;
    font-size: 10px;
}

    .hero-customer-activity-icon.purple {
        background: rgba(124, 58, 237, .09);
        color: var(--primary);
    }

.hero-customer-activity strong,
.hero-customer-activity span {
    display: block;
}

.hero-customer-activity strong {
    margin-bottom: 2px;
    color: var(--text);
    font-size: 8px;
    font-weight: 800;
}

.hero-customer-activity span {
    color: #94a3b8;
    font-size: 7px;
}


/* =========================
   HERO PRODUCT RESPONSIVE
========================= */

@media (max-width: 1280px) {

    .hero-section .container-landing {
        max-width: 1180px;
    }

    .hero-product-body {
        grid-template-columns: 62px minmax(210px, .85fr) minmax(430px, 1.7fr);
    }

    .hero-product-customer {
        display: none;
    }
}

@media (max-width: 992px) {

    .hero-section {
        padding: 72px 0 76px;
    }

    .hero-grid {
        gap: 44px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-product-window {
        width: min(920px, 100%);
        margin: 0 auto;
    }

    .hero-product-body {
        height: 560px;
        grid-template-columns: 62px minmax(210px, .85fr) minmax(360px, 1.5fr);
    }
}

@media (max-width: 767.98px) {

    .hero-grid > div:first-child {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .hero-actions {
        justify-items: stretch;
    }

    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hero-product-body {
        height: 470px;
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .hero-product-sidebar {
        padding-right: 4px;
        padding-left: 4px;
    }

    .hero-product-sidebar-logo {
        width: 34px;
        height: 34px;
    }

    .hero-product-sidebar-item {
        width: 34px;
        height: 36px;
        font-size: 13px;
    }

    .hero-product-topbar {
        grid-template-columns: auto 1fr auto;
    }

    .hero-product-search {
        justify-self: end;
    }

    .hero-chat-contact .hero-conversation-avatar {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .hero-chat-contact strong {
        font-size: 11px;
    }

    .hero-chat-statusbar div:nth-child(3) {
        margin-left: auto;
    }

    .hero-message-bubble {
        font-size: 8px;
    }

    .hero-appointment-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

        .hero-appointment-card > i {
            display: none;
        }

    .hero-chat-ai-suggestion {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* =========================
   HERO PRODUCT MICRO ANIMATIONS
========================= */

.hero-product-window {
    animation: heroProductEnter .7s ease both;
}

.hero-conversation-row.active {
    animation: heroActiveConversation 4s ease-in-out infinite;
}

.hero-conversation-avatar .online,
.hero-product-topbar-actions button span,
.hero-chat-statusbar .status-open {
    animation: heroStatusPulse 2.2s ease-in-out infinite;
}

.hero-message-row.outgoing .hero-message-bubble {
    position: relative;
    overflow: hidden;
}

    .hero-message-row.outgoing .hero-message-bubble::after {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 42%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, .5), transparent );
        transform: skewX(-18deg);
        animation: heroAiShine 6s ease-in-out infinite;
    }

.hero-appointment-card {
    animation: heroAppointmentSuccess 4.5s ease-in-out infinite;
}

.hero-chat-ai-suggestion i {
    animation: heroAiIcon 2.8s ease-in-out infinite;
}

.hero-product-sidebar-item.active {
    animation: heroSidebarActive 3.5s ease-in-out infinite;
}

@keyframes heroProductEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroActiveConversation {
    0%, 100% {
        background: rgba(124, 58, 237, .055);
    }

    50% {
        background: rgba(124, 58, 237, .095);
    }
}

@keyframes heroStatusPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .18);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

@keyframes heroAiShine {
    0%, 65% {
        left: -80%;
    }

    85%, 100% {
        left: 140%;
    }
}

@keyframes heroAppointmentSuccess {
    0%, 100% {
        transform: translateY(0);
        box-shadow: none;
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(22, 163, 74, .10);
    }
}

@keyframes heroAiIcon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.08);
    }
}

@keyframes heroSidebarActive {
    0%, 100% {
        box-shadow: inset 0 0 0 1px rgba(196, 181, 253, 0);
    }

    50% {
        box-shadow: inset 0 0 0 1px rgba(196, 181, 253, .25);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-product-window,
    .hero-conversation-row.active,
    .hero-conversation-avatar .online,
    .hero-product-topbar-actions button span,
    .hero-chat-statusbar .status-open,
    .hero-message-row.outgoing .hero-message-bubble::after,
    .hero-appointment-card,
    .hero-chat-ai-suggestion i,
    .hero-product-sidebar-item.active {
        animation: none;
    }
}

/* =========================
   HERO PRODUCT MOBILE POLISH
========================= */

@media (max-width: 767.98px) {

    .hero-product-window {
        width: 100%;
        border-radius: 22px;
    }

    .hero-product-body {
        height: 540px;
        display: block;
    }

    .hero-product-sidebar,
    .hero-product-conversations,
    .hero-product-customer {
        display: none;
    }

    .hero-product-chat {
        width: 100%;
        height: 540px;
        border-right: 0;
    }

    .hero-product-topbar {
        min-height: 58px;
        padding: 0 12px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .hero-product-brand img {
        width: 90px;
        max-height: 42px;
    }

    .hero-product-search {
        display: none;
    }

    .hero-product-topbar-actions {
        justify-self: end;
    }

    .hero-product-user {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .hero-chat-header {
        min-height: 66px;
        padding: 11px 12px;
    }

    .hero-chat-header-actions button:nth-child(2),
    .hero-chat-header-actions button:nth-child(3) {
        display: none;
    }

    .hero-chat-statusbar {
        min-height: 38px;
        padding: 0 12px;
        gap: 12px;
    }

        .hero-chat-statusbar div {
            font-size: 8px;
        }

            .hero-chat-statusbar div:nth-child(2) {
                display: none;
            }

            .hero-chat-statusbar div:nth-child(3) {
                margin-left: auto;
            }

    .hero-chat-messages {
        padding: 12px 10px 8px;
    }

    .hero-message-row {
        margin-bottom: 10px;
    }

        .hero-message-row > div:last-child,
        .hero-message-row.outgoing > div {
            max-width: 88%;
        }

    .hero-message-bubble {
        padding: 9px 10px;
        font-size: 8px;
        line-height: 1.5;
    }

    .hero-message-avatar {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .hero-appointment-card {
        padding: 7px;
    }

    .hero-chat-composer {
        padding: 8px 10px 10px;
    }

    .hero-chat-ai-suggestion {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {

    .hero-product-body,
    .hero-product-chat {
        height: 520px;
    }

    .hero-chat-contact strong {
        font-size: 11px;
    }

    .hero-chat-contact span {
        font-size: 8px;
    }

    .hero-message-row > div:last-child,
    .hero-message-row.outgoing > div {
        max-width: 90%;
    }

    .hero-appointment-card > i {
        display: none;
    }
}

/* =========================
   MOBILE HERO POLISH
========================= */

@media (max-width: 767.98px) {

    .hero-section {
        padding: 42px 0 56px;
    }

        .hero-section .container-landing {
            padding-right: 18px;
            padding-left: 18px;
        }

    .hero-grid {
        gap: 32px;
    }

        .hero-grid > div:first-child {
            width: 100%;
            text-align: left;
        }

    .hero-title {
        max-width: 100%;
        margin: 0 0 20px;
        font-size: clamp(40px, 11vw, 50px);
        line-height: 1.02;
        letter-spacing: -.052em;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 0 26px;
        font-size: 16px;
        line-height: 1.68;
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 26px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

        .hero-actions .btn-landing-primary,
        .hero-actions .btn-landing-secondary {
            width: 100%;
            height: 54px;
            padding: 0 18px;
            border-radius: 16px;
            font-size: 16px;
        }

    .hero-trust {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-badge {
        width: 100%;
        min-height: 46px;
        height: auto;
        padding: 10px 12px;
        justify-content: flex-start;
        gap: 8px;
        border-radius: 14px;
        font-size: 12px;
        line-height: 1.35;
    }

        .hero-badge i {
            width: 18px;
            flex: 0 0 18px;
            text-align: center;
        }

    .hero-mockup {
        margin-top: 4px;
    }
}

@media (max-width: 430px) {

    .hero-section {
        padding-top: 34px;
    }

    .hero-title {
        font-size: 39px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        min-height: 44px;
    }
}

/* =========================
   MOBILE NAV FIX
========================= */

.landing-navbar-inner {
    position: relative;
}

.mobile-nav-toggle {
    position: relative;
    z-index: 1302;
}

@media (max-width: 992px) {

    .landing-navbar {
        overflow: visible;
    }

        .landing-navbar .container-landing {
            position: relative;
        }

    .mobile-nav {
        position: fixed;
        top: 88px;
        right: 16px;
        left: 16px;
        z-index: 1300;
        max-height: calc(100dvh - 108px);
        overflow-y: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        border: 1px solid rgba(229, 231, 235, .95);
        border-radius: 22px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 26px 70px rgba(15, 23, 42, .18), 0 10px 30px rgba(124, 58, 237, .08);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(.985);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

        .mobile-nav.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .mobile-nav a:not(.btn-landing-primary) {
            min-height: 46px;
            padding: 0 14px;
            display: flex;
            align-items: center;
            border-radius: 13px;
            color: #334155;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
        }

            .mobile-nav a:not(.btn-landing-primary):hover {
                background: rgba(124, 58, 237, .07);
                color: var(--primary);
            }

        .mobile-nav .landing-lang-form {
            width: 100%;
            margin: 4px 0;
        }

        .mobile-nav .landing-lang-btn {
            width: 100%;
            min-height: 46px;
            border-radius: 13px;
            box-shadow: none;
        }

        .mobile-nav .btn-landing-primary {
            width: 100%;
            min-height: 48px;
            margin-top: 4px;
        }

    .mobile-nav-toggle.active {
        border-color: rgba(124, 58, 237, .24);
        background: rgba(124, 58, 237, .08);
        color: var(--primary);
    }
}

@media (max-width: 576px) {

    .mobile-nav {
        top: 76px;
        right: 12px;
        left: 12px;
        max-height: calc(100dvh - 92px);
        padding: 16px;
        border-radius: 20px;
    }
}

/* =========================
   MOBILE NAV - FINAL FIX
========================= */

body.mobile-navigation-open {
    overflow: hidden;
}

.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 992px) {

    .landing-navbar {
        overflow: visible !important;
    }

    .landing-navbar-inner {
        position: relative;
    }

    .mobile-nav-toggle {
        position: relative;
        z-index: 5002;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        touch-action: manipulation;
    }

        .mobile-nav-toggle.is-open {
            border-color: rgba(124, 58, 237, .28);
            background: rgba(124, 58, 237, .09);
            color: var(--primary);
        }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 4998;
        display: block;
        background: rgba(15, 23, 42, .34);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(3px);
        transition: opacity .18s ease, visibility .18s ease;
    }

        .mobile-nav-backdrop.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

    .mobile-nav {
        position: fixed !important;
        top: 88px !important;
        right: 16px !important;
        left: 16px !important;
        z-index: 5001 !important;
        width: auto !important;
        max-height: calc(100dvh - 108px);
        margin: 0 !important;
        padding: 18px !important;
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        overflow-y: auto;
        border: 1px solid rgba(226, 232, 240, .98);
        border-radius: 22px;
        background: rgba(255, 255, 255, .99);
        box-shadow: 0 30px 80px rgba(15, 23, 42, .22), 0 12px 34px rgba(124, 58, 237, .10);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(.98);
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

        .mobile-nav.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .mobile-nav a:not(.btn-landing-primary) {
            min-height: 46px;
            padding: 0 14px;
            display: flex;
            align-items: center;
            border-radius: 13px;
            color: #334155;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
        }

            .mobile-nav a:not(.btn-landing-primary):hover,
            .mobile-nav a:not(.btn-landing-primary):active {
                background: rgba(124, 58, 237, .07);
                color: var(--primary);
            }

        .mobile-nav .landing-lang-form {
            width: 100%;
            margin: 2px 0;
        }

        .mobile-nav .landing-lang-btn {
            width: 100%;
            min-height: 46px;
            border-radius: 13px;
            box-shadow: none;
        }

        .mobile-nav .btn-landing-primary {
            width: 100%;
            min-height: 48px;
            margin-top: 4px;
        }
}

@media (max-width: 576px) {

    .mobile-nav {
        top: 76px !important;
        right: 12px !important;
        left: 12px !important;
        max-height: calc(100dvh - 92px);
        padding: 15px !important;
        border-radius: 19px;
    }
}