/* ═══════════════════════════════════════════════════════════════════════
   landing-premium.css  —  VixUnit CRM landing page
   All rules scoped under .landing-vix  →  zero bleed into internal app
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Root / Design tokens ─────────────────────────────────────────────── */
.landing-vix {
    /* Brand */
    --lp-brand:       #0a6a82;
    --lp-brand-deep:  #074f61;
    --lp-accent:      #d08a2f;
    /* Neutral surface */
    --lp-bg:          #ffffff;
    --lp-surface:     #f7f9fc;
    --lp-line:        #dce5ed;
    --lp-shadow-soft: 0 4px 18px rgba(14, 38, 56, 0.08);
    --lp-shadow:      0 8px 28px rgba(14, 38, 56, 0.12);
    /* Text */
    --lp-text:        #132c3f;
    --lp-muted:       #4e6778;
    /* Module accent palette */
    --lp-teal:        #0a6a82;  --lp-teal-bg:    #e6f4f8;
    --lp-green:       #1a7c52;  --lp-green-bg:   #e4f4ec;
    --lp-violet:      #5c3fa3;  --lp-violet-bg:  #eeebf9;
    --lp-amber:       #b86a0b;  --lp-amber-bg:   #fef3e2;
    --lp-coral:       #c03a2b;  --lp-coral-bg:   #fdecea;
    --lp-emerald:     #167558;  --lp-emerald-bg: #e3f5ef;
    --lp-indigo:      #2e5fd6;  --lp-indigo-bg:  #eaeffd;

    color: var(--lp-text);
    font-size: 16px;
    font-family: "Noto Sans", "Inter", system-ui, -apple-system, sans-serif;
    background: var(--lp-bg);
}

/* ── Typography baseline ──────────────────────────────────────────────── */
.landing-vix h1,
.landing-vix h2,
.landing-vix h3,
.landing-vix h4 {
    font-family: "Manrope", "Noto Sans", sans-serif;
    line-height: 1.18;
}

/* ── Wrapper ──────────────────────────────────────────────────────────── */
.landing-vix .lp-wrapper {
    width: min(1260px, calc(100% - 2.4rem));
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════ */
.landing-vix .lp-hero {
    padding: 4.5rem 0 3.2rem;
    background: #ffffff;
    border-bottom: 1px solid var(--lp-line);
}

.landing-vix .lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.8rem;
    align-items: stretch;
}

.landing-vix .lp-hero-copy {
    text-align: left;
    padding: 0.5rem 0;
}

.landing-vix .lp-kicker {
    margin: 0 0 0.55rem;
    color: var(--lp-brand);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.landing-vix .lp-kicker strong { font-weight: 700; }

.landing-vix .lp-brand-mark {
    color: var(--lp-brand);
    font-weight: 900;
}

.landing-vix .lp-hero h1 {
    margin: 0;
    color: #0c2638;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    font-weight: 800;
    max-width: 18ch;
}

.landing-vix .lp-lead {
    margin: 1rem 0 1.4rem;
    max-width: 60ch;
    color: #2e4e64;
    font-size: 1.08rem;
    line-height: 1.72;
}

/* chips ----------------------------------------------------------------- */
.landing-vix .lp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.2rem;
}

.landing-vix .lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: "Manrope", "Noto Sans", sans-serif;
    letter-spacing: 0.01em;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Each chip gets its own signature color */
.landing-vix .lp-chip:nth-child(1) {
    background: #0a6a82;
    color: #ffffff;
}
.landing-vix .lp-chip:nth-child(1) i { color: #9fe4f3; }

.landing-vix .lp-chip:nth-child(2) {
    background: #1a7c52;
    color: #ffffff;
}
.landing-vix .lp-chip:nth-child(2) i { color: #7fe8b8; }

.landing-vix .lp-chip:nth-child(3) {
    background: #5c3fa3;
    color: #ffffff;
}
.landing-vix .lp-chip:nth-child(3) i { color: #c8b9f5; }

/* ── Module grid (left panel - below chips) ─────────────────────────── */
.landing-vix .lp-modules-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.landing-vix .lp-module-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.42rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e0e6ee;
    transition: all 0.15s ease;
    cursor: default;
}

.landing-vix .lp-module-icon:hover {
    background: #f0f5fb;
    border-color: #b8cad7;
    transform: translateY(-2px);
}

.landing-vix .lp-module-icon i {
    font-size: 1.3rem;
    color: var(--lp-brand);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-vix .lp-module-icon span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #132c3f;
    line-height: 1.25;
    font-family: "Manrope", "Noto Sans", sans-serif;
}

/* ── Module grid (left panel) ────────────────────────────────────────── */
.landing-vix .lp-modules-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.landing-vix .lp-module-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.42rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e0e6ee;
    transition: all 0.15s ease;
    cursor: default;
}

.landing-vix .lp-module-icon:hover {
    background: #f0f5fb;
    border-color: #b8cad7;
    transform: translateY(-2px);
}

.landing-vix .lp-module-icon i {
    font-size: 1.3rem;
    color: var(--lp-brand);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-vix .lp-module-icon span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #132c3f;
    line-height: 1.25;
    font-family: "Manrope", "Noto Sans", sans-serif;
}

/* ── Right callout card ───────────────────────────────────────────────── */
.landing-vix .lp-callout {
    border: 1px solid #c8d8e5;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--lp-shadow);
    padding: 1.5rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-vix .lp-callout h2 {
    margin: 0;
    color: #0c2638;
    font-size: 1.45rem;
    font-weight: 800;
}

.landing-vix .lp-callout-lead {
    margin: 0.35rem 0 0.85rem;
    color: #3d5d74;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Compact bullet-point feature list */
.landing-vix .lp-focus-list {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    flex: 1;
}

.landing-vix .lp-focus-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    background: #f8fbff;
    border-left: 3px solid transparent;
    transition: background 0.15s;
}

.landing-vix .lp-focus-item:nth-child(1) { border-left-color: var(--lp-teal); }
.landing-vix .lp-focus-item:nth-child(2) { border-left-color: var(--lp-amber); }
.landing-vix .lp-focus-item:nth-child(3) { border-left-color: var(--lp-green); }
.landing-vix .lp-focus-item:nth-child(4) { border-left-color: var(--lp-violet); }

.landing-vix .lp-focus-item:hover { background: #edf5fc; }

.landing-vix .lp-focus-item i {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.landing-vix .lp-focus-item:nth-child(1) i { background: var(--lp-teal-bg);   color: var(--lp-teal); }
.landing-vix .lp-focus-item:nth-child(2) i { background: var(--lp-amber-bg);  color: var(--lp-amber); }
.landing-vix .lp-focus-item:nth-child(3) i { background: var(--lp-green-bg);  color: var(--lp-green); }
.landing-vix .lp-focus-item:nth-child(4) i { background: var(--lp-violet-bg); color: var(--lp-violet); }

.landing-vix .lp-focus-item strong {
    color: #122d42;
    font-size: 0.91rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: "Manrope", "Noto Sans", sans-serif;
}

/* Hide verbose descriptions — highlights only */
.landing-vix .lp-focus-item span {
    display: none;
}

/* ── Callout CTA card (replaces old callout-foot) ─────────────────────── */
.landing-vix .lp-callout-cta-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    margin-top: 0.8rem;
    border: 1px solid #c0d4e2;
    border-radius: 14px;
    background: linear-gradient(135deg, #e6f3f8 0%, #fef9f3 100%);
    padding: 0.8rem 0.9rem;
}

.landing-vix .lp-callout-cta-card > i {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-brand);
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}

.landing-vix .lp-callout-cta-card strong {
    display: block;
    color: #0c2537;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
    font-family: "Manrope", "Noto Sans", sans-serif;
}

.landing-vix .lp-callout-cta-card span {
    display: block;
    margin-top: 0.16rem;
    color: #3c5a70;
    font-size: 0.86rem;
    line-height: 1.46;
}

/* ══════════════════════════════════════════════════════════════════════
   SHARED SECTION CHROME
   ══════════════════════════════════════════════════════════════════════ */
.landing-vix .lp-section {
    padding: 3.6rem 0;
}

.landing-vix .lp-section-header {
    margin-bottom: 2rem;
}

.landing-vix .lp-section-title {
    margin: 0 0 0.45rem;
    color: #0c2638;
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    letter-spacing: -0.01em;
    font-weight: 800;
}

.landing-vix .lp-section-sub {
    margin: 0;
    color: var(--lp-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 72ch;
}

/* ══════════════════════════════════════════════════════════════════════
   PILLARS SECTION
   ══════════════════════════════════════════════════════════════════════ */
.landing-vix .lp-section-pillars {
    background: #ffffff;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
}

.landing-vix .lp-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.landing-vix .lp-pillar-card {
    border-radius: 18px;
    padding: 1.5rem 1.3rem;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-soft);
    border-top: 4px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.landing-vix .lp-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
}

.landing-vix .lp-pillar-teal { border-top-color: var(--lp-teal); }
.landing-vix .lp-pillar-green { border-top-color: var(--lp-green); }
.landing-vix .lp-pillar-violet { border-top-color: var(--lp-violet); }

.landing-vix .lp-pillar-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
    flex-shrink: 0;
}

.landing-vix .lp-pillar-teal  .lp-pillar-icon { background: var(--lp-teal-bg);   color: var(--lp-teal); }
.landing-vix .lp-pillar-green  .lp-pillar-icon { background: var(--lp-green-bg);  color: var(--lp-green); }
.landing-vix .lp-pillar-violet .lp-pillar-icon { background: var(--lp-violet-bg); color: var(--lp-violet); }

.landing-vix .lp-pillar-card h3 {
    margin: 0 0 0.5rem;
    color: #0c2638;
    font-size: 1.18rem;
    font-weight: 800;
}

.landing-vix .lp-pillar-card p {
    margin: 0 0 0.6rem;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
}

/* ── Module tag strip ─────────────────────────────────────────────────── */
.landing-vix .lp-module-strip {
    display: none;
}

/* ══════════════════════════════════════════════════════════════════════
   MODULE SECTION  (10 cards)
   ══════════════════════════════════════════════════════════════════════ */
.landing-vix .lp-section-modules {
    background: #ffffff;
    border-top: 1px solid var(--lp-line);
}

.landing-vix .lp-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.landing-vix .lp-module-card {
    border-radius: 16px;
    padding: 1.15rem 1.05rem;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-top: 3px solid transparent;
    box-shadow: var(--lp-shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.landing-vix .lp-module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow);
}

/* icon box */
.landing-vix .lp-mc-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.landing-vix .lp-module-card h3 {
    margin: 0 0 0.45rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0c2638;
    line-height: 1.3;
}

.landing-vix .lp-module-card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.88rem;
    line-height: 1.58;
    flex: 1;
}

/* color variants */
.landing-vix .lp-c-teal    { border-top-color: var(--lp-teal); }
.landing-vix .lp-c-teal    .lp-mc-icon { background: var(--lp-teal-bg);    color: var(--lp-teal); }
.landing-vix .lp-c-green   { border-top-color: var(--lp-green); }
.landing-vix .lp-c-green   .lp-mc-icon { background: var(--lp-green-bg);   color: var(--lp-green); }
.landing-vix .lp-c-violet  { border-top-color: var(--lp-violet); }
.landing-vix .lp-c-violet  .lp-mc-icon { background: var(--lp-violet-bg);  color: var(--lp-violet); }
.landing-vix .lp-c-amber   { border-top-color: var(--lp-amber); }
.landing-vix .lp-c-amber   .lp-mc-icon { background: var(--lp-amber-bg);   color: var(--lp-amber); }
.landing-vix .lp-c-coral   { border-top-color: var(--lp-coral); }
.landing-vix .lp-c-coral   .lp-mc-icon { background: var(--lp-coral-bg);   color: var(--lp-coral); }
.landing-vix .lp-c-emerald { border-top-color: var(--lp-emerald); }
.landing-vix .lp-c-emerald .lp-mc-icon { background: var(--lp-emerald-bg); color: var(--lp-emerald); }
.landing-vix .lp-c-indigo  { border-top-color: var(--lp-indigo); }
.landing-vix .lp-c-indigo  .lp-mc-icon { background: var(--lp-indigo-bg);  color: var(--lp-indigo); }

/* ── Shared narrative points list ────────────────────────────────────── */
.landing-vix .lp-narrative-points {
    display: none;
}

/* ══════════════════════════════════════════════════════════════════════
   CONTACT BAR
   ══════════════════════════════════════════════════════════════════════ */
.landing-vix .lp-contact {
    background: #ffffff;
    border-top: 1px solid var(--lp-line);
}

.landing-vix .lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    border: 1px solid var(--lp-line);
    border-radius: 18px;
    background: #ffffff;
    padding: 1.3rem 1.5rem;
    box-shadow: var(--lp-shadow-soft);
}

.landing-vix .lp-contact-grid .lp-section-title { margin-bottom: 0.3rem; }

.landing-vix .lp-contact-grid p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
}

.landing-vix .lp-contact-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.landing-vix .lp-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-brand);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid #c5d8e4;
    border-radius: 10px;
    padding: 0.58rem 0.9rem;
    background: #f5fafd;
    font-family: "Manrope", "Noto Sans", sans-serif;
    transition: background 0.15s, border-color 0.15s;
}

.landing-vix .lp-inline-link:hover {
    background: #e8f3fa;
    border-color: #a8cade;
    text-decoration: none;
}

.landing-vix .lp-inline-link-primary {
    background: var(--lp-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(10, 106, 130, 0.28);
}

.landing-vix .lp-inline-link-primary:hover {
    background: var(--lp-brand-deep);
    color: #ffffff;
    border-color: transparent;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .landing-vix .lp-module-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1059px) {
    .landing-vix .lp-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-vix .lp-hero h1 { max-width: none; }

    .landing-vix .lp-modules-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-vix .lp-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-vix .lp-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-vix .lp-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .landing-vix {
        font-size: 15px;
    }

    .landing-vix .lp-wrapper {
        width: min(100%, calc(100% - 1.2rem));
    }

    .landing-vix .lp-hero {
        padding: 3rem 0 2.4rem;
    }

    .landing-vix .lp-modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-vix .lp-pillar-grid,
    .landing-vix .lp-module-grid {
        grid-template-columns: 1fr;
    }

    .landing-vix .lp-contact-actions {
        flex-direction: column;
    }

    .landing-vix .lp-inline-link {
        width: 100%;
        justify-content: center;
    }
}

