/* ============================================================
   LightPane Theme — Unified CSS for cloudsandlight.com
   Built on Bootstrap 5.3. Requires bootstrap.min.css loaded first.
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Varela+Round&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Brand colours */
    --lp-blue: #4550E6;
    --lp-blue-hover: #3640c9;
    --lp-blue-light: #eef0ff;
    --lp-royal: #0c3f97;
    --lp-navy: #1a1d2e;
    --lp-midnight: #252930;
    --lp-sky: #5b99ea;
    --lp-indigo: #667eea;
    --lp-soft-white: #dbe0f8;

    /* Semantic colours */
    --lp-ok: #16a34a;
    --lp-warning: #d97706;
    --lp-danger: #dc2626;
    --lp-neutral: #6b7280;

    /* Surfaces */
    --lp-bg: #ffffff;
    --lp-bg-alt: #f5f6fe;
    --lp-bg-section: #f0f2f7;
    --lp-border: #eef0f4;
    --lp-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --lp-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);

    /* Text */
    --lp-text: #252930;
    --lp-text-muted: #5a6282;
    --lp-text-subtle: #9ba3bf;
    --lp-text-on-dark: #ffffff;

    /* Typography */
    --lp-font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --lp-font-mono: 'SF Mono', 'Fira Code', Consolas, 'Liberation Mono', monospace;

    /* Spacing */
    --lp-space-xs: 4px;
    --lp-space-sm: 8px;
    --lp-space-md: 16px;
    --lp-space-lg: 24px;
    --lp-space-xl: 48px;
    --lp-space-2xl: 80px;

    /* Radii */
    --lp-radius-sm: 4px;
    --lp-radius-md: 8px;
    --lp-radius-lg: 12px;
}

/* --- Base --- */
body {
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--lp-midnight);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
}

a {
    color: var(--lp-blue);
    text-decoration: none;
    transition: color 0.15s;
}
a:hover {
    color: var(--lp-blue-hover);
    text-decoration: underline;
}

/* --- Navbar (Royal Blue with white text) --- */
.lp-navbar {
    background: var(--lp-royal);
    border-bottom: none;
    padding: 0.6rem 0;
    transition: box-shadow 0.2s;
}
.lp-navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.lp-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}
.lp-navbar .navbar-brand span {
    color: rgba(255, 255, 255, 0.85);
}
.lp-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    transition: color 0.15s;
}
.lp-navbar .nav-link:hover,
.lp-navbar .nav-link.active {
    color: #fff;
}
.lp-navbar .nav-link .fa-external-link-alt {
    font-size: 0.65rem;
    margin-left: 3px;
    opacity: 0.5;
}
.lp-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}
.lp-navbar .navbar-toggler-icon {
    filter: invert(1);
}
.lp-navbar .btn-lp-primary {
    background: #fff;
    color: var(--lp-royal);
}
.lp-navbar .btn-lp-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--lp-royal);
}

/* --- Buttons --- */
.btn-lp-primary {
    background: var(--lp-blue);
    color: #fff;
    border: none;
    border-radius: var(--lp-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.4rem;
    transition: background 0.15s, transform 0.1s;
}
.btn-lp-primary:hover {
    background: var(--lp-blue-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-lp-secondary {
    background: transparent;
    color: var(--lp-blue);
    border: 1.5px solid var(--lp-blue);
    border-radius: var(--lp-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.4rem;
    transition: background 0.15s, color 0.15s;
}
.btn-lp-secondary:hover {
    background: var(--lp-blue);
    color: #fff;
}

.btn-lp-ghost {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: var(--lp-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.4rem;
    transition: background 0.15s;
}
.btn-lp-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* --- Hero Section --- */
.lp-hero {
    background: linear-gradient(135deg, var(--lp-indigo) 0%, var(--lp-blue) 50%, var(--lp-navy) 100%);
    color: #fff;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}
/* Clouds.jpg hero variant */
.lp-hero.lp-hero-clouds {
    background: url('/assets/img/clouds.jpg') center/cover no-repeat;
}
.lp-hero.lp-hero-clouds::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}
.lp-hero.lp-hero-clouds .container {
    position: relative;
    z-index: 1;
}
.lp-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero.lp-hero-clouds::after {
    display: none;
}

/* Cloud provider badges in hero */
.lp-provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.lp-provider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.lp-provider-badge i {
    font-size: 0.9rem;
}
.lp-provider-badge.lp-provider-soon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    font-weight: 400;
    font-style: italic;
}
.lp-hero h1 {
    color: #fff;
    font-size: 2.5rem;
}
.lp-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 600px;
    font-weight: 400;
}
/* Hero text backdrop */
.lp-hero-textbox {
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: var(--lp-radius-lg);
    padding: 2.5rem 2rem;
    display: inline-block;
}

/* Centred hero variant with brand heading */
.lp-hero-brand {
    font-family: 'Varela Round', var(--lp-font);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 400; /* Varela Round only has 400 */
    text-transform: uppercase;
    letter-spacing: 0.8rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.lp-hero-tagline {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.lp-hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}
@media (min-width: 768px) {
    .lp-hero { padding: 9rem 0 6rem; }
    .lp-hero h1 { font-size: 3rem; }
    .lp-hero .lead { font-size: 1.25rem; }
    .lp-hero-brand { font-size: 4rem; }
    .lp-hero-tagline { font-size: 1.4rem; }
    .lp-hero-sub { font-size: 1.4rem; }
}
@media (min-width: 1200px) {
    .lp-hero-brand { font-size: 6.5rem; line-height: 6.5rem; letter-spacing: 0.8rem; }
}

/* Increase hero height on wide screens to show more of the lake/sky image */
@media (min-width: 1900px) {
    .lp-hero { padding: 10.5rem 0 7.5rem; }
}
@media (min-width: 2200px) {
    .lp-hero { padding: 12rem 0 9rem; }
}
@media (min-width: 2500px) {
    .lp-hero { padding: 13.5rem 0 10.5rem; }
}
@media (min-width: 2800px) {
    .lp-hero { padding: 15rem 0 12rem; }
}

/* --- Sections --- */
.lp-section {
    padding: 4rem 0;
}
.lp-section-alt {
    background: var(--lp-bg-alt);
}
.lp-section-dark {
    background: var(--lp-navy);
    color: var(--lp-text-on-dark);
}
.lp-section-dark h2,
.lp-section-dark h3 {
    color: #fff;
}
.lp-section-dark p {
    color: rgba(255,255,255,0.8);
}

@media (min-width: 768px) {
    .lp-section { padding: 5rem 0; }
}

.lp-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.lp-section-title h2 {
    margin-bottom: 0.75rem;
}
.lp-section-title p {
    color: var(--lp-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- Cards --- */
.lp-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    box-shadow: var(--lp-shadow);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.15s, box-shadow 0.15s;
}
.lp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg);
}
.lp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lp-radius-md);
    background: var(--lp-blue-light);
    color: var(--lp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.lp-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.lp-card p {
    color: var(--lp-text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}
.lp-card .card-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.88rem;
}

/* --- Pillar Cards (two-column feature highlights) --- */
.lp-pillar {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    padding: 2rem;
    box-shadow: var(--lp-shadow);
}
.lp-pillar h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--lp-blue);
}
.lp-pillar p {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
}

/* --- Founder / Quote section --- */
.lp-founder {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.lp-founder-photo {
    width: 160px;
    flex-shrink: 0;
    border-radius: var(--lp-radius-md);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    overflow: hidden;
}
.lp-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-founder blockquote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    color: rgba(255,255,255,0.9);
}
.lp-founder cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}
.lp-founder cite span {
    display: block;
    font-weight: 400;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

@media (max-width: 576px) {
    .lp-founder {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- Live Demo Embed Section --- */
.lp-demo-embed {
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--lp-shadow-lg);
}
.lp-demo-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
}

/* --- Pricing --- */
.lp-pricing-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.15s, box-shadow 0.15s;
}
.lp-pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg);
}
.lp-pricing-card.featured {
    border-color: var(--lp-blue);
    box-shadow: 0 0 0 2px var(--lp-blue), var(--lp-shadow);
}
.lp-pricing-card .tier-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.lp-pricing-card .tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lp-midnight);
    margin: 0.75rem 0 0.25rem;
}
.lp-pricing-card .tier-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--lp-text-muted);
}
.lp-pricing-card .tier-desc {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin-bottom: 1.25rem;
}
.lp-pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}
.lp-pricing-card ul li {
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
}
.lp-pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--lp-ok);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* --- CTA Banner --- */
.lp-cta-banner {
    text-align: center;
    padding: 3.5rem 1rem;
}
.lp-cta-banner h2 {
    margin-bottom: 0.75rem;
}
.lp-cta-banner p {
    color: var(--lp-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* --- Footer --- */
.lp-footer {
    background: var(--lp-midnight);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 2rem;
    font-size: 0.88rem;
}
.lp-footer h6 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.lp-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.15s;
}
.lp-footer a:hover {
    color: #fff;
    text-decoration: none;
}
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.lp-footer-bottom a {
    display: inline;
    padding: 0;
}

/* --- Utility --- */
.text-lp-blue { color: var(--lp-blue); }
.text-lp-muted { color: var(--lp-text-muted); }
.bg-lp-alt { background: var(--lp-bg-alt); }
.lp-badge {
    display: inline-block;
    background: var(--lp-blue-light);
    color: var(--lp-blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --- Step indicators --- */
.lp-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lp-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* --- Blog --- */
.lp-blog-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}
.lp-blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg);
}
.lp-blog-card .blog-body {
    padding: 1.5rem;
}
.lp-blog-card .blog-date {
    font-size: 0.8rem;
    color: var(--lp-text-subtle);
    margin-bottom: 0.5rem;
}
.lp-blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.lp-blog-card p {
    color: var(--lp-text-muted);
    font-size: 0.9rem;
}

/* --- Pillars (deep blue section below hero) --- */
.lp-pillars-deep {
    background: var(--lp-royal);
    padding: 4rem 0 6rem;
}
.lp-pillars-deep .lp-pillar-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.lp-pillars-deep .lp-pillar-body {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}
.lp-pillars-fade {
    height: 40px;
    background: linear-gradient(to bottom, var(--lp-royal) 0%, var(--lp-sky) 100%);
}
@media (min-width: 768px) {
    .lp-pillars-deep { padding: 5rem 0 4rem; }
    .lp-pillars-deep .lp-pillar-heading { font-size: 2rem; }
    .lp-pillars-deep .lp-pillar-body { font-size: 1.1rem; }
}

/* --- Forms (contact page) --- */
.lp-form-group {
    margin-bottom: 1.25rem;
}
.lp-form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--lp-text);
}
.lp-form-group input,
.lp-form-group textarea,
.lp-form-group select {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-family: var(--lp-font);
    font-size: 0.92rem;
    border: 1px solid var(--lp-blue);
    border-radius: var(--lp-radius-sm);
    background: var(--lp-bg);
    color: var(--lp-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-form-group input:focus,
.lp-form-group textarea:focus,
.lp-form-group select:focus {
    outline: none;
    border-color: var(--lp-blue);
    box-shadow: 0 0 0 3px rgba(69, 80, 230, 0.12);
}
.lp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Contact info cards --- */
.lp-contact-info-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--lp-shadow);
}
.lp-contact-info-card h4 {
    margin-bottom: 0.5rem;
}
.lp-contact-info-card p {
    color: var(--lp-text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}
.lp-contact-info-card .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--lp-radius-md);
    background: var(--lp-blue-light);
    color: var(--lp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* --- Legal pages (terms, privacy) --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--lp-midnight);
}
.legal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--lp-text-muted);
}
.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--lp-text-muted);
}
.legal-content ul {
    padding-left: 1.25rem;
}
.legal-content li {
    margin-bottom: 0.3rem;
}
.legal-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--lp-radius-md);
    padding: 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.legal-info {
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    padding: 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.legal-date {
    font-size: 0.9rem;
    color: var(--lp-text-subtle);
    margin-bottom: 1.5rem;
}

/* --- Hero (compact variant for inner pages) --- */
.lp-hero-compact {
    padding: 7rem 0 3rem;
}
.lp-hero-compact h1 {
    color: #fff;
    font-size: 2rem;
}

/* --- Screenshot/demo placeholder --- */
.lp-screenshot-placeholder {
    background: var(--lp-navy);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--lp-radius-md);
    padding: 3rem;
    text-align: center;
}
.lp-screenshot-placeholder i {
    color: var(--lp-sky);
}
.lp-screenshot-placeholder h4 {
    color: #fff;
}
.lp-screenshot-placeholder p {
    max-width: 400px;
    margin: 0.5rem auto 0;
    font-size: 0.9rem;
}

/* --- About page --- */
.lp-founder-photo-large {
    width: 200px;
    height: 200px;
    font-size: 5rem;
    margin: 0 auto;
}
.lp-card-icon-centered {
    margin: 0 auto 1rem;
}

/* --- Feature list (product page) --- */
.lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-feature-list li {
    padding: 0.6rem 0;
    color: var(--lp-text-muted);
    font-size: 0.92rem;
}
.lp-feature-list li i {
    color: var(--lp-ok);
    margin-right: 0.5rem;
}

/* --- Founding customer banner (pricing page) --- */
.lp-founding-banner {
    background: var(--lp-blue-light);
    border: 1px solid var(--lp-blue);
    border-radius: var(--lp-radius-md);
    padding: 2rem;
    text-align: center;
}
.lp-founding-banner h3 {
    color: var(--lp-blue);
    margin-bottom: 0.5rem;
}
/* --- FAQ accordion (pricing page) --- */
.lp-faq .accordion-item {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.lp-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
}
.lp-faq .accordion-body {
    font-size: 0.92rem;
    color: var(--lp-text-muted);
}

.lp-founding-banner p {
    color: var(--lp-text-muted);
    max-width: 550px;
    margin: 0 auto 1rem;
    font-size: 0.95rem;
}
