/* LogiVanta Premium Dark Theme */
:root {
    --lv-bg: #00050a;
    --lv-bg-elevated: #0a1220;
    --lv-bg-card: #0f1a2e;
    --lv-bg-card-hover: #152238;
    --lv-border: rgba(0, 212, 255, 0.12);
    --lv-border-strong: rgba(0, 212, 255, 0.28);
    --lv-blue: #1a5fff;
    --lv-cyan: #5eb8d4;
    --lv-teal: #0891b2;
    --lv-gradient: linear-gradient(135deg, #1a5fff 0%, #3b9fd9 100%);
    --lv-gradient-soft: linear-gradient(135deg, rgba(26, 95, 255, 0.1) 0%, rgba(59, 159, 217, 0.06) 100%);
    --lv-text: #f0f6ff;
    --lv-text-muted: #8ba3c7;
    --lv-text-dim: #5a7299;
    --lv-white: #ffffff;
    --lv-radius: 16px;
    --lv-radius-sm: 10px;
    --lv-radius-lg: 24px;
    --lv-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --lv-glow: 0 0 24px rgba(26, 95, 255, 0.1);
    --lv-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lv-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body.lv-body {
    font-family: var(--lv-font);
    background: var(--lv-bg);
    color: var(--lv-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.lv-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(26, 95, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 159, 217, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.lv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.lv-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Typography */
.lv-gradient-text {
    background: var(--lv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lv-cyan);
    margin-bottom: 16px;
}

.lv-section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--lv-gradient);
    border-radius: 2px;
}

.lv-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.lv-section-subtitle {
    font-size: 1.05rem;
    color: var(--lv-text-muted);
    max-width: 640px;
    line-height: 1.7;
}

/* Header */
.lv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--lv-transition);
}

.lv-header.scrolled {
    background: rgba(0, 5, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lv-border);
    padding: 12px 0;
}

.lv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lv-header-right {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.lv-logo img { height: 56px; width: auto; }

.lv-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lv-nav a {
    color: var(--lv-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--lv-transition);
    white-space: nowrap;
}

.lv-nav a:hover, .lv-nav a.active {
    color: var(--lv-white);
    background: rgba(0, 212, 255, 0.08);
}

.lv-header-actions { display: flex; align-items: center; gap: 10px; }

.lv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--lv-transition);
    font-family: var(--lv-font);
}

.lv-btn-primary {
    background: var(--lv-gradient);
    color: var(--lv-white);
    box-shadow: 0 2px 12px rgba(26, 95, 255, 0.25);
}

.lv-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 95, 255, 0.3);
}

.lv-btn-outline {
    background: transparent;
    color: var(--lv-cyan);
    border: 1px solid var(--lv-border-strong);
}

.lv-btn-outline:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--lv-cyan);
}

.lv-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--lv-text);
    border: 1px solid var(--lv-border);
}

.lv-btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }

.lv-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--lv-text);
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.lv-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 120px 0 56px;
    position: relative;
}

.lv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--lv-border-strong);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lv-cyan);
    margin-bottom: 24px;
}

.lv-hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--lv-cyan);
    border-radius: 50%;
    animation: lv-pulse 2s infinite;
}

@keyframes lv-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.lv-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.lv-hero-desc {
    font-size: 1.15rem;
    color: var(--lv-text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.lv-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.lv-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--lv-border);
}

.lv-stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--lv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lv-stat-label { font-size: 0.85rem; color: var(--lv-text-dim); }

.lv-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.lv-hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lv-radius-lg);
    filter: drop-shadow(0 12px 40px rgba(26, 95, 255, 0.12));
}

.lv-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Sections */
.lv-section { padding: 64px 0; position: relative; z-index: 1; }
.lv-section-compact { padding: 32px 0 64px; }

.lv-section-header { text-align: center; margin-bottom: 40px; }
.lv-section-header .lv-section-subtitle { margin: 0 auto; }

/* Product Cards */
.lv-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lv-plan-card {
    background: var(--lv-bg-card);
    border: 1px solid var(--lv-border);
    border-radius: var(--lv-radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--lv-transition);
    overflow: hidden;
}

.lv-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lv-gradient);
    opacity: 0;
    transition: var(--lv-transition);
}

.lv-plan-card:hover {
    border-color: var(--lv-border-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lv-plan-card:hover::before { opacity: 1; }

.lv-plan-card.featured {
    border-color: var(--lv-border-strong);
    background: linear-gradient(180deg, rgba(26, 95, 255, 0.08) 0%, var(--lv-bg-card) 40%);
}

.lv-plan-card.featured::before { opacity: 1; }

.lv-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--lv-gradient);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lv-plan-tier {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lv-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.lv-plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lv-plan-desc {
    font-size: 0.9rem;
    color: var(--lv-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.lv-plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.lv-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--lv-text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lv-plan-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--lv-cyan); }

/* Feature Grid */
.lv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lv-feature-card {
    background: var(--lv-bg-card);
    border: 1px solid var(--lv-border);
    border-radius: var(--lv-radius);
    padding: 32px 24px;
    transition: var(--lv-transition);
}

.lv-feature-card:hover {
    border-color: var(--lv-border-strong);
    background: var(--lv-bg-card-hover);
}

.lv-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lv-gradient-soft);
    border: 1px solid var(--lv-border);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--lv-cyan);
}

.lv-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.lv-feature-card p {
    font-size: 0.9rem;
    color: var(--lv-text-muted);
    line-height: 1.6;
}

/* Integrations */
.lv-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.lv-integration-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--lv-bg-card);
    border: 1px solid var(--lv-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.lv-integration-pill svg { color: var(--lv-cyan); }

/* CTA Banner */
.lv-cta-banner {
    background: var(--lv-gradient-soft);
    border: 1px solid var(--lv-border);
    border-radius: var(--lv-radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lv-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.lv-cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.lv-cta-banner p {
    color: var(--lv-text-muted);
    margin-bottom: 32px;
    position: relative;
}

.lv-cta-banner .lv-btn { position: relative; }

/* Footer */
.lv-footer {
    background: var(--lv-bg-elevated);
    border-top: 1px solid var(--lv-border);
    padding: 48px 0 24px;
    position: relative;
    z-index: 1;
}

.lv-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.lv-footer-brand img { height: 56px; margin-bottom: 16px; }

.lv-footer-brand p {
    font-size: 0.9rem;
    color: var(--lv-text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.lv-footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lv-cyan);
    margin-bottom: 20px;
}

.lv-footer-links { list-style: none; }
.lv-footer-links li { margin-bottom: 10px; }
.lv-footer-links a {
    color: var(--lv-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--lv-transition);
}
.lv-footer-links a:hover { color: var(--lv-cyan); }

.lv-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--lv-text-muted);
}

.lv-footer-contact-item svg { color: var(--lv-cyan); flex-shrink: 0; margin-top: 3px; }

.lv-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--lv-border);
    font-size: 0.85rem;
    color: var(--lv-text-dim);
}

.lv-footer-bottom img { height: 40px; opacity: 0.8; }

/* Page Hero (inner pages) */
.lv-page-hero {
    padding: 120px 0 40px;
    text-align: center;
    position: relative;
}

.lv-page-hero-compact {
    padding: 110px 0 24px;
}

.lv-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

/* Contact */
.lv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.lv-contact-info-card {
    background: var(--lv-bg-card);
    border: 1px solid var(--lv-border);
    border-radius: var(--lv-radius-lg);
    padding: 40px;
}

.lv-contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--lv-border);
}

.lv-contact-item:last-child { border-bottom: none; }

.lv-contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lv-gradient-soft);
    border-radius: 12px;
    color: var(--lv-cyan);
    flex-shrink: 0;
}

.lv-contact-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.lv-contact-item p, .lv-contact-item a { font-size: 0.9rem; color: var(--lv-text-muted); text-decoration: none; }
.lv-contact-item a:hover { color: var(--lv-cyan); }

/* Modal */
.lv-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 5, 10, 0.88);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}

.lv-modal-overlay.active { display: flex; }

.lv-modal {
    background: var(--lv-bg-card);
    border: 1px solid var(--lv-border-strong);
    border-radius: var(--lv-radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--lv-shadow);
    animation: lv-modal-in 0.3s ease;
    overflow: hidden;
}

.lv-demo-modal {
    max-width: 920px;
    max-height: calc(100vh - 32px);
}

.lv-demo-modal .lv-demo-modal-grid {
    flex: 1;
    min-height: 0;
}

.lv-demo-modal-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 0;
    height: 100%;
    max-height: calc(100vh - 32px);
}

.lv-demo-modal-visual {
    background: linear-gradient(160deg, rgba(26, 95, 255, 0.18) 0%, rgba(10, 18, 32, 0.95) 55%);
    border-right: 1px solid var(--lv-border);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lv-demo-visual-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lv-demo-modal-visual h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 10px 0 8px;
    line-height: 1.3;
}

.lv-demo-visual-desc {
    font-size: 0.82rem;
    color: var(--lv-text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.lv-demo-visual-img {
    width: 100%;
    border-radius: var(--lv-radius-sm);
    border: 1px solid var(--lv-border);
    margin-bottom: 16px;
    object-fit: cover;
    max-height: 180px;
}

.lv-demo-benefits {
    list-style: none;
    margin-top: auto;
}

.lv-demo-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--lv-text-muted);
    padding: 6px 0;
}

.lv-demo-benefits li svg { color: var(--lv-cyan); flex-shrink: 0; }

.lv-demo-modal-form-wrap {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: calc(100vh - 32px);
    overflow: hidden;
}

.lv-demo-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px 0;
    flex-shrink: 0;
}

.lv-demo-form-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.lv-demo-form-header p {
    font-size: 0.8rem;
    color: var(--lv-text-dim);
}

.lv-demo-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

@keyframes lv-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 28px 0;
    flex-shrink: 0;
}

.lv-modal-header h2 { font-size: 1.35rem; font-weight: 700; margin-top: 6px; }

.lv-modal-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lv-cyan);
    padding: 4px 10px;
    background: rgba(26, 95, 255, 0.1);
    border-radius: 6px;
}

.lv-modal-subtitle {
    font-size: 0.85rem;
    color: var(--lv-text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.lv-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--lv-border);
    color: var(--lv-text-muted);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lv-transition);
}

.lv-modal-close:hover { color: var(--lv-white); border-color: var(--lv-cyan); }

.lv-modal-body {
    padding: 16px 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.lv-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 24px 20px;
    border-top: 1px solid var(--lv-border);
    flex-shrink: 0;
    background: rgba(0, 5, 10, 0.5);
}

.lv-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lv-form-grid-modal {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lv-form-group { margin-bottom: 4px; }
.lv-form-group.full { grid-column: 1 / -1; }

.lv-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--lv-text-muted);
    margin-bottom: 6px;
}

.lv-form-group label .req { color: var(--lv-cyan); }

.lv-form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 5, 10, 0.6);
    border: 1px solid var(--lv-border);
    border-radius: var(--lv-radius-sm);
    color: var(--lv-text);
    font-size: 0.9rem;
    font-family: var(--lv-font);
    transition: var(--lv-transition);
}

.lv-form-control:focus {
    outline: none;
    border-color: var(--lv-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.lv-form-control::placeholder { color: var(--lv-text-dim); }

select.lv-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238ba3c7' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.lv-form-error {
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 4px;
}

.lv-form-success {
    padding: 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--lv-radius-sm);
    color: var(--lv-cyan);
    text-align: center;
    margin-bottom: 16px;
}

/* Subscription Renewal */
.lv-renewal-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--lv-bg-card);
    border: 1px solid var(--lv-border-strong);
    border-radius: var(--lv-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--lv-glow);
}

.lv-renewal-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.lv-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--lv-text-dim);
}

.lv-step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--lv-border);
    font-weight: 600;
    font-size: 0.75rem;
}

.lv-step.active .lv-step-num {
    background: var(--lv-gradient);
    border-color: transparent;
    color: white;
}

.lv-step.active { color: var(--lv-cyan); }

.lv-renewal-info {
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid var(--lv-border);
    border-radius: var(--lv-radius);
    padding: 24px;
    margin: 24px 0;
    display: none;
}

.lv-renewal-info.visible { display: block; }

.lv-renewal-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lv-renewal-info-row:last-child { border-bottom: none; }
.lv-renewal-info-row span:first-child { color: var(--lv-text-muted); }
.lv-renewal-info-row span:last-child { font-weight: 600; }

.lv-amount-display {
    text-align: center;
    margin: 24px 0;
}

.lv-amount-display .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--lv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lv-amount-display .label { font-size: 0.85rem; color: var(--lv-text-dim); }

.lv-alert {
    padding: 14px 18px;
    border-radius: var(--lv-radius-sm);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.lv-alert-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}

.lv-alert-error code {
    font-size: 0.82em;
    color: #fecaca;
    background: rgba(0, 0, 0, 0.25);
    padding: 1px 5px;
    border-radius: 4px;
}

.lv-alert-success {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--lv-cyan);
}

/* Showcase strip */
.lv-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.lv-showcase.lv-showcase-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.lv-showcase-item {
    border-radius: var(--lv-radius);
    overflow: hidden;
    border: 1px solid var(--lv-border);
    aspect-ratio: 9/16;
    max-height: 220px;
}

.lv-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--lv-transition);
}

.lv-showcase-item:hover img { transform: scale(1.05); }

/* Data retention notice */
.lv-notice {
    background: rgba(26, 95, 255, 0.08);
    border-left: 3px solid var(--lv-blue);
    padding: 20px 24px;
    border-radius: 0 var(--lv-radius-sm) var(--lv-radius-sm) 0;
    margin: 32px 0;
}

.lv-notice p { font-size: 0.9rem; color: var(--lv-text-muted); line-height: 1.7; }

/* Section images */
.lv-section-img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: var(--lv-radius-lg);
    border: 1px solid var(--lv-border);
    background: rgba(15, 26, 46, 0.5);
}

.lv-section-img-sm {
    max-height: 300px;
}

/* Razorpay test mode badge */
.lv-test-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .lv-hero-grid { grid-template-columns: 1fr; }
    .lv-hero-content { text-align: center; }
    .lv-hero-actions, .lv-hero-stats { justify-content: center; }
    .lv-demo-modal-grid { grid-template-columns: 1fr; max-height: none; }
    .lv-demo-modal-visual { display: none; }
    .lv-demo-modal-form-wrap { max-height: calc(100vh - 32px); }
    .lv-plans-grid, .lv-features-grid { grid-template-columns: 1fr; }
    .lv-footer-grid { grid-template-columns: 1fr 1fr; }
    .lv-showcase { grid-template-columns: repeat(2, 1fr); }
    .lv-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lv-header-right { gap: 0; }
    .lv-nav, .lv-header-actions .lv-btn-outline { display: none; }
    .lv-mobile-toggle { display: block; }
    .lv-header .lv-container-wide { position: relative; }
    .lv-nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        width: min(280px, calc(100vw - 32px));
        background: rgba(0, 5, 10, 0.98);
        padding: 12px;
        border: 1px solid var(--lv-border);
        border-radius: var(--lv-radius-sm);
        box-shadow: var(--lv-shadow);
        z-index: 1001;
    }
    .lv-form-grid, .lv-form-grid-modal { grid-template-columns: 1fr; }
    .lv-footer-grid { grid-template-columns: 1fr; }
    .lv-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .lv-cta-banner { padding: 32px 20px; }
    .lv-renewal-card { padding: 28px 20px; }
    .lv-modal-footer { flex-direction: row; }
    .lv-section { padding: 48px 0; }
    .lv-hero { padding: 110px 0 40px; }
}
