/* ============================================
   המקום הבטוח - סוכנות ביטוח ופיננסים
   Colors: #363847 #1C244B #43B39A #F6F6F6
   Font: Liebling + Heebo fallback
   Direction: RTL
   ============================================ */

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Liebling';
    src: url('fonts/fonnts.com-Liebling_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #363847;
    --secondary: #1C244B;
    --accent: #43B39A;
    --accent-light: #4fd4b5;
    --accent-dark: #369e86;
    --bg-light: #F6F6F6;
    --bg-white: #ffffff;
    --text-dark: #363847;
    --text-light: #ffffff;
    --text-muted: #7a7a8a;
    --gold: #c5a76c;
    --gold-bg: #d4b87a;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 30px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Liebling', 'Heebo', 'Arial', sans-serif;
    direction: rtl;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

/* ============ HEADER - CLARIO EXACT REPLICA ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Outer wrapper transitions padding to push the inner bar down */
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 0 0 0;
}

.site-header.scrolled {
    padding: 12px 16px 0 16px;
}

.site-header .header-bg {
    /* This is the "navbar-inner" that morphs */
    margin: 0 auto;
    will-change: transform;
    transition:
        max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* Default state: full width, transparent, no rounding */
    max-width: 1280px;
    border-radius: 0;
    border: 1px solid transparent;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.site-header.scrolled .header-bg {
    /* Scrolled state: shrinks, rounds, becomes glass pill */
    max-width: 920px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 52px;
}

/* Nav links */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* When scrolled - switch to dark text */
.site-header.scrolled .main-nav a {
    color: #6b7280;
}

.site-header.scrolled .main-nav a:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.04);
}

/* Header actions - left side */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Dark/light mode toggle button */
.theme-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.7);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.site-header.scrolled .theme-toggle {
    color: #6B7280;
}

.site-header.scrolled .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #111827;
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
}

/* CTA button - lime green */
.nav-cta {
    background: var(--accent);
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.nav-cta:hover {
    background: var(--accent-dark);
    box-shadow: 0 2px 10px rgba(67, 179, 154, 0.4);
    transform: translateY(-1px);
}

.nav-cta-outline {
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    color: rgba(255,255,255,0.9) !important;
}

.nav-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.site-header.scrolled .nav-cta-outline {
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #374151 !important;
}

.site-header.scrolled .nav-cta-outline:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.25) !important;
    color: #111827 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.scrolled .hamburger span {
    background: var(--text-dark);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 60px 80px;
    background: #3a5a40;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.85;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 40%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cards-wrapper {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    overflow: visible;
    padding-bottom: 20px;
}

.hero-cards-track {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    max-width: 160px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.hero-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-card span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 60px 24px;
    background: var(--bg-white);
    position: relative;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-col {
    text-align: center;
    padding: 20px;
}

.about-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(67,179,154,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-col h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.about-decorative-line {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

.decorative-curvy-line {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

/* ============ MONEY TIME / SERVICES TABS ============ */
/* ============ MONEY TIME / SERVICES ============ */
.moneytime-section {
    padding: 60px 24px 40px;
    background: var(--bg-white);
}

.moneytime-top {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.moneytime-header {
    margin-bottom: 24px;
}

.moneytime-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.moneytime-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.moneytime-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 8px 24px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #9CA3AF;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--accent);
    color: white;
}

.tab-btn:hover:not(.active) {
    color: var(--text-dark);
    background: rgba(0,0,0,0.04);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Service image cards */
.service-image-cards {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: visible;
}

.service-images-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
}

.service-img-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.service-img-card .card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img-card:hover .card-photo {
    transform: scale(1.05);
}

.service-img-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(54,56,71,0.7) 0%, rgba(54,56,71,0.1) 50%, transparent 100%);
    z-index: 1;
}

.service-img-card span {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.service-img-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(67,179,154,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.service-img-card .card-badge img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.service-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.moneytime-cta-wrap {
    text-align: center;
    padding: 32px 0;
}

.moneytime-cta {
    display: inline-block;
    padding: 12px 36px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.moneytime-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(67,179,154,0.3);
}

/* ============ DASHBOARD SECTION ============ */
.dashboard-section {
    padding: 80px 24px;
    background: var(--primary);
    position: relative;
    overflow: visible;
}

.dashboard-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.dashboard-content {
    flex: 1;
    background: linear-gradient(145deg, #c9a95e 0%, #d4b87a 40%, #d1b06a 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 52px 52px 52px 52px;
    position: relative;
    z-index: 1;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.dashboard-label {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.dashboard-desc {
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.dashboard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    justify-content: flex-start;
}

.dashboard-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.dashboard-tag img {
    width: 16px;
    height: 16px;
}

.dashboard-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.dashboard-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.dashboard-phone {
    flex: 0 0 340px;
    z-index: 3;
    margin-inline-start: -210px;
    align-self: center;
    margin-top: 30px;
}

.dashboard-phone img {
    width: 100%;
    filter: drop-shadow(-10px 20px 40px rgba(0,0,0,0.4));
}

/* ============ TEAM SECTION ============ */
.team-section {
    padding: 80px 24px;
    background: var(--primary);
    text-align: center;
}

.team-header {
    max-width: 600px;
    margin: 0 auto 48px;
}

.team-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 8px;
}

.team-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.team-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.team-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
}

/* Fade edges to hint scrollability */
.team-carousel-wrapper::before,
.team-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.team-carousel-wrapper::before {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}

.team-carousel-wrapper::after {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.team-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 24px 40px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.team-carousel::-webkit-scrollbar { display: none; }

.team-carousel.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.team-carousel.dragging .team-member {
    pointer-events: none;
}

.team-member {
    flex: 0 0 220px;
    scroll-snap-align: start;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-member-img {
    position: relative;
    width: 220px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.team-member-img .img-color {
    position: relative;
    z-index: 2;
}

.team-member-img .img-bw {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: grayscale(100%);
}

.team-member:hover .img-color {
    opacity: 0;
}

.team-member h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-member p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

.team-about-link {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 36px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: var(--transition);
}

.team-about-link:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 60px 24px;
    background: var(--bg-white);
    text-align: center;
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: right;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-stars span {
    color: #f5a623;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-author span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ============ CLIENTS SECTION ============ */
.clients-section {
    padding: 60px 24px;
    background: var(--bg-light);
    text-align: center;
}

.clients-header {
    max-width: 600px;
    margin: 0 auto 40px;
}

.clients-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.clients-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.clients-marquee::after {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.clients-track {
    display: flex;
    gap: 48px;
    align-items: center;
    width: max-content;
    cursor: grab;
    user-select: none;
    padding: 16px 0;
    animation: marquee 50s linear infinite;
}

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

.clients-track img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    mix-blend-mode: multiply;
}

.clients-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

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

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 80px 24px;
    background: var(--bg-light);
    text-align: center;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.contact-tab {
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.contact-tab.active {
    background: var(--accent);
    color: white;
}

.contact-form {
    text-align: right;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e2e2e8;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
    direction: rtl;
    text-align: right;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    text-align: right;
    direction: rtl;
}

.contact-form select {
    text-align: right;
    direction: rtl;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(67,179,154,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-block;
    padding: 14px 48px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(67,179,154,0.3);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--secondary);
    padding: 60px 24px 0;
    color: rgba(255,255,255,0.7);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-info {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
    direction: ltr;
    text-align: right;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-right: 4px;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    direction: ltr;
    text-align: right;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(67,179,154,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Reveal animations handled by JS IntersectionObserver */

/* ============ MOBILE NAV ============ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .moneytime-container {
        flex-direction: column;
    }

    .moneytime-image {
        display: none;
    }

    .dashboard-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .dashboard-content {
        padding: 32px 24px;
        min-height: auto;
    }

    .dashboard-phone {
        flex: none;
        width: 200px;
        margin: 0 auto -30px;
        margin-inline-start: 0;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .service-images-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-actions { display: none; }

    .hamburger { display: flex; }

    .main-nav.open {
        display: flex;
        position: fixed;
        top: 52px;
        right: 0;
        left: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        padding: 16px 24px 24px;
        z-index: 999;
        box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .main-nav.open a {
        color: #374151;
        font-size: 15px;
        padding: 10px 14px;
        border-radius: 8px;
    }

    .main-nav.open a:hover {
        background: rgba(0,0,0,0.04);
    }

    .main-nav.open ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .hero {
        min-height: 80vh;
        padding: 0 24px 48px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cards-track {
        gap: 12px;
    }

    .hero-card {
        min-width: 120px;
        max-width: 140px;
        padding: 16px 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-member {
        flex: 0 0 160px;
    }

    .team-member-img {
        width: 160px;
        height: 220px;
    }

    .service-images-grid {
        grid-template-columns: 1fr;
    }

    .service-img-card {
        min-height: 220px;
    }

    .team-member {
        flex: 0 0 160px;
    }

    .team-member-img {
        width: 160px;
        height: 220px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .dashboard-content {
        padding: 32px 24px;
    }

    .dashboard-title {
        font-size: 1.5rem;
    }

    .dashboard-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.2rem; }
    .hero-subtitle { font-size: 1rem; }

    .hero-cards-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hero-card {
        scroll-snap-align: start;
        min-width: 130px;
    }

    .moneytime-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .clients-track img {
        height: 35px;
    }
}

/* ============================================
   LANDING PAGE — 3% LOAN PRODUCT (lp-*)
   ============================================ */

.lp-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(67,179,154,0.12);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}
.lp-eyebrow-dark { color: var(--accent-dark); }
.lp-accent { color: var(--accent); }
.lp-accent-light { color: var(--accent-light); }
.lp-hilite {
    background: linear-gradient(180deg, transparent 60%, rgba(67,179,154,0.35) 60%);
    padding: 0 4px;
    color: var(--accent-light);
}

.lp-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(67,179,154,0.35);
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, background .25s;
    text-align: center;
    font-family: inherit;
}
.lp-cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(67,179,154,0.45);
}
.lp-cta-block { width: 100%; }

.lp-cta-ghost {
    display: inline-flex;
    align-items: center;
    color: #fff;
    opacity: 0.85;
    font-weight: 500;
    padding: 14px 8px;
}
.lp-cta-ghost:hover { opacity: 1; }

.lp-fineprint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
}

/* HERO — institutional redesign */
.lp-hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 6vw 110px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.lp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: lpHeroZoom 22s ease-out forwards;
}
@keyframes lpHeroZoom { to { transform: scale(1); } }
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(11,18,46,0.97) 0%, rgba(17,26,62,0.92) 35%, rgba(20,30,70,0.78) 65%, rgba(28,40,84,0.55) 100%),
        radial-gradient(ellipse at 88% 10%, rgba(67,179,154,0.18), transparent 55%);
}
.lp-hero-noise {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.lp-hero-copy { width: 100%; }

/* Staggered entrance */
[data-anim] {
    opacity: 0;
    transform: translateY(18px);
    animation: lpFadeUp 0.85s cubic-bezier(.22,1,.36,1) forwards;
}
[data-anim="1"] { animation-delay: 0.05s; }
[data-anim="2"] { animation-delay: 0.18s; }
[data-anim="3"] { animation-delay: 0.34s; }
[data-anim="4"] { animation-delay: 0.46s; }
[data-anim="5"] { animation-delay: 0.58s; }
[data-anim="6"] { animation-delay: 0.7s; }
[data-anim="7"] { animation-delay: 0.32s; transform: translateY(28px) scale(0.97); }
@keyframes lpFadeUp { to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
    [data-anim] { opacity: 1; transform: none; animation: none; }
    .lp-hero-bg img { animation: none; transform: none; }
    .lp-hero-orb { animation: none; }
}

.lp-hero-copy { max-width: 740px; }

/* Eyebrow — institutional pill */
.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 7px 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
}
.lp-hero-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #43b39a;
    box-shadow: 0 0 0 0 rgba(67,179,154,0.7);
    animation: lpPulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes lpPulse {
    0% { box-shadow: 0 0 0 0 rgba(67,179,154,0.65); }
    70% { box-shadow: 0 0 0 12px rgba(67,179,154,0); }
    100% { box-shadow: 0 0 0 0 rgba(67,179,154,0); }
}

/* Title */
.lp-hero-title {
    font-size: clamp(2.1rem, 4.8vw, 3.9rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
}
.lp-hero-line { display: block; }
.lp-hero-line-bigword {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.lp-hero-line-rest { font-weight: 700; }
.lp-hero-line-muted {
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    font-size: 0.62em;
    margin-top: 8px;
    letter-spacing: 0;
}

/* The big "3%" — solid brand color, refined underline */
.lp-hilite-pro {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    padding: 0 2px;
}
.lp-hilite-num {
    position: relative;
    z-index: 2;
    color: #5be3c5;
    font-weight: 900;
}
.lp-hilite-bar {
    position: absolute;
    inset: auto 0 -4px;
    height: 3px;
    background: linear-gradient(90deg, rgba(91,227,197,0.95), rgba(67,179,154,0.55));
    border-radius: 2px;
    z-index: 1;
    transform-origin: right center;
    animation: lpBarSweep 1.1s cubic-bezier(.7,0,.3,1) 0.9s both;
}
@keyframes lpBarSweep {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Sub */
.lp-hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 auto 26px;
    max-width: 600px;
}
.lp-hero-sub strong { color: #fff; font-weight: 700; }

/* Stats strip — refined institutional */
.lp-hero-stats {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 32px;
    overflow: hidden;
}
.lp-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 22px;
    min-width: 110px;
}
.lp-hero-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.lp-hero-stat-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.01em;
}
.lp-hero-stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
}

/* CTAs */
.lp-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.lp-cta-arrow { transition: transform .25s cubic-bezier(.4,0,.2,1); }
html[dir="rtl"] .lp-cta-arrow { transform: scaleX(-1); }
.lp-cta-primary:hover .lp-cta-arrow { transform: scaleX(-1) translateX(4px); }
.lp-cta-ghost { gap: 6px; }
.lp-cta-ghost-arrow { display: inline-block; transition: transform .3s; }
.lp-cta-ghost:hover .lp-cta-ghost-arrow { transform: translateY(3px); }

/* Trust bar — credentials row */
.lp-hero-trustbar {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    flex-wrap: wrap;
}
.lp-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px 0 0;
}
.lp-hero-trust-item:first-child { padding-inline-start: 0; }
.lp-hero-trust-icon {
    flex: 0 0 auto;
    color: #5be3c5;
    opacity: 0.95;
}
.lp-hero-trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.lp-hero-trust-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.lp-hero-trust-text span {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.lp-hero-trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.12);
    margin: 0 22px 0 0;
}

/* Institutional offer card — prospectus quality */
.lp-hero-card {
    position: relative;
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 18px;
    padding: 0;
    box-shadow:
        0 28px 60px -14px rgba(11,18,46,0.5),
        0 10px 24px -8px rgba(11,18,46,0.28),
        0 0 0 1px rgba(11,18,46,0.04) inset;
    border: 1px solid rgba(11,18,46,0.06);
    overflow: hidden;
    transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .5s;
}
.lp-hero-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 36px 72px -14px rgba(11,18,46,0.55),
        0 12px 28px -8px rgba(11,18,46,0.32),
        0 0 0 1px rgba(11,18,46,0.04) inset;
}
.lp-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4f47 0%, #2d7d6e 35%, #43b39a 100%);
    z-index: 1;
}

/* Card status ribbon */
.lp-hero-card-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 22px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(11,18,46,0.06);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.03em;
}
.lp-hero-card-ribbon-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
}
.lp-hero-card-ribbon-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #43b39a;
    box-shadow: 0 0 0 0 rgba(67,179,154,0.6);
    animation: lpPulse 2s infinite;
}
.lp-hero-card-ribbon-ref {
    font-size: 0.66rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
}
.lp-hero-card-ribbon-ref span {
    color: var(--secondary);
    font-weight: 700;
    margin-inline-start: 4px;
}

/* Card body — single padded container */
.lp-hero-card-body {
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background:
        radial-gradient(ellipse at 100% -10%, rgba(67,179,154,0.05), transparent 50%),
        #ffffff;
}

/* Locked rate chip — replaces the rate badge */
.lp-calc-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    background: linear-gradient(135deg, rgba(67,179,154,0.1), rgba(67,179,154,0.04));
    border: 1px solid rgba(67,179,154,0.25);
    border-radius: 10px;
    align-self: flex-start;
}
.lp-calc-chip-icon {
    width: 26px; height: 26px;
    display: grid;
    place-items: center;
    background: var(--accent-dark);
    color: #fff;
    border-radius: 7px;
    flex: 0 0 auto;
}
.lp-calc-chip-text {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}
.lp-calc-chip-text strong {
    color: var(--accent-dark);
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Loan amount + slider */
.lp-calc-amount { display: flex; flex-direction: column; gap: 10px; }
.lp-calc-amount-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}
.lp-calc-amount-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.lp-calc-amount-value {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: var(--secondary);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.lp-calc-amount-value > span:first-child {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}
.lp-calc-amount-cur {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.7;
}

/* Custom slider */
.lp-calc-slider-wrap {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
}
.lp-calc-slider-track {
    position: absolute;
    inset: 50% 0 auto;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 999px;
    background: rgba(11,18,46,0.06);
    overflow: hidden;
    pointer-events: none;
}
.lp-calc-slider-fill {
    position: absolute;
    inset: 0 0 0 auto;
    height: 100%;
    background: linear-gradient(90deg, #2d7d6e, #43b39a);
    border-radius: 999px;
    width: 17%;
    transition: width 0.18s cubic-bezier(.4,0,.2,1);
}
.lp-calc-slider {
    position: relative;
    width: 100%;
    height: 28px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: grab;
    z-index: 2;
    margin: 0;
    direction: rtl;
}
.lp-calc-slider:active { cursor: grabbing; }
.lp-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--accent-dark);
    box-shadow: 0 4px 12px rgba(67,179,154,0.4), 0 1px 3px rgba(11,18,46,0.15);
    cursor: grab;
    transition: transform .18s, box-shadow .18s;
}
.lp-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(67,179,154,0.5), 0 2px 4px rgba(11,18,46,0.2);
}
.lp-calc-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.05);
}
.lp-calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--accent-dark);
    box-shadow: 0 4px 12px rgba(67,179,154,0.4);
    cursor: grab;
    transition: transform .18s;
}
.lp-calc-slider::-moz-range-thumb:hover { transform: scale(1.12); }
.lp-calc-slider:focus { outline: none; }
.lp-calc-slider:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(67,179,154,0.25), 0 4px 12px rgba(67,179,154,0.4);
}

.lp-calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

/* Live comparison — compact rows */
.lp-calc-compare {
    display: grid;
    gap: 11px;
    padding-top: 16px;
    border-top: 1px solid rgba(11,18,46,0.06);
}
.lp-calc-cmp-row { display: grid; gap: 6px; }
.lp-calc-cmp-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.lp-calc-cmp-name {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    color: var(--secondary);
    font-weight: 600;
}
.lp-calc-dot {
    width: 8px; height: 8px;
    border-radius: 2px;
    flex: 0 0 auto;
}
.lp-calc-dot-bank { background: linear-gradient(135deg, #d49060, #b94560); }
.lp-calc-dot-us { background: linear-gradient(135deg, #43b39a, #2d7d6e); }
.lp-calc-cmp-cost {
    font-size: 0.88rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.lp-calc-cmp-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(11,18,46,0.05);
    overflow: hidden;
}
.lp-calc-cmp-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.lp-calc-cmp-fill-bank {
    width: 100%;
    background: linear-gradient(90deg, #d49060, #b94560);
}
.lp-calc-cmp-fill-us {
    width: 27%;
    background: linear-gradient(90deg, #43b39a, #2d7d6e);
}
.lp-bad { color: #b94560; font-weight: 700; }
.lp-good { color: var(--accent-dark); font-weight: 700; }

/* Savings result hero — the money shot */
.lp-calc-result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #1f5b51 100%);
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px -10px rgba(45,125,110,0.55);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.lp-calc-result.is-pulsing { animation: lpResultPulse .5s cubic-bezier(.4,0,.2,1); }
@keyframes lpResultPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.025); }
    100% { transform: scale(1); }
}
.lp-calc-result-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.18), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(91,227,197,0.25), transparent 50%);
    pointer-events: none;
}
.lp-calc-result-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 1;
    min-width: 0;
}
.lp-calc-result-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.01em;
}
.lp-calc-result-label svg { color: #5be3c5; flex: 0 0 auto; }
.lp-calc-result-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.lp-calc-result-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: #fff;
    line-height: 1;
    z-index: 1;
    font-variant-numeric: tabular-nums;
}
.lp-calc-result-cur {
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.75;
}
.lp-calc-result-amount > span:last-child {
    font-size: 2.05rem;
    font-weight: 900;
    letter-spacing: -0.035em;
    color: #5be3c5;
}

/* Card CTA — full width inside body wrap */
.lp-card-cta {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
}
.lp-card-cta-sub {
    margin-top: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

/* Regulatory footer — slim */
.lp-hero-card-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 22px 10px;
    background: #fafbfc;
    border-top: 1px solid rgba(11,18,46,0.05);
    font-size: 0.66rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.lp-hero-card-legal svg {
    color: var(--accent-dark);
    flex: 0 0 auto;
    opacity: 0.7;
}

/* Scroll indicator */
.lp-hero-scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.65;
    transition: opacity .25s;
    animation: lpFadeIn 1s ease-out 1.2s both;
}
.lp-hero-scroll:hover { opacity: 1; }
.lp-hero-scroll-mouse {
    display: block;
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 14px;
    position: relative;
}
.lp-hero-scroll-wheel {
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 7px;
    background: #fff;
    border-radius: 2px;
    animation: lpScrollWheel 1.8s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes lpScrollWheel {
    0% { opacity: 0; transform: translate(-50%, -4px); }
    40% { opacity: 1; }
    80%,100% { opacity: 0; transform: translate(-50%, 12px); }
}
@keyframes lpFadeIn { from { opacity: 0; } to { opacity: 0.65; } }

/* ============================================
   TRUST BAR V2 — INSTITUTIONAL LOGO WALL
   ============================================ */
.lp-tv2 {
    position: relative;
    background: #ffffff;
    padding: 110px 6vw 100px;
    overflow: hidden;
    border-bottom: 1px solid rgba(28,36,75,0.05);
}
.lp-tv2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(67,179,154,0.06), transparent 50%),
        linear-gradient(180deg, #fbfbfc 0%, #ffffff 50%);
    pointer-events: none;
}
.lp-tv2-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.lp-tv2-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.lp-tv2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.lp-tv2-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--accent);
}
.lp-tv2-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.lp-tv2-title-accent {
    color: var(--accent-dark);
    background: linear-gradient(180deg, transparent 60%, rgba(67,179,154,0.18) 60%);
    padding: 0 4px;
}
.lp-tv2-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* Marquee — bulletproof seamless loop with two identical sets */
.lp-tv2-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 64px;
    /* Force LTR so the keyframe math (translateX negative) works regardless of page dir */
    direction: ltr;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-tv2-track {
    --tv2-gap: 9px;          /* half of the 18px inter-set gap */
    display: flex;
    width: max-content;
    gap: 18px;
    animation: lp-tv2-scroll 45s linear infinite;
    will-change: transform;
    direction: ltr;
}
.lp-tv2-marquee:hover .lp-tv2-track {
    animation-play-state: paused;
}
.lp-tv2-set {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
}
/* Card content stays RTL for the Hebrew text inside */
.lp-tv2-card { direction: rtl; }
@keyframes lp-tv2-scroll {
    from { transform: translate3d(0, 0, 0); }
    /* Translate by exactly one set width + the inter-set gap. */
    to   { transform: translate3d(calc(-50% - var(--tv2-gap, 9px)), 0, 0); }
}

/* Logo card */
.lp-tv2-card {
    flex: 0 0 auto;
    width: 240px;
    height: 92px;
    background: #ffffff;
    border: 1px solid rgba(28,36,75,0.07);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 1px 2px rgba(28,36,75,0.03);
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1),
                box-shadow .35s ease,
                border-color .3s ease;
}
.lp-tv2-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(67,179,154,0.0), rgba(67,179,154,0.06));
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.lp-tv2-card:hover {
    transform: translateY(-4px);
    border-color: rgba(67,179,154,0.4);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 14px 30px -8px rgba(28,36,75,0.14);
}
.lp-tv2-card:hover::before { opacity: 1; }

/* Logo container — square chip, always visible */
.lp-tv2-logo {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fafbfc, #f3f5f8);
    border: 1px solid rgba(28,36,75,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-tv2-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.lp-tv2-card:hover .lp-tv2-logo img { transform: scale(1.08); }

/* Text — always visible side-by-side with logo */
.lp-tv2-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
    flex: 1;
}
.lp-tv2-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--secondary);
    transition: color .35s ease;
    white-space: nowrap;
}
.lp-tv2-text small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-top: 4px;
    white-space: nowrap;
}
.lp-tv2-card:hover .lp-tv2-text strong { color: var(--accent-dark); }

/* Stats strip */
.lp-tv2-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 32px 24px;
    background: linear-gradient(180deg, #fafbfc, #f5f7f9);
    border: 1px solid rgba(28,36,75,0.06);
    border-radius: 18px;
}
.lp-tv2-stat {
    flex: 1 1 0;
    min-width: 140px;
    text-align: center;
    padding: 8px 20px;
}
.lp-tv2-stat strong {
    display: block;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--secondary);
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.lp-tv2-stat span {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.lp-tv2-stat-sep {
    width: 1px;
    background: rgba(28,36,75,0.1);
    align-self: stretch;
    margin: 8px 0;
}

/* Responsive */
@media (max-width: 820px) {
    .lp-tv2 { padding: 80px 5vw 70px; }
    .lp-tv2-head { margin-bottom: 44px; }
    .lp-tv2-card { width: 210px; height: 84px; padding: 14px 18px; gap: 12px; }
    .lp-tv2-logo { flex: 0 0 42px; width: 42px; height: 42px; }
    .lp-tv2-logo img { width: 28px; height: 28px; }
    .lp-tv2-text strong { font-size: 1rem; }
    .lp-tv2-track { gap: 14px; animation-duration: 35s; --tv2-gap: 7px; }
    .lp-tv2-set { gap: 14px; }
    .lp-tv2-stat-sep { display: none; }
    .lp-tv2-stats { padding: 24px 16px; }
    .lp-tv2-stat { flex-basis: 50%; min-width: 0; padding: 12px 8px; }
}
@media (max-width: 480px) {
    .lp-tv2 { padding: 64px 18px 56px; }
    .lp-tv2-card { width: 188px; height: 78px; padding: 12px 16px; gap: 10px; }
    .lp-tv2-logo { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px; }
    .lp-tv2-logo img { width: 24px; height: 24px; }
    .lp-tv2-text strong { font-size: 0.95rem; }
    .lp-tv2-text small { font-size: 0.66rem; }
    .lp-tv2-track { gap: 12px; --tv2-gap: 6px; }
    .lp-tv2-set { gap: 12px; }
    .lp-tv2-marquee { margin-bottom: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-tv2-track { animation: none; }
}

/* Section heads */
.lp-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.lp-section-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary);
    margin-bottom: 16px;
}
.lp-section-head p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   COMPARE V2 — VS / EDITORIAL
   ============================================ */

.lp-cv2 {
    --bank-c: #d8556d;
    --bank-bg: #fdf3f5;
    --bank-soft: rgba(216,85,109,0.08);
    --bank-border: rgba(216,85,109,0.2);

    --us-c: var(--accent);
    --us-c-strong: var(--accent-dark);
    --us-bg: rgba(67,179,154,0.06);
    --us-soft: rgba(67,179,154,0.12);
    --us-border: rgba(67,179,154,0.3);

    position: relative;
    padding: 130px 6vw 120px;
    background: linear-gradient(180deg, #fafbfc 0%, #f5f7f9 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Background blobs — split-screen color suggestion */
.lp-cv2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.lp-cv2-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}
.lp-cv2-blob-bank {
    width: 420px;
    height: 420px;
    top: 200px;
    right: -120px;
    background: radial-gradient(circle, rgba(216,85,109,0.35), transparent 70%);
}
.lp-cv2-blob-us {
    width: 480px;
    height: 480px;
    bottom: -100px;
    left: -120px;
    background: radial-gradient(circle, rgba(67,179,154,0.5), transparent 70%);
}

.lp-cv2-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

/* Header */
.lp-cv2-head {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}
.lp-cv2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.lp-cv2-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}
.lp-cv2-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--secondary);
    margin-bottom: 22px;
}
.lp-cv2-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-left: 0.18em;
}
.lp-cv2-title .lp-cv2-word > span,
.lp-cv2-title > .lp-cv2-word {
    transform: translateY(110%);
    opacity: 0;
    display: inline-block;
    transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity .8s ease;
    transition-delay: calc(var(--w-i, 0) * 80ms);
}
.lp-cv2-title.is-visible .lp-cv2-word { transform: translateY(0); opacity: 1; }
.lp-cv2-word-accent {
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

}
.lp-cv2-sub {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ----- SAVINGS HERO BANNER ----- */
.lp-cv2-savings {
    position: relative;
    background: linear-gradient(135deg, #1a2147 0%, #1c244b 50%, #232c5c 100%);
    color: #fff;
    border-radius: 28px;
    padding: 44px 48px;
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(28,36,75,0.6);
}
.lp-cv2-savings::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(67,179,154,0.25), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(67,179,154,0.1), transparent 50%);
    pointer-events: none;
}
.lp-cv2-savings-left { position: relative; z-index: 1; }
.lp-cv2-savings-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.lp-cv2-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(67,179,154,0.7);
    animation: lp-cv2-pulse 2s ease-out infinite;
}
@keyframes lp-cv2-pulse {
    0% { box-shadow: 0 0 0 0 rgba(67,179,154,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(67,179,154,0); }
    100% { box-shadow: 0 0 0 0 rgba(67,179,154,0); }
}
.lp-cv2-savings-num {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}
.lp-cv2-savings-prefix {
    font-size: clamp(2rem, 3vw, 3rem);
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-left: 8px;
}
.lp-cv2-savings-num > span[data-cv2-count] {
    font-size: clamp(3.6rem, 7vw, 6rem);
    background: linear-gradient(180deg, #ffffff 0%, #6fe6c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lp-cv2-savings-currency {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--accent);
    font-weight: 700;
    margin-right: 4px;
}
.lp-cv2-savings-meta {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

/* Ring */
.lp-cv2-savings-right { position: relative; z-index: 1; }
.lp-cv2-ring {
    position: relative;
    width: 168px;
    height: 168px;
}
.lp-cv2-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.lp-cv2-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}
.lp-cv2-ring-progress {
    fill: none;
    stroke: url(#lp-cv2-ring-grad);
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    transition: stroke-dashoffset 1.6s cubic-bezier(.16,1,.3,1);
}
.lp-cv2-ring-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.lp-cv2-ring-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}
.lp-cv2-ring-num small {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    margin-right: 2px;
}
.lp-cv2-ring-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ----- VS COMPARISON CARDS ----- */
.lp-cv2-versus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 80px;
}

.lp-cv2-card {
    position: relative;
    border-radius: 24px;
    padding: 40px 36px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1),
                transform .8s cubic-bezier(.16,1,.3,1);
    transition-delay: calc(var(--lp-i, 0) * 150ms);
}
.lp-cv2-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-cv2-card-bank {
    background: #ffffff;
    border: 1px solid rgba(28,36,75,0.08);
    color: var(--secondary);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 30px -10px rgba(28,36,75,0.06);
}
.lp-cv2-card-us {
    background: #ffffff;
    border: 1px solid rgba(67,179,154,0.18);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 14px 40px -14px rgba(28,36,75,0.12),
        0 0 0 4px rgba(67,179,154,0.04);
}

/* Institutional accent — clean stripe at top of card */
.lp-cv2-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    pointer-events: none;
}
.lp-cv2-card-bank .lp-cv2-card-accent {
    background: var(--bank-c);
    opacity: 0.55;
}
.lp-cv2-card-us .lp-cv2-card-accent {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
}

/* Tag row — tag + recommended badge inline */
.lp-cv2-card-tagrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    min-height: 24px;
}
.lp-cv2-card-tagrow .lp-cv2-card-tag { margin-bottom: 0; }
.lp-cv2-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 9px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 999px;
    line-height: 1;
}
.lp-cv2-card-badge svg { stroke: #fff; }

.lp-cv2-card-head {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.lp-cv2-card-us .lp-cv2-card-head { border-bottom-color: rgba(67,179,154,0.25); }
.lp-cv2-card-bank .lp-cv2-card-head { border-bottom-color: rgba(216,85,109,0.2); }

.lp-cv2-card-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.lp-cv2-card-bank .lp-cv2-card-tag { color: var(--bank-c); }
.lp-cv2-card-us .lp-cv2-card-tag { color: var(--us-c-strong); }

.lp-cv2-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.lp-cv2-card-rate {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.lp-cv2-card-rate-num {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--secondary);
}
.lp-cv2-card-bank .lp-cv2-card-rate-num { color: var(--bank-c); opacity: 0.85; }
.lp-cv2-card-us .lp-cv2-card-rate-num {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lp-cv2-card-rate-pct {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--text-muted);
}
.lp-cv2-card-rate-meta {
    flex-basis: 100%;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.lp-cv2-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.lp-cv2-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-dark);
}
.lp-cv2-list li strong { font-weight: 700; color: var(--secondary); }
.lp-cv2-li-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.lp-cv2-li-x {
    background: var(--bank-c);
    color: #fff;
}
.lp-cv2-li-v {
    background: var(--us-c);
    color: #fff;
}

/* VS divider */
.lp-cv2-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 4px;
    align-self: stretch;
}
.lp-cv2-vs-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(28,36,75,0.15), transparent);
}
.lp-cv2-vs-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    display: grid;
    place-items: center;
    box-shadow:
        0 0 0 6px #f5f7f9,
        0 10px 30px rgba(28,36,75,0.25);
}

/* ----- LEDGER — editorial premium comparison (matches q3 standard) ----- */
.lp-cv2-ledger {
    position: relative;
    margin: 0 -2vw 80px;
    padding: 90px 6vw 80px;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(67,179,154,0.14), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(67,179,154,0.07), transparent 55%),
        linear-gradient(180deg, #0e1530 0%, #1c244b 60%, #1a2147 100%);
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 60px 120px -60px rgba(14,21,48,0.6);
}
.lp-cv2-ledger-ghost {
    position: absolute;
    bottom: -90px;
    left: -50px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(18rem, 32vw, 36rem);
    font-weight: 900;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.06em;
}
.lp-cv2-ledger-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.lp-cv2-ledger-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.lp-cv2-ledger-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(67,179,154,0.95);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.lp-cv2-ledger-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}
.lp-cv2-ledger-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #fff;
}
.lp-cv2-ledger-title-accent {
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}

/* Rows */
.lp-cv2-ledger-rows {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.lp-cv2-row {
    --c-bg: #ffffff;
    --c-fg: #1c244b;
    --c-mute: rgba(28,36,75,0.6);
    --c-accent: var(--accent);
    --c-accent-strong: var(--accent-dark);
    --c-edge: rgba(28,36,75,0.08);

    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--c-bg);
    color: var(--c-fg);
    isolation: isolate;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 30px 60px -30px rgba(0,0,0,0.5);
}
.lp-cv2-row.is-visible:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 50px 80px -40px rgba(0,0,0,0.7);
}

/* Theme variants — same as q3 */
.lp-cv2-row-theme-deep {
    --c-bg: #1c244b;
    --c-fg: #ffffff;
    --c-mute: rgba(255,255,255,0.65);
    --c-accent: #6fe6c8;
    --c-accent-strong: var(--accent);
    --c-edge: rgba(255,255,255,0.12);
}
.lp-cv2-row-theme-cream {
    --c-bg: #f3eee5;
    --c-fg: #2c2417;
    --c-mute: rgba(44,36,23,0.65);
    --c-accent: #c5a76c;
    --c-accent-strong: #9c8048;
    --c-edge: rgba(44,36,23,0.1);
}
.lp-cv2-row-theme-teal {
    --c-bg: #43b39a;
    --c-fg: #062b22;
    --c-mute: rgba(6,43,34,0.7);
    --c-accent: #062b22;
    --c-accent-strong: #062b22;
    --c-edge: rgba(6,43,34,0.15);
}
.lp-cv2-row-theme-clay {
    --c-bg: #ffffff;
    --c-fg: #1c244b;
    --c-mute: rgba(28,36,75,0.6);
    --c-accent: var(--accent);
    --c-accent-strong: var(--accent-dark);
    --c-edge: rgba(28,36,75,0.08);
}

/* BG layer */
.lp-cv2-row-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 100% 0%, color-mix(in srgb, var(--c-accent) 18%, transparent), transparent 55%),
        radial-gradient(ellipse at 0% 100%, color-mix(in srgb, var(--c-accent) 8%, transparent), transparent 55%);
}

/* Row entrance — gentle lift + fade (curtain belongs to q3, this section uses a different choreography) */
.lp-cv2-row {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s cubic-bezier(.16,1,.3,1),
                transform .9s cubic-bezier(.16,1,.3,1),
                box-shadow .55s cubic-bezier(.2,.8,.2,1);
    transition-delay: calc(var(--lp-i, 0) * 110ms);
}
.lp-cv2-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Curtain element repurposed: thin accent rail that draws across the top */
.lp-cv2-row-curtain {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    z-index: 5;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: right center; /* RTL: draws from right to left */
    transition: transform 1s cubic-bezier(.7, 0, .2, 1);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 200ms);
    pointer-events: none;
}
.lp-cv2-row.is-visible .lp-cv2-row-curtain {
    transform: scaleX(1);
}

/* Content layout — editorial 3-zone: meta | versus center | foot */
.lp-cv2-row-content {
    position: relative;
    z-index: 2;
    padding: 32px 36px 30px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 2.4fr;
    grid-template-rows: auto auto auto;
    column-gap: 40px;
    row-gap: 18px;
    align-items: start;
}

/* Choreography — each piece animates in with its own delay relative to row reveal */
.lp-cv2-row-meta,
.lp-cv2-row-title,
.lp-cv2-side-bank,
.lp-cv2-side-us,
.lp-cv2-versus-arrow,
.lp-cv2-row-foot {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.16,1,.3,1),
                transform .7s cubic-bezier(.16,1,.3,1);
}
/* RTL: meta slides in from the right (towards the reader's eye-start) */
.lp-cv2-row-meta { transform: translateX(20px); }
.lp-cv2-row-title { transform: translateY(14px); }
.lp-cv2-side-bank { transform: translateY(10px); }
.lp-cv2-side-us { transform: translateY(10px) scale(0.94); }
.lp-cv2-versus-arrow { transform: scale(0.4); }
.lp-cv2-row-foot { transform: translateY(12px); }

/* Stagger inside each row — the row reveal at base + per-piece offset */
.lp-cv2-row.is-visible .lp-cv2-row-meta {
    opacity: 1; transform: translateX(0);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 250ms);
}
.lp-cv2-row.is-visible .lp-cv2-row-title {
    opacity: 1; transform: translateY(0);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 380ms);
}
.lp-cv2-row.is-visible .lp-cv2-side-bank {
    opacity: 1; transform: translateY(0);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 480ms);
}
.lp-cv2-row.is-visible .lp-cv2-versus-arrow {
    opacity: 1; transform: scale(1);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 620ms);
    transition-timing-function: cubic-bezier(.34,1.56,.64,1); /* spring */
}
.lp-cv2-row.is-visible .lp-cv2-side-us {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 720ms);
}
.lp-cv2-row.is-visible .lp-cv2-row-foot {
    opacity: 1; transform: translateY(0);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 880ms);
}

/* Meta row */
.lp-cv2-row-meta {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}
.lp-cv2-row-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-mute);
    letter-spacing: 0.16em;
    position: relative;
    padding-left: 30px;
}
.lp-cv2-row-num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--c-accent);
}
.lp-cv2-row-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c-accent) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: var(--c-accent-strong);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}
.lp-cv2-row-theme-deep .lp-cv2-row-tag { color: var(--c-accent); }

.lp-cv2-row-title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--c-fg);
    align-self: end;
}

/* Versus zone (right column, spans 3 rows) */
.lp-cv2-row-versus {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}
.lp-cv2-side {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-cv2-side-bank { text-align: right; }
.lp-cv2-side-us   { text-align: left; }
.lp-cv2-side-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-mute);
}
.lp-cv2-side-bank .lp-cv2-side-label { color: color-mix(in srgb, var(--bank-c) 80%, var(--c-mute)); }
.lp-cv2-row-theme-deep .lp-cv2-side-bank .lp-cv2-side-label { color: #ff8aa0; }
.lp-cv2-row-theme-teal .lp-cv2-side-bank .lp-cv2-side-label { color: #7a1a2e; }
.lp-cv2-side-us .lp-cv2-side-label { color: var(--c-accent-strong); }
.lp-cv2-row-theme-deep .lp-cv2-side-us .lp-cv2-side-label { color: var(--c-accent); }

.lp-cv2-side-num {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--c-fg);
}
.lp-cv2-side-bank .lp-cv2-side-num {
    position: relative;
    opacity: 0.55;
    display: inline-block;
}
/* Animated strikethrough that draws across after entrance */
.lp-cv2-side-bank .lp-cv2-side-num::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4%;
    height: 2px;
    width: 0;
    background: color-mix(in srgb, var(--bank-c) 75%, var(--c-fg) 25%);
    border-radius: 2px;
    transform: translateY(-30%);
    transition: width .9s cubic-bezier(.7,0,.2,1);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 600ms);
    pointer-events: none;
}
.lp-cv2-row-theme-deep .lp-cv2-side-bank .lp-cv2-side-num::after { background: #ff8aa0; }
.lp-cv2-row.is-visible .lp-cv2-side-bank .lp-cv2-side-num::after { width: 108%; }
.lp-cv2-side-us .lp-cv2-side-num {
    background: linear-gradient(180deg, var(--c-fg) 0%, color-mix(in srgb, var(--c-fg) 65%, transparent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@supports not (color: color-mix(in srgb, red, blue)) {
    .lp-cv2-side-us .lp-cv2-side-num {
        background: none;
        -webkit-text-fill-color: var(--c-fg);
    }
}
.lp-cv2-side-num small {
    font-size: 0.42em;
    font-weight: 700;
    margin-right: 4px;
    color: var(--c-mute);
    -webkit-text-fill-color: var(--c-mute);
    letter-spacing: 0.02em;
}
.lp-cv2-side-meta {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--c-mute);
    letter-spacing: 0.02em;
}

/* Versus arrow */
.lp-cv2-versus-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--c-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent);
    color: var(--c-accent-strong);
}
.lp-cv2-row-theme-deep .lp-cv2-versus-arrow { color: var(--c-accent); }
.lp-cv2-versus-arrow svg { width: 22px; height: 14px; }

/* Text variant of versus zone */
.lp-cv2-row-versus-text .lp-cv2-side-text {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--c-fg);
    margin-top: 6px;
}
.lp-cv2-row-versus-text .lp-cv2-side-bank .lp-cv2-side-text { opacity: 0.7; }

/* Foot row — track + delta */
.lp-cv2-row-foot {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--c-edge);
}
.lp-cv2-row-track {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c-fg) 8%, transparent);
    position: relative;
    overflow: hidden;
}
.lp-cv2-row-track-bank,
.lp-cv2-row-track-us {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    border-radius: 999px;
    transition: width 1.4s cubic-bezier(.22,1.2,.36,1);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 1000ms);
}
.lp-cv2-row-track-bank { transition-delay: calc(var(--lp-i, 0) * 110ms + 1000ms); }
.lp-cv2-row-track-us   { transition-delay: calc(var(--lp-i, 0) * 110ms + 1200ms); }
.lp-cv2-row-track-bank {
    background: linear-gradient(90deg, color-mix(in srgb, var(--bank-c) 60%, transparent), var(--bank-c));
    z-index: 1;
}
.lp-cv2-row-track-us {
    background: linear-gradient(90deg, color-mix(in srgb, var(--c-accent) 70%, transparent), var(--c-accent));
    z-index: 2;
    box-shadow: 0 0 12px color-mix(in srgb, var(--c-accent) 50%, transparent);
}
.lp-cv2-row.is-visible .lp-cv2-row-track-bank,
.lp-cv2-row.is-visible .lp-cv2-row-track-us { width: var(--target); }

.lp-cv2-row-delta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c-accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 40%, transparent);
    color: var(--c-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    white-space: nowrap;
}
.lp-cv2-row-theme-deep .lp-cv2-row-delta { color: var(--c-accent); }
.lp-cv2-row-delta-pill {
    margin-right: auto;
}

/* ============ SPLIT-SCREEN COMPARISON — permanent two-world view ============ */
.lp-cv2-split-wrap {
    position: relative;
    margin: 0 -2vw 80px;
    padding: 64px 6vw 56px;
    background:
        radial-gradient(ellipse 90% 60% at 30% -10%, rgba(220,77,108,0.10), transparent 60%),
        radial-gradient(ellipse 90% 60% at 70% -10%, rgba(67,179,154,0.12), transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(67,179,154,0.06), transparent 55%),
        linear-gradient(180deg, #0e1530 0%, #1c244b 60%, #1a2147 100%);
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 60px 120px -60px rgba(14,21,48,0.6);
}
.lp-cv2-split-ghost {
    position: absolute;
    bottom: -90px;
    left: -40px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(16rem, 30vw, 32rem);
    font-weight: 900;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.06em;
}
.lp-cv2-split-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.lp-cv2-split-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
    margin: 0 auto 36px;
}
.lp-cv2-split-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--us-c-strong);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.lp-cv2-split-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}
.lp-cv2-split-title {
    font-size: clamp(1.85rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #fff;
}
.lp-cv2-split-title-accent {
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}

.lp-cv2-split {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
                0 30px 80px -40px rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
}

.lp-cv2-split-cols {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-cv2-split-col-head {
    padding: 22px 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lp-cv2-split-col-bank {
    text-align: right;
    background: linear-gradient(180deg, rgba(220,77,108,0.10), rgba(220,77,108,0.02));
}
.lp-cv2-split-col-us {
    text-align: left;
    background: linear-gradient(180deg, rgba(67,179,154,0.12), rgba(67,179,154,0.02));
}
.lp-cv2-split-col-divider {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}
.lp-cv2-split-col-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.lp-cv2-split-col-bank .lp-cv2-split-col-tag {
    color: rgba(255,138,160,0.9);
    align-self: flex-end;
}
.lp-cv2-split-col-us .lp-cv2-split-col-tag {
    color: var(--accent);
    align-self: flex-start;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(67,179,154,0.15);
    border: 1px solid rgba(67,179,154,0.35);
}
.lp-cv2-split-col-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.lp-cv2-split-col-bank .lp-cv2-split-col-name { color: rgba(255,255,255,0.85); }

.lp-cv2-split-rows {
    display: flex;
    flex-direction: column;
}
.lp-cv2-split-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 88px;
    position: relative;
    transition: background .35s ease;
    opacity: 0;
    transform: translateY(14px);
}
.lp-cv2-split-row:not(:last-child) {
    border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.lp-cv2-split-wrap.is-visible .lp-cv2-split-row {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s cubic-bezier(.16,1,.3,1),
                transform .7s cubic-bezier(.16,1,.3,1);
    transition-delay: calc(var(--lp-i, 0) * 90ms + 200ms);
}
.lp-cv2-split-row:hover { background: rgba(255,255,255,0.02); }

.lp-cv2-split-side {
    padding: 18px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-cv2-split-side-bank {
    text-align: right;
    background: linear-gradient(90deg, rgba(220,77,108,0.04), transparent);
}
.lp-cv2-split-side-us {
    text-align: left;
    background: linear-gradient(90deg, transparent, rgba(67,179,154,0.05));
}
.lp-cv2-split-num {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.lp-cv2-split-num small {
    font-size: 0.42em;
    font-weight: 700;
    margin-right: 4px;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.55);
    -webkit-text-fill-color: rgba(255,255,255,0.55);
}
.lp-cv2-split-side-bank .lp-cv2-split-num {
    color: rgba(255,138,160,0.9);
    opacity: 0.85;
}
.lp-cv2-split-side-us .lp-cv2-split-num {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--accent) 60%, #fff) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@supports not (color: color-mix(in srgb, red, blue)) {
    .lp-cv2-split-side-us .lp-cv2-split-num {
        background: none;
        -webkit-text-fill-color: #fff;
    }
}
.lp-cv2-split-num-text {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);

}
.lp-cv2-split-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    font-weight: 500;
}

.lp-cv2-split-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 22px;
    min-width: 150px;
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
}
.lp-cv2-split-row-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.lp-cv2-split-delta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 6px 16px -4px rgba(67,179,154,0.5);
    white-space: nowrap;
}
.lp-cv2-split-delta-text {
    background: linear-gradient(135deg, #1c244b 0%, #2d3866 100%);
    box-shadow: 0 6px 16px -4px rgba(28,36,75,0.5);
}

.lp-cv2-split-totals {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.025);
}
.lp-cv2-split-total {
    padding: 18px 28px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.lp-cv2-split-total-bank   { text-align: right; }
.lp-cv2-split-total-us     { text-align: left; }
.lp-cv2-split-total-label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.lp-cv2-split-total-value {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
}
.lp-cv2-split-total-value small {
    font-size: 0.5em;
    font-weight: 700;
    margin-right: 4px;
    color: rgba(255,255,255,0.5);
}
.lp-cv2-split-total-bank .lp-cv2-split-total-value { color: rgba(255,138,160,0.85); }
.lp-cv2-split-total-us   .lp-cv2-split-total-value {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--accent) 60%, #fff) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-cv2-split-total-mid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 30px -10px rgba(67,179,154,0.5);
    margin: 0 8px;
    white-space: nowrap;
}
.lp-cv2-split-total-mid-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
}
.lp-cv2-split-total-mid-value {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.005em;
}
.lp-cv2-split-total-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
    animation: lp-cv2-split-pulse 2s ease-out infinite;
}
@keyframes lp-cv2-split-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    70%  { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 1024px) {
    .lp-cv2-split-wrap { margin: 0 0 64px; padding: 56px 5vw 50px; border-radius: 26px; }
    .lp-cv2-split-col-head { padding: 18px 22px 16px; }
    .lp-cv2-split-side { padding: 16px 22px; }
    .lp-cv2-split-mid { min-width: 130px; padding: 14px 16px; }
    .lp-cv2-split-total { padding: 14px 22px; }
}

@media (max-width: 720px) {
    .lp-cv2-split-wrap { padding: 50px 4vw 44px; border-radius: 22px; }
    .lp-cv2-split-head { margin-bottom: 26px; }
    .lp-cv2-split-eyebrow { font-size: 0.62rem; gap: 10px; margin-bottom: 14px; }
    .lp-cv2-split-eyebrow-line { width: 24px; }
    .lp-cv2-split-title { font-size: 1.5rem; }

    .lp-cv2-split { border-radius: 18px; }

    .lp-cv2-split-cols { grid-template-columns: 1fr 1px 1fr; }
    .lp-cv2-split-col-head { padding: 14px 14px 12px; gap: 4px; }
    .lp-cv2-split-col-tag { font-size: 0.58rem; letter-spacing: 0.12em; }
    .lp-cv2-split-col-name { font-size: 0.92rem; }

    .lp-cv2-split-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
    }
    .lp-cv2-split-side { padding: 14px 14px 10px; gap: 2px; }
    .lp-cv2-split-side-bank { grid-column: 1; grid-row: 1; }
    .lp-cv2-split-side-us   { grid-column: 2; grid-row: 1; }
    .lp-cv2-split-mid {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        padding: 8px 14px 12px;
        min-width: 0;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .lp-cv2-split-row-label { font-size: 0.6rem; letter-spacing: 0.12em; }
    .lp-cv2-split-delta { font-size: 0.74rem; padding: 5px 9px; gap: 4px; }
    .lp-cv2-split-num { font-size: clamp(1.3rem, 6vw, 1.65rem); }
    .lp-cv2-split-num-text { font-size: clamp(1rem, 4.6vw, 1.2rem); }
    .lp-cv2-split-meta { font-size: 0.7rem; line-height: 1.35; }

    .lp-cv2-split-totals {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .lp-cv2-split-total-bank { grid-column: 1; grid-row: 1; padding: 14px; }
    .lp-cv2-split-total-us   { grid-column: 2; grid-row: 1; padding: 14px; }
    .lp-cv2-split-total-mid { grid-column: 1 / -1; grid-row: 2; margin: 12px auto; }
    .lp-cv2-split-total-label { font-size: 0.58rem; letter-spacing: 0.12em; }
    .lp-cv2-split-total-value { font-size: 1.4rem; }
    .lp-cv2-split-ghost { font-size: clamp(10rem, 50vw, 16rem); bottom: -50px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-cv2-split-row { opacity: 1 !important; transform: none !important; }
    .lp-cv2-split-total-pulse { animation: none !important; }
}

/* Hide old toggle dashboard if it still exists */
.lp-cv2-dash { display: none !important; }

/* ============ DASHBOARD — cinematic toggle (replaced by split-screen above) ============ */
.lp-cv2-dash-OLD {
    --m-c: var(--us-c-strong);
    --m-c-soft: rgba(67,179,154,0.16);
    --m-c-glow: rgba(67,179,154,0.45);
    --m-bg-tint: rgba(67,179,154,0.08);

    position: relative;
    margin: 0 -2vw 80px;
    padding: 64px 6vw 56px;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, var(--m-bg-tint), transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(67,179,154,0.06), transparent 55%),
        linear-gradient(180deg, #0e1530 0%, #1c244b 60%, #1a2147 100%);
    color: #fff;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 60px 120px -60px rgba(14,21,48,0.6);
    transition: background 1s cubic-bezier(.16,1,.3,1);
}
.lp-cv2-dash[data-mode="bank"] {
    --m-c: var(--bank-c);
    --m-c-soft: rgba(220,77,108,0.18);
    --m-c-glow: rgba(220,77,108,0.5);
    --m-bg-tint: rgba(220,77,108,0.1);
}

/* Ghost VS / decorative grain */
.lp-cv2-dash-ghost {
    position: absolute;
    bottom: -110px;
    left: -30px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(18rem, 32vw, 34rem);
    font-weight: 900;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.06em;
}
.lp-cv2-dash-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Header */
.lp-cv2-dash-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
    margin: 0 auto 28px;
}
.lp-cv2-dash-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--m-c);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    transition: color .8s ease;
}
.lp-cv2-dash-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--m-c);
    display: inline-block;
    transition: background .8s ease;
}
.lp-cv2-dash-title {
    font-size: clamp(1.85rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 14px;
}
.lp-cv2-dash-title-swap {
    display: inline-block;
    position: relative;
    min-width: 5ch;
    text-align: right;
}
.lp-cv2-dash-title-word {
    display: inline-block;
    transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.lp-cv2-dash-title-word[data-mode-show="bank"] {
    color: #ff8aa0;
}
.lp-cv2-dash-title-accent {
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}
/* Hide the inactive title word with morph */
.lp-cv2-dash[data-mode="us"] .lp-cv2-dash-title-word[data-mode-show="bank"],
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-title-word[data-mode-show="us"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}
.lp-cv2-dash[data-mode="us"] .lp-cv2-dash-title-word[data-mode-show="us"],
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-title-word[data-mode-show="bank"] {
    opacity: 1;
    transform: translateY(0);
}
.lp-cv2-dash-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto;
}

/* TOGGLE — the star control */
.lp-cv2-dash-toggle {
    position: relative;
    z-index: 1;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin: 0 auto 28px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px -25px rgba(0,0,0,0.6),
                inset 0 1px 0 rgba(255,255,255,0.08);
    width: min(440px, 90%);
    overflow: hidden;
}
/* The thumb that slides between buttons */
.lp-cv2-dash-toggle-thumb {
    position: absolute;
    top: 6px;
    bottom: 6px;
    width: calc(50% - 8px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--m-c) 0%, color-mix(in srgb, var(--m-c) 75%, #000) 100%);
    box-shadow: 0 10px 30px -8px var(--m-c-glow),
                inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform .7s cubic-bezier(.34,1.56,.64,1),
                background .8s ease,
                box-shadow .8s ease;
    z-index: 0;
}
/* RTL note: HTML order is [bank, us]; in RTL grid, bank sits on the visual RIGHT, us on the LEFT.
   Anchor thumb at right edge; translateX(negative) slides it LEFT toward the us button. */
.lp-cv2-dash-toggle-thumb { right: 6px; }
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-toggle-thumb {
    transform: translateX(0);
}
.lp-cv2-dash[data-mode="us"] .lp-cv2-dash-toggle-thumb {
    transform: translateX(calc(-100% - 4px));
}

.lp-cv2-dash-toggle-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    border-radius: 999px;
    transition: color .5s ease;
    white-space: nowrap;
}
.lp-cv2-dash-toggle-btn:focus-visible {
    outline: 2px solid var(--m-c);
    outline-offset: 4px;
}
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-toggle-btn[data-target-mode="bank"],
.lp-cv2-dash[data-mode="us"]   .lp-cv2-dash-toggle-btn[data-target-mode="us"] {
    color: #fff;
}
.lp-cv2-dash-toggle-icon {
    width: 18px;
    height: 18px;
    transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-toggle-btn[data-target-mode="bank"] .lp-cv2-dash-toggle-icon,
.lp-cv2-dash[data-mode="us"]   .lp-cv2-dash-toggle-btn[data-target-mode="us"] .lp-cv2-dash-toggle-icon {
    transform: scale(1.08);
}

/* The dashboard board */
.lp-cv2-dash-board {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
                0 30px 80px -40px rgba(0,0,0,0.5);
    padding: 26px 28px 22px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
}

/* SLIP — compact loan summary frame */
.lp-cv2-dash-slip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.lp-cv2-dash-slip-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.lp-cv2-dash-slip-context {
    font-size: 0.86rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    letter-spacing: -0.005em;
}

/* Hero compact — monthly payment + savings pill */
.lp-cv2-dash-hero-compact {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 22px;
}
.lp-cv2-dash-hero-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.lp-cv2-dash-hero-aside { flex: 0 0 auto; }
.lp-cv2-dash-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--m-c-soft);
    border: 1px solid color-mix(in srgb, var(--m-c) 30%, transparent);
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    font-weight: 700;
    transition: background .8s ease, border-color .8s ease;
}
.lp-cv2-dash-hero-pill-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--m-c);
    transition: color .8s ease;
}
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-hero-pill-arrow svg { transform: rotate(180deg); }

/* Stats row — 4 micro-stats inline */
.lp-cv2-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    margin-bottom: 18px;
}
.lp-cv2-dash-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 14px;
    transition: background .4s ease;
}
.lp-cv2-dash-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 0;
    width: 1px;
    background: rgba(255,255,255,0.07);
}
.lp-cv2-dash-stat:hover { background: rgba(255,255,255,0.03); }
.lp-cv2-dash-stat-label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.lp-cv2-dash-stat-val {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #fff;
    font-variant-numeric: tabular-nums;
    transition: color .8s ease;
    margin: 2px 0 4px;
}
.lp-cv2-dash-stat-val-text {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);

}
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-stat-val { color: #ff8aa0; }
.lp-cv2-dash[data-mode="us"] .lp-cv2-dash-stat-val { color: var(--m-c); }
.lp-cv2-dash-stat-meta {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    font-weight: 500;
    min-height: 1.4em;
}

/* Legacy hero (unused, hidden) — slot styles below still drive the compact hero */
.lp-cv2-dash-hero { display: none; }
.lp-cv2-dash-hero-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.lp-cv2-dash-hero-bank   { text-align: right; }
.lp-cv2-dash-hero-savings { text-align: left; }
.lp-cv2-dash-hero-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
}
.lp-cv2-dash-hero-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.lp-cv2-dash-hero-bank .lp-cv2-dash-hero-label { color: rgba(255,138,160,0.85); }
.lp-cv2-dash-hero-savings .lp-cv2-dash-hero-label {
    color: var(--m-c);
    transition: color .8s ease;
}

.lp-cv2-dash-hero-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.lp-cv2-dash-hero-bank .lp-cv2-dash-hero-num { justify-content: flex-end; }
.lp-cv2-dash-hero-savings .lp-cv2-dash-hero-num { justify-content: flex-start; }
.lp-cv2-dash-hero-prefix {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: rgba(255,255,255,0.4);
    font-weight: 700;
}
.lp-cv2-dash-hero-value {
    font-size: clamp(2.6rem, 5.2vw, 4.2rem);
    font-variant-numeric: tabular-nums;
    color: #fff;
    transition: color .8s ease;
}
.lp-cv2-dash-hero-bank .lp-cv2-dash-hero-value { color: #ff8aa0; opacity: 0.95; }
.lp-cv2-dash-hero-savings .lp-cv2-dash-hero-value {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--m-c) 65%, #fff) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 1s ease;
}
@supports not (color: color-mix(in srgb, red, blue)) {
    .lp-cv2-dash-hero-savings .lp-cv2-dash-hero-value {
        background: none;
        -webkit-text-fill-color: #fff;
    }
}
.lp-cv2-dash-hero-unit {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: rgba(255,255,255,0.55);
}
.lp-cv2-dash-hero-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    font-weight: 500;
}

/* KPI grid */
.lp-cv2-dash-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.lp-cv2-dash-kpi {
    position: relative;
    padding: 22px 22px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    overflow: hidden;
    isolation: isolate;
    transition: border-color .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.lp-cv2-dash-kpi:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--m-c) 35%, transparent);
}
/* Animated accent glow inside each card, follows mode */
.lp-cv2-dash-kpi::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(ellipse 60% 80% at 100% 0%, var(--m-c-soft), transparent 70%);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: 0;
}
.lp-cv2-dash-kpi.is-visible::before { opacity: 1; }

.lp-cv2-dash-kpi-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.lp-cv2-dash-kpi-num {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.4);
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
}
.lp-cv2-dash-kpi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--m-c-soft);
    color: var(--m-c);
    transition: background .8s ease, color .8s ease;
}
.lp-cv2-dash-kpi-icon svg { width: 16px; height: 16px; }
.lp-cv2-dash-kpi-head h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    flex: 1;
    line-height: 1.25;
}

/* Big value */
.lp-cv2-dash-kpi-value {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
}
.lp-cv2-dash-kpi-big {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    transition: color .8s ease;
}
.lp-cv2-dash-kpi-big-text {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);

}
.lp-cv2-dash[data-mode="bank"] .lp-cv2-dash-kpi-big { color: #ff8aa0; }
.lp-cv2-dash[data-mode="us"] .lp-cv2-dash-kpi-big {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--m-c) 60%, #fff) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@supports not (color: color-mix(in srgb, red, blue)) {
    .lp-cv2-dash[data-mode="us"] .lp-cv2-dash-kpi-big {
        background: none;
        -webkit-text-fill-color: #fff;
    }
}

/* Bar */
.lp-cv2-dash-kpi-bar {
    position: relative;
    z-index: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
    margin-bottom: 12px;
}
.lp-cv2-dash-kpi-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--m-c) 60%, transparent), var(--m-c));
    box-shadow: 0 0 12px var(--m-c-glow);
    transition: width 1s cubic-bezier(.22,1.2,.36,1),
                background .8s ease,
                box-shadow .8s ease;
    position: relative;
}
.lp-cv2-dash-kpi-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: lp-cv2-dash-shine 3s ease-in-out infinite;
    animation-delay: calc(var(--lp-i, 0) * 250ms);
}
@keyframes lp-cv2-dash-shine { 100% { left: 110%; } }

/* Meta line */
.lp-cv2-dash-kpi-meta {
    position: relative;
    z-index: 1;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    min-height: 1.2em;
    transition: color .5s ease;
}

/* Foot strip */
.lp-cv2-dash-foot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--m-c-soft);
    border: 1px solid color-mix(in srgb, var(--m-c) 30%, transparent);
    color: rgba(255,255,255,0.85);
    font-size: 0.84rem;
    font-weight: 600;
    transition: background .8s ease, border-color .8s ease;
}
.lp-cv2-dash-foot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--m-c);
    box-shadow: 0 0 0 0 var(--m-c-glow);
    animation: lp-cv2-dash-pulse 2s ease-out infinite;
    transition: background .8s ease;
}
@keyframes lp-cv2-dash-pulse {
    0%   { box-shadow: 0 0 0 0 var(--m-c-glow); }
    70%  { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* Cross-fade for text-swap elements (meta + title-swap + foot-text) */
[data-dash-text] {
    display: inline-block;
    transition: opacity .35s ease;
}
.lp-cv2-dash.is-morphing [data-dash-text] {
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .lp-cv2-dash {
        margin: 0 0 64px;
        padding: 64px 5vw 56px;
        border-radius: 26px;
    }
    .lp-cv2-dash-board { padding: 28px 26px 24px; }
    .lp-cv2-dash-hero {
        grid-template-columns: 1fr 1px 1fr;
        gap: 22px;
        padding: 18px 6px 24px;
    }
    .lp-cv2-dash-hero-value { font-size: clamp(2rem, 5vw, 3.4rem); }
}

@media (max-width: 720px) {
    .lp-cv2-dash {
        padding: 56px 5vw 50px;
        border-radius: 22px;
    }
    .lp-cv2-dash-head { margin-bottom: 32px; }
    .lp-cv2-dash-eyebrow { font-size: 0.66rem; gap: 10px; margin-bottom: 16px; }
    .lp-cv2-dash-eyebrow-line { width: 24px; }
    .lp-cv2-dash-title { font-size: 1.6rem; }
    .lp-cv2-dash-sub { font-size: 0.92rem; line-height: 1.65; }

    .lp-cv2-dash-toggle {
        width: 100%;
        margin-bottom: 32px;
    }
    .lp-cv2-dash-toggle-btn { font-size: 0.85rem; padding: 12px 10px; gap: 6px; }
    .lp-cv2-dash-toggle-icon { width: 16px; height: 16px; }

    .lp-cv2-dash-board { padding: 22px 18px 20px; border-radius: 20px; }

    /* Slip head — keep inline */
    .lp-cv2-dash-slip-head { gap: 8px; padding-bottom: 14px; margin-bottom: 14px; }
    .lp-cv2-dash-slip-tag { font-size: 0.6rem; padding: 3px 9px; }
    .lp-cv2-dash-slip-context { font-size: 0.78rem; }

    /* Hero compact — stack vertically with savings pill below */
    .lp-cv2-dash-hero-compact {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }
    .lp-cv2-dash-hero-aside { justify-self: flex-start; }
    .lp-cv2-dash-hero-value { font-size: clamp(2.6rem, 11vw, 3.4rem); }
    .lp-cv2-dash-hero-pill { font-size: 0.78rem; padding: 7px 12px; }

    /* Stats — 2x2 instead of 4x1 */
    .lp-cv2-dash-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-cv2-dash-stat { padding: 14px 12px; }
    /* Re-do the dividers for 2x2 layout */
    .lp-cv2-dash-stat:not(:last-child)::after { display: none; }
    .lp-cv2-dash-stat:nth-child(odd)::after {
        display: block;
        content: "";
        position: absolute;
        top: 18%;
        bottom: 18%;
        left: 0;
        width: 1px;
        background: rgba(255,255,255,0.07);
    }
    .lp-cv2-dash-stat:nth-child(-n+2)::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 12%;
        right: 12%;
        height: 1px;
        background: rgba(255,255,255,0.07);
    }
    .lp-cv2-dash-stat-label { font-size: 0.6rem; }
    .lp-cv2-dash-stat-val { font-size: clamp(1.15rem, 5.5vw, 1.45rem); }
    .lp-cv2-dash-stat-val-text { font-size: clamp(1rem, 4.8vw, 1.2rem); }
    .lp-cv2-dash-stat-meta { font-size: 0.7rem; }

    .lp-cv2-dash-foot { font-size: 0.78rem; padding: 9px 14px; }
    .lp-cv2-dash-ghost { font-size: clamp(10rem, 50vw, 16rem); bottom: -50px; left: -20px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-cv2-dash-toggle-thumb,
    .lp-cv2-dash-kpi-fill,
    .lp-cv2-dash-hero-value,
    .lp-cv2-dash-kpi-big { transition: none !important; }
    .lp-cv2-dash-kpi-fill::after,
    .lp-cv2-dash-foot-pulse { animation: none !important; }
}

/* Hide legacy block fully */
.lp-cv2-metrics,
.lp-cv2-metric,
.lp-cv2-ledger { display: none !important; }

.lp-cv2-metrics-head {
    text-align: center;
    margin-bottom: 28px;
}
.lp-cv2-metrics-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--us-c-strong);
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--us-soft);
}
.lp-cv2-metrics-title {
    font-size: clamp(1.4rem, 2.2vw, 1.7rem);
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.lp-cv2-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lp-cv2-metric {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    border: 1px solid rgba(28,36,75,0.06);
    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 20px 50px -30px rgba(28,36,75,0.18);
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity .85s cubic-bezier(.16,1,.3,1),
                transform .85s cubic-bezier(.16,1,.3,1),
                box-shadow .45s ease,
                border-color .35s ease;
    transition-delay: calc(var(--lp-i, 0) * 110ms);
    will-change: transform, opacity;
}
.lp-cv2-metric.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.lp-cv2-metric:hover {
    border-color: rgba(67,179,154,0.28);
    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset,
                0 30px 70px -30px rgba(28,36,75,0.28),
                0 0 0 1px rgba(67,179,154,0.08);
    transform: translateY(-4px) scale(1);
}

.lp-cv2-metric-glow { display: none; }

/* Header row */
.lp-cv2-metric-head {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.lp-cv2-metric-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(28,36,75,0.05);
}
.lp-cv2-metric-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--us-soft), #fff);
    color: var(--us-c-strong);
    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset,
                0 6px 16px -8px rgba(67,179,154,0.45),
                0 0 0 1px rgba(67,179,154,0.08);
    overflow: hidden;
    isolation: isolate;
}
.lp-cv2-metric-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform .55s cubic-bezier(.34,1.56,.64,1);
}
/* Soft inner shimmer that pulses on each card */
.lp-cv2-metric-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(67,179,154,0.35), transparent 60%);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
}
.lp-cv2-metric.is-visible .lp-cv2-metric-icon::before {
    animation: lp-cv2-icon-pulse 3.6s ease-in-out infinite;
    animation-delay: calc(var(--lp-i, 0) * 110ms + 700ms);
}
@keyframes lp-cv2-icon-pulse {
    0%, 100% { opacity: 0; transform: scale(0.85); }
    50%      { opacity: 0.9; transform: scale(1.1); }
}

/* Continuous, distinct motion per metric — only after entry */
.lp-cv2-metric.is-visible[style*="--lp-i:0"] .lp-cv2-metric-icon svg {
    /* גובה הריבית — coin descent */
    animation: lp-cv2-ic-fall 2.8s cubic-bezier(.4,.1,.2,1) infinite;
    animation-delay: 1.2s;
}
.lp-cv2-metric.is-visible[style*="--lp-i:1"] .lp-cv2-metric-icon svg {
    /* סוג מסלול — heartbeat (יציבות) */
    animation: lp-cv2-ic-beat 2.4s ease-in-out infinite;
    animation-delay: 1.3s;
}
.lp-cv2-metric.is-visible[style*="--lp-i:2"] .lp-cv2-metric-icon svg {
    /* מצב החיסכון — trend up rise */
    animation: lp-cv2-ic-rise 3s ease-in-out infinite;
    animation-delay: 1.4s;
}
.lp-cv2-metric.is-visible[style*="--lp-i:3"] .lp-cv2-metric-icon svg {
    /* אישור הלוואה — clock tick */
    animation: lp-cv2-ic-tick 2s cubic-bezier(.5,0,.5,1) infinite;
    animation-delay: 1.5s;
}

@keyframes lp-cv2-ic-fall {
    0%   { transform: translateY(-3px) rotate(-4deg); }
    50%  { transform: translateY(2px) rotate(4deg); }
    100% { transform: translateY(-3px) rotate(-4deg); }
}
@keyframes lp-cv2-ic-beat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.18); }
    28%      { transform: scale(0.95); }
    42%      { transform: scale(1.1); }
    56%      { transform: scale(1); }
}
@keyframes lp-cv2-ic-rise {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(2px, -3px); }
}
@keyframes lp-cv2-ic-tick {
    0%, 100% { transform: rotate(0); }
    25%      { transform: rotate(8deg); }
    50%      { transform: rotate(0); }
    75%      { transform: rotate(-8deg); }
}

/* Hover supercharge — pause baseline, do a bold gesture */
.lp-cv2-metric:hover .lp-cv2-metric-icon svg {
    animation-play-state: paused;
    transform: scale(1.18) rotate(-8deg);
}
.lp-cv2-metric:hover .lp-cv2-metric-icon {
    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset,
                0 10px 22px -8px rgba(67,179,154,0.6),
                0 0 0 2px rgba(67,179,154,0.15);
}

.lp-cv2-metric-head h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Delta badge — pops in with spring */
.lp-cv2-metric-delta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    box-shadow: 0 6px 18px -4px rgba(67,179,154,0.45);
    white-space: nowrap;
    transform: scale(0.5) rotate(-8deg);
    opacity: 0;
    transition: transform .7s cubic-bezier(.34,1.56,.64,1), opacity .5s ease;
    transition-delay: calc(var(--lp-i, 0) * 110ms + 350ms);
}
.lp-cv2-metric.is-visible .lp-cv2-metric-delta {
    transform: scale(1) rotate(0);
    opacity: 1;
}
.lp-cv2-delta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.lp-cv2-delta-x { font-size: 1rem; font-weight: 900; }
.lp-cv2-delta-pill {
    background: linear-gradient(135deg, #1c244b 0%, #2d3866 100%);
    box-shadow: 0 6px 18px -4px rgba(28,36,75,0.45);
    font-size: 0.85rem;
    padding: 7px 14px;
}

/* Body */
.lp-cv2-metric-body {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.lp-cv2-mbar {
    display: grid;
    grid-template-columns: 56px 1fr 76px;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
}
.lp-cv2-mbar-bank { background: linear-gradient(90deg, rgba(220,77,108,0.06), rgba(220,77,108,0.02)); }
.lp-cv2-mbar-us   { background: linear-gradient(90deg, rgba(67,179,154,0.08), rgba(67,179,154,0.02)); }

.lp-cv2-mbar-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.lp-cv2-mbar-bank .lp-cv2-mbar-name { color: var(--bank-c); }
.lp-cv2-mbar-us   .lp-cv2-mbar-name { color: var(--us-c-strong); }

.lp-cv2-mbar-track {
    height: 10px;
    background: rgba(28,36,75,0.07);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(28,36,75,0.06);
}
.lp-cv2-mbar-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 1.4s cubic-bezier(.22,1.2,.36,1);
    transition-delay: calc(var(--lp-i, 0) * 110ms + 250ms);
    position: relative;
    overflow: hidden;
}
.lp-cv2-mbar-bank .lp-cv2-mbar-fill {
    background: linear-gradient(90deg, #b94058, var(--bank-c));
    box-shadow: 0 0 12px rgba(220,77,108,0.35);
}
.lp-cv2-mbar-us .lp-cv2-mbar-fill {
    background: linear-gradient(90deg, var(--accent-light), var(--us-c-strong));
    box-shadow: 0 0 14px rgba(67,179,154,0.45);
}
.lp-cv2-mbar-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    animation: lp-cv2-shine 2.8s ease-in-out 1.8s infinite;
}
@keyframes lp-cv2-shine { 100% { left: 110%; } }
.lp-cv2-metric.is-visible .lp-cv2-mbar-fill { width: var(--target); }

.lp-cv2-mbar-val {
    font-size: 0.95rem;
    font-weight: 800;
    text-align: left;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}
.lp-cv2-mbar-bank .lp-cv2-mbar-val { color: var(--bank-c); }
.lp-cv2-mbar-us   .lp-cv2-mbar-val { color: var(--us-c-strong); }

/* Text variant */
.lp-cv2-mbar-text-row { grid-template-columns: 56px 1fr; }
.lp-cv2-mbar-text {
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 4px 0;
    font-weight: 600;
}
.lp-cv2-mbar-bank .lp-cv2-mbar-text { color: #8c2f44; }
.lp-cv2-mbar-us   .lp-cv2-mbar-text { color: var(--us-c-strong); }

/* ============================================
   RECEIPTS — side-by-side document comparison
   ============================================ */
.lp-receipts {
    position: relative;
    margin: 60px 0 0;
    padding: 0 4vw;
}
.lp-receipts-head {
    text-align: center;
    margin-bottom: 56px;
}
.lp-receipts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.lp-receipts-eyebrow-line {
    width: 36px;
    height: 1px;
    background: rgba(11,18,46,0.18);
}
.lp-receipts-title {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.18;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}
.lp-receipts-title-accent {
    color: var(--accent-dark);
}
.lp-receipts-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid of receipts */
.lp-receipts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
    align-items: start;
    perspective: 1200px;
}

/* Single receipt */
.lp-receipt {
    --paper: #fbf8f1;
    --paper-edge: #f3eee2;
    --ink: #2a2520;
    --ink-soft: #6f6358;
    position: relative;
    background: var(--paper);
    color: var(--ink);
    padding: 28px 26px 18px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, 'Courier New', monospace;
    font-size: 0.86rem;
    line-height: 1.5;
    box-shadow:
        0 22px 48px -16px rgba(0,0,0,0.55),
        0 6px 14px rgba(0,0,0,0.18),
        0 0 0 1px rgba(0,0,0,0.04);
    /* Paper texture */
    background-image:
        radial-gradient(ellipse at top right, rgba(0,0,0,0.025), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(0,0,0,0.02), transparent 55%),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.013) 0 1px, transparent 1px 3px);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s;
    transform-style: preserve-3d;
}
/* Top accent bar */
.lp-receipt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    border-radius: 4px 4px 0 0;
}
.lp-receipt-bank::before {
    background: linear-gradient(90deg, #b94560, #d49060);
}
.lp-receipt-us::before {
    background: linear-gradient(90deg, #2d7d6e, #5be3c5);
}
/* Casual rotation — like receipts thrown on a table */
.lp-receipt-bank { transform: rotate(-1.2deg); }
.lp-receipt-us   { transform: rotate(1.2deg); }
.lp-receipt-bank:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow:
        0 28px 56px -16px rgba(0,0,0,0.6),
        0 8px 18px rgba(0,0,0,0.22),
        0 0 0 1px rgba(0,0,0,0.04);
}
.lp-receipt-us:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow:
        0 28px 56px -16px rgba(45,125,110,0.5),
        0 8px 18px rgba(45,125,110,0.2),
        0 0 0 1px rgba(67,179,154,0.18);
}

/* Stamp */
.lp-receipt-stamp {
    position: absolute;
    top: 22px;
    inset-inline-end: -10px;
    padding: 5px 14px;
    font-family: 'Heebo', system-ui, sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border: 2.5px solid;
    border-radius: 4px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
    text-transform: uppercase;
}
.lp-receipt-stamp-bad  { color: #b94560; border-color: #b94560; transform: rotate(7deg); opacity: 0.85; }
.lp-receipt-stamp-good { color: #2d7d6e; border-color: #2d7d6e; transform: rotate(-7deg); }

/* Header */
.lp-receipt-head {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1.5px dashed rgba(0,0,0,0.18);
}
.lp-receipt-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-receipt-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    font-family: 'Heebo', system-ui, sans-serif;
    letter-spacing: -0.02em;
    flex: 0 0 auto;
}
.lp-receipt-brand-mark-bank { background: linear-gradient(135deg, #b94560, #8a3445); }
.lp-receipt-brand-mark-us   { background: linear-gradient(135deg, #43b39a, #2d7d6e); }
.lp-receipt-brand-info { display: flex; flex-direction: column; }
.lp-receipt-brand-info strong {
    font-family: 'Heebo', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.lp-receipt-brand-info small {
    font-family: 'Heebo', system-ui, sans-serif;
    font-size: 0.74rem;
    color: var(--ink-soft);
    margin-top: 3px;
    font-weight: 500;
}

/* Meta line */
.lp-receipt-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--ink-soft);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

/* Items list with dotted leaders */
.lp-receipt-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.lp-receipt-items li {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.lp-receipt-li-label {
    color: var(--ink-soft);
    font-family: 'Heebo', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    flex: 0 0 auto;
}
.lp-receipt-li-dots {
    flex: 1 1 auto;
    border-bottom: 1.5px dotted rgba(0,0,0,0.28);
    transform: translateY(-4px);
    min-width: 12px;
}
.lp-receipt-li-value {
    flex: 0 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.lp-receipt-bad  { color: #b94560 !important; }
.lp-receipt-good { color: #2d7d6e !important; }

/* Double-line divider before total */
.lp-receipt-divider {
    margin: 16px 0 12px;
    height: 5px;
    border-top: 1.5px solid rgba(0,0,0,0.4);
    border-bottom: 1.5px solid rgba(0,0,0,0.4);
}

/* Total row */
.lp-receipt-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}
.lp-receipt-total-label {
    font-family: 'Heebo', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.lp-receipt-total-value {
    font-size: 1.4rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* Footer / signature */
.lp-receipt-foot {
    text-align: center;
    padding-top: 12px;
    border-top: 1px dashed rgba(0,0,0,0.18);
}
.lp-receipt-sig {
    font-family: 'Heebo', system-ui, sans-serif;
    font-size: 0.72rem;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}

/* Diff highlight under receipts */
.lp-receipts-diff {
    position: relative;
    margin: 44px auto 0;
    max-width: 560px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(67,179,154,0.16), rgba(67,179,154,0.05));
    border: 1.5px solid rgba(67,179,154,0.4);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 12px 30px -10px rgba(45,125,110,0.18);
}
.lp-receipts-diff::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(67,179,154,0.1), transparent 60%);
    pointer-events: none;
}
.lp-receipts-diff-arrow {
    color: #fff;
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    background: var(--accent-dark);
    border-radius: 50%;
    margin-bottom: 4px;
    z-index: 1;
    box-shadow: 0 6px 14px -4px rgba(45,125,110,0.5);
}
.lp-receipts-diff-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 1;
}
.lp-receipts-diff-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.lp-receipts-diff-num {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--accent-dark);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lp-receipts-diff-cur {
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.7;
}
.lp-receipts-diff-num > span:last-child {
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.lp-receipts-diff-meta {
    font-size: 0.86rem;
    color: var(--secondary);
    font-weight: 500;
    z-index: 1;
}

/* Responsive */
@media (max-width: 720px) {
    .lp-receipts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .lp-receipt-bank, .lp-receipt-us {
        transform: rotate(0);
    }
    .lp-receipt-bank:hover, .lp-receipt-us:hover {
        transform: translateY(-3px);
    }
    .lp-receipt {
        padding: 24px 20px 16px;
        font-size: 0.82rem;
    }
    .lp-receipt-li-label { font-size: 0.8rem; }
    .lp-receipt-li-value { font-size: 0.86rem; }
    .lp-receipt-total-value { font-size: 1.2rem; }
    .lp-receipts-diff-num > span:last-child { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-receipt { transition: none; }
    .lp-receipt-bank, .lp-receipt-us { transform: none; }
}

/* CTA */
.lp-cv2-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.lp-cv2-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--secondary);
    color: #fff;
    padding: 18px 24px 18px 18px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .3s ease;
    box-shadow: 0 16px 40px -10px rgba(28,36,75,0.45);
}
.lp-cv2-cta-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -10px rgba(28,36,75,0.55);
}
.lp-cv2-cta-arrow {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.lp-cv2-cta-btn:hover .lp-cv2-cta-arrow svg { transform: translateX(-4px); transition: transform .35s; }
.lp-cv2-cta-note {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============ RESPONSIVE — fully tuned ============ */

/* Tablet / small desktop */
@media (max-width: 1024px) {
    .lp-cv2 { padding: 100px 5vw; }
    .lp-cv2-head { margin-bottom: 48px; }
    .lp-cv2-savings { padding: 36px 36px; gap: 32px; }
    .lp-cv2-savings-num > span[data-cv2-count] { font-size: 4.6rem; }
    .lp-cv2-versus { gap: 18px; }
    .lp-cv2-card { padding: 32px 28px; }
    .lp-cv2-card-rate-num { font-size: 3.6rem; }
    .lp-cv2-vs-badge { width: 50px; height: 50px; font-size: 0.85rem; }
    .lp-cv2-metrics-grid { gap: 14px; }
    .lp-cv2-metric { padding: 22px 20px; gap: 16px; }
    .lp-cv2-metric-head h4 { font-size: 1.02rem; }

    /* Ledger tablet/desktop-small */
    .lp-cv2-ledger { margin: 0 0 64px; padding: 70px 5vw 64px; border-radius: 26px; }
    .lp-cv2-ledger-ghost { font-size: clamp(14rem, 28vw, 24rem); bottom: -60px; left: -30px; }
    .lp-cv2-ledger-head { margin-bottom: 44px; }
    .lp-cv2-row-content {
        grid-template-columns: minmax(160px, 1fr) 1.8fr;
        column-gap: 28px;
        padding: 28px 28px 26px;
    }
    .lp-cv2-side-num { font-size: clamp(2.1rem, 4vw, 2.8rem); }
}

/* Tablet portrait — stack cards, switch VS to horizontal */
@media (max-width: 820px) {
    .lp-cv2-savings {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 28px;
        text-align: right;
        border-radius: 22px;
    }
    .lp-cv2-savings-right { justify-content: flex-start; display: flex; }
    .lp-cv2-savings-num { justify-content: flex-start; }
    .lp-cv2-ring { width: 132px; height: 132px; }
    .lp-cv2-ring-num { font-size: 2rem; }

    .lp-cv2-versus {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .lp-cv2-vs {
        flex-direction: row;
        padding: 0;
        gap: 12px;
    }
    .lp-cv2-vs-line {
        width: auto;
        height: 1px;
        flex: 1;
        background: linear-gradient(90deg, transparent, rgba(28,36,75,0.15), transparent);
    }
    .lp-cv2-vs-badge {
        width: 44px; height: 44px;
        font-size: 0.78rem;
        box-shadow: 0 0 0 5px #f5f7f9, 0 8px 22px rgba(28,36,75,0.2);
    }

    .lp-cv2-metrics-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .lp-cv2-metric { padding: 22px 20px; gap: 16px; }

    /* Ledger tablet portrait — stack content vertically per row */
    .lp-cv2-ledger { padding: 60px 5vw 56px; }
    .lp-cv2-ledger-head { margin-bottom: 36px; }
    .lp-cv2-row-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        column-gap: 0;
        row-gap: 16px;
        padding: 26px 24px 24px;
    }
    .lp-cv2-row-meta { grid-column: 1; grid-row: 1; }
    .lp-cv2-row-title { grid-column: 1; grid-row: 2; align-self: start; }
    .lp-cv2-row-versus { grid-column: 1; grid-row: 3; }
    .lp-cv2-row-foot { grid-column: 1; grid-row: 4; }
    .lp-cv2-versus-arrow { transform: rotate(90deg); width: 38px; height: 38px; }
    .lp-cv2-versus-arrow svg { width: 18px; height: 12px; }
}

/* Mobile */
@media (max-width: 560px) {
    .lp-cv2 { padding: 72px 18px 64px; }
    .lp-cv2-head { margin-bottom: 36px; }
    .lp-cv2-eyebrow { gap: 10px; font-size: 0.7rem; margin-bottom: 16px; }
    .lp-cv2-eyebrow-line { width: 24px; }
    .lp-cv2-title { font-size: 1.95rem; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.025em; }
    .lp-cv2-sub { font-size: 0.95rem; line-height: 1.65; }

    /* Savings banner */
    .lp-cv2-savings {
        padding: 26px 22px;
        margin-bottom: 44px;
        gap: 20px;
        border-radius: 20px;
    }
    .lp-cv2-savings-label { font-size: 0.7rem; letter-spacing: 0.12em; gap: 8px; margin-bottom: 10px; }
    .lp-cv2-savings-prefix { font-size: 1.6rem; margin-left: 4px; }
    .lp-cv2-savings-num > span[data-cv2-count] { font-size: 3.4rem; }
    .lp-cv2-savings-currency { font-size: 1.6rem; margin-right: 2px; }
    .lp-cv2-savings-meta { font-size: 0.82rem; line-height: 1.5; }
    .lp-cv2-ring { width: 116px; height: 116px; }
    .lp-cv2-ring-num { font-size: 1.7rem; }
    .lp-cv2-ring-num small { font-size: 0.95rem; }
    .lp-cv2-ring-label { font-size: 0.62rem; margin-top: 2px; }

    /* VS cards */
    .lp-cv2-versus { gap: 12px; margin-bottom: 48px; }
    .lp-cv2-card {
        padding: 26px 22px;
        border-radius: 18px;
    }
    .lp-cv2-card-head { margin-bottom: 22px; padding-bottom: 18px; }
    .lp-cv2-card-tagrow { margin-bottom: 10px; min-height: 22px; }
    .lp-cv2-card-tag { font-size: 0.65rem; letter-spacing: 0.08em; }
    .lp-cv2-card-badge { font-size: 0.62rem; padding: 3px 8px 3px 7px; }
    .lp-cv2-card-title { font-size: 1.2rem; margin-bottom: 14px; }
    .lp-cv2-card-rate-num { font-size: 3.2rem; }
    .lp-cv2-card-rate-pct { font-size: 1.4rem; }
    .lp-cv2-card-rate-meta { font-size: 0.78rem; margin-top: 6px; }
    .lp-cv2-list { gap: 12px; }
    .lp-cv2-list li { font-size: 0.88rem; line-height: 1.55; gap: 10px; }
    .lp-cv2-list li strong { display: block; margin-bottom: 1px; }
    .lp-cv2-li-icon { flex: 0 0 20px; width: 20px; height: 20px; }

    .lp-cv2-vs { padding: 4px 0; gap: 10px; }
    .lp-cv2-vs-badge {
        width: 38px; height: 38px;
        font-size: 0.7rem;
        box-shadow: 0 0 0 4px #f5f7f9, 0 6px 16px rgba(28,36,75,0.18);
    }

    /* Metrics — mobile premium redesign */
    .lp-cv2-metrics { margin-bottom: 40px; }
    .lp-cv2-metrics-head { margin-bottom: 22px; }
    .lp-cv2-metrics-eyebrow { font-size: 0.62rem; letter-spacing: 0.18em; padding: 4px 11px; }
    .lp-cv2-metrics-title { font-size: 1.2rem; line-height: 1.3; }
    .lp-cv2-metrics-grid { gap: 12px; }

    .lp-cv2-metric {
        padding: 18px 16px 16px;
        gap: 14px;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
        border: 1px solid rgba(28,36,75,0.07);
        box-shadow: 0 14px 28px -22px rgba(28,36,75,0.18);
    }

    /* Header: number + icon + title in one tidy row, delta floats top-left */
    .lp-cv2-metric-head {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 78px; /* space for absolute delta */
        min-height: 40px;
    }
    .lp-cv2-metric-num {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
        padding: 3px 7px;
        flex: 0 0 auto;
    }
    .lp-cv2-metric-icon {
        width: 36px; height: 36px;
        border-radius: 10px;
        flex: 0 0 auto;
    }
    .lp-cv2-metric-icon svg { width: 18px; height: 18px; }
    .lp-cv2-metric-head h4 {
        font-size: 1.02rem;
        font-weight: 800;
        flex: 1 1 auto;
        line-height: 1.25;
    }
    .lp-cv2-metric-delta {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%) scale(0.5) rotate(-8deg);
        font-size: 0.78rem;
        padding: 6px 11px;
        gap: 4px;
    }
    .lp-cv2-metric.is-visible .lp-cv2-metric-delta {
        transform: translateY(-50%) scale(1) rotate(0);
    }
    .lp-cv2-metric-delta.lp-cv2-delta-pill { font-size: 0.72rem; padding: 6px 11px; }

    /* Body: subtle divider above for clearer separation */
    .lp-cv2-metric-body {
        gap: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(28,36,75,0.06);
    }

    /* Bars: stack vertically — label+value on top, full-width bar below */
    .lp-cv2-mbar {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px;
        border-radius: 12px;
    }
    .lp-cv2-mbar-track {
        height: 10px;
        order: 2;
        margin-top: 2px;
    }
    .lp-cv2-mbar-name {
        font-size: 0.7rem;
        order: 1;
    }
    .lp-cv2-mbar-val {
        font-size: 1.05rem;
        font-weight: 900;
        text-align: left;
        order: 1;
        margin-right: auto; /* RTL: pushes value to far left */
    }
    /* Put name + val side by side as first row */
    .lp-cv2-mbar > .lp-cv2-mbar-name,
    .lp-cv2-mbar > .lp-cv2-mbar-val {
        display: inline-block;
    }
    .lp-cv2-mbar {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 4px 10px;
    }
    .lp-cv2-mbar-name { grid-column: 1; grid-row: 1; }
    .lp-cv2-mbar-val { grid-column: 2; grid-row: 1; margin: 0; }
    .lp-cv2-mbar-track { grid-column: 1 / -1; grid-row: 2; }

    /* Text variant: name on top, sentence below — same vertical layout */
    .lp-cv2-mbar-text-row { grid-template-columns: 1fr; grid-template-rows: auto auto; }
    .lp-cv2-mbar-text-row .lp-cv2-mbar-name { grid-column: 1; grid-row: 1; }
    .lp-cv2-mbar-text {
        grid-column: 1;
        grid-row: 2;
        font-size: 0.92rem;
        line-height: 1.5;
        font-weight: 600;
    }

    /* Ledger — mobile premium */
    .lp-cv2-ledger {
        margin: 0 -18px 44px;
        padding: 56px 22px 50px;
        border-radius: 0;
    }
    .lp-cv2-ledger-ghost { font-size: clamp(11rem, 60vw, 18rem); bottom: -40px; left: -20px; }
    .lp-cv2-ledger-head { margin-bottom: 32px; }
    .lp-cv2-ledger-eyebrow { font-size: 0.66rem; letter-spacing: 0.16em; gap: 10px; margin-bottom: 16px; }
    .lp-cv2-ledger-eyebrow-line { width: 24px; }
    .lp-cv2-ledger-title { font-size: 1.5rem; line-height: 1.25; }
    .lp-cv2-ledger-rows { gap: 14px; }

    .lp-cv2-row-content {
        padding: 22px 20px 20px;
        row-gap: 14px;
    }
    .lp-cv2-row-meta { gap: 12px; flex-wrap: wrap; }
    .lp-cv2-row-num { font-size: 0.7rem; padding-left: 24px; }
    .lp-cv2-row-num::before { width: 16px; }
    .lp-cv2-row-tag { font-size: 0.65rem; padding: 4px 9px; }
    .lp-cv2-row-title { font-size: 1.25rem; }

    .lp-cv2-row-versus {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        text-align: center;
    }
    .lp-cv2-side { align-items: center; }
    .lp-cv2-side-bank,
    .lp-cv2-side-us { text-align: center; }
    .lp-cv2-side-num { font-size: clamp(2rem, 9vw, 2.4rem); }
    .lp-cv2-versus-arrow {
        transform: rotate(90deg);
        width: 34px;
        height: 34px;
        margin: -2px auto;
    }
    .lp-cv2-versus-arrow svg { width: 16px; height: 11px; }

    .lp-cv2-row-versus-text { text-align: center; }
    .lp-cv2-row-versus-text .lp-cv2-side-text { font-size: 0.92rem; }

    .lp-cv2-row-foot {
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 14px;
    }
    .lp-cv2-row-track { width: 100%; flex: none; order: 2; }
    .lp-cv2-row-delta { order: 1; font-size: 0.78rem; padding: 6px 12px; }
    .lp-cv2-row-delta-pill { margin-right: 0; }

    /* CTA */
    .lp-cv2-cta-btn {
        width: 100%;
        justify-content: space-between;
        padding: 14px 20px 14px 14px;
        font-size: 0.98rem;
    }
    .lp-cv2-cta-arrow { width: 32px; height: 32px; }
    .lp-cv2-cta-note { font-size: 0.8rem; }

    /* BG blobs lighter on mobile */
    .lp-cv2-blob { filter: blur(70px); opacity: 0.3; }
}

/* Very small phones */
@media (max-width: 380px) {
    .lp-cv2-savings-num > span[data-cv2-count] { font-size: 2.9rem; }
    .lp-cv2-ring { width: 100px; height: 100px; }
    .lp-cv2-ring-num { font-size: 1.5rem; }
    .lp-cv2-card-rate-num { font-size: 2.8rem; }
    .lp-cv2-metric { padding: 16px 14px 14px; }
    .lp-cv2-metric-head { padding-left: 70px; gap: 8px; }
    .lp-cv2-metric-head h4 { font-size: 0.95rem; }
    .lp-cv2-metric-icon { width: 32px; height: 32px; }
    .lp-cv2-metric-icon svg { width: 16px; height: 16px; }
    .lp-cv2-metric-delta { font-size: 0.72rem; padding: 5px 9px; }
    .lp-cv2-mbar { padding: 8px 10px; }
    .lp-cv2-mbar-val { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-cv2-word { transform: none !important; opacity: 1 !important; }
    .lp-cv2-card,
    .lp-cv2-metric { opacity: 1 !important; transform: none !important; }
    .lp-cv2-mbar-fill::after,
    .lp-cv2-pulse,
    .lp-cv2-metric-icon svg,
    .lp-cv2-metric-icon::before { animation: none !important; }
    .lp-cv2-row,
    .lp-cv2-row-meta,
    .lp-cv2-row-title,
    .lp-cv2-side-bank,
    .lp-cv2-side-us,
    .lp-cv2-versus-arrow,
    .lp-cv2-row-foot { opacity: 1 !important; transform: none !important; }
    .lp-cv2-row-curtain { transform: scaleX(1) !important; }
    .lp-cv2-side-bank .lp-cv2-side-num::after { width: 108% !important; transition: none !important; }
    .lp-cv2-row-track-bank,
    .lp-cv2-row-track-us { transition: none !important; }
}

/* LEAD */
.lp-lead {
    padding: 100px 6vw;
    background: linear-gradient(135deg, var(--bg-light) 0%, #eef3f1 100%);
}
.lp-lead-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.lp-lead-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.25;
}
.lp-lead-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.lp-promise {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.lp-promise li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Form */
.lp-form {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 16px 50px rgba(28,36,75,0.12);
    border: 1px solid rgba(0,0,0,0.04);
}
.lp-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 22px;
}
.lp-form-group { margin-bottom: 18px; }
.lp-form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}
.lp-form-group input[type="text"],
.lp-form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e3e6ec;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fafbfc;
    transition: border-color .2s, background .2s, box-shadow .2s;
    direction: rtl;
}
.lp-form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(67,179,154,0.12);
}
.lp-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.lp-radio {
    flex: 1 1 calc(33% - 10px);
    min-width: 110px;
    cursor: pointer;
    position: relative;
}
.lp-radio input { position: absolute; opacity: 0; pointer-events: none; }
.lp-radio span {
    display: block;
    text-align: center;
    padding: 12px 8px;
    border: 1.5px solid #e3e6ec;
    border-radius: 10px;
    background: #fafbfc;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all .2s;
}
.lp-radio input:checked + span {
    border-color: var(--accent);
    background: rgba(67,179,154,0.12);
    color: var(--accent-dark);
    box-shadow: 0 0 0 3px rgba(67,179,154,0.15);
}
.lp-radio:hover span { border-color: var(--accent-light); }
.lp-form-note { margin-top: 14px; }

.lp-form-dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.lp-form-dark .lp-form-title { color: #fff; }
.lp-form-dark .lp-form-group label { color: rgba(255,255,255,0.85); }
.lp-form-dark .lp-form-group input[type="text"],
.lp-form-dark .lp-form-group input[type="tel"] {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: #fff;
}
.lp-form-dark .lp-form-group input::placeholder { color: rgba(255,255,255,0.45); }
.lp-form-dark .lp-form-group input:focus {
    background: rgba(255,255,255,0.14);
    border-color: var(--accent);
}
.lp-form-dark .lp-radio span {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
}
.lp-form-dark .lp-radio input:checked + span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


/* ============================================
   QUALIFY V3 — EDITORIAL / WOW
   Dark contrasting section · oversized type ·
   asymmetric bento · cinematic curtain reveals
   ============================================ */

.lp-qualify-v3 {
    position: relative;
    padding: 160px 6vw 130px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(67,179,154,0.12), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(67,179,154,0.06), transparent 55%),
        linear-gradient(180deg, #0e1530 0%, #1c244b 60%, #1a2147 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

/* Massive ghost number — composition anchor */
.lp-q3-ghost {
    position: absolute;
    bottom: -80px;
    left: -40px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(20rem, 36vw, 40rem);
    font-weight: 900;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.06em;
}
.lp-q3-ghost sup {
    font-size: 0.4em;
    vertical-align: super;
    color: transparent;
    -webkit-text-stroke: 1px rgba(67,179,154,0.18);
}

/* Subtle film grain via SVG noise */
.lp-q3-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.lp-q3-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.lp-q3-head {
    max-width: 880px;
    margin: 0 auto 80px;
    text-align: center;
}
.lp-q3-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(67,179,154,0.95);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.lp-q3-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}
.lp-q3-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 28px;
}
/* Word reveal */
.lp-q3-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.lp-q3-word > span,
.lp-q3-word { /* ensure inline content can clip */ }
.lp-q3-word::before { content: ""; }
.lp-q3-title .lp-q3-word {
    position: relative;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1.1s cubic-bezier(.2, .8, .2, 1), opacity .9s ease;
    transition-delay: calc(var(--w-i, 0) * 90ms);
    margin-left: 0.18em;
}
.lp-q3-title.is-visible .lp-q3-word {
    transform: translateY(0);
    opacity: 1;
}
.lp-q3-word-accent {
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}
.lp-q3-sub {
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto;
}

/* Asymmetric editorial grid: 12-col, 2 rows */
.lp-q3-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(340px, auto);
    gap: 18px;
    margin-bottom: 80px;
}
.lp-q3-wide   { grid-column: span 7; }
.lp-q3-narrow { grid-column: span 5; }
/* Reverse second row so the WIDE card moves to the right side for visual balance */
.lp-q3-card:nth-child(4) { grid-column: 6 / span 7; }
.lp-q3-card:nth-child(2) { grid-column: 8 / span 5; }
.lp-q3-card:nth-child(3) { grid-column: 1 / span 5; }
.lp-q3-card:nth-child(1) { grid-column: 1 / span 7; }

/* Card base */
.lp-q3-card {
    --c-bg: #ffffff;
    --c-fg: #1c244b;
    --c-mute: rgba(28,36,75,0.6);
    --c-accent: var(--accent);
    --c-accent-strong: var(--accent-dark);
    --c-edge: rgba(28,36,75,0.08);

    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--c-bg);
    color: var(--c-fg);
    isolation: isolate;
    transition: transform .55s cubic-bezier(.2,.8,.2,1),
                box-shadow .55s cubic-bezier(.2,.8,.2,1);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 30px 60px -30px rgba(0,0,0,0.5);
}
.lp-q3-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 50px 80px -40px rgba(0,0,0,0.7);
}

/* Theme variants — distinct color identity per persona */
.lp-q3-theme-deep {
    --c-bg: #1c244b;
    --c-fg: #ffffff;
    --c-mute: rgba(255,255,255,0.65);
    --c-accent: #6fe6c8;
    --c-accent-strong: var(--accent);
    --c-edge: rgba(255,255,255,0.12);
}
.lp-q3-theme-cream {
    --c-bg: #f3eee5;
    --c-fg: #2c2417;
    --c-mute: rgba(44,36,23,0.65);
    --c-accent: #c5a76c;
    --c-accent-strong: #9c8048;
    --c-edge: rgba(44,36,23,0.1);
}
.lp-q3-theme-teal {
    --c-bg: #43b39a;
    --c-fg: #062b22;
    --c-mute: rgba(6,43,34,0.7);
    --c-accent: #062b22;
    --c-accent-strong: #062b22;
    --c-edge: rgba(6,43,34,0.15);
}
.lp-q3-theme-clay {
    --c-bg: #ffffff;
    --c-fg: #1c244b;
    --c-mute: rgba(28,36,75,0.6);
    --c-accent: var(--accent);
    --c-accent-strong: var(--accent-dark);
    --c-edge: rgba(28,36,75,0.08);
}

/* Decorative bg layer per card — subtle radial in accent color */
.lp-q3-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 100% 0%, color-mix(in srgb, var(--c-accent) 18%, transparent), transparent 55%),
        radial-gradient(ellipse at 0% 100%, color-mix(in srgb, var(--c-accent) 8%, transparent), transparent 55%);
    transition: opacity .6s ease;
}
.lp-q3-card:hover .lp-q3-card-bg {
    opacity: 1.4;
}

/* CINEMATIC CURTAIN REVEAL — clip-path mask that wipes from bottom */
.lp-q3-curtain {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: var(--c-bg);
    transform-origin: bottom center;
    transform: scaleY(1);
    transition: transform 1.1s cubic-bezier(.7, 0, .2, 1);
    transition-delay: calc(var(--lp-i, 0) * 130ms);
    pointer-events: none;
}
.lp-q3-card.is-visible .lp-q3-curtain {
    transform: scaleY(0);
}
/* Accent slice of the curtain — thin band that lingers a beat */
.lp-q3-curtain::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    height: 3px;
    background: var(--c-accent);
    opacity: 1;
}

.lp-q3-card-content {
    position: relative;
    z-index: 2;
    padding: 36px 36px 32px;
    height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 22px;
}

/* Meta row: number + tag */
.lp-q3-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.lp-q3-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-mute);
    letter-spacing: 0.16em;
    position: relative;
    padding-left: 30px;
}
.lp-q3-num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--c-accent);
}
.lp-q3-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c-accent) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: var(--c-accent-strong);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}
.lp-q3-theme-deep .lp-q3-tag { color: var(--c-accent); }

/* Hero stat — oversized number */
.lp-q3-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    line-height: 0.9;
    flex-wrap: wrap;
    align-content: center;
    color: var(--c-fg);
}
.lp-q3-stat-num {
    font-size: clamp(4rem, 7vw, 6.4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--c-fg);
    background: linear-gradient(180deg, var(--c-fg) 0%, color-mix(in srgb, var(--c-fg) 60%, transparent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
/* Fallback for browsers that don't support color-mix */
@supports not (color: color-mix(in srgb, red, blue)) {
    .lp-q3-stat-num {
        background: none;
        -webkit-text-fill-color: var(--c-fg);
        color: var(--c-fg);
    }
}
.lp-q3-card:hover .lp-q3-stat-num { transform: scale(1.04); transform-origin: right; }
.lp-q3-stat-suf {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: var(--c-accent-strong);
    letter-spacing: -0.02em;
}
.lp-q3-stat-label {
    width: 100%;
    flex-basis: 100%;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-mute);
}

/* Body */
.lp-q3-body h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--c-fg);
    margin-bottom: 10px;
}
.lp-q3-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-mute);
    max-width: 50ch;
}

/* CTA arrow link — inline, with sliding arrow + animated underline */
.lp-q3-match {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-fg);
    position: relative;
    padding-bottom: 6px;
    transition: color .3s ease;
    width: max-content;
}
.lp-q3-match::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(.7, 0, .2, 1);
}
.lp-q3-card:hover .lp-q3-match::after,
.lp-q3-match:hover::after { transform: scaleX(1); transform-origin: right; }
.lp-q3-arrow {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-bg);
    align-items: center;
    justify-content: center;
    transition: transform .55s cubic-bezier(.34,1.56,.64,1), background .3s ease;
    overflow: hidden;
}
.lp-q3-arrow svg { transition: transform .55s cubic-bezier(.34,1.56,.64,1); }
.lp-q3-card:hover .lp-q3-arrow svg { transform: translateX(-4px); }
.lp-q3-theme-cream .lp-q3-arrow { background: #2c2417; color: #f3eee5; }
.lp-q3-theme-teal .lp-q3-arrow { background: #062b22; color: #43b39a; }

/* Footer */
.lp-q3-foot {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.lp-q3-foot-rule { display: none; }
.lp-q3-foot-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
}
.lp-q3-foot-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: var(--secondary);
    padding: 16px 22px 16px 16px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 700;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.lp-q3-foot-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(67,179,154,0.4);
}
.lp-q3-foot-cta .lp-q3-arrow {
    background: var(--accent);
    color: #fff;
}
.lp-q3-foot-cta:hover .lp-q3-arrow svg { transform: translateX(-4px); }

/* Responsive */
@media (max-width: 1080px) {
    .lp-q3-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(320px, auto);
    }
    .lp-q3-card:nth-child(1),
    .lp-q3-card:nth-child(2),
    .lp-q3-card:nth-child(3),
    .lp-q3-card:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 720px) {
    .lp-qualify-v3 { padding: 100px 5vw 80px; }
    .lp-q3-head { margin-bottom: 56px; }
    .lp-q3-grid { grid-template-columns: 1fr; gap: 14px; }
    .lp-q3-card-content { padding: 28px 24px 26px; gap: 18px; }
    .lp-q3-foot {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .lp-q3-foot-cta { justify-content: center; }
    .lp-q3-ghost { font-size: 16rem; bottom: -40px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-q3-curtain { display: none !important; }
    .lp-q3-word { transform: none !important; opacity: 1 !important; }
    .lp-q3-card:hover { transform: none !important; }
}

/* ============================================
   PERSONAL CALCULATOR — same editorial language as q3
   ============================================ */

.lp-calc {
    position: relative;
    padding: 160px 6vw 130px;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(67,179,154,0.14), transparent 55%),
        radial-gradient(ellipse at 100% 80%, rgba(67,179,154,0.08), transparent 55%),
        linear-gradient(180deg, #0e1530 0%, #1c244b 60%, #1a2147 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.lp-calc-ghost {
    position: absolute;
    top: -40px;
    right: -60px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(20rem, 36vw, 40rem);
    font-weight: 900;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(67,179,154,0.07);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.06em;
}
.lp-calc-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.lp-calc-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header — mirrors q3 */
.lp-calc-head {
    max-width: 880px;
    margin: 0 auto 80px;
    text-align: center;
}
.lp-calc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(67,179,154,0.95);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.lp-calc-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
}
.lp-calc-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 28px;
}
.lp-calc-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-left: 0.18em;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1.1s cubic-bezier(.2,.8,.2,1), opacity .9s ease;
    transition-delay: calc(var(--w-i, 0) * 90ms);
}
.lp-calc-title.is-visible .lp-calc-word {
    transform: translateY(0);
    opacity: 1;
}
.lp-calc-word-accent {
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}
.lp-calc-sub {
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto;
}

/* Visibility — driven by .lp-calc[data-stage] */
.lp-calc:not([data-stage="trigger"]) [data-calc-show="trigger"] { display: none; }
.lp-calc[data-stage="trigger"] [data-calc-show="wizard"] { display: none; }

/* Stage container */
.lp-calc-stage {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

/* ===== TRIGGER CARD — editorial split CTA ===== */
.lp-calc-trigger {
    position: relative;
    padding: 36px 36px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
                0 30px 80px -40px rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    overflow: hidden;
    isolation: isolate;
}
.lp-calc-trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(67,179,154,0.16), transparent 60%),
        radial-gradient(ellipse 50% 70% at 0% 100%, rgba(67,179,154,0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.lp-calc-trigger-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    align-items: center;
}

/* Text block */
.lp-calc-trigger-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-calc-trigger-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 5px 12px 5px 14px;
    border-radius: 999px;
    background: rgba(67,179,154,0.12);
    border: 1px solid rgba(67,179,154,0.3);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.lp-calc-trigger-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(67,179,154,0.5);
    animation: lp-calc-trigger-pulse 2.2s ease-out infinite;
}
@keyframes lp-calc-trigger-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(67,179,154,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(67,179,154,0); }
    100% { box-shadow: 0 0 0 0 rgba(67,179,154,0); }
}
.lp-calc-trigger-title {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0;
}
.lp-calc-trigger-title em {

    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding: 0 2px;
}
.lp-calc-trigger-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0;
    max-width: 440px;
}
.lp-calc-trigger-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px 12px 22px;
    margin-top: 6px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 18px 40px -12px rgba(67,179,154,0.55),
                inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1),
                box-shadow .35s ease;
    text-align: right;
}
.lp-calc-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 50px -14px rgba(67,179,154,0.7),
                inset 0 1px 0 rgba(255,255,255,0.3);
}
.lp-calc-trigger-btn-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}
.lp-calc-trigger-btn-label {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.005em;
    line-height: 1.2;
}
.lp-calc-trigger-btn-meta {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.03em;
}
.lp-calc-trigger-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.lp-calc-trigger-btn:hover .lp-calc-trigger-btn-arrow { transform: translateX(-4px); }

.lp-calc-trigger-features {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.lp-calc-trigger-features li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}
.lp-calc-trigger-features svg {
    color: var(--accent);
    flex: 0 0 11px;
}

/* Visual preview tile (left side) */
.lp-calc-trigger-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Orbits removed — clean rectangular preview reads better */
.lp-calc-trigger-orbit { display: none; }

.lp-calc-trigger-preview {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 14px;
    text-align: right;
    padding: 22px 22px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(67,179,154,0.14), rgba(67,179,154,0.04));
    border: 1px solid rgba(67,179,154,0.28);
    box-shadow: 0 20px 50px -18px rgba(67,179,154,0.5),
                inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    overflow: hidden;
}
/* Subtle ambient glow corner */
.lp-calc-trigger-preview::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(closest-side, rgba(111,230,200,0.22), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.lp-calc-trigger-preview > * { position: relative; z-index: 1; }

.lp-calc-trigger-preview-tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(67,179,154,0.18);
    border: 1px solid rgba(67,179,154,0.3);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    width: fit-content;
}
.lp-calc-trigger-preview-num {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 0%, #6fe6c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.lp-calc-trigger-preview-num small {
    font-size: 0.42em;
    font-weight: 800;
    color: rgba(255,255,255,0.65);
    -webkit-text-fill-color: rgba(255,255,255,0.65);
    margin-right: 2px;
}
.lp-calc-trigger-preview-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin: -8px 0 4px;
    letter-spacing: -0.005em;
}
.lp-calc-trigger-preview-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-calc-trigger-preview-bar {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 12px;
}
.lp-calc-trigger-preview-bar-name {
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.lp-calc-trigger-preview-bar-bank .lp-calc-trigger-preview-bar-name { color: rgba(255,138,160,0.85); }
.lp-calc-trigger-preview-bar-us   .lp-calc-trigger-preview-bar-name { color: var(--accent); }
.lp-calc-trigger-preview-bar-fill {
    height: 8px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}
.lp-calc-trigger-preview-bar-bank .lp-calc-trigger-preview-bar-fill {
    background: rgba(255,138,160,0.18);
}
.lp-calc-trigger-preview-bar-bank .lp-calc-trigger-preview-bar-fill::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(220,77,108,0.6), rgba(220,77,108,0.95));
    border-radius: 999px;
}
.lp-calc-trigger-preview-bar-us .lp-calc-trigger-preview-bar-fill {
    background: rgba(67,179,154,0.18);
}
.lp-calc-trigger-preview-bar-us .lp-calc-trigger-preview-bar-fill::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 27%;
    background: linear-gradient(90deg, rgba(111,230,200,0.7), var(--accent));
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(67,179,154,0.5);
}

/* ===== WIZARD FRAME ===== */
.lp-calc-wizard {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
                0 30px 80px -40px rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

/* Wizard top bar — progress + meta */
.lp-calc-wiz-head {
    padding: 22px 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-calc-wiz-progress {
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    margin-bottom: 14px;
}
.lp-calc-wiz-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-dark));
    box-shadow: 0 0 8px rgba(67,179,154,0.5);
    transition: width .55s cubic-bezier(.16,1,.3,1);
}
.lp-calc[data-stage="step-1"] .lp-calc-wiz-progress-fill { width: 33%; }
.lp-calc[data-stage="step-2"] .lp-calc-wiz-progress-fill { width: 66%; }
.lp-calc[data-stage="step-3"] .lp-calc-wiz-progress-fill { width: 100%; }
.lp-calc[data-stage="result"] .lp-calc-wiz-progress-fill { width: 100%; }
.lp-calc-wiz-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.lp-calc-wiz-step {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
}
.lp-calc-wiz-step strong { color: var(--accent); font-weight: 800; }
.lp-calc-wiz-reset {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.lp-calc-wiz-reset:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Slides container — height adapts to active slide. Padding lives on slides. */
.lp-calc-slides {
    position: relative;
    min-height: 320px;
    transition: min-height .55s cubic-bezier(.16,1,.3,1);
}

.lp-calc-slide {
    position: absolute;
    inset: 0;
    padding: 32px 32px 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .45s cubic-bezier(.16,1,.3,1),
                transform .55s cubic-bezier(.16,1,.3,1);
    box-sizing: border-box;
}
.lp-calc-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: .12s;
}

.lp-calc-slide-q {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(67,179,154,0.12);
    border: 1px solid rgba(67,179,154,0.3);
}
.lp-calc-slide-q-done {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    background: rgba(67,179,154,0.18);
}
.lp-calc-slide-title {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 6px;
}
.lp-calc-slide-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.6);
    margin-bottom: 26px;
}

/* Result slide hero */
.lp-calc-result-title {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    margin-bottom: 8px;
}
.lp-calc-result-num {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--accent) 60%, #fff) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 4px;
}
@supports not (color: color-mix(in srgb, red, blue)) {
    .lp-calc-result-num { background: none; -webkit-text-fill-color: #fff; }
}
.lp-calc-result-suf {
    font-size: 0.55em;
    font-weight: 800;
    color: rgba(255,255,255,0.55);
    -webkit-text-fill-color: rgba(255,255,255,0.55);
}

/* Compact stat strip */
.lp-calc-result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    margin-bottom: 22px;
}
.lp-calc-result-stat {
    padding: 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}
.lp-calc-result-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 0;
    width: 1px;
    background: rgba(255,255,255,0.06);
}
.lp-calc-result-stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.lp-calc-result-stat-val {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin: 2px 0;
}
.lp-calc-result-stat-meta {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* Wizard footer nav */
.lp-calc-wiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 28px 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.lp-calc[data-stage="result"] .lp-calc-wiz-nav { display: none; }
.lp-calc-wiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1),
                background .3s ease,
                box-shadow .3s ease;
    border: 1px solid transparent;
}
.lp-calc-wiz-btn-ghost {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}
.lp-calc-wiz-btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lp-calc-wiz-btn-ghost:disabled,
.lp-calc-wiz-btn-ghost[hidden] { opacity: 0.4; pointer-events: none; }
.lp-calc-wiz-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 12px 28px -10px rgba(67,179,154,0.55),
                inset 0 1px 0 rgba(255,255,255,0.2);
    margin-right: auto;
}
.lp-calc-wiz-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(67,179,154,0.7),
                inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Hide old grid wrapper — no longer in DOM but ensure no leftover styles bleed */
.lp-calc-grid { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
    .lp-calc-trigger { padding: 26px 22px; border-radius: 20px; }
    .lp-calc-trigger-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .lp-calc-trigger-visual {
        order: -1;
        max-width: 100%;
        margin: 0;
    }
    .lp-calc-trigger-tag { font-size: 0.62rem; padding: 4px 10px 4px 12px; }
    .lp-calc-trigger-title { font-size: 1.5rem; line-height: 1.2; }
    .lp-calc-trigger-sub { font-size: 0.9rem; line-height: 1.6; }
    .lp-calc-trigger-btn { padding: 11px 13px 11px 18px; align-self: stretch; justify-content: space-between; }
    .lp-calc-trigger-btn-label { font-size: 0.92rem; }
    .lp-calc-trigger-btn-meta { font-size: 0.66rem; }
    .lp-calc-trigger-btn-arrow { width: 34px; height: 34px; }
    .lp-calc-trigger-features { gap: 6px 14px; }
    .lp-calc-trigger-features li { font-size: 0.74rem; }
    .lp-calc-trigger-preview { padding: 18px 16px; gap: 12px; }
    .lp-calc-trigger-preview-num { font-size: 2rem; }
    .lp-calc-trigger-preview-bar { grid-template-columns: 50px 1fr; gap: 10px; }

    .lp-calc-wizard { border-radius: 20px; }
    .lp-calc-wiz-head { padding: 18px 20px 14px; }
    .lp-calc-slides { min-height: 360px; }
    .lp-calc-slide { padding: 24px 22px; }
    .lp-calc-wiz-nav { padding: 16px 20px 18px; }
    .lp-calc-wiz-btn { padding: 10px 14px; font-size: 0.85rem; }

    .lp-calc-slide-q { font-size: 0.62rem; letter-spacing: 0.14em; padding: 4px 10px; }
    .lp-calc-slide-title { font-size: 1.2rem; }
    .lp-calc-slide-sub { font-size: 0.86rem; margin-bottom: 22px; }

    .lp-calc-result-num { font-size: 2.4rem; }
    .lp-calc-result-stats { grid-template-columns: 1fr; }
    .lp-calc-result-stat { padding: 11px 14px; flex-direction: row; align-items: baseline; gap: 8px; }
    .lp-calc-result-stat:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .lp-calc-result-stat:not(:last-child)::after { display: none; }
    .lp-calc-result-stat-label { flex: 0 0 90px; }
    .lp-calc-result-stat-val { margin: 0; }
    .lp-calc-result-stat-meta { margin-right: auto; }
}

/* Two-column layout (legacy — no longer used) */
.lp-calc-grid-OLD {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 24px;
    align-items: start;
}

/* Panel base — both inputs and results */
.lp-calc-inputs,
.lp-calc-results {
    position: relative;
    border-radius: 22px;
    padding: 36px 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.06) inset,
        0 30px 60px -30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.lp-calc.is-visible .lp-calc-inputs { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.lp-calc.is-visible .lp-calc-results { opacity: 1; transform: translateY(0); transition-delay: 200ms; }

.lp-calc-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.lp-calc-panel-tag-accent {
    color: var(--accent);
    background: rgba(67,179,154,0.08);
    border-color: rgba(67,179,154,0.25);
}
.lp-calc-panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

/* ===== Inputs panel ===== */
.lp-calc-field + .lp-calc-field {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}
.lp-calc-field-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}
.lp-calc-field-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.16em;
    position: relative;
    padding-left: 26px;
}
.lp-calc-field-num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--accent);
}
.lp-calc-field-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

/* Live value display */
.lp-calc-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    line-height: 1;
    margin-bottom: 18px;
}
.lp-calc-display-num {
    font-size: clamp(2.6rem, 4.6vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff, #6fe6c8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lp-calc-display-suf {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: var(--accent);
}

/* Slider — custom-styled, fill driven by CSS var */
.lp-calc-slider-wrap {
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
}
.lp-calc-slider {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    margin: 0;
    z-index: 2;
}
.lp-calc-slider:focus { outline: none; }
.lp-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 14px rgba(67,179,154,0.45);
    cursor: grab;
    transition: transform .2s ease;
}
.lp-calc-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.lp-calc-slider:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.18); }
.lp-calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 14px rgba(67,179,154,0.45);
    cursor: grab;
}
.lp-calc-slider-rail {
    position: absolute;
    inset: 50% 0 auto 0;
    height: 6px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.lp-calc-slider-fill {
    position: absolute;
    inset: 0;
    width: var(--fill, 18%);
    background: linear-gradient(90deg, var(--accent), #6fe6c8);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(67,179,154,0.55);
    transition: width .35s cubic-bezier(.16,1,.3,1);
    /* In RTL, anchor to the right so fill grows from right (slider start) */
    right: 0;
    left: auto;
}
.lp-calc-slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    letter-spacing: 0.04em;
}

/* Pills */
.lp-calc-pills {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.lp-calc-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 8px;
    border-radius: 12px;
    cursor: pointer;
    min-height: 48px;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
    letter-spacing: -0.01em;
}
.lp-calc-pill:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.lp-calc-pill.is-active {
    background: var(--accent);
    color: #062b22;
    border-color: var(--accent);
    box-shadow: 0 6px 18px rgba(67,179,154,0.4);
}

/* Chips */
.lp-calc-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.lp-calc-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px 10px;
    border-radius: 12px;
    cursor: pointer;
    min-height: 48px;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.lp-calc-chip:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lp-calc-chip.is-active {
    background: rgba(67,179,154,0.16);
    border-color: rgba(67,179,154,0.5);
    color: #6fe6c8;
}
.lp-calc-chip-icon { display: inline-flex; opacity: 0.85; }
.lp-calc-fund-note { margin-top: 14px; }
.lp-calc-fund-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(67,179,154,0.1);
    border: 1px solid rgba(67,179,154,0.25);
    padding: 5px 10px;
    border-radius: 999px;
}

/* ===== Results panel — refined hierarchy ===== */
.lp-calc-kpi {
    position: relative;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 12px;
    transition: background .3s ease, border-color .3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.lp-calc.is-visible .lp-calc-kpi {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s;
    transition-delay: calc(300ms + var(--lp-i, 0) * 100ms);
}

/* === HERO STAT — the moment === */
.lp-calc-kpi-hero {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(67,179,154,0.22), transparent 60%),
        linear-gradient(135deg, rgba(67,179,154,0.12) 0%, rgba(67,179,154,0.04) 100%);
    border: 1px solid rgba(67,179,154,0.32);
    padding: 32px 32px 30px;
    margin-bottom: 16px;
    overflow: hidden;
}
.lp-calc-kpi-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.7;
}
.lp-calc-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}
.lp-calc-hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.lp-calc-hero-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    line-height: 0.9;
    margin-bottom: 12px;
}
.lp-calc-hero-num > span:first-child {
    font-size: clamp(3.6rem, 7vw, 5.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #ffffff 0%, #6fe6c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lp-calc-hero-suf {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.lp-calc-hero-meta {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.lp-calc-hero-meta strong {
    font-weight: 700;
    color: #fff;
}

/* Right side — percentage badge */
.lp-calc-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 22px;
    border-right: 1px solid rgba(67,179,154,0.2);
    padding-right: 28px;
}
.lp-calc-hero-pct {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    line-height: 1;
}
.lp-calc-hero-pct-num {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 900;
    color: #6fe6c8;
    letter-spacing: -0.04em;
}
.lp-calc-hero-pct-suf {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}
.lp-calc-hero-pct-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

/* === METRIC ROWS — compact, refined === */
.lp-calc-kpi-metric { padding: 20px 22px; }
.lp-calc-kpi-metric:hover {
    background: rgba(255,255,255,0.045);
    border-color: rgba(67,179,154,0.22);
}
.lp-calc-metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.lp-calc-metric-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.lp-calc-metric-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    background: rgba(67,179,154,0.12);
    border: 1px solid rgba(67,179,154,0.28);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
}
.lp-calc-metric-mid {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}
.lp-calc-metric-primary {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Liebling', 'Heebo', sans-serif;
    line-height: 1;
}
.lp-calc-metric-primary > span:first-child {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}
.lp-calc-metric-suf {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}
.lp-calc-metric-delta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: rgba(67,179,154,0.1);
    border: 1px solid rgba(67,179,154,0.22);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}
.lp-calc-metric-delta strong {
    color: #6fe6c8;
    font-weight: 800;
    font-family: 'Liebling', 'Heebo', sans-serif;
}
.lp-calc-arrow-down {
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(67,179,154,0.2);
    align-items: center;
    justify-content: center;
}
.lp-calc-arrow-down svg { color: #6fe6c8; }

/* Bottom: muted bank reference, separated by a hairline */
.lp-calc-metric-bottom {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.08);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.lp-calc-metric-bank-label {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.lp-calc-metric-bank-val {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-weight: 700;
    color: rgba(239,154,169,0.85);
    text-decoration: line-through;
    text-decoration-color: rgba(216,85,109,0.4);
    text-decoration-thickness: 1px;
    font-size: 0.95rem;
}
.lp-calc-metric-bank-suf {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}

/* CTA */
.lp-calc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f8f7 100%);
    color: var(--secondary);
    padding: 18px 22px 18px 16px;
    border-radius: 16px;
    margin-top: 18px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 18px 40px -14px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
}
.lp-calc-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 26px 50px -14px rgba(67,179,154,0.45);
}
.lp-calc-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.3;
    min-width: 0;
}
.lp-calc-cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.lp-calc-cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}
.lp-calc-cta-text strong {
    color: var(--accent-dark);
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-weight: 800;
    margin-right: 4px;
    white-space: nowrap;
}
.lp-calc-cta-arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.lp-calc-cta:hover .lp-calc-cta-arrow {
    background: var(--accent);
}
.lp-calc-cta:hover .lp-calc-cta-arrow svg { transform: translateX(-4px); transition: transform .35s; }
.lp-calc-disclaimer {
    margin-top: 16px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* Number tick animation — applied briefly on update */
.lp-calc-tick {
    animation: lp-calc-tick .4s cubic-bezier(.16,1,.3,1);
}
@keyframes lp-calc-tick {
    0% { transform: translateY(-6px); opacity: 0; filter: blur(2px); }
    100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .lp-calc { padding: 130px 5vw 110px; }
    .lp-calc-grid { grid-template-columns: 1fr; gap: 18px; }
    .lp-calc-inputs, .lp-calc-results { padding: 32px 26px; }
}
@media (max-width: 720px) {
    .lp-calc { padding: 100px 18px 80px; }
    .lp-calc-head { margin-bottom: 56px; }
    .lp-calc-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .lp-calc-sub { font-size: 1rem; }

    .lp-calc-inputs, .lp-calc-results {
        padding: 24px 20px;
        border-radius: 18px;
    }
    .lp-calc-field + .lp-calc-field { margin-top: 28px; padding-top: 28px; }
    .lp-calc-display-num { font-size: 2.6rem; }

    .lp-calc-pills { grid-template-columns: repeat(5, 1fr); gap: 6px; }
    .lp-calc-pill { font-size: 0.8rem; padding: 12px 4px; min-height: 44px; }
    .lp-calc-chip { font-size: 0.85rem; padding: 12px 6px; min-height: 44px; }

    /* Hero stat — single column with stacked layout */
    .lp-calc-kpi-hero { padding: 26px 22px 24px; }
    .lp-calc-hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .lp-calc-hero-right {
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        padding: 14px 0 0;
        padding-right: 0;
        border-right: none;
        border-top: 1px dashed rgba(67,179,154,0.22);
    }
    .lp-calc-hero-pct-num { font-size: 2.4rem; }
    .lp-calc-hero-pct-label { text-align: right; }
    .lp-calc-hero-num > span:first-child { font-size: 3.4rem; }

    /* Metric rows — stack content tighter */
    .lp-calc-kpi-metric { padding: 18px 18px; }
    .lp-calc-metric-mid {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }
    .lp-calc-metric-primary > span:first-child { font-size: 1.9rem; }
    .lp-calc-metric-delta { font-size: 0.76rem; padding: 5px 10px; }
    .lp-calc-metric-bottom { padding-top: 10px; font-size: 0.78rem; }

    /* CTA */
    .lp-calc-cta { padding: 16px 18px 16px 14px; }
    .lp-calc-cta-text { font-size: 0.92rem; }
    .lp-calc-cta-arrow { width: 36px; height: 36px; }

    .lp-calc-ghost { font-size: 14rem; top: 0; right: -30px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-calc-word { transform: none !important; opacity: 1 !important; }
    .lp-calc-inputs, .lp-calc-results, .lp-calc-kpi { opacity: 1 !important; transform: none !important; }
    .lp-calc-slider-fill { transition: none !important; }
    .lp-calc-tick { animation: none !important; }
}

/* ============================================
   LEAD WIZARD V2 — multi-step + WhatsApp-first
   ============================================ */

.lp-lwz {
    position: relative;
    padding: 130px 6vw 120px;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f3 100%);
    overflow: hidden;
    isolation: isolate;
}
.lp-lwz-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lp-lwz-blob {
    position: absolute;
    width: 520px;
    height: 520px;
    top: -150px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67,179,154,0.22), transparent 70%);
    filter: blur(80px);
}

.lp-lwz-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: stretch;
}

/* ===== LEFT: copy + agent ===== */
.lp-lwz-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lp-lwz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.lp-lwz-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--accent);
}
.lp-lwz-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--secondary);
    margin-bottom: 18px;
}
.lp-lwz-title-accent {
    background: linear-gradient(180deg, transparent 60%, rgba(67,179,154,0.22) 60%);
    color: var(--accent-dark);
    padding: 0 4px;
}
.lp-lwz-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.lp-lwz-promises {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    gap: 16px;
}
.lp-lwz-promises li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.lp-lwz-promise-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.lp-lwz-promises li > div { display: flex; flex-direction: column; gap: 3px; }
.lp-lwz-promises li strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
}
.lp-lwz-promises li small {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Agent badge */
.lp-lwz-agent {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(28,36,75,0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px -10px rgba(28,36,75,0.12);
    width: max-content;
    max-width: 100%;
}
.lp-lwz-agent-avatar {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}
.lp-lwz-agent-status {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #2fc56e;
    border: 2.5px solid #fff;
    box-shadow: 0 0 0 0 rgba(47,197,110,0.6);
    animation: lp-lwz-pulse 2s ease-out infinite;
}
@keyframes lp-lwz-pulse {
    0% { box-shadow: 0 0 0 0 rgba(47,197,110,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(47,197,110,0); }
    100% { box-shadow: 0 0 0 0 rgba(47,197,110,0); }
}
.lp-lwz-agent-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.lp-lwz-agent-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}
.lp-lwz-agent-text small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== RIGHT: wizard card — institutional ===== */
.lp-lwz-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 32px 24px;
    border: 1px solid rgba(28,36,75,0.06);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 30px 70px -30px rgba(28,36,75,0.3),
        0 8px 18px -10px rgba(28,36,75,0.12);
    overflow: hidden;
    min-height: 540px;
    display: flex;
    flex-direction: column;
}
/* Brand top accent bar */
.lp-lwz-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4f47 0%, #2d7d6e 35%, #43b39a 100%);
    z-index: 1;
}

/* Card head — brand + secure */
.lp-lwz-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(28,36,75,0.06);
}
.lp-lwz-card-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}
.lp-lwz-card-brand-mark {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #43b39a, #2d7d6e);
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 10px -3px rgba(45,125,110,0.4);
}
.lp-lwz-card-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.lp-lwz-card-brand-text strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.005em;
}
.lp-lwz-card-brand-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}
.lp-lwz-card-secure {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: rgba(67,179,154,0.1);
    border: 1px solid rgba(67,179,154,0.22);
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex: 0 0 auto;
}

/* Stepper — numbered circles + connecting line */
.lp-lwz-progress {
    margin-bottom: 28px;
    position: relative;
}
.lp-lwz-progress-track {
    position: absolute;
    top: 16px;          /* center on the 32px circle (16px = half) */
    left: 18%;
    right: 18%;
    height: 2px;
    background: rgba(28,36,75,0.1);
    border-radius: 999px;
    overflow: hidden;
    z-index: 0;
}
.lp-lwz-progress-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    border-radius: 999px;
    transition: width .6s cubic-bezier(.16,1,.3,1);
    right: 0;
    left: auto;
}
.lp-lwz-progress-labels {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.lp-lwz-progress-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color .3s ease;
    flex: 0 0 auto;
}
.lp-lwz-progress-circle {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(28,36,75,0.18);
    display: grid;
    place-items: center;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.lp-lwz-progress-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    transition: color .3s ease, opacity .25s ease;
}
.lp-lwz-progress-check {
    position: absolute;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.lp-lwz-progress-text {
    letter-spacing: 0.02em;
    transition: color .3s ease;
}
/* Active step */
.lp-lwz-progress-label.is-active .lp-lwz-progress-circle {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(67,179,154,0.15), 0 4px 10px -2px rgba(67,179,154,0.3);
    transform: scale(1.08);
}
.lp-lwz-progress-label.is-active .lp-lwz-progress-num {
    color: var(--accent-dark);
}
.lp-lwz-progress-label.is-active {
    color: var(--secondary);
    font-weight: 700;
}
/* Done step */
.lp-lwz-progress-label.is-done .lp-lwz-progress-circle {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent-dark);
    box-shadow: 0 4px 10px -2px rgba(45,125,110,0.4);
}
.lp-lwz-progress-label.is-done .lp-lwz-progress-num {
    opacity: 0;
}
.lp-lwz-progress-label.is-done .lp-lwz-progress-check {
    opacity: 1;
    transform: scale(1);
}
.lp-lwz-progress-label.is-done {
    color: var(--accent-dark);
    font-weight: 700;
}

/* Calculator context strip */
.lp-lwz-context {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(67,179,154,0.1), rgba(67,179,154,0.04));
    border: 1px solid rgba(67,179,154,0.25);
    color: var(--secondary);
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 22px;
    width: max-content;
    max-width: 100%;
}
.lp-lwz-context-icon { font-size: 1.05rem; }
.lp-lwz-context-text strong {
    font-weight: 800;
    color: var(--accent-dark);
    font-family: 'Liebling', 'Heebo', sans-serif;
    margin: 0 4px;
}

/* Steps stage */
.lp-lwz-steps {
    position: relative;
    flex: 1;
}
.lp-lwz-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-30px);
    transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
    display: flex;
    flex-direction: column;
}
.lp-lwz-step.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}
.lp-lwz-step-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.lp-lwz-step-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 22px;
}

/* === Options (step 1) — premium selection cards === */
.lp-lwz-options {
    display: grid;
    gap: 12px;
}
.lp-lwz-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1.5px solid rgba(28,36,75,0.08);
    border-radius: 14px;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
    width: 100%;
    box-shadow: 0 1px 2px rgba(28,36,75,0.03);
}
.lp-lwz-option::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 14%; bottom: 14%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity .25s ease;
}
.lp-lwz-option:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -10px rgba(67,179,154,0.35);
}
.lp-lwz-option:hover::before {
    opacity: 1;
}
.lp-lwz-option-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(67,179,154,0.14), rgba(67,179,154,0.06));
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.lp-lwz-option:hover .lp-lwz-option-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    transform: scale(1.06);
}
.lp-lwz-option-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.lp-lwz-option-text strong {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.005em;
}
.lp-lwz-option-text small {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.lp-lwz-option-arrow {
    color: var(--accent-dark);
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.4;
    transition: opacity .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
}
.lp-lwz-option:hover .lp-lwz-option-arrow {
    opacity: 1;
    transform: translateX(-4px);
}

/* === Fields (step 2) === */
.lp-lwz-fields { display: grid; gap: 16px; margin-bottom: 22px; }
.lp-lwz-field { display: flex; flex-direction: column; gap: 8px; }
.lp-lwz-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}
.lp-lwz-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.lp-lwz-input-wrap input {
    width: 100%;
    padding: 14px 16px;
    padding-left: 44px;
    border: 1.5px solid rgba(28,36,75,0.12);
    border-radius: 12px;
    background: #fafbfc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    direction: rtl;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.lp-lwz-input-wrap input:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(67,179,154,0.12);
}
.lp-lwz-field-status {
    position: absolute;
    left: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity .25s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}
.lp-lwz-field.is-valid .lp-lwz-field-status {
    opacity: 1;
    transform: scale(1);
}
.lp-lwz-field-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Step actions */
.lp-lwz-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}
.lp-lwz-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
    transition: color .2s ease;
}
.lp-lwz-back:hover { color: var(--secondary); }
.lp-lwz-next,
.lp-lwz-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .25s ease, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
    box-shadow: 0 8px 22px -6px rgba(67,179,154,0.5);
}
.lp-lwz-next:hover,
.lp-lwz-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(67,179,154,0.6);
}
.lp-lwz-next:disabled,
.lp-lwz-submit:disabled {
    background: rgba(28,36,75,0.12);
    color: rgba(28,36,75,0.4);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.lp-lwz-submit-arrow {
    display: inline-flex;
    transition: transform .25s ease;
}
.lp-lwz-submit:hover .lp-lwz-submit-arrow { transform: translateX(-4px); }

/* === Channels (step 3) === */
.lp-lwz-channels { display: grid; gap: 10px; margin-bottom: 16px; }
.lp-lwz-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fafbfc;
    border: 1.5px solid rgba(28,36,75,0.08);
    border-radius: 14px;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
    width: 100%;
    position: relative;
}
.lp-lwz-channel:hover {
    background: #fff;
    border-color: var(--accent);
}
.lp-lwz-channel.is-selected {
    background: rgba(67,179,154,0.06);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(67,179,154,0.12);
}
.lp-lwz-channel.is-recommended {
    border-color: rgba(67,179,154,0.4);
    background: rgba(67,179,154,0.04);
}
.lp-lwz-channel-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(28,36,75,0.06);
    color: var(--secondary);
    display: grid;
    place-items: center;
}
.lp-lwz-channel-icon-wa {
    background: #25d366;
    color: #fff;
}
.lp-lwz-channel-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.lp-lwz-channel-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}
.lp-lwz-channel-text small {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.lp-lwz-channel-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: rgba(67,179,154,0.18);
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.lp-lwz-channel-toggle {
    color: var(--text-muted);
    font-size: 1rem;
    transition: transform .3s ease;
}
.lp-lwz-channel[aria-expanded="true"] .lp-lwz-channel-toggle { transform: rotate(180deg); }

/* Slot picker */
.lp-lwz-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px;
    background: rgba(28,36,75,0.03);
    border-radius: 12px;
    margin-top: -4px;
    animation: lp-lwz-slots-in .35s cubic-bezier(.16,1,.3,1);
}
@keyframes lp-lwz-slots-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp-lwz-slot {
    background: #fff;
    border: 1px solid rgba(28,36,75,0.1);
    color: var(--secondary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}
.lp-lwz-slot:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.lp-lwz-slot.is-active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(67,179,154,0.35);
}

/* === Success === */
.lp-lwz-success-step.is-active { justify-content: center; }
.lp-lwz-success {
    text-align: center;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-lwz-success-mark {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    box-shadow: 0 14px 30px rgba(67,179,154,0.45);
    animation: lp-lwz-mark-in .6s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lp-lwz-mark-in {
    from { transform: scale(0.4); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.lp-lwz-success-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: lp-lwz-ripple 1.6s cubic-bezier(.16,1,.3,1) infinite;
}
@keyframes lp-lwz-ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.lp-lwz-success-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}
.lp-lwz-success-msg {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 340px;
}
.lp-lwz-success-msg strong { color: var(--secondary); font-weight: 700; }
.lp-lwz-success-agent {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(28,36,75,0.04);
    border-radius: 14px;
    margin-bottom: 18px;
}
.lp-lwz-agent-avatar-lg { width: 48px; height: 48px; font-size: 1.3rem; }
.lp-lwz-success-agent-text { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.lp-lwz-success-agent-text strong { font-size: 0.98rem; font-weight: 700; color: var(--secondary); }
.lp-lwz-success-agent-text small { font-size: 0.8rem; color: var(--text-muted); }
.lp-lwz-success-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 10px 24px -6px rgba(37,211,102,0.5);
}
.lp-lwz-success-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -6px rgba(37,211,102,0.6);
}
.lp-lwz-success-cta .lp-lwz-channel-icon-wa {
    background: transparent;
    width: auto;
    height: auto;
    flex: 0 0 auto;
}
.lp-lwz-success-note {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.lp-lwz-success-note strong {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.04em;
}

/* Trust strip */
.lp-lwz-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed rgba(28,36,75,0.08);
    font-size: 0.78rem;
    color: var(--text-muted);
}
.lp-lwz-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.lp-lwz-trust-dot { color: rgba(28,36,75,0.2); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .lp-lwz { padding: 100px 5vw 90px; }
    .lp-lwz-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .lp-lwz-card { padding: 28px 24px 22px; min-height: 480px; }
}
@media (max-width: 560px) {
    .lp-lwz { padding: 80px 18px 70px; }
    .lp-lwz-title { font-size: 1.7rem; }
    .lp-lwz-sub { font-size: 0.95rem; }
    .lp-lwz-card { padding: 24px 20px 20px; border-radius: 18px; }
    .lp-lwz-step-title { font-size: 1.2rem; }
    .lp-lwz-option,
    .lp-lwz-channel { padding: 14px 14px; gap: 12px; }
    .lp-lwz-option-icon,
    .lp-lwz-channel-icon { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 10px; }
    .lp-lwz-option-text strong,
    .lp-lwz-channel-text strong { font-size: 0.95rem; }
    .lp-lwz-option-text small,
    .lp-lwz-channel-text small { font-size: 0.78rem; }
    .lp-lwz-slots { grid-template-columns: repeat(2, 1fr); }
    .lp-lwz-channel-tag { font-size: 0.62rem; padding: 3px 7px; }
    .lp-lwz-input-wrap input { padding: 13px 14px; padding-left: 40px; }
    .lp-lwz-next,
    .lp-lwz-submit { padding: 12px 18px; font-size: 0.95rem; }
    .lp-lwz-context { font-size: 0.82rem; padding: 8px 12px; }
    .lp-lwz-progress-label { font-size: 0.72rem; }
    .lp-lwz-progress-circle { width: 28px; height: 28px; }
    .lp-lwz-progress-num { font-size: 0.78rem; }
    .lp-lwz-progress-track { top: 14px; }
    .lp-lwz-card-head { padding-bottom: 14px; margin-bottom: 18px; }
    .lp-lwz-card-brand-mark { width: 32px; height: 32px; font-size: 0.82rem; }
    .lp-lwz-card-brand-text strong { font-size: 0.86rem; }
    .lp-lwz-card-brand-text small { font-size: 0.66rem; }
    .lp-lwz-card-secure span { display: none; }
    .lp-lwz-card-secure { padding: 6px; }
    .lp-lwz-trust { font-size: 0.72rem; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-lwz-step,
    .lp-lwz-progress-fill,
    .lp-lwz-agent-status,
    .lp-lwz-success-mark,
    .lp-lwz-success-ripple { animation: none !important; transition: none !important; }
    .lp-lwz-step { transform: none !important; }
}

/* FAQ */
.lp-faq {
    padding: 100px 6vw;
    background: var(--bg-light);
}
.lp-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.lp-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}
.lp-faq-item[open] {
    box-shadow: 0 10px 30px rgba(28,36,75,0.08);
    border-color: rgba(67,179,154,0.3);
}
.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: "+";
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    transition: transform .3s, background .3s;
}
.lp-faq-item[open] summary::after {
    content: "−";
    background: var(--accent);
    color: #fff;
}
.lp-faq-body {
    padding: 0 26px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* FINAL CTA */
.lp-final {
    padding: 100px 6vw;
    background:
        radial-gradient(circle at 20% 100%, rgba(67,179,154,0.25), transparent 50%),
        linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
}
.lp-final-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-final-copy h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.lp-final-copy p {
    font-size: 1.08rem;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 24px;
}
.lp-final-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.lp-final-bullets li {
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
}

/* LEGAL */
.lp-legal {
    padding: 36px 6vw;
    background: #f0f1f4;
    border-top: 1px solid rgba(0,0,0,0.04);
}
.lp-legal-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-legal h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.lp-legal p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .lp-hero { padding: 110px 5vw 80px; min-height: auto; }
    .lp-hero-stat { padding: 12px 16px; min-width: 90px; }
    .lp-hero-stat-num { font-size: 1.25rem; }
    .lp-hero-scroll { display: none; }
    .lp-hero-trustbar { gap: 0; }
    .lp-hero-trust-item { padding-inline-end: 16px; }
    .lp-hero-trust-divider { margin-inline-end: 16px; height: 24px; }
    .lp-lead-grid { grid-template-columns: 1fr; gap: 40px; }
    .lp-final-inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-qualify-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-compare,
    .lp-lead,
    .lp-qualify,
    .lp-faq,
    .lp-final { padding: 70px 5vw; }
}

@media (max-width: 640px) {
    .lp-hero { padding: 100px 5vw 64px; }
    .lp-hero-eyebrow { font-size: 0.78rem; padding: 8px 14px; }
    .lp-hero-title { font-size: 2.45rem; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 18px; }
    .lp-hero-line-bigword { gap: 10px; }
    .lp-hero-line-muted { font-size: 1.15rem; line-height: 1.35; margin-top: 10px; font-weight: 600; color: rgba(255,255,255,0.78); }
    .lp-hero-sub { font-size: 1.08rem; line-height: 1.65; margin-bottom: 22px; }
    .lp-cta-primary { width: 100%; padding: 16px 22px; font-size: 1.05rem; }
    .lp-hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 22px; }
    .lp-cta-ghost { text-align: center; justify-content: center; font-size: 1rem; padding: 10px; }
    .lp-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
        margin-bottom: 26px;
    }
    .lp-hero-stats .lp-hero-stat { align-items: center; min-width: 0; padding: 14px 4px; gap: 6px; }
    .lp-hero-stats .lp-hero-stat-sep { display: none; }
    .lp-hero-stat-num { font-size: 1.5rem; }
    .lp-hero-stat-label { font-size: 0.82rem; }
    .lp-hero-trustbar {
        width: 100%;
        padding-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1px 1fr 1px 1fr;
        gap: 0;
        align-items: center;
        text-align: center;
    }
    .lp-hero-trust-divider {
        display: block;
        width: 1px;
        height: 38px;
        background: rgba(255,255,255,0.12);
        margin: 0;
        justify-self: center;
    }
    .lp-hero-trust-item {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 4px 6px;
        text-align: center;
        min-width: 0;
    }
    .lp-hero-trust-item:first-child { padding-inline-start: 0; }
    .lp-hero-trust-text { align-items: center; line-height: 1.2; }
    .lp-hero-trust-text strong {
        font-size: 0.82rem;
        white-space: nowrap;
        letter-spacing: -0.01em;
    }
    .lp-hero-trust-text span {
        font-size: 0.62rem;
        line-height: 1.25;
        letter-spacing: 0;
    }
    .lp-hero-trust-icon { width: 16px; height: 16px; }
    .lp-hero-card-body { padding: 18px 18px 16px; gap: 16px; }
    .lp-calc-chip { padding: 8px 12px; }
    .lp-calc-chip-text { font-size: 0.8rem; }
    .lp-calc-amount-value > span:first-child { font-size: 1.4rem; }
    .lp-calc-result { padding: 14px 16px; }
    .lp-calc-result-amount > span:last-child { font-size: 1.85rem; }
    .lp-calc-cmp-cost { font-size: 0.84rem; }
    .lp-hero-card-legal { font-size: 0.62rem; padding: 8px 14px 10px; }
    .lp-qualify-grid { grid-template-columns: 1fr; }
    .lp-compare-head { display: none; }
    .lp-compare-row {
        grid-template-columns: 1fr;
        margin-bottom: 18px;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 6px 20px rgba(28,36,75,0.06);
    }
    .lp-compare-table { box-shadow: none; border: none; }
    .lp-compare-cell {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .lp-compare-cell::before {
        content: attr(data-label);
        display: block;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        color: var(--text-muted);
        font-weight: 700;
        margin-bottom: 4px;
    }
    .lp-cell-param {
        background: var(--secondary);
        color: #fff;
    }
    .lp-cell-param::before { color: rgba(255,255,255,0.7); }
    .lp-cell-us { border-right: none; border-top: 2px solid var(--accent); }
    .lp-faq-item summary { font-size: 1rem; padding: 18px 20px; }
    .lp-faq-body { padding: 0 20px 20px; font-size: 0.95rem; }
    .lp-form { padding: 26px 20px; }
}

/* ============================================
   FINAL EXPRESS CTA — inline form → channel choice
   ============================================ */

.lp-fx {
    position: relative;
    padding: 110px 6vw 100px;
    background:
        radial-gradient(ellipse at 20% 100%, rgba(67,179,154,0.18), transparent 55%),
        radial-gradient(ellipse at 100% 0%, rgba(67,179,154,0.08), transparent 55%),
        linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.lp-fx-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lp-fx-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}
.lp-fx-blob-1 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(67,179,154,0.45), transparent 70%);
}
.lp-fx-blob-2 {
    width: 320px;
    height: 320px;
    top: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(111,230,200,0.18), transparent 70%);
}
.lp-fx-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
}
.lp-fx-head {
    text-align: center;
    margin-bottom: 40px;
}
.lp-fx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #6fe6c8;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.lp-fx-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--accent);
}
.lp-fx-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 18px;
}
.lp-fx-title-accent {
    background: linear-gradient(180deg, #6fe6c8 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

}
.lp-fx-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}
.lp-fx-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 28px 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}

/* Inline form */
.lp-fx-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
.lp-fx-input { display: flex; flex-direction: column; gap: 8px; }
.lp-fx-input label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    padding-right: 4px;
}
.lp-fx-input input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #fff;
    direction: rtl;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.lp-fx-input input::placeholder { color: rgba(255,255,255,0.35); }
.lp-fx-input input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(67,179,154,0.16);
}
.lp-fx-submit {
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: background .25s ease, transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
    box-shadow: 0 10px 22px -6px rgba(67,179,154,0.55);
    white-space: nowrap;
}
.lp-fx-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -6px rgba(67,179,154,0.6);
}
.lp-fx-submit:disabled {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.lp-fx-submit-arrow { display: inline-flex; transition: transform .25s; }
.lp-fx-submit:hover:not(:disabled) .lp-fx-submit-arrow { transform: translateX(-3px); }
.lp-fx-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* Success state */
.lp-fx-success {
    animation: lp-fx-success-in .55s cubic-bezier(.16,1,.3,1);
}
@keyframes lp-fx-success-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp-fx-success-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.lp-fx-success-mark {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(67,179,154,0.4);
    animation: lp-fx-mark-pop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lp-fx-mark-pop {
    from { transform: scale(0.4); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.lp-fx-success-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.4; }
.lp-fx-success-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.015em;
}
.lp-fx-success-text small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.lp-fx-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12px;
}
.lp-fx-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
}
.lp-fx-action:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.lp-fx-action-wa {
    background: linear-gradient(135deg, #25d366 0%, #20bf5b 100%);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(37,211,102,0.5);
}
.lp-fx-action-wa:hover {
    background: linear-gradient(135deg, #2fde6f 0%, #25d366 100%);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 20px 40px -10px rgba(37,211,102,0.6);
}
.lp-fx-action-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    color: #fff;
}
.lp-fx-action-phone .lp-fx-action-icon {
    background: rgba(67,179,154,0.18);
    color: var(--accent-light);
}
.lp-fx-action-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
    min-width: 0;
}
.lp-fx-action-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.lp-fx-action-text small {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}
.lp-fx-action-wa .lp-fx-action-text small { color: rgba(255,255,255,0.85); }
.lp-fx-action-tag {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #fff;
    color: #20bf5b;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.lp-fx-ref {
    margin-top: 16px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.lp-fx-ref strong {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    margin-right: 4px;
}

/* Activity ribbon */
.lp-fx-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.lp-fx-activity-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.lp-fx-activity-item strong {
    color: #fff;
    font-weight: 700;
}
.lp-fx-activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2fc56e;
    box-shadow: 0 0 0 0 rgba(47,197,110,0.6);
    animation: lp-fx-dot 2s ease-out infinite;
}
@keyframes lp-fx-dot {
    0% { box-shadow: 0 0 0 0 rgba(47,197,110,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(47,197,110,0); }
    100% { box-shadow: 0 0 0 0 rgba(47,197,110,0); }
}
.lp-fx-activity-sep { color: rgba(255,255,255,0.25); }

@media (max-width: 720px) {
    .lp-fx { padding: 80px 18px 70px; }
    .lp-fx-head { margin-bottom: 32px; }
    .lp-fx-title { font-size: 1.85rem; }
    .lp-fx-sub { font-size: 0.95rem; }
    .lp-fx-card { padding: 22px 20px; border-radius: 18px; }
    .lp-fx-row { grid-template-columns: 1fr; gap: 14px; }
    .lp-fx-submit { width: 100%; justify-content: center; }
    .lp-fx-actions { grid-template-columns: 1fr; gap: 10px; }
    .lp-fx-action { padding: 16px 16px; }
    .lp-fx-action-tag { right: 12px; }
    .lp-fx-activity { font-size: 0.78rem; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-fx-success,
    .lp-fx-success-mark,
    .lp-fx-activity-dot { animation: none !important; }
    .lp-fx-action:hover { transform: none !important; }
}

/* ============================================
   HERO CARD V2 — non-interactive document-style
   ============================================ */

.lp-hxc-doc-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(28,36,75,0.1);
}
.lp-hxc-doc-label {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(67,179,154,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}
.lp-hxc-doc-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

.lp-hxc-vs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}
.lp-hxc-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 12px;
}
.lp-hxc-row-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.lp-hxc-row-label { font-size: 0.85rem; font-weight: 700; color: var(--secondary); }
.lp-hxc-row-rate { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.lp-hxc-row-bank .lp-hxc-row-label { color: #b94058; }
.lp-hxc-row-us .lp-hxc-row-label { color: var(--accent-dark); }

.lp-hxc-bar-wrap {
    height: 10px;
    background: rgba(28,36,75,0.05);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.lp-hxc-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 1.4s cubic-bezier(.16,1,.3,1);
    transition-delay: 200ms;
    position: absolute;
    inset: 0 0 0 auto;
}
.lp-hero-card.is-visible .lp-hxc-bar { width: var(--w); }
.lp-hxc-bar-bank { background: linear-gradient(90deg, #d8556d, #b94058); }
.lp-hxc-bar-us {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), #6fe6c8);
    box-shadow: 0 0 12px rgba(67,179,154,0.4);
}

.lp-hxc-row-val {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: left;
    min-width: 78px;
    line-height: 1;
}
.lp-hxc-row-val-bank {
    color: #b94058;
    text-decoration: line-through;
    text-decoration-color: rgba(216,85,109,0.45);
    text-decoration-thickness: 1.5px;
}
.lp-hxc-row-val-us { color: var(--accent-dark); }

.lp-hxc-savings {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(67,179,154,0.14) 0%, rgba(67,179,154,0.06) 100%);
    border: 1px solid rgba(67,179,154,0.3);
    margin-bottom: 14px;
    overflow: hidden;
}
.lp-hxc-savings-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(67,179,154,0.25), transparent 60%);
    pointer-events: none;
}
.lp-hxc-savings-info { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.lp-hxc-savings-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.04em;
}
.lp-hxc-savings-sub { font-size: 0.74rem; color: var(--text-muted); font-weight: 500; }
.lp-hxc-savings-amount {
    position: relative;
    z-index: 1;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.lp-hxc-risk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(28,36,75,0.03);
    border: 1px solid rgba(28,36,75,0.06);
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.lp-hxc-risk strong { color: var(--secondary); font-weight: 700; }
.lp-hxc-risk-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin-top: 1px;
}

@media (max-width: 980px) {
    .lp-hxc-row { grid-template-columns: 90px 1fr auto; gap: 10px; }
    .lp-hxc-row-label { font-size: 0.8rem; }
    .lp-hxc-row-val { font-size: 1rem; min-width: 72px; }
}

/* ============================================
   TESTIMONIALS — premium social proof section
   ============================================ */

.lp-tst {
    position: relative;
    padding: 110px 6vw 100px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    overflow: hidden;
}
.lp-tst::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 100% 0%, rgba(67,179,154,0.08), transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(28,36,75,0.04), transparent 50%);
    pointer-events: none;
}
.lp-tst-inner { position: relative; max-width: 1240px; margin: 0 auto; }
.lp-tst-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.lp-tst-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.lp-tst-eyebrow-line { width: 28px; height: 1px; background: var(--accent); }
.lp-tst-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--secondary);
    margin-bottom: 18px;
}
.lp-tst-title-accent {
    background: linear-gradient(180deg, transparent 60%, rgba(67,179,154,0.22) 60%);
    color: var(--accent-dark);
    padding: 0 4px;
}
.lp-tst-sub { font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); max-width: 580px; margin: 0 auto; }

.lp-tst-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 64px;
    align-items: stretch;
}
.lp-tst-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px;
    border: 1px solid rgba(28,36,75,0.07);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 36px -16px rgba(28,36,75,0.12);
    display: flex;
    flex-direction: column;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.lp-tst-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s cubic-bezier(.16,1,.3,1) calc(var(--lp-i, 0) * 110ms),
                transform .8s cubic-bezier(.16,1,.3,1) calc(var(--lp-i, 0) * 110ms),
                box-shadow .4s ease, border-color .3s ease;
}
.lp-tst-card:hover {
    transform: translateY(-4px);
    border-color: rgba(67,179,154,0.3);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 50px -16px rgba(28,36,75,0.18);
}
.lp-tst-card-feature {
    background: linear-gradient(160deg, #ffffff 0%, #f3f8f7 100%);
    border-color: rgba(67,179,154,0.25);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 18px 50px -18px rgba(67,179,154,0.3);
}
.lp-tst-card-feature.is-visible { transform: translateY(-12px) scale(1.02); }
.lp-tst-card-feature:hover { transform: translateY(-16px) scale(1.02); border-color: rgba(67,179,154,0.5); }
@media (max-width: 1024px) {
    .lp-tst-card-feature.is-visible,
    .lp-tst-card-feature:hover { transform: translateY(0) scale(1); }
}

.lp-tst-quote-mark {
    position: absolute;
    top: 14px;
    left: 26px;
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 0.5;
    color: var(--accent);
    opacity: 0.18;
    pointer-events: none;
}
.lp-tst-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: #f5b80a;
    font-size: 1rem;
    line-height: 1;
}
.lp-tst-quote {
    margin: 0 0 22px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    flex: 1;
    quotes: none;
}
.lp-tst-quote strong {
    color: var(--secondary);
    font-weight: 700;
    background: linear-gradient(180deg, transparent 65%, rgba(67,179,154,0.18) 65%);
}
.lp-tst-meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px dashed rgba(28,36,75,0.1);
}
.lp-tst-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c, var(--accent));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.lp-tst-meta-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; min-width: 0; }
.lp-tst-meta-text strong { font-size: 0.92rem; font-weight: 700; color: var(--secondary); }
.lp-tst-meta-text small { font-size: 0.74rem; color: var(--text-muted); }
.lp-tst-savings {
    text-align: left;
    flex-shrink: 0;
    padding-right: 12px;
    border-right: 1px dashed rgba(28,36,75,0.12);
}
.lp-tst-savings-label {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.lp-tst-savings strong {
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}
.lp-tst-savings strong small { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); margin-right: 1px; }

.lp-tst-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 28px 32px;
    background: linear-gradient(180deg, #fafbfc, #f5f7f9);
    border: 1px solid rgba(28,36,75,0.06);
    border-radius: 20px;
    flex-wrap: wrap;
}
.lp-tst-foot-stat { text-align: center; flex: 1 1 120px; min-width: 120px; }
.lp-tst-foot-stat strong {
    display: block;
    font-family: 'Liebling', 'Heebo', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--secondary);
    margin-bottom: 6px;
}
.lp-tst-foot-stat strong small { font-size: 0.55em; font-weight: 700; color: var(--text-muted); }
.lp-tst-foot-stat span { display: block; font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.lp-tst-foot-divider { width: 1px; align-self: stretch; background: rgba(28,36,75,0.1); margin: 8px 0; }

@media (max-width: 1024px) { .lp-tst-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 720px) {
    .lp-tst { padding: 80px 18px 70px; }
    .lp-tst-head { margin-bottom: 44px; }
    .lp-tst-card { padding: 24px 22px; }
    .lp-tst-quote { font-size: 0.95rem; }
    .lp-tst-foot { gap: 18px; padding: 22px 18px; border-radius: 16px; }
    .lp-tst-foot-divider { display: none; }
    .lp-tst-foot-stat { flex-basis: 45%; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-tst-card { opacity: 1 !important; transform: none !important; transition: none !important; }
    .lp-tst-card-feature.is-visible { transform: none !important; }
}

/* ============================================
   STICKY MOBILE CTA — appears after hero scroll
   ============================================ */
.lp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.92) 30%, #fff);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    display: none;
}
.lp-sticky-cta.is-visible { transform: translateY(0); pointer-events: auto; }
.lp-sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px 14px 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 30px -8px rgba(67,179,154,0.55);
    text-decoration: none;
    transition: transform .25s ease;
}
.lp-sticky-cta-btn:active { transform: scale(0.98); }
.lp-sticky-cta-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.lp-sticky-cta-text strong { font-size: 0.98rem; font-weight: 700; }
.lp-sticky-cta-text small { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.lp-sticky-cta-arrow {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    align-items: center;
    justify-content: center;
}

@media (max-width: 720px) {
    .lp-sticky-cta { display: block; }
    .whatsapp-float { bottom: 96px; }
    .back-to-top { bottom: 152px; }
}
@media (prefers-reduced-motion: reduce) { .lp-sticky-cta { transition: none !important; } }
