/* ============================================================
   RxMart Landing Version — Page Styles
   All lv-* component styles for landing-version.blade.php
   ============================================================ */

/* ── Gradient text utility ── */
.lv-gradient-text {
    background: linear-gradient(135deg, #51a5a9 0%, #316c6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Marquee: set-based seamless loop override ── */
.lp-marquee .lp-marquee-track {
    gap: 0;
}
.lp-marquee-set {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px; /* trailing space = inter-item gap → seamless */
    flex-shrink: 0;
}
@keyframes lp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ── Hero ── */
.lv-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #edf3f3;
}
html[data-theme="dark"] .lv-hero {
    background: #0b1220 !important;
}

section#banner_home {
    clip-path: inherit !important;
}

/* Ambient orbs */
.lv-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.lv-orb-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(56,152,157,0.2), transparent 70%);
    top: -100px; right: -80px;
    opacity: 0.8;
}
.lv-orb-2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(49,108,106,0.15), transparent 70%);
    bottom: -60px; left: -60px;
    opacity: 0.7;
}

/* Grid overlay */
.lv-hero-grid {
    position: absolute;
    inset: 0;
    /* background-image:
        linear-gradient(var(--lp-surface-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--lp-surface-border) 1px, transparent 1px); */
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

/* Badge */
.lv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(56,152,157,0.1);
    border: 1px solid rgba(56,152,157,0.25);
    color: #38989d;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}
html[data-theme="dark"] .lv-hero-badge { color: #51a5a9; }

.lv-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #51a5a9;
    animation: lv-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes lv-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.6; }
}

/* Heading */
.lv-hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #111827;
    margin-bottom: 20px;
}
html[data-theme="dark"] .lv-hero-title { color: #f0f2f5; }

/* Description */
.lv-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 520px;
    margin-bottom: 32px;
}
html[data-theme="dark"] .lv-hero-desc { color: #8b95a2; }

/* CTA Buttons */
.lv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.lv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #51a5a9, #316c6a);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(56,152,157,0.4);
}
.lv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(56,152,157,0.5);
    color: #fff;
    text-decoration: none;
}
.lv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 1.5px solid rgba(56,152,157,0.4);
    color: #38989d;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    background: transparent;
}
.lv-btn-outline:hover {
    background: rgba(56,152,157,0.08);
    border-color: #51a5a9;
    transform: translateY(-2px);
    color: #38989d;
    text-decoration: none;
}
html[data-theme="dark"] .lv-btn-outline { color: #51a5a9; border-color: rgba(81,165,169,0.35); }
html[data-theme="dark"] .lv-btn-outline:hover { color: #51a5a9; }

/* Social proof */
.lv-hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}
html[data-theme="dark"] .lv-hero-social-proof { color: #8b95a2; }
.lv-hero-social-proof strong { color: #111827; }
html[data-theme="dark"] .lv-hero-social-proof strong { color: #f0f2f5; }
.lv-avatar-stack { display: flex; }
.lv-avatar-stack span {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    border: 2px solid #edf3f3;
    margin-left: -8px;
    color: #fff;
}
html[data-theme="dark"] .lv-avatar-stack span { border-color: #0b1220; }
.lv-avatar-stack span:first-child  { margin-left: 0; }
.lv-avatar-stack span:nth-child(1) { background: #51a5a9; }
.lv-avatar-stack span:nth-child(2) { background: #316c6a; }
.lv-avatar-stack span:nth-child(3) { background: #2e8588; }
.lv-avatar-stack span:nth-child(4) { background: #111827; }
html[data-theme="dark"] .lv-avatar-stack span:nth-child(4) { background: #f0f2f5; color: #0b1220; }

/* Hero image */
.lv-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lv-hero-image-wrap {
    filter: drop-shadow(0 24px 48px rgba(56,152,157,0.2));
    animation: lv-float 5s ease-in-out infinite;
}
html[data-theme="dark"] .lv-hero-image-wrap {
    filter: drop-shadow(0 24px 48px rgba(56,152,157,0.15));
}
@keyframes lv-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* Hero responsive */
@media (max-width: 991px) {
    .lv-hero { padding: 90px 0 60px; text-align: center; }
    .lv-hero-badge { margin: 0 auto 20px; }
    .lv-hero-desc { margin-left: auto; margin-right: auto; }
    .lv-hero-actions { justify-content: center; }
    .lv-hero-social-proof { justify-content: center; }
    .lv-hero-visual { margin-top: 40px; }
}
@media (max-width: 575px) {
    .lv-hero { padding: 80px 0 50px; }
    .lv-hero-title { letter-spacing: -0.5px; }
    .lv-btn-primary, .lv-btn-outline { width: 100%; justify-content: center; }
}

/* ── Shared utilities ── */
.lv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #38989d;
    margin-bottom: 16px;
}
.lv-section-label-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #51a5a9;
    border-radius: 2px;
}

/* ── Stats section ── */
html[data-theme="dark"] #stats.lp-section-alt {
    background: transparent;
}

/* ── About section ── */
.lv-about {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f4f9f9;
}
html[data-theme="dark"] .lv-about {
    background: #0e1419;
}

/* Ambient orbs */
.lv-about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.lv-about-orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(56,152,157,0.18), transparent 70%);
    top: -120px; right: -80px;
    opacity: 0.85;
}
.lv-about-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(49,108,106,0.13), transparent 70%);
    bottom: -80px; left: -60px;
    opacity: 0.7;
}

/* Image outer wrapper */
.lv-about-img-outer {
    position: relative;
    z-index: 1;
}
.lv-about-img-glow {
    position: absolute;
    inset: -24px;
    border-radius: 32px;
    background: radial-gradient(ellipse at 50% 50%, rgba(56,152,157,0.22), transparent 68%);
    z-index: 0;
    pointer-events: none;
}
.lv-about-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(56,152,157,0.18), 0 4px 20px rgba(0,0,0,0.08);
}
html[data-theme="dark"] .lv-about-image-wrap {
    box-shadow: 0 24px 64px rgba(56,152,157,0.12), 0 4px 20px rgba(0,0,0,0.45);
}
.lv-about-image-wrap img {
    width: 100%;
    display: block;
}
.lv-about-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    border: 1px solid rgba(56,152,157,0.15);
}
html[data-theme="dark"] .lv-about-badge {
    background: rgba(22,29,37,0.88);
    color: #f0f2f5;
    border-color: rgba(56,152,157,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.lv-about-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(34,197,94,0.6);
}

/* Floating stat card */
.lv-about-img-stat {
    position: absolute;
    top: 24px; right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(56,152,157,0.18), 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
    border: 1px solid rgba(56,152,157,0.12);
    animation: lv-float 5s ease-in-out infinite;
}
html[data-theme="dark"] .lv-about-img-stat {
    background: #161d25;
    border-color: rgba(56,152,157,0.22);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.lv-about-img-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #51a5a9, #316c6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.lv-about-img-stat span {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
html[data-theme="dark"] .lv-about-img-stat span { color: #8b95a2; }

/* Title */
.lv-about-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: #111827;
    margin-bottom: 18px;
}
html[data-theme="dark"] .lv-about-title { color: #f0f2f5; }

/* Description */
.lv-about-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 28px;
    max-width: 520px;
}
html[data-theme="dark"] .lv-about-desc { color: #8b95a2; }

/* Feature list */
.lv-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lv-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #374151;
}
html[data-theme="dark"] .lv-feature-list li { color: #c9d1db; }
.lv-feature-list li svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #51a5a9;
}

/* Card-style feature list (used in about section) */
.lv-feature-list--card li {
    background: rgba(56,152,157,0.06);
    border: 1px solid rgba(56,152,157,0.14);
    border-radius: 10px;
    padding: 11px 16px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lv-feature-list--card li:hover {
    background: rgba(56,152,157,0.11);
    border-color: rgba(56,152,157,0.28);
    transform: translateX(4px);
}
html[data-theme="dark"] .lv-feature-list--card li {
    background: rgba(56,152,157,0.08);
    border-color: rgba(56,152,157,0.18);
}
html[data-theme="dark"] .lv-feature-list--card li:hover {
    background: rgba(56,152,157,0.14);
    border-color: rgba(56,152,157,0.3);
}

@media (max-width: 991px) {
    .lv-about { padding: 70px 0; }
    .lv-about-img-outer { margin-top: 20px; }
    .lv-about-img-stat { right: 10px; top: 16px; }
}
@media (max-width: 575px) {
    .lv-about-img-stat { display: none; }
}

/* ── Feature cards ── */
.lv-features {
    padding: 80px 0;
    background: #edf3f3;
}
html[data-theme="dark"] .lv-features {
    background: #0b1220;
}
.lv-features-header {
    text-align: center;
    margin-bottom: 56px;
}
.lv-features-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111827;
    margin-bottom: 12px;
}
html[data-theme="dark"] .lv-features-title { color: #f0f2f5; }
.lv-features-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
html[data-theme="dark"] .lv-features-subtitle { color: #8b95a2; }
.lv-feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid rgba(56,152,157,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
html[data-theme="dark"] .lv-feat-card {
    background: #141b22;
    border-color: rgba(255,255,255,0.06);
}
.lv-feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.25s;
}
.lv-feat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(56,152,157,0.12); }
.lv-feat-card:hover::before { opacity: 1; }
html[data-theme="dark"] .lv-feat-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.4); }

.lv-feat-card--teal::before  { background: linear-gradient(90deg, #38989d, #51a5a9); }
.lv-feat-card--amber::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.lv-feat-card--purple::before{ background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.lv-feat-card--green::before  { background: linear-gradient(90deg, #22c55e, #4ade80); }

.lv-feat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.lv-feat-icon svg { width: 26px; height: 26px; }
.lv-feat-icon--teal  { background: rgba(56,152,157,0.12); color: #38989d; }
.lv-feat-icon--amber { background: rgba(245,158,11,0.12);  color: #d97706; }
.lv-feat-icon--purple{ background: rgba(139,92,246,0.12);  color: #7c3aed; }
.lv-feat-icon--green  { background: rgba(34,197,94,0.12);   color: #16a34a; }
html[data-theme="dark"] .lv-feat-icon--teal  { background: rgba(56,152,157,0.15); color: #51a5a9; }
html[data-theme="dark"] .lv-feat-icon--amber { background: rgba(245,158,11,0.15);  color: #fbbf24; }
html[data-theme="dark"] .lv-feat-icon--purple{ background: rgba(139,92,246,0.15);  color: #a78bfa; }
html[data-theme="dark"] .lv-feat-icon--green  { background: rgba(34,197,94,0.15);   color: #4ade80; }

.lv-feat-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
html[data-theme="dark"] .lv-feat-card h4 { color: #f0f2f5; }
.lv-feat-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
}
html[data-theme="dark"] .lv-feat-card p { color: #8b95a2; }
@media (max-width: 767px) {
    .lv-features { padding: 60px 0; }
    .lv-feat-card { margin-bottom: 16px; }
}

/* ── What We Do — 3-card grid ── */
.lv-whatwedo {
    padding: 90px 0;
    background: #f4f9f9;
}
html[data-theme="dark"] .lv-whatwedo {
    background: #0e1419;
}

/* 3-column card grid */
.lv-wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

/* Card shell */
.lv-wwd-card {
    background: #ffffff;
    border: 1px solid rgba(56,152,157,0.12);
    border-radius: 18px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.lv-wwd-card:hover {
    border-color: rgba(56,152,157,0.4);
    box-shadow: 0 12px 40px rgba(56,152,157,0.12);
    transform: translateY(-5px);
}
html[data-theme="dark"] .lv-wwd-card {
    background: #141b22;
    border-color: rgba(255,255,255,0.07);
}
html[data-theme="dark"] .lv-wwd-card:hover {
    border-color: rgba(56,152,157,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Icon square */
.lv-wwd-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(56,152,157,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}
.lv-wwd-card:hover .lv-wwd-icon {
    background: rgba(56,152,157,0.22);
}
html[data-theme="dark"] .lv-wwd-icon {
    background: rgba(56,152,157,0.15);
}
html[data-theme="dark"] .lv-wwd-card:hover .lv-wwd-icon {
    background: rgba(56,152,157,0.25);
}
.lv-wwd-icon svg {
    width: 26px;
    height: 26px;
    stroke: #38989d;
}

/* Title */
.lv-wwd-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}
html[data-theme="dark"] .lv-wwd-title { color: #f0f2f5; }

/* Description */
.lv-wwd-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
    flex: 1;
}
html[data-theme="dark"] .lv-wwd-desc { color: #8b95a2; }

/* Tags row */
.lv-wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.lv-wwd-tags span {
    font-size: 12px;
    font-weight: 600;
    color: #38989d;
    background: rgba(56,152,157,0.08);
    border: 1px solid rgba(56,152,157,0.18);
    border-radius: 6px;
    padding: 4px 11px;
    white-space: nowrap;
}
html[data-theme="dark"] .lv-wwd-tags span {
    color: #51a5a9;
    background: rgba(56,152,157,0.1);
    border-color: rgba(56,152,157,0.22);
}

/* Responsive */
@media (max-width: 991px) {
    .lv-whatwedo { padding: 64px 0; }
    .lv-wwd-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 575px) {
    .lv-wwd-grid { grid-template-columns: 1fr; gap: 16px; }
    .lv-whatwedo { padding: 52px 0; }
    .lv-wwd-card { padding: 28px 24px 22px; }
}

/* ── Videos ── */
.lv-videos {
    padding: 90px 0;
    background: #edf3f3;
}
html[data-theme="dark"] .lv-videos {
    background: #0b1220;
}
.lv-videos-header {
    text-align: center;
    margin-bottom: 52px;
}
.lv-videos-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111827;
    margin-bottom: 12px;
}
html[data-theme="dark"] .lv-videos-title { color: #f0f2f5; }
.lv-videos-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
html[data-theme="dark"] .lv-videos-subtitle { color: #8b95a2; }
.lv-video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(56,152,157,0.1);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}
html[data-theme="dark"] .lv-video-card {
    background: #141b22;
    border-color: rgba(255,255,255,0.06);
}
.lv-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(56,152,157,0.14);
}
html[data-theme="dark"] .lv-video-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.lv-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0a0f14;
}
.lv-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.lv-video-info {
    padding: 16px 18px;
}
.lv-video-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}
html[data-theme="dark"] .lv-video-info h3 { color: #f0f2f5; }
.lv-video-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #51a5a9;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.lv-video-tag svg { width: 12px; height: 12px; stroke: #51a5a9; }
@media (max-width: 767px) {
    .lv-videos { padding: 60px 0; }
}

/* ── Testimonials ── */
.lv-testimonials {
    padding: 90px 0;
    background: #f4f9f9;
}
html[data-theme="dark"] .lv-testimonials {
    background: #0e1419;
}
.lv-testimonials-header {
    text-align: center;
    margin-bottom: 52px;
}
.lv-testimonials-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111827;
    margin-bottom: 12px;
}
html[data-theme="dark"] .lv-testimonials-title { color: #f0f2f5; }
.lv-testimonials-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}
html[data-theme="dark"] .lv-testimonials-subtitle { color: #8b95a2; }
.lv-testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid rgba(56,152,157,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}
html[data-theme="dark"] .lv-testi-card {
    background: #141b22;
    border-color: rgba(255,255,255,0.06);
}
.lv-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(56,152,157,0.12);
}
html[data-theme="dark"] .lv-testi-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.lv-testi-quote {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(56,152,157,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
html[data-theme="dark"] .lv-testi-quote { background: rgba(56,152,157,0.15); }
.lv-testi-quote svg { width: 18px; height: 18px; stroke: #51a5a9; }
.lv-testi-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.lv-testi-comment {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    flex: 1;
    margin: 0;
}
html[data-theme="dark"] .lv-testi-comment { color: #c9d1db; }
.lv-testi-divider {
    height: 1px;
    background: rgba(56,152,157,0.12);
}
html[data-theme="dark"] .lv-testi-divider { background: rgba(255,255,255,0.07); }
.lv-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lv-testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(56,152,157,0.2);
}
.lv-testi-avatar-placeholder {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #51a5a9, #316c6a);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.lv-testi-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px;
}
html[data-theme="dark"] .lv-testi-name { color: #f0f2f5; }
.lv-testi-role {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}
html[data-theme="dark"] .lv-testi-role { color: #8b95a2; }
@media (max-width: 767px) {
    .lv-testimonials { padding: 60px 0; }
}

/* ── FAQ ── */
.lv-faq {
    padding: 90px 0;
    background: #edf3f3;
}
html[data-theme="dark"] .lv-faq {
    background: #0b1220;
}
.lv-faq-inner {
    max-width: 760px;
    margin: 0 auto;
}
.lv-faq-header {
    text-align: center;
    margin-bottom: 48px;
}
.lv-faq-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111827;
    margin-bottom: 12px;
}
html[data-theme="dark"] .lv-faq-title { color: #f0f2f5; }
.lv-faq-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}
html[data-theme="dark"] .lv-faq-subtitle { color: #8b95a2; }
.lv-faq .accordion { display: flex; flex-direction: column; gap: 10px; }
.lv-faq .accordion-item {
    background: #fff;
    border: 1px solid rgba(56,152,157,0.12) !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
html[data-theme="dark"] .lv-faq .accordion-item {
    background: #141b22;
    border-color: rgba(255,255,255,0.07) !important;
}
.lv-faq .accordion-item:has(.accordion-collapse.show) {
    box-shadow: 0 8px 32px rgba(56,152,157,0.1);
    border-color: rgba(56,152,157,0.3) !important;
}
html[data-theme="dark"] .lv-faq .accordion-item:has(.accordion-collapse.show) {
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border-color: rgba(56,152,157,0.25) !important;
}
.lv-faq .accordion-button {
    background: transparent !important;
    font-size: 15px;
    font-weight: 600;
    color: #111827 !important;
    padding: 20px 24px;
    box-shadow: none !important;
    gap: 12px;
}
html[data-theme="dark"] .lv-faq .accordion-button {
    color: #f0f2f5 !important;
}
.lv-faq .accordion-button::after {
    width: 20px; height: 20px;
    background-image: none !important;
    content: '';
    flex-shrink: 0;
    margin-left: auto;
    background: rgba(56,152,157,0.12);
    border-radius: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338989d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s;
}
.lv-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-color: rgba(56,152,157,0.18);
}
.lv-faq .accordion-body {
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    padding: 0 24px 20px;
}
html[data-theme="dark"] .lv-faq .accordion-body { color: #8b95a2; }
@media (max-width: 767px) {
    .lv-faq { padding: 60px 0; }
    .lv-faq .accordion-button { padding: 16px 18px; font-size: 14px; }
    .lv-faq .accordion-body { padding: 0 18px 16px; }
}

/* ── Download App Section ── */
.lv-app {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f4f9f9;
}
html[data-theme="dark"] .lv-app {
    /* background: #0e1419; */
    background: #0b1220;
}

/* Orbs */
.lv-app-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.lv-app-orb-1 {
    width: 560px;
    height: 560px;
    top: -180px;
    right: -140px;
    background: radial-gradient(circle, rgba(56,152,157,0.08) 0%, transparent 68%);
}
.lv-app-orb-2 {
    width: 340px;
    height: 340px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(56,152,157,0.06) 0%, transparent 68%);
}
html[data-theme="dark"] .lv-app-orb-1 {
    background: radial-gradient(circle, rgba(56,152,157,0.12) 0%, transparent 68%);
}
html[data-theme="dark"] .lv-app-orb-2 {
    background: radial-gradient(circle, rgba(56,152,157,0.08) 0%, transparent 68%);
}

/* Badge */
.lv-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(56,152,157,0.10);
    color: #38989d;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(56,152,157,0.22);
}
html[data-theme="dark"] .lv-app-badge {
    background: rgba(56,152,157,0.14);
    color: #51a5a9;
    border-color: rgba(56,152,157,0.28);
}

/* Title */
.lv-app-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}
html[data-theme="dark"] .lv-app-title {
    color: #f0f2f5;
}
.lv-app-highlight {
    color: #38989d;
}
html[data-theme="dark"] .lv-app-highlight {
    color: #51a5a9;
}

/* Description */
.lv-app-desc {
    font-size: 16px;
    line-height: 1.78;
    color: #6b7280;
    margin-bottom: 28px;
    max-width: 480px;
}
html[data-theme="dark"] .lv-app-desc {
    color: #8b95a2;
}

/* Feature list */
.lv-app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.lv-app-features li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}
html[data-theme="dark"] .lv-app-features li {
    color: #c9d1db;
}
.lv-app-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(56,152,157,0.12);
    border-radius: 50%;
    font-size: 11px;
    color: #38989d;
    flex-shrink: 0;
    font-style: normal;
}
html[data-theme="dark"] .lv-app-check {
    background: rgba(56,152,157,0.18);
    color: #51a5a9;
}

/* Store buttons */
.lv-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.lv-app-store-btn {
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lv-app-store-btn img {
    height: 50px;
    width: auto;
    display: block;
}
.lv-app-store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(56,152,157,0.25);
}

/* Phone mockup */
.lv-app-phone-wrap {
    position: relative;
    display: inline-block;
}
.lv-app-phone-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(56,152,157,0.18) 0%, transparent 62%);
    border-radius: 50%;
    pointer-events: none;
    animation: lv-phone-pulse 3.5s ease-in-out infinite;
}
html[data-theme="dark"] .lv-app-phone-glow {
    background: radial-gradient(circle, rgba(56,152,157,0.25) 0%, transparent 62%);
}
.lv-app-phone-img {
    position: relative;
    z-index: 1;
    max-height: 500px;
    width: auto;
    border-radius: 30px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(56,152,157,0.12);
    animation: lv-phone-float 4s ease-in-out infinite;
}
html[data-theme="dark"] .lv-app-phone-img {
    box-shadow: 0 32px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(56,152,157,0.18);
}

@keyframes lv-phone-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-16px); }
}
@keyframes lv-phone-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 991px) {
    .lv-app { padding: 72px 0; }
    .lv-app-phone-img { max-height: 360px; }
}
@media (max-width: 767px) {
    .lv-app { padding: 60px 0; text-align: center; }
    .lv-app-desc { max-width: 100%; }
    .lv-app-features li { justify-content: center; }
    .lv-app-buttons { justify-content: center; }
    .lv-app-phone-img { max-height: 280px; margin-top: 40px; }
    .lv-app-orb-1 { width: 300px; height: 300px; }
}

/* ── Process / Steps Section ─────────────────────────── */

.lv-process {
    padding: 96px 0;
}

.lv-process-wrapper {
    position: relative;
    margin-top: 56px;
}

/* Horizontal connector line — sits at the centre of the node circles */
.lv-process-line {
    display: none; /* shown only on lg+ */
    position: absolute;
    top: 36px; /* half of node height (72px / 2) */
    left: calc(12.5%); /* starts at centre of first node */
    right: calc(12.5%); /* ends at centre of last node */
    height: 1px;
    background: linear-gradient(90deg, rgba(56,152,157,0.5) 0%, rgba(51,107,107,0.5) 100%);
    z-index: 0;
}

.lv-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Each step column — node on top, card below */
.lv-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Gradient circle */
.lv-process-node {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #51a5a9 0%, #336B6B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(56,152,157,0.15), 0 8px 24px rgba(56,152,157,0.35);
    position: relative;
    z-index: 2;
}

.lv-process-node span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

/* Dark card */
.lv-process-card {
    background: #111920;
    border: 1px solid rgba(56,152,157,0.15);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    width: 100%;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    height: 100%;
}

.lv-process-card:hover {
    border-color: rgba(56,152,157,0.45);
    box-shadow: 0 8px 32px rgba(56,152,157,0.15);
    transform: translateY(-4px);
}

.lv-process-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.lv-process-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

/* Light-theme adjustments */
html:not([data-theme="dark"]) .lv-process-card {
    background: #f4f8f9;
    border-color: rgba(56,152,157,0.15);
}
html:not([data-theme="dark"]) .lv-process-title {
    color: #0f2137;
}
html:not([data-theme="dark"]) .lv-process-desc {
    color: rgba(15,33,55,0.6);
}

/* Desktop: show connecting line */
@media (min-width: 992px) {
    .lv-process-line { display: block; }
}

/* Tablet: 2-column grid */
@media (max-width: 991px) {
    .lv-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile: single column */
@media (max-width: 575px) {
    .lv-process-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .lv-process {
        padding: 64px 0;
    }
}

