/* ============================================================
   landing.css — SEO Landing Page Styles
   Ported from LandingPage.css (React).
   Used by Django SSR templates: landing.html, model_detail.html
   ============================================================ */

/* ── Google Fonts (loaded in HTML, imported here as fallback) ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Custom props ── */
:root {
    --lp-bg: #060606;
    --lp-bg2: #0a0a0a;
    --lp-card: #111118;
    --lp-border: rgba(255, 255, 255, 0.07);
    --lp-text: #f0f2f5;
    --lp-muted: #a7aaba;
    --lp-accent1: #667eea;
    --lp-accent2: #764ba2;
    --lp-orange: #e8642a;
    --lp-grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --lp-grad-alt: linear-gradient(90deg, #e8642a 0%, #764ba2 60%);
    --lp-r: 20px;
}

.lp-light {
    --lp-bg: #ffffff;
    --lp-bg2: #f4f6f9;
    --lp-card: #ffffff;
    --lp-border: #e6e9ee;
    --lp-text: #101828;
    --lp-muted: #667085;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Base ── */
.lp {
    min-height: 100vh;
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Pill label ── */
.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--lp-muted);
    font-family: 'Manrope', sans-serif;
    margin-bottom: 20px;
}

.lp-light .lp-pill {
    background: #f4f6f9;
    border-color: #e6e9ee;
    color: #667085;
}

/* ── Gradient text ── */
.lp-grad-text {
    background: var(--lp-grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Accent star ✦ ── */
.lp-star {
    background: var(--lp-grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 52px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.lp-nav-scrolled {
    background: rgba(8, 8, 10, 0.92);
    border-bottom: 1px solid var(--lp-border);
}

.lp-light .lp-nav {
    background: transparent;
}

.lp-light .lp-nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-nav-brand {
    font-size: 19px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.3px;
    text-decoration: none;
}

.lp-nav-dot {
    color: var(--lp-accent1);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lp-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lp-nav-link:hover {
    color: var(--lp-text);
}

.lp-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Theme button */
.lp-theme-btn {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lp-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.lp-theme-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lp-light .lp-theme-btn {
    background: #f4f6f9;
}

/* Buttons */
.lp-btn-accent {
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--lp-grad);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.lp-btn-accent:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(102, 126, 234, 0.4);
}

.lp-btn-accent:active {
    transform: scale(0.98);
}

.lp-btn-lg {
    padding: 15px 32px;
    font-size: 15px;
    border-radius: 999px;
}

.lp-btn-ghost {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--lp-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.lp-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.lp-light .lp-btn-ghost {
    border-color: #e6e9ee;
    color: #101828;
}

.lp-light .lp-btn-ghost:hover {
    border-color: #9aa4b2;
    background: #f4f6f9;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 48px 80px;
}

.lp-model-hero {
    min-height: auto;
    padding: 160px 48px 80px;
}

.lp-hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.lp-hero-bg-static {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(60, 40, 120, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(30, 60, 140, 0.4) 0%, transparent 65%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(10, 10, 30, 0.9) 0%, transparent 80%),
        #06060a;
    pointer-events: none;
}

.lp-light .lp-hero-bg-static {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(102, 126, 234, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(232, 100, 42, 0.06) 0%, transparent 80%),
        #ffffff;
}

.lp-hero-bg-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(6, 6, 6, 0.45) 0%, rgba(6, 6, 6, 0.25) 50%, rgba(6, 6, 6, 0.75) 100%);
    pointer-events: none;
}

.lp-light .lp-hero-bg-veil {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.85) 100%);
}

.lp-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.lp-glow-l {
    background: radial-gradient(circle, rgba(232, 100, 42, 0.18) 0%, transparent 70%);
    left: -150px;
    top: -100px;
}

.lp-glow-r {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    right: -150px;
    bottom: -100px;
}

.lp-hero-body {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.lp-hero-pill {
    margin-bottom: 28px;
}

.lp-hero-title {
    font-size: clamp(32px, 8vw, 78px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--lp-text);
    margin: 0 0 22px;
    word-break: break-word;
}

.lp-hero-sub {
    font-size: 17px;
    color: var(--lp-muted);
    line-height: 1.65;
    margin: 0 0 36px;
    font-weight: 400;
}

.lp-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Scrolling model strip */
.lp-strip-wrap {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    margin: 0 -48px;
}

.lp-strip {
    display: flex;
    gap: 12px;
    animation: lp-scroll 22s linear infinite;
    width: max-content;
}

@keyframes lp-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lp-strip-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
    white-space: nowrap;
}

.lp-strip-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    object-fit: contain;
}

/* ══════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════ */
.lp-section {
    padding: 80px 52px;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.lp-section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--lp-text);
    margin-bottom: 14px;
}

.lp-section-sub {
    font-size: 16px;
    color: var(--lp-muted);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 44px;
}

/* ══════════════════════════════════════════════════════════
   STAT CARDS
   ══════════════════════════════════════════════════════════ */
.lp-facts-section {
    background: transparent;
}

.lp-stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.lp-stat-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-r);
    padding: 32px 28px 28px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
}

.lp-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-grad);
    opacity: 0;
    transition: opacity 0.25s;
}

.lp-stat-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.lp-stat-card:hover::after {
    opacity: 1;
}

.lp-light .lp-stat-card {
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.05);
}

.lp-stat-card-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-muted);
    margin-bottom: 12px;
}

.lp-stat-card-value {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    background: var(--lp-grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.lp-stat-card-desc {
    font-size: 15px;
    color: var(--lp-text);
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.45;
}

.lp-stat-card-detail {
    font-size: 13px;
    color: var(--lp-muted);
    padding-top: 16px;
    border-top: 1px solid var(--lp-border);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   FEATURE IMAGE CARDS
   ══════════════════════════════════════════════════════════ */
.lp-img-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 44px;
}

.lp-img-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-img-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.lp-img-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.lp-img-card:hover .lp-img-card-bg {
    transform: scale(1.06);
}

.lp-img-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.lp-img-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: left;
}

.lp-img-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 7px;
    line-height: 1.3;
}

.lp-img-card-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-orange);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ══════════════════════════════════════════════════════════
   MODEL CARDS (from DB)
   ══════════════════════════════════════════════════════════ */
.lp-models-section {
    padding-top: 0;
}

.lp-model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 44px;
    text-align: left;
}

.lp-model-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: var(--lp-text);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    position: relative;
}

.lp-model-card:hover {
    box-shadow: 0 8px 36px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
    border-color: rgba(102, 126, 234, 0.35);
}

.lp-model-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 6px;
}

.lp-model-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
}

.lp-model-icon-fallback {
    background: var(--lp-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.lp-model-cat {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
}

.lp-model-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--lp-text);
    line-height: 1.2;
}

.lp-model-sub {
    font-size: 13px;
    color: var(--lp-muted);
    line-height: 1.4;
}

.lp-model-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-muted);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    padding: 3px 10px;
    width: fit-content;
    margin-top: 2px;
}

.lp-model-arrow {
    margin-top: auto;
    padding-top: 14px;
}

.lp-models-cta {
    margin-top: 36px;
}

/* ══════════════════════════════════════════════════════════
   BENTO GRID
   ══════════════════════════════════════════════════════════ */
.lp-bento-section {
    padding-top: 0;
}

.lp-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: 460px;
    margin-top: 44px;
}

.lp-bento-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.25s, box-shadow 0.25s;
}

.lp-bento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.lp-bento-large {
    grid-row: span 2;
}

.lp-bento-video,
.lp-bento-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
}

.lp-bento-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    text-align: left;
    z-index: 2;
}

.lp-bento-chip {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-orange);
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.lp-bento-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.lp-bento-title-sm {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.lp-bento-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-bento-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.lp-faq-section {
    text-align: left;
    max-width: 860px;
}

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 44px;
}

.lp-faq-item {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    transition: border-color 0.2s;
}

.lp-faq-item.open {
    border-color: rgba(102, 126, 234, 0.35);
}

.lp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    gap: 12px;
    -webkit-tap-highlight-color: transparent;
}

.lp-faq-q-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lp-faq-q-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--lp-muted);
}

.lp-faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-muted);
    transition: transform 0.24s ease, background 0.2s;
}

.lp-light .lp-faq-chevron {
    background: #f4f6f9;
}

.lp-faq-item.open .lp-faq-chevron {
    transform: rotate(180deg);
    background: rgba(102, 126, 234, 0.15);
    color: #a89cf7;
}

.lp-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lp-faq-item.open .lp-faq-body {
    max-height: 2000px;
}

.lp-faq-content {
    padding: 0 22px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--lp-muted);
    overflow-wrap: break-word;
    word-break: break-word;
}

.lp-faq-content p {
    margin: 0 0 8px;
}

.lp-faq-content p:last-child {
    margin-bottom: 0;
}

.lp-faq-content ul,
.lp-faq-content ol {
    margin: 6px 0 8px 16px;
}

.lp-faq-content li {
    margin-bottom: 4px;
}

.lp-faq-content strong,
.lp-faq-content b {
    color: var(--lp-text);
    font-weight: 700;
}

.lp-faq-content a {
    color: #a89cf7;
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.lp-cta-wrap {
    padding: 60px 52px 80px;
}

.lp-cta {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--lp-card);
    padding: 72px 60px;
    text-align: center;
    overflow: hidden;
}

.lp-light .lp-cta {
    background: #f4f6f9;
    border-color: #e6e9ee;
}

.lp-cta-glow-l {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(232, 100, 42, 0.2) 0%, transparent 70%);
    left: -80px;
    top: -80px;
}

.lp-cta-glow-r {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    right: -80px;
    bottom: -80px;
}

.lp-cta-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--lp-text);
    margin: 0 0 16px;
}

.lp-cta-sub {
    font-size: 16px;
    color: var(--lp-muted);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.lp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.lp-footer {
    padding: 28px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--lp-border);
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-footer-copy {
    font-size: 13px;
    color: var(--lp-muted);
}

.lp-footer-links {
    display: flex;
    gap: 24px;
}

.lp-footer-link {
    font-size: 13px;
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lp-footer-link:hover {
    color: var(--lp-text);
}

/* ══════════════════════════════════════════════════════════
   SUBSCRIPTION PLANS
   ══════════════════════════════════════════════════════════ */
.lp-sub-section {
    padding-top: 0;
}

.lp-sub-scroll-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 40px;
}

.lp-sub-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lp-muted);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-top: 2px;
}

.lp-sub-arrow:hover {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.4);
    color: var(--lp-text);
}

.lp-light .lp-sub-arrow {
    background: #f4f6f9;
    border-color: #e6e9ee;
}

.lp-sub-cards-wrap {
    flex: 1;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.lp-sub-cards-wrap::-webkit-scrollbar {
    display: none;
}

.lp-sub-card {
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: start;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-text);
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.lp-sub-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: var(--lp-grad);
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.lp-sub-card:hover {
    box-shadow: 0 10px 44px rgba(102, 126, 234, 0.18);
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.38);
}

.lp-sub-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-sub-card-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--lp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-sub-card-days {
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-muted);
    margin-top: 2px;
}

.lp-sub-card-desc {
    font-size: 12px;
    color: var(--lp-muted);
    line-height: 1.5;
    margin: 0;
}

.lp-sub-card-limits {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 10px 12px;
}

.lp-light .lp-sub-card-limits {
    background: #f7f8fa;
    border-color: #e6e9ee;
}

.lp-sub-limit-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
}

.lp-sub-limit-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lp-accent1);
    flex-shrink: 0;
    opacity: 0.7;
}

.lp-sub-limit-name {
    flex: 1;
    color: var(--lp-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-sub-limit-val {
    color: var(--lp-muted);
    font-weight: 600;
    white-space: nowrap;
    font-size: 10px;
}

.lp-sub-accent {
    background: var(--lp-grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.lp-sub-limit-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-sub-models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding-left: 12px;
}

.lp-sub-model-chip {
    font-size: 9px;
    font-weight: 600;
    color: var(--lp-muted);
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.18);
    border-radius: 6px;
    padding: 2px 6px;
    white-space: nowrap;
}

.lp-light .lp-sub-model-chip {
    background: rgba(102, 126, 234, 0.06);
    border-color: rgba(102, 126, 234, 0.2);
}

.lp-sub-card-price {
    margin-top: auto;
    background: var(--lp-grad);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25);
    transition: opacity 0.2s, box-shadow 0.2s;
}

.lp-sub-card:hover .lp-sub-card-price {
    opacity: 0.92;
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.38);
}

/* ══════════════════════════════════════════════════════════
   MODEL DETAIL (mini-landing) additions
   ══════════════════════════════════════════════════════════ */
.lp-breadcrumb {
    font-size: 13px;
    color: var(--lp-muted);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.lp-breadcrumb a {
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lp-breadcrumb a:hover {
    color: var(--lp-text);
}

.lp-model-hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.lp-model-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: contain;
}

.lp-model-vendor-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-model-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}

.lp-model-caps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}

.lp-model-cap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.03);
}

.lp-model-cap-free {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.08);
    color: #34d399;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .lp-nav {
        padding: 14px 24px;
    }

    .lp-nav-links {
        display: none;
    }

    .lp-section {
        padding: 48px 24px;
    }

    .lp-hero {
        padding: 60px 24px;
        min-height: auto;
    }

    .lp-model-hero {
        padding: 120px 24px 60px;
    }

    .lp-stat-cards {
        grid-template-columns: 1fr;
    }

    .lp-img-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-bento {
        height: auto;
        grid-template-columns: 1fr;
    }

    .lp-cta-wrap {
        padding: 40px 24px 60px;
    }

    .lp-cta {
        padding: 48px 28px;
    }

    .lp-footer {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .lp-hero {
        padding: 140px 20px 100px;
        min-height: 100svh;
    }

    .lp-model-hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .lp-hero-pill {
        display: none;
    }

    .lp-hero-title {
        font-size: clamp(24px, 7.5vw, 38px);
        letter-spacing: -0.8px;
        line-height: 1.12;
        margin-top: 16px;
    }

    .lp-hero-sub {
        font-size: 12px;
        line-height: 1.5;
        margin: 0 0 24px;
    }

    .lp-hero-actions {
        gap: 8px;
        margin-bottom: 36px;
    }

    .lp-hero-actions .lp-btn-lg {
        padding: 11px 20px;
        font-size: 13px;
    }

    .lp-strip-wrap {
        margin: 0 -20px;
    }

    .lp-strip-chip {
        font-size: 11px;
        padding: 5px 10px;
        gap: 5px;
    }

    .lp-strip-icon {
        width: 14px;
        height: 14px;
    }

    .lp-nav {
        padding: 14px 20px;
    }

    .lp-img-cards {
        grid-template-columns: 1fr;
    }

    .lp-model-grid {
        grid-template-columns: 1fr;
    }

    .lp-sub-scroll-row {
        gap: 8px;
    }

    .lp-sub-card {
        width: 180px;
        padding: 14px;
    }

    .lp-model-hero-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 400px) {
    .lp-hero-title {
        font-size: 22px;
        letter-spacing: -0.3px;
    }

    .lp-hero-actions .lp-btn-lg {
        padding: 10px 16px;
        font-size: 12px;
    }

    .lp-hero-sub {
        font-size: 11px;
    }
}