/* =============================================
   LaundryHub Landing Page Styles
   Self-contained — does not depend on style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
    --lp-primary: hsl(200, 95%, 43%);
    --lp-primary-hover: hsl(200, 95%, 35%);
    --lp-primary-light: hsl(200, 95%, 96%);
    --lp-primary-glow: hsla(200, 95%, 43%, 0.15);
    --lp-dark: hsl(215, 30%, 12%);
    --lp-text: hsl(215, 30%, 17%);
    --lp-text-muted: hsl(215, 16%, 47%);
    --lp-text-light: hsl(215, 16%, 62%);
    --lp-bg: #ffffff;
    --lp-bg-alt: hsl(210, 40%, 98%);
    --lp-border: hsl(214, 32%, 91%);
    --lp-success: hsl(150, 75%, 38%);
    --lp-warning: #f59e0b;
    --lp-font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --lp-radius: 12px;
    --lp-radius-sm: 8px;
    --lp-radius-lg: 20px;
    --lp-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --lp-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.10);
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-max-width: 1200px;
}

/* --- Reset & Base --- */
.landing-page {
    margin: 0;
    padding: 0;
    font-family: var(--lp-font);
    color: var(--lp-text);
    line-height: 1.6;
    background-color: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page a {
    color: inherit;
    text-decoration: none;
}

.landing-page img {
    max-width: 100%;
    height: auto;
}

.lp-container {
    width: 100%;
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Scroll Behavior --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* --- Navbar --- */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--lp-transition);
    background: transparent;
}

.lp-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 0.65rem 0;
}

.lp-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--lp-primary);
}

.lp-logo img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.lp-logo-fallback {
    width: 36px;
    height: 36px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    transition: var(--lp-transition);
    position: relative;
}

.lp-nav-links a:hover {
    color: var(--lp-primary);
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.lp-nav-links a:hover::after {
    width: 100%;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lp-transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: white;
    border-color: var(--lp-primary);
}

.lp-btn-primary:hover {
    background: var(--lp-primary-hover);
    border-color: var(--lp-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(200, 95%, 43%, 0.3);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border-color: var(--lp-primary);
}

.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: white;
    transform: translateY(-2px);
}

.lp-btn-white {
    background: white;
    color: var(--lp-primary);
    border-color: white;
}

.lp-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.lp-btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--lp-radius);
}

/* Hamburger */
.lp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.lp-hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--lp-text);
    border-radius: 2px;
    transition: var(--lp-transition);
}

.lp-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.lp-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.lp-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu — hidden by default, shown via JS on mobile */
.lp-mobile-menu {
    display: none;
}

/* --- Hero --- */
.lp-hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(160deg, #ffffff 0%, var(--lp-primary-light) 40%, #e0f2fe 70%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, hsla(200, 95%, 43%, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(150, 75%, 38%, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: white;
    border: 1px solid var(--lp-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    /* margin-bottom: 1.5rem; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

@keyframes lp-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.lp-hero h1 {
    font-size: 2.51rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--lp-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.lp-hero h1 span {
    background: linear-gradient(135deg, var(--lp-primary), hsl(200, 95%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: 1.1rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.lp-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--lp-text-light);
}

.lp-hero-avatars {
    display: flex;
}

.lp-hero-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-left: -8px;
}

.lp-hero-avatars span:first-child {
    margin-left: 0;
}

/* Hero Visual / Dashboard Mockup */
.lp-hero-visual {
    position: relative;
}

.lp-dashboard-mock {
    background: var(--lp-bg);
    border-radius: var(--lp-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.lp-dashboard-mock:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.lp-mock-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-mock-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lp-mock-metric {
    background: var(--lp-bg-alt);
    padding: 0.85rem;
    border-radius: var(--lp-radius-sm);
}

.lp-mock-metric-label {
    font-size: 0.65rem;
    color: var(--lp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.lp-mock-metric-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-mock-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    background: var(--lp-bg-alt);
    border-radius: var(--lp-radius-sm);
    font-size: 0.75rem;
}

.lp-mock-row-id {
    color: var(--lp-primary);
    font-weight: 600;
}

.lp-mock-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
}

.lp-mock-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

.lp-mock-badge.ready {
    background: hsl(150, 75%, 95%);
    color: hsl(150, 75%, 30%);
}

.lp-mock-badge.completed {
    background: hsl(200, 95%, 96%);
    color: hsl(200, 95%, 35%);
}

/* Floating decorative card */
.lp-float-card {
    position: absolute;
    background: white;
    border-radius: var(--lp-radius);
    padding: 0.85rem 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    animation: lp-float 6s ease-in-out infinite;
    z-index: 2;
}

.lp-float-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.lp-float-card.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes lp-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.lp-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.lp-float-text-label {
    font-size: 0.7rem;
    color: var(--lp-text-light);
}

.lp-float-text-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-dark);
}

/* --- Stats Bar --- */
.lp-stats {
    padding: 3.5rem 0;
    background: var(--lp-dark);
    color: white;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.lp-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff, hsla(200, 95%, 70%, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-stat-label {
    font-size: 0.85rem;
    color: hsla(0, 0%, 100%, 0.6);
    font-weight: 400;
}

/* --- Section Shared --- */
.lp-section {
    padding: 5rem 0;
}

.lp-section-alt {
    background: var(--lp-bg-alt);
}

.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.lp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.lp-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--lp-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.lp-section-desc {
    font-size: 1.05rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* --- Features --- */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.lp-feature-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem;
    transition: var(--lp-transition);
    position: relative;
    overflow: hidden;
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), hsl(200, 95%, 60%));
    opacity: 0;
    transition: var(--lp-transition);
}

.lp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-hover);
    border-color: transparent;
}

.lp-feature-card:hover::before {
    opacity: 1;
}

.lp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: white;
}

.lp-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 0.5rem;
}

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

/* --- How It Works --- */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.lp-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), hsl(200, 95%, 60%), var(--lp-success));
    border-radius: 2px;
    z-index: 0;
}

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--lp-primary);
    box-shadow: 0 4px 16px var(--lp-primary-glow);
    transition: var(--lp-transition);
}

.lp-step:hover .lp-step-num {
    background: var(--lp-primary);
    color: white;
    transform: scale(1.1);
}

.lp-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 0.5rem;
}

.lp-step-desc {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* --- Pricing --- */
.lp-billing-toggle-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

.lp-billing-toggle-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid var(--lp-border);
    background: var(--lp-bg);
    color: var(--lp-text);
    cursor: pointer;
    transition: var(--lp-transition);
}

.lp-billing-toggle-btn:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    background-color: var(--lp-primary-light);
}

.lp-billing-toggle-btn.active {
    background: var(--lp-primary);
    color: white;
    border-color: var(--lp-primary);
    box-shadow: 0 4px 12px var(--lp-primary-glow);
}

.lp-billing-toggle-btn span {
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: 0.2rem;
    border-radius: 4px;
    padding: 0.15rem 0.35rem;
    display: inline-block;
}

.lp-billing-toggle-btn.active span {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.lp-billing-toggle-btn:not(.active) span {
    color: var(--lp-success);
    background: rgba(16, 185, 129, 0.08);
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.lp-pricing-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--lp-transition);
}

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

.lp-pricing-card.popular {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 40px hsla(200, 95%, 43%, 0.15);
    transform: scale(1.04);
}

.lp-pricing-card.popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.lp-pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-primary), hsl(200, 95%, 55%));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.25rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.lp-pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin-bottom: 0.5rem;
}

.lp-pricing-desc {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin-bottom: 1.5rem;
}

.lp-pricing-price {
    margin-bottom: 1.75rem;
}

.lp-pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--lp-dark);
    line-height: 1;
}

.lp-pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--lp-text-muted);
}

.lp-pricing-period {
    font-size: 0.85rem;
    color: var(--lp-text-light);
    font-weight: 400;
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--lp-text);
}

.lp-pricing-features li i.fa-check {
    color: var(--lp-success);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lp-pricing-features li i.fa-xmark {
    color: var(--lp-text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.lp-pricing-features li.disabled {
    color: var(--lp-text-light);
}

/* --- Testimonials --- */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.lp-testimonial-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem;
    transition: var(--lp-transition);
}

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

.lp-testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--lp-warning);
    font-size: 0.85rem;
}

.lp-testimonial-text {
    font-size: 0.95rem;
    color: var(--lp-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.lp-testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lp-dark);
}

.lp-testimonial-role {
    font-size: 0.8rem;
    color: var(--lp-text-light);
}

/* --- FAQ --- */
.lp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-faq-item {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: var(--lp-transition);
}

.lp-faq-item.active {
    border-color: var(--lp-primary);
    box-shadow: 0 4px 16px var(--lp-primary-glow);
}

.lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--lp-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--lp-font);
    transition: var(--lp-transition);
}

.lp-faq-question:hover {
    color: var(--lp-primary);
}

.lp-faq-question i {
    font-size: 0.8rem;
    color: var(--lp-text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lp-faq-item.active .lp-faq-question i {
    transform: rotate(180deg);
    color: var(--lp-primary);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.5rem;
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

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

/* --- CTA Banner --- */
.lp-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--lp-dark) 0%, hsl(215, 30%, 18%) 50%, hsl(200, 50%, 20%) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(200, 95%, 43%, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(150, 75%, 38%, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-cta-content {
    position: relative;
    z-index: 1;
}

.lp-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.lp-cta-desc {
    font-size: 1.1rem;
    color: hsla(0, 0%, 100%, 0.65);
    margin-bottom: 2rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.lp-footer {
    padding: 4rem 0 2rem;
    background: var(--lp-dark);
    color: hsla(0, 0%, 100%, 0.7);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.lp-footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 1rem 0 1.25rem;
    color: hsla(0, 0%, 100%, 0.5);
}

.lp-footer-socials {
    display: flex;
    gap: 0.75rem;
}

.lp-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.85rem;
    transition: var(--lp-transition);
}

.lp-footer-socials a:hover {
    background: var(--lp-primary);
    color: white;
    transform: translateY(-2px);
}

.lp-footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-footer-links a {
    font-size: 0.88rem;
    color: hsla(0, 0%, 100%, 0.5);
    transition: var(--lp-transition);
}

.lp-footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.lp-footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: hsla(0, 0%, 100%, 0.35);
}

/* --- Animations (IntersectionObserver) --- */
.lp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-animate-delay-1 {
    transition-delay: 0.1s;
}

.lp-animate-delay-2 {
    transition-delay: 0.2s;
}

.lp-animate-delay-3 {
    transition-delay: 0.3s;
}

.lp-animate-delay-4 {
    transition-delay: 0.4s;
}

.lp-animate-delay-5 {
    transition-delay: 0.5s;
}

.lp-animate-delay-6 {
    transition-delay: 0.6s;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
    .lp-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-hero-subtitle {
        margin: 0 auto 2rem;
    }

    .lp-hero-ctas {
        justify-content: center;
    }

    .lp-hero-trust {
        justify-content: center;
    }

    .lp-hero-visual {
        display: none;
    }

    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-container {
        padding: 0 1.25rem;
    }

    .lp-nav-links,
    .lp-nav-actions {
        display: none;
    }

    .lp-hamburger {
        display: flex;
    }

    /* Mobile menu overlay */
    .lp-mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .lp-mobile-menu.open {
        display: flex;
    }

    .lp-mobile-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--lp-dark);
        padding: 0.5rem 1rem;
    }

    .lp-mobile-menu a:hover {
        color: var(--lp-primary);
    }

    .lp-hero {
        padding: 7rem 0 3.5rem;
    }

    .lp-hero h1 {
        font-size: 2.2rem;
    }

    .lp-hero-subtitle {
        font-size: 1rem;
    }

    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .lp-section {
        padding: 3.5rem 0;
    }

    .lp-section-title {
        font-size: 1.75rem;
    }

    .lp-features-grid,
    .lp-pricing-grid,
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .lp-pricing-card.popular {
        transform: none;
        order: -1;
    }

    .lp-pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .lp-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-steps::before {
        display: none;
    }

    .lp-cta-title {
        font-size: 1.75rem;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lp-hero h1 {
        font-size: 1.8rem;
    }

    .lp-hero-ctas {
        flex-direction: column;
    }

    .lp-hero-ctas .lp-btn {
        width: 100%;
    }

    .lp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-stat-value {
        font-size: 1.6rem;
    }
}