/*
 * public_base.css — Landing Page
 * ─────────────────────────────────────────────────────────
 * Self-contained styles for home.html.
 * Bootstrap is NOT loaded on the landing page.
 * Design tokens (colors, fonts) come from chardou.css :root.
 *
 * 0.  Bootstrap shim (shared component helpers)
 * 1.  Tokens & reset
 * 2.  Layout
 * 3.  Navbar + mobile nav
 * 4.  Language picker (custom dropdown)
 * 5.  Buttons
 * 6.  Hero (dot-grid, announcement pill)
 * 7.  Trust strip
 * 8.  Section base
 * 9.  Features
 * 10. Compliance
 * 11. Story
 * 12. News
 * 13. Pricing
 * 14. CTA
 * 15. Footer
 * 16. Responsive
 */


/* ═══════════════════════════════════════════════════════
   0. BOOTSTRAP SHIM
   The landing page does not load Bootstrap CSS.
   These minimal utilities cover shared components
   (compliance-card, cat-card…) that still reference them.
═══════════════════════════════════════════════════════ */

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.small      { font-size: 0.875rem !important; }
.fw-bold    { font-weight: 700 !important; }
.fw-medium  { font-weight: 500 !important; }
.fst-italic { font-style: italic !important; }


/* ═══════════════════════════════════════════════════════
   1. TOKENS & RESET
═══════════════════════════════════════════════════════ */

:root {
    --lp-dark:    #0D1B2A;   /* navy — strips, footer, cta */
    --lp-navy:    #0F172A;   /* headlines */
    --lp-sub:     #475569;   /* body copy / subtitles */
    --lp-edge:    #E2E8F0;   /* borders */
    --lp-radius:  6px;       /* card / button corner radius */
}

*, *::before, *::after { box-sizing: border-box; }


/* ═══════════════════════════════════════════════════════
   2. LAYOUT
═══════════════════════════════════════════════════════ */

.lp-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ═══════════════════════════════════════════════════════
   3. NAVBAR + MOBILE NAV
═══════════════════════════════════════════════════════ */

.lp-navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-edge);
}

.lp-navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.5px;
    color: var(--lp-navy);
    text-decoration: none;
    flex-shrink: 0;
}
.lp-brand:hover { color: var(--lp-navy); }

.lp-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.lp-nav-link {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: var(--lp-sub);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}
.lp-nav-link:hover {
    color: var(--lp-navy);
    border-bottom-color: var(--color-primary);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Hamburger — desktop hidden */
.lp-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    color: var(--lp-sub);
    font-size: 1.3rem;
    line-height: 1;
}


/* ═══════════════════════════════════════════════════════
   4. LANGUAGE PICKER  (custom dropdown, no <select>)
═══════════════════════════════════════════════════════ */

.lp-lang-picker { position: relative; }

.lp-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.7rem;
    height: 34px;
    background: transparent;
    border: 1px solid var(--lp-edge);
    border-radius: var(--lp-radius);
    color: var(--lp-sub);
    font-size: 0.78rem;
    font-family: var(--font-ui);
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}
.lp-lang-btn:hover {
    border-color: #94A3B8;
    color: var(--lp-navy);
    background: #F8FAFC;
}
.lp-lang-btn i:first-child { font-size: 0.88rem; }

.lp-lang-chevron {
    font-size: 0.6rem;
    margin-left: 0.1rem;
    transition: transform 0.2s ease;
    opacity: 0.55;
}
.lp-lang-picker--open .lp-lang-chevron  { transform: rotate(180deg); }
.lp-lang-picker--open .lp-lang-btn      {
    border-color: var(--color-primary);
    color: var(--lp-navy);
    background: #F8FAFC;
}

/* Dropdown panel */
.lp-lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--lp-edge);
    border-radius: var(--lp-radius);
    box-shadow: 0 8px 30px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.06);
    padding: 0.3rem;
    z-index: 300;
    list-style: none;
    margin: 0;
}
.lp-lang-picker--open .lp-lang-menu { display: block; }

/* Each option is a form submit button */
.lp-lang-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.55rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--lp-sub);
    font-size: 0.83rem;
    font-family: var(--font-ui);
    cursor: pointer;
    text-align: left;
    transition: background 0.1s ease, color 0.1s ease;
    gap: 0.75rem;
}
.lp-lang-item:hover {
    background: var(--bg-body);
    color: var(--lp-navy);
}
.lp-lang-item--active {
    color: var(--color-primary);
    font-weight: 600;
}
.lp-lang-code {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--lp-sub);
    opacity: 0.55;
    flex-shrink: 0;
}
.lp-lang-item--active .lp-lang-code {
    color: var(--color-primary);
    opacity: 0.65;
}


/* ═══════════════════════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════════════════════ */

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.3rem;
    font-size: 0.875rem;
    font-family: var(--font-ui);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--lp-radius);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    line-height: 1.4;
}
.lp-btn:active { transform: scale(0.97); }

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-sub);
    border-color: var(--lp-edge);
}
.lp-btn--ghost:hover {
    background: #F8FAFC;
    color: var(--lp-navy);
    border-color: #94A3B8;
}

.lp-btn--red {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.lp-btn--red:hover {
    background: var(--color-primary-hover);
    color: #fff;
    border-color: var(--color-primary-hover);
}

.lp-btn--dark {
    background: var(--lp-navy);
    color: #fff;
    border-color: var(--lp-navy);
}
.lp-btn--dark:hover {
    background: #1E293B;
    color: #fff;
}

.lp-btn--outline-white {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.22);
}
.lp-btn--outline-white:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.42);
}

.lp-btn--lg {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
}


/* ═══════════════════════════════════════════════════════
   6. HERO
═══════════════════════════════════════════════════════ */

.lp-hero {
    position: relative;
    background: #fff;
    padding: 5.5rem 0 0;
    overflow: hidden;
}

/* Subtle dot-grid that fades out toward center — characteristic Mistral look */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    /* Mask: visible only in the top-right quadrant where the screenshot is */
    mask-image: radial-gradient(ellipse 75% 70% at 75% 0%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 75% 0%, black 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle red radial glow from the top-left (behind the headline) */
.lp-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -100px;
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(204,42,13,0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero > .lp-wrap { position: relative; z-index: 1; }

.lp-hero-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
}

/* Announcement pill — replaces the beta bar */
.lp-announce {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary-soft);
    border: 1px solid rgba(204,42,13,0.16);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.28rem 0.75rem 0.28rem 0.45rem;
    border-radius: 9999px;
    margin-bottom: 1.75rem;
    text-decoration: none;
    width: fit-content;
}
.lp-announce:hover {
    background: rgba(204,42,13,0.09);
    color: var(--color-primary);
}

/* Pulsing dot */
.lp-announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    animation: lp-pulse 2.2s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

.lp-announce-arrow {
    font-size: 0.65rem;
    margin-left: 0.15rem;
    opacity: 0.6;
}

/* Headline — thin/bold contrast like Mistral */
.lp-hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 300;
    letter-spacing: -2.5px;
    line-height: 1.06;
    color: var(--lp-navy);
    margin-bottom: 1.5rem;
}
.lp-hero-headline strong {
    font-weight: 700;
    letter-spacing: -2.5px;
}
.lp-hero-accent { color: var(--color-primary); }

.lp-hero-sub {
    font-size: 1.05rem;
    color: var(--lp-sub);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.25rem;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    align-items: center;
}

.lp-hero-note {
    font-size: 0.8rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.lp-hero-note i { color: #22C55E; font-size: 0.875rem; }

/* Screenshot mockup */
.lp-screenshot-outer { padding-top: 1rem; }
.lp-screenshot-frame {
    background: #F8FAFC;
    border: 1px solid var(--lp-edge);
    border-radius: var(--lp-radius) var(--lp-radius) 0 0;
    border-bottom: none;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15,23,42,0.14), 0 4px 16px rgba(15,23,42,0.06);
}
.lp-screenshot-chrome {
    background: #F1F5F9;
    border-bottom: 1px solid var(--lp-edge);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.lp-chrome-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lp-chrome-dot--red    { background: #FF5F56; }
.lp-chrome-dot--yellow { background: #FFBD2E; }
.lp-chrome-dot--green  { background: #27C93F; }
.lp-chrome-url {
    flex: 1;
    background: #fff;
    border: 1px solid var(--lp-edge);
    border-radius: 4px;
    height: 20px;
    margin: 0 0.5rem;
}
.lp-screenshot-img {
    display: block;
    width: 100%;
    height: auto;
}


/* ═══════════════════════════════════════════════════════
   7. TRUST STRIP
═══════════════════════════════════════════════════════ */

.lp-trust {
    background: var(--lp-dark);
    padding: 1.2rem 0;
}
.lp-trust-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.lp-trust-label {
    color: rgba(255,255,255,0.28);
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.lp-trust-item {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.lp-trust-item i { color: rgba(255,255,255,0.25); font-size: 0.875rem; }


/* ═══════════════════════════════════════════════════════
   8. SECTION BASE
═══════════════════════════════════════════════════════ */

.lp-section        { padding: 6rem 0; }
.lp-section--alt   { background: #F8FAFC; }
.lp-section--white { background: #fff; }
.lp-section--dark  { background: var(--lp-dark); }

.lp-section-header { margin-bottom: 3.5rem; }

.lp-overline {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}
.lp-section-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -1.2px;
    color: var(--lp-navy);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.lp-section-sub {
    font-size: 1rem;
    color: var(--lp-sub);
    line-height: 1.75;
    max-width: 540px;
}


/* ═══════════════════════════════════════════════════════
   9. FEATURES
═══════════════════════════════════════════════════════ */

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.lp-feature-card {
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--lp-edge);
    border-radius: var(--lp-radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.08);
    border-color: #CBD5E1;
}

.lp-feature-icon {
    width: 42px;
    height: 42px;
    background: var(--color-primary-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.lp-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}
.lp-feature-body {
    font-size: 0.875rem;
    color: var(--lp-sub);
    line-height: 1.75;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════
   10. COMPLIANCE  (cards styled in chardou.css)
═══════════════════════════════════════════════════════ */

.lp-compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}


/* ═══════════════════════════════════════════════════════
   11. STORY
═══════════════════════════════════════════════════════ */

.lp-story-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 5rem;
    align-items: start;
}
.lp-story-text {
    font-size: 1rem;
    color: var(--lp-sub);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Cat card row layout */
.lp-cat-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.lp-cat-name    { font-weight: 600; margin: 0; font-size: 0.95rem; color: var(--lp-navy); }
.lp-cat-breed   { font-size: 0.82rem; color: var(--lp-sub); margin: 0; }
.lp-cat-credit  { display: flex; align-items: center; gap: 0.75rem; }
.lp-cat-heart   { font-size: 1.25rem; }
.lp-cat-credit-text { font-size: 0.875rem; color: var(--lp-sub); margin: 0; }
.font-bold      { font-weight: 600; }

.lp-quote-card-text  { margin: 0; line-height: 1.75; font-style: italic; font-size: 0.875rem; }
.lp-story-quote-wrap { margin-top: 1rem; }


/* ═══════════════════════════════════════════════════════
   12. NEWS
═══════════════════════════════════════════════════════ */

.lp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.lp-news-card {
    background: #fff;
    border: 1px solid var(--lp-edge);
    border-radius: var(--lp-radius);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.07);
    border-color: #CBD5E1;
    color: inherit;
}
.lp-news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}
.lp-source-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border: 1px solid;
    border-radius: 4px;
    flex-shrink: 0;
}
.lp-source-badge--urssaf {
    color: #1A4FA0; border-color: #C3D4F0; background: #EEF3FB;
}
.lp-source-badge--gov {
    color: #166534; border-color: #A7E3BE; background: #F0FDF4;
}
.lp-source-badge--bpi {
    color: #B45309; border-color: #FDE68A; background: #FFFBEB;
}
.lp-news-date {
    font-size: 0.72rem;
    color: #94A3B8;
    font-family: var(--font-mono);
}
.lp-news-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lp-navy);
    line-height: 1.45;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}
.lp-news-excerpt {
    font-size: 0.8rem;
    color: var(--lp-sub);
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-news-readmore {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
}
.lp-news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--lp-sub);
    font-size: 0.875rem;
    border: 1px dashed var(--lp-edge);
    border-radius: var(--lp-radius);
}
.lp-news-empty-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.35;
}


/* ═══════════════════════════════════════════════════════
   13. PRICING
═══════════════════════════════════════════════════════ */

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.lp-pricing-card {
    background: #fff;
    border: 1px solid var(--lp-edge);
    border-radius: var(--lp-radius);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}
.lp-pricing-card:hover {
    box-shadow: 0 8px 28px rgba(15,23,42,0.07);
}
.lp-pricing-card--pro { border: 2px solid var(--color-primary); }

.lp-pricing-plan {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-sub);
    margin-bottom: 1.25rem;
}
.lp-pricing-plan--pro { color: var(--color-primary); }

.lp-pricing-price {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -2px;
    color: var(--lp-navy);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.lp-pricing-price--sm { font-size: 1.5rem; letter-spacing: -0.5px; }

.lp-pricing-period {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}
.lp-pricing-divider {
    border: none;
    border-top: 1px solid var(--lp-edge);
    margin-bottom: 1.25rem;
}
.lp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}
.lp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--lp-sub);
    line-height: 1.45;
}
.lp-check-list li i {
    color: var(--color-success);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════
   14. CTA
═══════════════════════════════════════════════════════ */

.lp-cta { background: var(--lp-dark); padding: 6rem 0; text-align: center; }
.lp-cta-inner  { max-width: 520px; margin: 0 auto; }
.lp-cta-logo   { height: 48px; margin-bottom: 2rem; opacity: 0.8; }
.lp-cta-title  {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.lp-cta-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1.25rem;
}


/* ═══════════════════════════════════════════════════════
   15. FOOTER
═══════════════════════════════════════════════════════ */

.lp-footer {
    background: var(--lp-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 0 2rem;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.lp-footer-brand {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.5px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 0.5rem;
}
.lp-footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.65;
    margin: 0;
}
.lp-footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.lp-footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.15s ease;
}
.lp-footer-links a:hover { color: rgba(255,255,255,0.75); }
.lp-footer-contact { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.lp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.lp-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin: 0; }
.lp-footer-logo { opacity: 0.2; }


/* ═══════════════════════════════════════════════════════
   16. RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .lp-hero-layout    { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .lp-features-grid  { grid-template-columns: repeat(2, 1fr); }
    .lp-pricing-grid   { grid-template-columns: repeat(2, 1fr); }
    .lp-story-grid     { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .lp-footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .lp-wrap           { padding: 0 1.25rem; }
    .lp-navbar-inner   { padding: 0 1.25rem; height: 56px; }
    .lp-trust-inner    { padding: 0 1.25rem; }

    /* Mobile nav */
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--lp-edge);
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
        z-index: 199;
    }
    .lp-nav-links.lp-nav-open { display: flex; }
    .lp-nav-link  { height: auto; padding: 0.75rem 1.5rem; border-bottom: none; }
    .lp-nav-actions { display: none; }
    .lp-nav-toggle  { display: flex; }

    .lp-hero          { padding: 3.5rem 0 0; }
    .lp-hero-layout   { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-hero-headline { font-size: clamp(2.2rem, 8vw, 2.8rem); letter-spacing: -1.5px; }
    .lp-hero-sub      { max-width: 100%; }

    .lp-trust-label  { display: none; }
    .lp-trust-inner  { gap: 1.25rem; }

    .lp-section       { padding: 4rem 0; }
    .lp-section-title { font-size: 1.8rem; }

    .lp-features-grid   { grid-template-columns: 1fr; }
    .lp-compliance-grid { grid-template-columns: 1fr; }
    .lp-story-grid      { grid-template-columns: 1fr; gap: 2rem; }
    .lp-news-grid       { grid-template-columns: 1fr; }
    .lp-pricing-grid    { grid-template-columns: 1fr; }
    .lp-footer-grid     { grid-template-columns: 1fr; gap: 1.5rem; }

    .lp-cta-title     { font-size: 1.8rem; }
    .lp-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    /* Language picker shifts inside mobile nav */
    .lp-lang-menu { right: auto; left: 0; }
}
