/* Landing premium LVWebStudio — home */

html:has(body.landing-home),
body.landing-home {
    overflow-x: clip;
    max-width: 100%;
}

.landing-home .hero--premium {
    min-height: min(100vh, 980px);
    display: flex;
    align-items: center;
    overflow-x: clip;
    max-width: 100%;
}

.landing-home .hero--premium > .container {
    width: 100%;
}

.landing-home .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: center;
}

.landing-home .hero-content {
    max-width: 42rem;
}

.landing-home .hero-eyebrow {
    margin-bottom: 1.35rem;
}

.hero-title--premium {
    display: flex;
    flex-direction: column;
    gap: 0.12em;
    font-size: clamp(1.95rem, 3.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin: 0 0 1.15rem;
    color: var(--text-white);
    max-width: none;
}

.hero-title-line {
    display: block;
}

.hero-title-line--typed {
    min-height: 1.15em;
}

.typewriter--title {
    display: inline-flex;
    align-items: baseline;
    min-width: 18ch;
    max-width: 100%;
}

.typewriter--title .typewriter-text {
    display: inline;
    font-weight: 700;
    letter-spacing: -0.035em;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    transition: none !important;
}

.typewriter--title .typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.92em;
    margin-left: 3px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    border-radius: 1px;
    vertical-align: text-bottom;
    animation: typeCursorBlink 1s steps(1) infinite;
}

@keyframes typeCursorBlink {
    0%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

.landing-home .hero-subtitle {
    margin: 0 0 1.75rem;
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.landing-home .hero-buttons {
    gap: 0.85rem;
}

.btn-glow {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.28), 0 10px 28px rgba(0, 212, 255, 0.16);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, filter 0.28s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(0, 255, 136, 0.32), 0 14px 36px rgba(0, 212, 255, 0.24);
    filter: brightness(1.04);
}

.landing-home .btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-trust-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.7rem;
    margin: 1.85rem 0 0;
    padding: 0;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.78rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-trust-badge:hover {
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-trust-icon {
    color: var(--secondary-color);
    font-weight: 700;
}

.landing-home .hero-visual--premium {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: clamp(300px, 42vh, 520px);
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: center;
    overflow: visible;
    opacity: 0;
    animation: heroVisualEnter 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

@keyframes heroVisualEnter {
    from {
        opacity: 0;
        transform: translateX(48px) scale(0.92);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.landing-home .hero-visual--premium .hero-visual-ring {
    inset: 2%;
    opacity: 0.55;
}

.landing-home .hero-visual--premium .hero-visual-ring--2 {
    inset: -4%;
    opacity: 0.4;
}

.hero-visual-glow {
    position: absolute;
    inset: 0%;
    border-radius: 40%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 255, 0.1) 40%, transparent 68%);
    filter: blur(28px);
    z-index: 0;
    animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.05); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.22;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.35);
    animation: particleFloat 9s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { top: 14%; left: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 30%; right: 18%; background: var(--secondary-color); animation-delay: -1.5s; }
.hero-particles span:nth-child(3) { bottom: 24%; left: 14%; animation-delay: -3s; }
.hero-particles span:nth-child(4) { bottom: 32%; right: 24%; animation-delay: -4.2s; }
.hero-particles span:nth-child(5) { top: 50%; left: 10%; width: 2px; height: 2px; animation-delay: -5.5s; }
.hero-particles span:nth-child(6) { top: 20%; right: 32%; width: 2px; height: 2px; animation-delay: -6.8s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.12; }
    50% { transform: translateY(-8px); opacity: 0.28; }
}

.landing-home .hero-image--float,
.landing-home .hero-image--team {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: 0;
    margin-inline: 0;
    object-fit: contain;
    object-position: center bottom;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    --parallax-x: 0px;
    --parallax-y: 0px;
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
    scale: 1;
    animation: heroImageFloat 7s ease-in-out 1.2s infinite;
    filter: drop-shadow(0 20px 44px rgba(0, 212, 255, 0.2));
    will-change: transform, opacity;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
    }
    50% {
        transform: translate3d(var(--parallax-x), calc(var(--parallax-y) - 10px), 0);
    }
}

@media (max-width: 1024px) {
    .landing-home .hero-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .landing-home .hero-content {
        max-width: none;
        width: 100%;
        min-width: 0;
    }

    .landing-home .hero--premium {
        min-height: 0;
        overflow: hidden;
    }

    .landing-home .hero-visual--premium {
        max-width: min(100%, 440px);
        width: 100%;
        min-height: 0;
        margin-inline: auto;
        order: -1;
        overflow: hidden;
        animation-name: heroVisualEnterMobile;
        animation-delay: 0.05s;
    }

    .landing-home .hero-visual--premium .hero-visual-ring,
    .landing-home .hero-visual--premium .hero-visual-ring--2 {
        inset: 8% !important;
        opacity: 0.45;
    }

    .landing-home .hero-image--float,
    .landing-home .hero-image--team {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        scale: 1;
        filter: drop-shadow(0 14px 28px rgba(0, 212, 255, 0.16));
    }

    .landing-home .hero-particles {
        inset: 10%;
        overflow: hidden;
    }
}

@keyframes heroVisualEnterMobile {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.glass-card {
    background: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-card);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

/* Social proof */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.proof-card {
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 212, 255, 0.08);
}

.proof-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light);
}

.proof-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proof-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 212, 255, 0.2));
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.proof-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.proof-card-body h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: var(--text-white);
}

.proof-card-type {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
}

.proof-card-tech {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.proof-card-link {
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: letter-spacing 0.2s ease;
}

.proof-card-link:hover {
    letter-spacing: 0.02em;
}

/* Stats strip */
.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: center;
}

.stats-strip-item {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 24, 39, 0.5);
}

.stats-strip-item .stat-number {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
}

.stats-strip-static {
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--secondary-color);
}

.stats-strip-item .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Services premium */
.services-grid--premium {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card--premium {
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card--premium:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.service-card--premium .service-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card--premium:hover .service-icon {
    transform: scale(1.08);
}

.section-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
}

.pricing-card--featured {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.15), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #050815;
}

.pricing-label {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
}

.pricing-amount {
    margin: 0 0 0.75rem;
    font-size: 1.65rem;
    color: var(--text-white);
}

.pricing-amount strong {
    font-weight: 800;
}

.pricing-desc {
    margin: 0 0 1.25rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.55;
}

.pricing-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}

.pricing-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.35rem;
    color: var(--text-gray);
    font-size: 0.92rem;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Compare */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.compare-col {
    padding: 1.75rem 1.5rem;
}

.compare-col h3 {
    margin: 0 0 1.15rem;
    font-size: 1.25rem;
}

.compare-col--us {
    border-color: rgba(0, 255, 136, 0.35);
}

.compare-col--us h3 {
    color: var(--secondary-color);
}

.compare-col--them h3 {
    color: var(--text-light);
}

.compare-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compare-col li {
    display: flex;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.compare-col--us li span {
    color: var(--secondary-color);
    font-weight: 700;
}

.compare-col--them li span {
    color: #ff7b7b;
    font-weight: 700;
}

/* Testimonials */
.testimonial-slider {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 2rem 1.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.testimonial-card.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-card p {
    margin: 0 0 1.25rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-white);
    font-weight: 500;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-card strong {
    color: var(--secondary-color);
}

.testimonial-card span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.testimonial-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(17, 24, 39, 0.8);
    color: var(--text-white);
    font-size: 1.35rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.testimonial-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.12);
}

.testimonial-dots {
    display: flex;
    gap: 0.4rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
}

.testimonial-dot.is-active {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scale(1.2);
}

/* CTA final */
.cta-final-inner {
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    border-color: rgba(0, 255, 136, 0.28);
    background:
        radial-gradient(ellipse at top, rgba(0, 255, 136, 0.12), transparent 55%),
        rgba(17, 24, 39, 0.85);
}

.cta-final-inner h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--text-white);
}

.cta-final-inner p {
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Offer bar polish */
.offer-bar-badge {
    gap: 0.25rem;
}

/* Footer premium extras */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--primary-color);
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.08);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

@media (max-width: 1024px) {
    .proof-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .landing-home .hero--premium > .container {
        padding-left: clamp(1rem, 4vw, 1.25rem);
        padding-right: clamp(1rem, 4vw, 1.25rem);
        max-width: 100%;
        overflow: hidden;
    }

    .hero-title--premium {
        max-width: none;
        font-size: clamp(1.7rem, 7.2vw, 2.35rem);
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .typewriter--title {
        min-width: 0;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .proof-grid,
    .pricing-grid,
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-badges {
        gap: 0.45rem;
        max-width: 100%;
    }

    .hero-trust-badge {
        max-width: 100%;
    }

    .landing-home section,
    .landing-home .container {
        max-width: 100%;
        overflow-x: clip;
    }
}

@media (max-width: 640px) {
    .stats-strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-glow,
    .hero-particles span,
    .hero-image--float,
    .btn-glow {
        animation: none !important;
    }

    .hero-image--float {
        transform: none;
    }

    .typewriter--title .typewriter-cursor {
        animation: none !important;
        opacity: 1;
    }
}
