/* ============================================================
   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;
}

/* Hero Generic Rebate → DDA callout */
.lp-dda-rebate-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto 28px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(56, 152, 157, 0.28);
    box-shadow: 0 8px 24px rgba(15, 40, 42, 0.08);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-intro .lp-dda-rebate-hero {
    background: rgba(255, 255, 255, 0.92);
}
.lp-dda-rebate-hero:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 152, 157, 0.5);
    box-shadow: 0 12px 28px rgba(15, 40, 42, 0.12);
}
.lp-dda-rebate-hero-logo {
    flex: 0 0 auto;
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}
.lp-dda-rebate-hero-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.lp-dda-rebate-hero-copy strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: #1f2a2b;
}
.lp-dda-rebate-hero-copy span {
    font-size: 0.8rem;
    line-height: 1.35;
    color: #52605f;
}
.lp-dda-rebate-hero-arrow {
    flex: 0 0 auto;
    color: #38989D;
    display: inline-flex;
}
html[data-bs-theme="dark"] .lp-dda-rebate-hero,
html[data-theme="dark"] .lp-dda-rebate-hero {
    background: rgba(20, 28, 32, 0.9);
    border-color: rgba(56, 152, 157, 0.35);
}
html[data-bs-theme="dark"] .lp-dda-rebate-hero-copy strong,
html[data-theme="dark"] .lp-dda-rebate-hero-copy strong {
    color: #f1f5f5;
}
html[data-bs-theme="dark"] .lp-dda-rebate-hero-copy span,
html[data-theme="dark"] .lp-dda-rebate-hero-copy span {
    color: #a8b6b5;
}

@media (max-width: 575.98px) {
    .lp-dda-rebate-hero {
        margin-bottom: 22px;
        padding: 12px 14px;
        gap: 10px;
    }
    .lp-dda-rebate-hero-logo {
        height: 30px;
        max-width: 96px;
    }
}

.lv-hero-content .lp-dda-rebate-hero {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.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;
}

/* Same typography as other stats; two-line stack so long text fits the card */
.lp-stat-number--text {
    line-height: 1.05;
}

/* 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; }
}

/* ═══ Partners page (modern / landing-matched) ═══ */
.partners-page .pp-hero {
    position: relative;
    min-height: min(72vh, 640px);
    display: flex;
    align-items: center;
    padding: 96px 0 72px;
    overflow: hidden;
}
.pp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}
.pp-hero-glow-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: 8%;
    background: rgba(56, 152, 157, 0.35);
}
.pp-hero-glow-2 {
    width: 320px;
    height: 320px;
    bottom: -60px;
    left: 5%;
    background: rgba(51, 107, 107, 0.28);
}
.pp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,152,157,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,152,157,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.pp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.pp-hero-content .lp-intro-badge {
    margin-left: auto;
    margin-right: auto;
}
.pp-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    justify-content: center;
}
.pp-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text);
    text-decoration: none !important;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    box-shadow: var(--lp-card-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pp-hero-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 152, 157, 0.45);
    color: var(--lp-primary);
}

.pp-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pp-overview-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    border-radius: var(--lp-radius);
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    box-shadow: var(--lp-card-shadow);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pp-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-card-hover-shadow);
    border-color: rgba(56, 152, 157, 0.35);
}
.pp-overview-icon,
.pp-visual-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.pp-overview-icon svg,
.pp-visual-icon svg {
    width: 26px;
    height: 26px;
}
.pp-icon--teal {
    background: rgba(56, 152, 157, 0.14);
    color: var(--lp-primary);
}
.pp-icon--slate {
    background: rgba(71, 85, 105, 0.14);
    color: #475569;
}
.pp-icon--cyan {
    background: rgba(8, 145, 178, 0.14);
    color: #0891b2;
}
html[data-theme="dark"] .pp-icon--slate { color: #cbd5e1; }
html[data-theme="dark"] .pp-icon--cyan { color: #67e8f9; }
.pp-overview-offer {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lp-primary);
}
.pp-overview-card h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}
.pp-overview-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--lp-text-muted);
    flex: 1;
}
.pp-overview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lp-primary);
}

.pp-panel-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}
.pp-panel-grid--flip .pp-panel-copy { order: 2; }
.pp-panel-grid--flip .pp-visual { order: 1; }
.pp-panel-title {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-text);
    margin: 0 0 8px;
}
.pp-panel-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 14px;
}
.pp-panel-summary {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--lp-text-muted);
    margin: 0 0 22px;
}
.pp-feature-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}
.pp-feature-grid li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    color: var(--lp-text);
    font-size: 0.94rem;
    line-height: 1.45;
}
.pp-feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 152, 157, 0.12);
    color: var(--lp-primary);
}

.pp-visual {
    position: relative;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--lp-surface-border);
    background:
        radial-gradient(circle at 20% 20%, rgba(56,152,157,0.22), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(51,107,107,0.18), transparent 40%),
        var(--lp-card-bg);
    box-shadow: var(--lp-card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
}
.pp-visual--slate {
    background:
        radial-gradient(circle at 20% 20%, rgba(71,85,105,0.22), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(56,152,157,0.12), transparent 40%),
        var(--lp-card-bg);
}
.pp-visual--cyan {
    background:
        radial-gradient(circle at 20% 20%, rgba(8,145,178,0.22), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(56,152,157,0.14), transparent 40%),
        var(--lp-card-bg);
}
.pp-visual-orb {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(56, 152, 157, 0.16);
    filter: blur(30px);
    top: -40px;
    right: -30px;
}
.pp-visual-orb-2 {
    width: 140px;
    height: 140px;
    top: auto;
    right: auto;
    bottom: -30px;
    left: -20px;
    background: rgba(51, 107, 107, 0.18);
}
.pp-visual-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 28px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
html[data-theme="dark"] .pp-visual-inner {
    background: rgba(20, 27, 34, 0.78);
    border-color: rgba(255,255,255,0.08);
}
.pp-visual-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-text);
    margin: 12px 0 4px;
}
.pp-visual-offer {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 6px;
}
.pp-visual-note {
    margin: 0 0 18px;
    font-size: 0.85rem;
    color: var(--lp-text-muted);
}
.pp-visual-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 72px;
}
.pp-visual-bars span {
    width: 12px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--lp-primary-light), var(--lp-primary-dark));
    opacity: 0.85;
}

.partners-offer-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    background: rgba(56, 152, 157, 0.12);
    color: var(--lp-primary-dark);
}
.partners-offer-badge--slate {
    background: rgba(71, 85, 105, 0.12);
    color: #334155;
}
.partners-offer-badge--cyan {
    background: rgba(8, 145, 178, 0.12);
    color: #0e7490;
}
html[data-theme="dark"] .partners-offer-badge { color: #7dd8dc; background: rgba(56, 152, 157, 0.18); }
html[data-theme="dark"] .partners-offer-badge--slate { color: #cbd5e1; background: rgba(148, 163, 184, 0.16); }
html[data-theme="dark"] .partners-offer-badge--cyan { color: #67e8f9; background: rgba(8, 145, 178, 0.18); }

.partners-systems { margin-bottom: 26px; }
.partners-systems-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-text-faint);
    margin-bottom: 10px;
}
.partners-systems-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.partners-systems-tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    color: var(--lp-text-muted);
}
.partners-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.partners-btn-secondary {
    color: var(--lp-text) !important;
    border-color: var(--lp-surface-border) !important;
    background: transparent !important;
}
.pp-cta-contact {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none !important;
}
.pp-cta-contact:hover { color: #fff; text-decoration: underline !important; }

/* Generic Rebate → DDA teaser (landing) */
.dda-rebate-card {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    align-items: stretch;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-card-shadow);
    padding: 32px 36px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dda-rebate-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-card-hover-shadow);
}
.dda-rebate-copy .lp-section-title {
    margin-bottom: 12px;
}
.dda-rebate-body {
    max-width: 42rem;
    margin-bottom: 22px;
}
.dda-rebate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.dda-rebate-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
}
.dda-rebate-aside {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    min-height: 200px;
    padding: 22px 24px;
    border-radius: calc(var(--lp-radius) - 4px);
    background-image: var(--dda-rebate-logo);
    background-repeat: no-repeat;
    background-position: center 28%;
    background-size: 58% auto;
    border: 1px solid rgba(56,152,157,0.22);
}
.dda-rebate-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,16,18,0.2) 0%, rgba(8,16,18,0.78) 100%);
    pointer-events: none;
}
.dda-rebate-badge,
.dda-rebate-aside-text {
    position: relative;
    z-index: 1;
}
.dda-rebate-badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e8fffe;
    background: rgba(56,152,157,0.45);
    border-radius: 999px;
    padding: 6px 12px;
}
.dda-rebate-aside-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

@media (max-width: 960px) {
    .dda-rebate-card {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }
}

/* Teaser (landing) */
.partners-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.partners-teaser-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-surface-border);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-card-shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partners-teaser-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-card-hover-shadow);
}
.partners-teaser-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}
.partners-teaser-line {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lp-text);
    margin: 0 0 10px;
}
.partners-teaser-summary {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0;
}
.partners-teaser-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.partners-teaser-claim { padding: 10px 18px !important; font-size: 0.9rem !important; }
.partners-teaser-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lp-primary);
    text-decoration: none !important;
}
.partners-teaser-more:hover { text-decoration: underline !important; }
.partners-teaser-footer { margin-top: 28px; text-align: center; }
.partners-teaser-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--lp-primary);
    text-decoration: none !important;
}
.partners-teaser-all:hover { text-decoration: underline !important; }

@media (max-width: 960px) {
    .pp-overview-grid,
    .partners-teaser-grid { grid-template-columns: 1fr; }
    .pp-panel-grid {
        grid-template-columns: 1fr;
    }
    .pp-panel-grid--flip .pp-panel-copy,
    .pp-panel-grid--flip .pp-visual { order: unset; }
    .pp-visual { min-height: 300px; }
    .partners-page .pp-hero { min-height: auto; padding: 72px 0 48px; }
}


