/* ============================================================
   RxMart Landing Page Styles
   ============================================================ */

:root {
    --lp-primary: #38989D;
    --lp-primary-light: #51a5a9;
    --lp-primary-dark: #336B6B;
    /* Light: soft cool base — less harsh than pure white between sections */
    --lp-bg: #edf3f3;
    --lp-bg-alt: #f4f9f9;
    --lp-surface: #ffffff;
    --lp-surface-border: rgba(0,0,0,0.06);
    --lp-text: #111827;
    --lp-text-muted: #6b7280;
    --lp-text-faint: #9ca3af;
    /* Striped bands read clearly against --lp-bg */
    --lp-section-bg: #dfeaed;
    --lp-card-bg: #ffffff;
    --lp-card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --lp-card-hover-shadow: 0 8px 30px rgba(56,152,157,0.10), 0 2px 8px rgba(0,0,0,0.06);
    --lp-glow: rgba(56,152,157,0.25);
    --lp-glow-strong: rgba(56,152,157,0.45);
    --lp-marquee-bg: #d5e6e7;
    --lp-marquee-text: #336B6B;
    --lp-footer-divider: rgba(0,0,0,0.06);
    --lp-radius: 16px;
    --lp-radius-sm: 10px;
    --lp-container: 1140px;
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Hero full-bleed scrim (readable text over dashboard BG) */
    --lp-hero-scrim-solid: rgba(237, 243, 243, 0.93);
    --lp-hero-scrim-mid: rgba(237, 243, 243, 0.65);
    --lp-hero-scrim-fade: rgba(237, 243, 243, 0.22);
}

[data-theme="dark"] {
    --lp-bg: #0a0f14;
    --lp-bg-alt: #0e1419;
    --lp-surface: #141b22;
    --lp-surface-border: rgba(255,255,255,0.06);
    --lp-text: #f0f2f5;
    --lp-text-muted: #8b95a2;
    --lp-text-faint: #5a6370;
    --lp-section-bg: #0e1419;
    --lp-card-bg: #161d25;
    --lp-card-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
    --lp-card-hover-shadow: 0 8px 30px rgba(56,152,157,0.15), 0 2px 8px rgba(0,0,0,0.3);
    --lp-glow: rgba(56,152,157,0.2);
    --lp-glow-strong: rgba(56,152,157,0.4);
    --lp-marquee-bg: #111920;
    --lp-marquee-text: #51a5a9;
    --lp-footer-divider: rgba(255,255,255,0.06);
    --lp-hero-scrim-solid: rgba(10, 15, 20, 0.9);
    --lp-hero-scrim-mid: rgba(10, 15, 20, 0.5);
    --lp-hero-scrim-fade: rgba(10, 15, 20, 0.12);
}

/* ── Page wrapper ──────────────────────────────────── */

.lp-page {
    position: relative;
    overflow-x: hidden;
    font-family: var(--lp-font);
    color: var(--lp-text);
    background-color: var(--lp-bg);
    /* Light: subtle teal washes (removed in dark theme below) */
    background-image:
        radial-gradient(ellipse 110% 55% at 50% -15%, rgba(56, 152, 157, 0.11) 0%, transparent 52%),
        radial-gradient(ellipse 65% 40% at 95% 35%, rgba(51, 107, 107, 0.07) 0%, transparent 48%),
        radial-gradient(ellipse 50% 35% at 5% 70%, rgba(56, 152, 157, 0.05) 0%, transparent 45%);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

[data-theme="dark"] .lp-page {
    background-image: none;
}

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

/* Below-fold content-visibility for faster initial paint */
.lp-cv-auto {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.lp-container {
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Ambient background elements ───────────────────── */

.lp-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lp-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    filter: blur(60px);
    will-change: transform, opacity;
}

.lp-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56,152,157,0.24) 0%, transparent 70%);
    top: 5%;
    left: -5%;
}

.lp-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(51,107,107,0.20) 0%, transparent 70%);
    top: 40%;
    right: -8%;
}

.lp-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56,152,157,0.18) 0%, transparent 70%);
    top: 75%;
    left: 10%;
}

[data-theme="dark"] .lp-orb-1 {
    background: radial-gradient(circle, rgba(56,152,157,0.18) 0%, transparent 70%);
}

[data-theme="dark"] .lp-orb-2 {
    background: radial-gradient(circle, rgba(51,107,107,0.14) 0%, transparent 70%);
}

[data-theme="dark"] .lp-orb-3 {
    background: radial-gradient(circle, rgba(56,152,157,0.12) 0%, transparent 70%);
}

.lp-float-drop {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0;
    will-change: transform, opacity;
}

.lp-float-drop svg {
    width: 100%;
    height: 100%;
}

.lp-fd-1 { top: 8%; left: 12%; }
.lp-fd-2 { top: 18%; right: 15%; }
.lp-fd-3 { top: 35%; left: 5%; }
.lp-fd-4 { top: 55%; right: 8%; }
.lp-fd-5 { top: 70%; left: 18%; }
.lp-fd-6 { top: 88%; right: 12%; }

/* ── Section shared ────────────────────────────────── */

.lp-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.lp-section-alt {
    background: var(--lp-section-bg);
}

.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-primary);
    margin-bottom: 12px;
}

.lp-label-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--lp-primary);
    border-radius: 1px;
}

.lp-section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--lp-text);
}

.lp-section-subtitle {
    font-size: 17px;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Intro section — full-bleed background + foreground copy ── */

.lp-intro {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: clamp(480px, 78vh, 820px);
    display: flex;
    align-items: center;
    padding: 100px 0 72px;
    text-align: center;
}

.lp-intro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.lp-intro-bg-video,
.lp-intro-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lp-intro-bg-video {
    object-fit: cover;
    object-position: center top;
}

.lp-intro-bg-image {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.lp-intro-bg-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        var(--lp-hero-scrim-solid) 0%,
        var(--lp-hero-scrim-mid) 38%,
        var(--lp-hero-scrim-fade) 62%,
        transparent 88%
    );
}

.lp-intro-content {
    position: relative;
    z-index: 2;
    max-width: min(720px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.lp-intro .lp-intro-badge {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(56, 152, 157, 0.22);
}

[data-theme="dark"] .lp-intro .lp-intro-badge {
    background: rgba(22, 29, 37, 0.58);
    border-color: rgba(81, 165, 169, 0.28);
}

@media (max-width: 768px) {
    .lp-intro-bg-shade {
        background: linear-gradient(
            180deg,
            var(--lp-hero-scrim-solid) 0%,
            var(--lp-hero-scrim-mid) 40%,
            var(--lp-hero-scrim-fade) 62%,
            transparent 100%
        );
    }

    .lp-intro {
        min-height: clamp(520px, 85vh, 760px);
        padding: 88px 0 56px;
    }
}

.lp-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    background: rgba(56,152,157,0.08);
    border: 1px solid rgba(56,152,157,0.15);
    margin-bottom: 28px;
}

.lp-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-primary);
    box-shadow: 0 0 8px var(--lp-primary);
    animation: lp-pulse-dot 2s ease-in-out infinite;
}

@keyframes lp-pulse-dot {
    0%, 100% { box-shadow: 0 0 8px var(--lp-primary); }
    50% { box-shadow: 0 0 18px var(--lp-primary), 0 0 36px rgba(56,152,157,0.25); }
}

.lp-intro-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 20px;
    color: var(--lp-text);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Second hero line: keep “overstock items with ease” from splitting onto a third line */
.lp-intro-title-line2 {
    white-space: nowrap;
}

@media (max-width: 374px) {
    .lp-intro-title-line2 {
        white-space: normal;
    }
}

.lp-gradient-text {
    background: linear-gradient(135deg, #38989D, #4ab8be, #336B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-intro-desc {
    font-size: 18px;
    color: var(--lp-text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.lp-intro-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.lp-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    min-height: 48px;
    border-radius: var(--lp-radius-sm);
    background: var(--lp-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px var(--lp-glow), 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px var(--lp-glow-strong), 0 4px 14px rgba(0,0,0,0.12);
    color: #fff;
    text-decoration: none;
}

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    min-height: 48px;
    border-radius: var(--lp-radius-sm);
    background: transparent;
    color: var(--lp-text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--lp-surface-border);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lp-btn-ghost:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    text-decoration: none;
    background: rgba(56,152,157,0.04);
}

/* Ghost CTA on photo hero — readable over busy background */
.lp-btn-ghost-hero {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.65);
}

.lp-btn-ghost-hero:hover {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--lp-primary);
}

[data-theme="dark"] .lp-btn-ghost-hero {
    background: rgba(22, 29, 37, 0.55);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .lp-btn-ghost-hero:hover {
    background: rgba(22, 29, 37, 0.75);
}

.lp-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-muted);
}

.lp-avatar-stack {
    display: flex;
}

.lp-avatar-stack span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-right: -8px;
    border: 2px solid var(--lp-bg);
}

.lp-avatar-stack .a1 { background: #38989D; }
.lp-avatar-stack .a2 { background: #336B6B; }
.lp-avatar-stack .a3 { background: #4ab8be; }
.lp-avatar-stack .a4 { background: #2d8c91; font-size: 11px; }

/* ── Marquee ───────────────────────────────────────── */

.lp-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Elegant full-width teal gradient band */
    background: linear-gradient(
        105deg,
        var(--lp-primary-dark) 0%,
        #2b9298 40%,
        var(--lp-primary) 70%,
        var(--lp-primary-dark) 100%
    );
    /* Soft dissolve on both edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

/* Hairline top highlight + bottom shadow */
.lp-marquee::before,
.lp-marquee::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    z-index: 2;
    pointer-events: none;
}
.lp-marquee::before { top: 0;    background: rgba(255,255,255,0.2); }
.lp-marquee::after  { bottom: 0; background: rgba(0,0,0,0.18); }

.lp-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    padding: 20px 0;
    animation: lp-marquee 38s linear infinite;
    will-change: transform;
}

.lp-marquee:hover .lp-marquee-track {
    animation-play-state: paused;
}

/* Each highlight item */
.lp-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: default;
    user-select: none;
}

/* Circular icon badge */
.lp-mq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.lp-marquee-item:hover .lp-mq-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1) rotate(-6deg);
}

.lp-mq-icon svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    flex-shrink: 0;
}

/* Label */
.lp-mq-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: rgba(255,255,255,0.88);
    transition: color 0.2s ease;
}

.lp-marquee-item:hover .lp-mq-label {
    color: #fff;
}

/* Diamond / star separator */
.lp-mq-sep {
    font-size: 8px;
    color: rgba(255,255,255,0.28);
    flex-shrink: 0;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

@keyframes lp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── How it works — timeline ───────────────────────── */

.lp-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.lp-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lp-primary), transparent);
    opacity: 0.25;
}

.lp-timeline-step {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--lp-radius);
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-timeline-step:hover {
    box-shadow: var(--lp-card-hover-shadow);
}

.lp-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(56,152,157,0.06);
    border: 1px solid rgba(56,152,157,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.lp-step-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--lp-primary);
}

.lp-step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px var(--lp-glow);
}

.lp-timeline-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--lp-text);
}

.lp-timeline-step p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Bento grid ────────────────────────────────────── */

.lp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.lp-bento-card {
    padding: 28px;
    border-radius: var(--lp-radius);
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lp-bento-card:hover {
    box-shadow: var(--lp-card-hover-shadow);
}

.lp-bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.lp-bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.lp-bento-icon svg {
    width: 22px;
    height: 22px;
}

.lp-bi-teal {
    background: rgba(56,152,157,0.1);
    color: #38989D;
}
.lp-bi-teal svg { stroke: #38989D; }

.lp-bi-dark {
    background: rgba(51,107,107,0.1);
    color: #336B6B;
}
.lp-bi-dark svg { stroke: #336B6B; }

.lp-bi-amber {
    background: rgba(217,164,6,0.1);
    color: #d9a406;
}
.lp-bi-amber svg { stroke: #d9a406; }

.lp-bi-cyan {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
}
.lp-bi-cyan svg { stroke: #06b6d4; }

.lp-bi-purple {
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
}
.lp-bi-purple svg { stroke: #8b5cf6; }

.lp-bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--lp-text);
}

.lp-bento-card p {
    font-size: 14px;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.lp-bento-visual {
    margin-top: 24px;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.lp-bento-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: 100%;
    padding-top: 16px;
}

.lp-bento-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--lp-primary), var(--lp-primary-dark));
    opacity: 0.7;
    min-height: 4px;
}

/* ── Stats ─────────────────────────────────────────── */

/* ── Stats section shell ───────────────────────────── */

.lp-stats-section {
    position: relative;
    overflow: hidden;
    /* background comes from lp-section-alt (var(--lp-section-bg)) */
}

/* Soft teal ambient orbs */
.lp-stats-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.lp-stats-orb-1 {
    width: 480px; height: 480px;
    top: -160px; left: -100px;
    background: rgba(56,152,157,0.08);
    filter: blur(70px);
}
.lp-stats-orb-2 {
    width: 360px; height: 360px;
    bottom: -120px; right: -60px;
    background: rgba(51,107,107,0.07);
    filter: blur(55px);
}

/* ── Stats grid & cards ────────────────────────────── */

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-stat-card {
    position: relative;
    text-align: center;
    padding: 36px 24px 28px;
    border-radius: var(--lp-radius);
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle teal radial wash at the top of each card */
.lp-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(56,152,157,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.lp-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-card-hover-shadow);
}

/* Icon badge */
.lp-stat-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(56,152,157,0.1);
    border: 1px solid rgba(56,152,157,0.18);
    margin: 0 auto 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.lp-stat-card:hover .lp-stat-icon-wrap {
    transform: scale(1.1) rotate(-8deg);
    background: rgba(56,152,157,0.18);
}

.lp-stat-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--lp-primary);
    flex-shrink: 0;
}

/* Number */
.lp-stat-number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--lp-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

/* Label */
.lp-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 5px;
}

/* Context sub-line */
.lp-stat-context {
    font-size: 12px;
    color: var(--lp-text-faint);
    margin-bottom: 16px;
}

/* Trend indicator */
.lp-stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--lp-primary-dark);
    background: rgba(56,152,157,0.08);
    border: 1px solid rgba(56,152,157,0.15);
    border-radius: 100px;
    padding: 4px 10px;
}

.lp-stat-trend svg {
    width: 12px;
    height: 12px;
    stroke: var(--lp-primary);
    flex-shrink: 0;
}

/* ── Testimonials ──────────────────────────────────── */

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-testimonial-card {
    padding: 32px 28px 26px;
    border-radius: var(--lp-radius);
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lp-testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(56,152,157,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lp-testimonial-card:hover {
    box-shadow: var(--lp-card-hover-shadow);
    border-top-color: var(--lp-primary);
    transform: translateY(-3px);
}

.lp-testimonial-quote-mark {
    color: var(--lp-primary);
    opacity: 0.25;
    margin-bottom: 16px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.lp-testimonial-card:hover .lp-testimonial-quote-mark {
    opacity: 0.5;
}

.lp-testimonial-text {
    font-size: 15px;
    color: var(--lp-text-muted);
    line-height: 1.7;
    flex: 1;
    margin: 0 0 20px;
    font-style: italic;
    position: relative;
}

.lp-testimonial-divider {
    height: 1px;
    background: var(--lp-surface-border);
    margin-bottom: 18px;
}

.lp-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.lp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56,152,157,0.15) 0%, rgba(51,107,107,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-primary);
    flex-shrink: 0;
    border: 2px solid rgba(56,152,157,0.15);
}

.lp-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-testimonial-role {
    font-size: 12px;
    color: var(--lp-text-faint);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ── CTA ───────────────────────────────────────────── */

.lp-cta {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.lp-cta-card {
    padding: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--lp-primary-dark) 0%, #2a8a8f 50%, var(--lp-primary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lp-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,255,255,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 100% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative floating orbs inside the card */
.lp-cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-cta-orb-1 {
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.05);
    top: -80px;
    right: 10%;
    filter: blur(40px);
}

.lp-cta-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.07);
    bottom: -60px;
    left: 30%;
    filter: blur(30px);
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.lp-cta-left {
    padding: 56px 48px 56px 56px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.lp-cta-right {
    padding: 56px 56px 56px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.lp-cta-card h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
    color: #fff;
}

.lp-cta-left > p {
    font-size: 16px;
    opacity: 0.8;
    margin: 0 0 28px;
    line-height: 1.6;
}

.lp-cta-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-cta-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.lp-cta-perks li svg {
    flex-shrink: 0;
    color: #7dd8dc;
    width: 18px;
    height: 18px;
}

.lp-cta-action-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
}

.lp-cta-btn {
    background: #fff;
    color: var(--lp-primary-dark);
    box-shadow: 0 0 24px rgba(255,255,255,0.2), 0 4px 16px rgba(0,0,0,0.15);
    font-size: 16px;
    padding: 16px 32px;
    width: 100%;
    justify-content: center;
}

.lp-cta-btn:hover {
    box-shadow: 0 0 40px rgba(255,255,255,0.35), 0 6px 20px rgba(0,0,0,0.2);
    color: var(--lp-primary-dark);
}

.lp-cta-note {
    font-size: 13px;
    opacity: 0.6;
    margin: 0;
}

.lp-cta-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.75;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 8px 16px;
}

.lp-cta-avatars {
    display: flex;
    margin-right: 2px;
}

.lp-cta-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

.lp-cta-avatars .lp-cta-av:first-child {
    margin-left: 0;
}

/* ── Scroll-linked drop ────────────────────────────── */

.lp-scroll-drop {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
}

.lp-scroll-drop svg {
    width: 32px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(56,152,157,0.3));
}

/* ── Section divider ───────────────────────────────── */

.lp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-surface-border), transparent);
    position: relative;
    z-index: 1;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 1024px) {
    .lp-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-cta-left {
        padding: 44px 36px 36px 40px;
    }
    .lp-cta-right {
        padding: 44px 40px 44px 36px;
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 56px 0;
    }
    .lp-section-header {
        margin-bottom: 36px;
    }
    .lp-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lp-timeline::before {
        display: none;
    }
    .lp-bento {
        grid-template-columns: 1fr;
    }
    .lp-bento-large {
        grid-column: span 1;
    }
    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .lp-cta-inner {
        grid-template-columns: 1fr;
    }
    .lp-cta-left {
        padding: 40px 28px 32px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .lp-cta-right {
        padding: 32px 28px 40px;
    }
    .lp-scroll-drop {
        display: none;
    }
    .lp-float-drop {
        display: none;
    }
    /* Reduce ambient complexity on mobile for performance */
    .lp-orb {
        filter: blur(40px);
    }
    .lp-orb-2,
    .lp-orb-3 {
        display: none;
    }
    .lp-ambient {
        position: absolute;
    }
}

/* ── Reduced motion ─────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .lp-marquee-track {
        animation: none;
    }
    .lp-badge-dot {
        animation: none;
    }
    .lp-page {
        scroll-behavior: auto;
    }
    .lp-bento-card,
    .lp-stat-card,
    .lp-timeline-step,
    .lp-testimonial-card {
        transition: none;
    }
}

/* ── Focus visible for keyboard nav ────────────────── */

.lp-btn-glow:focus-visible,
.lp-btn-ghost:focus-visible {
    outline: 2px solid var(--lp-primary);
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .lp-intro-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .lp-btn-glow,
    .lp-btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .lp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lp-stat-card {
        padding: 24px 12px;
    }
}


/* ═══════════════════════════════════════════════════
   Contact / Pre-footer  (landing page only)
   ═══════════════════════════════════════════════════ */

#contact_home {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 96px 5% !important;
    background-image: linear-gradient(
        135deg,
        #2a5f5f  0%,
        #2e8f95  38%,
        #38989D  65%,
        #2a6e6e  100%
    ) !important;
    background-color: #2e8f95 !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Hairline top highlight */
#contact_home::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.22);
    z-index: 2;
    pointer-events: none;
}

/* Decorative ambient orbs */
.ch-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.ch-orb-1 {
    width: 520px; height: 520px;
    top: -200px; left: -140px;
    background: rgba(255,255,255,0.06);
    filter: blur(70px);
}
.ch-orb-2 {
    width: 400px; height: 400px;
    bottom: -160px; right: -100px;
    background: rgba(255,255,255,0.07);
    filter: blur(55px);
}

/* Dot-grid mesh overlay */
.ch-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    mask-image:         radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Content wrapper */
#contact_home .text_contact {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

/* Eyebrow badge */
.ch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}
.ch-eyebrow svg { stroke: rgba(255,255,255,0.8); flex-shrink: 0; }

/* Heading */
#contact_home .text_contact h2 {
    font-size: clamp(24px, 3.2vw, 42px) !important;
    color: #fff !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.02em;
}

/* Sub-text */
.ch-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 36px;
    line-height: 1.6;
}

/* Action buttons row */
.ch-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ch-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2a5f5f !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none !important;
    box-shadow: 0 0 24px rgba(255,255,255,0.2), 0 4px 16px rgba(0,0,0,0.15);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ch-btn-primary:hover {
    box-shadow: 0 0 40px rgba(255,255,255,0.35), 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    color: #336B6B !important;
    text-decoration: none !important;
}
.ch-btn-primary svg { flex-shrink: 0; stroke: currentColor; }

.ch-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.88) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 100px;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.ch-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Perks row */
.ch-perks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ch-perks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
}
.ch-perks svg { stroke: #7dd8dc; flex-shrink: 0; }

/* Mobile */
@media (max-width: 600px) {
    #contact_home { padding: 68px 5% !important; }
    .ch-actions { flex-direction: column; }
    .ch-btn-primary, .ch-btn-ghost { width: 100%; justify-content: center; }
    .ch-perks { gap: 14px; }
}
