/**
 * Botowski Pipeline Landing Page Styles
 * Production-ready CSS for the landing page redesign
 */

/* Hide default footer from base template */
#footer {
    display: none !important;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --lp-purple: #a389d4;
    --lp-purple-dark: #8a6bc1;
    --lp-purple-light: #b9a3e0;
    --lp-green: #1de9b6;
    --lp-green-dark: #17c99d;

    /* Neutrals - darker for better contrast */
    --lp-white: #ffffff;
    --lp-gray-50: #fafafa;
    --lp-gray-100: #f5f5f5;
    --lp-gray-200: #e5e5e5;
    --lp-gray-300: #d4d4d4;
    --lp-gray-400: #a3a3a3;
    --lp-gray-500: #737373;
    --lp-gray-600: #525252;
    --lp-gray-700: #404040;
    --lp-gray-800: #262626;
    --lp-gray-900: #171717;
    --lp-black: #0a0a0a;

    /* Typography */
    --lp-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Shadows */
    --lp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --lp-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --lp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --lp-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --lp-radius-sm: 0.25rem;
    --lp-radius: 0.375rem;
    --lp-radius-md: 0.5rem;
    --lp-radius-lg: 0.75rem;
    --lp-radius-xl: 1rem;
    --lp-radius-full: 9999px;

    /* Transitions */
    --lp-transition-fast: 150ms ease;
    --lp-transition: 200ms ease;
    --lp-transition-slow: 300ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
.lp-page {
    font-family: var(--lp-font-sans);
    color: var(--lp-gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 1200px) {
    .lp-container {
        padding: 0 2rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow var(--lp-transition);
}

.lp-nav.scrolled {
    box-shadow: var(--lp-shadow-md);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .lp-nav__inner {
        padding: 0 1.5rem;
    }
}

.lp-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none !important;
    color: var(--lp-gray-900) !important;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Hide the problematic image, use icon instead */
.lp-nav__logo img {
    display: none;
}

/* Logo icon */
.lp-nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--lp-purple) 0%, var(--lp-purple-dark) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(163, 137, 212, 0.4);
    color: white;
    font-size: 1.125rem;
}

/* Logo text */
.lp-nav__logo-text {
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--lp-gray-900) !important;
    letter-spacing: -0.02em;
}

.lp-nav__logo-text span {
    color: var(--lp-purple) !important;
}

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

@media (min-width: 768px) {
    .lp-nav__links {
        display: flex;
    }
}

.lp-nav__link,
.lp-nav__links a,
.lp-nav__links li a {
    color: var(--lp-gray-600) !important;
    text-decoration: none !important;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--lp-transition);
}

.lp-nav__link:hover,
.lp-nav__links a:hover,
.lp-nav__links li a:hover {
    color: var(--lp-purple) !important;
}

/* Nav links list styling */
.lp-nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav__links li {
    list-style: none;
}

@media (min-width: 768px) {
    .lp-nav__links {
        display: flex;
    }
}

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

.lp-nav__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--lp-gray-700);
}

@media (min-width: 768px) {
    .lp-nav__mobile-toggle {
        display: none;
    }
}

.lp-nav__mobile-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--lp-white);
    border-top: 1px solid var(--lp-gray-200);
    box-shadow: var(--lp-shadow-lg);
    padding: 1rem;
}

.lp-nav__mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .lp-nav__mobile-menu {
        display: none !important;
    }
}

.lp-nav__mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav__mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--lp-gray-700);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--lp-gray-100);
}

/* ============================================
   BUTTONS
   ============================================ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--lp-font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    border-radius: var(--lp-radius-md);
    cursor: pointer;
    transition: all var(--lp-transition);
}

.lp-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(163, 137, 212, 0.3);
}

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

.lp-btn--primary:hover {
    background: var(--lp-purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-md);
}

.lp-btn--primary:active {
    transform: translateY(0);
}

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-gray-600);
}

.lp-btn--ghost:hover {
    background: var(--lp-gray-100);
    color: var(--lp-gray-800);
}

.lp-btn--outline {
    background: transparent;
    color: var(--lp-purple);
    border: 2px solid var(--lp-purple);
}

.lp-btn--outline:hover {
    background: var(--lp-purple);
    color: var(--lp-white);
}

.lp-btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.lp-btn--block {
    display: flex;
    width: 100%;
}

.lp-btn--green {
    background: var(--lp-green);
    color: var(--lp-black);
}

.lp-btn--green:hover {
    background: var(--lp-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero {
    padding: 96px 0 64px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 25%, #f0fdfa 50%, #ecfdf5 75%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.lp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 137, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 233, 182, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Grid pattern overlay */
.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(163, 137, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 137, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

@media (min-width: 768px) {
    .lp-hero {
        padding: 120px 0 80px;
    }
}

@media (min-width: 992px) {
    .lp-hero {
        padding: 140px 0 100px;
    }
}

.lp-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(163, 137, 212, 0.1);
    color: var(--lp-purple);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--lp-radius-full);
    margin-bottom: 1.5rem;
}

.lp-hero__badge svg,
.lp-hero__badge i {
    width: 16px;
    height: 16px;
}

.lp-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--lp-gray-900);
    margin: 0 0 1.25rem;
}

@media (min-width: 576px) {
    .lp-hero__title {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) {
    .lp-hero__title {
        font-size: 3.25rem;
    }
}

@media (min-width: 992px) {
    .lp-hero__title {
        font-size: 3.75rem;
    }
}

.lp-hero__title--accent {
    background: linear-gradient(135deg, var(--lp-purple) 0%, var(--lp-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__subtitle {
    font-size: 1.125rem;
    color: var(--lp-gray-700);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .lp-hero__subtitle {
        font-size: 1.25rem;
    }
}

.lp-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 576px) {
    .lp-hero__cta {
        flex-direction: row;
        justify-content: center;
    }
}

.lp-hero__cta-note {
    font-size: 0.875rem;
    color: var(--lp-gray-500);
    margin-top: 0.5rem;
}

@media (min-width: 576px) {
    .lp-hero__cta-note {
        margin-top: 0;
    }
}

.lp-hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .lp-hero__trust {
        flex-direction: row;
        justify-content: center;
    }
}

.lp-hero__avatars {
    display: flex;
    align-items: center;
}

.lp-hero__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--lp-white);
    object-fit: cover;
    margin-left: -10px;
}

.lp-hero__avatar:first-child {
    margin-left: 0;
}

.lp-hero__trust-text {
    font-size: 0.875rem;
    color: var(--lp-gray-600);
}

.lp-hero__trust-text strong {
    color: var(--lp-gray-800);
}

.lp-hero__visual {
    margin-top: 3rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.lp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--lp-radius-full);
    margin-bottom: 1rem;
}

.lp-section-tag--purple {
    background: rgba(163, 137, 212, 0.15);
    color: var(--lp-purple-dark);
}

.lp-section-tag--green {
    background: rgba(29, 233, 182, 0.15);
    color: var(--lp-green-dark);
}

.lp-section-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--lp-gray-900);
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .lp-section-title {
        font-size: 2.5rem;
    }
}

.lp-section-subtitle {
    font-size: 1.0625rem;
    color: var(--lp-gray-700);
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .lp-section-subtitle {
        font-size: 1.125rem;
    }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.lp-problem {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #faf8ff 0%, #f5f0ff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative blob - left */
.lp-problem::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(163, 137, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Decorative blob - right */
.lp-problem::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(29, 233, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (min-width: 768px) {
    .lp-problem {
        padding: 6rem 0 7rem;
    }
}

.lp-problem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .lp-problem__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .lp-problem__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-problem__card {
    padding: 2rem;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.lp-problem__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 137, 212, 0.1);
    color: var(--lp-purple);
    border-radius: var(--lp-radius-md);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lp-problem__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 0.5rem;
}

.lp-problem__desc {
    font-size: 0.9375rem;
    color: var(--lp-gray-700);
    margin: 0;
    line-height: 1.6;
}

.lp-solution {
    padding: 4rem 0;
    background: var(--lp-gray-50);
    text-align: center;
}

.lp-solution__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--lp-green);
    color: var(--lp-black);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: transform var(--lp-transition);
}

.lp-solution:hover .lp-solution__arrow {
    transform: translateY(4px);
}

.lp-solution__text {
    font-size: 1.25rem;
    color: var(--lp-gray-700);
    max-width: 600px;
    margin: 0 auto;
}

.lp-solution__text strong {
    color: var(--lp-gray-900);
}

/* ============================================
   FEATURE ROWS
   ============================================ */
.lp-features {
    padding: 6rem 0;
    background: var(--lp-white);
    position: relative;
}

/* Decorative background elements for features */
.lp-features::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 137, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Container for features section */
.lp-features > .container {
    max-width: 1100px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Floating shape - left */
.lp-features::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 233, 182, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-feature-row {
    padding: 2rem 0;
    margin: 3rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .lp-feature-row {
        padding: 3rem 0;
        margin: 4rem 0;
    }
}

@media (min-width: 992px) {
    .lp-feature-row {
        padding: 4rem 0;
        margin: 5rem 0;
    }
}

/* Subtle divider between feature rows */
.lp-feature-row + .lp-feature-row::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-purple), var(--lp-green));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .lp-feature-row + .lp-feature-row::before {
        top: -3rem;
    }
}

@media (min-width: 992px) {
    .lp-feature-row + .lp-feature-row::before {
        top: -3.5rem;
    }
}

/* Feature row inner layout - let Bootstrap handle the grid */
.lp-feature-row > .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.lp-feature-row .col-lg-6 {
    padding: 0 15px;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
}

.lp-feature-row .col-lg-6:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .lp-feature-row .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        margin-bottom: 0;
    }

    /* Let Bootstrap order-lg classes work */
    .lp-feature-row .order-lg-1 {
        order: 1;
    }

    .lp-feature-row .order-lg-2 {
        order: 2;
    }
}

.lp-feature__content {
    max-width: 500px;
}

.lp-feature__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 137, 212, 0.1);
    color: var(--lp-purple);
    border-radius: var(--lp-radius-lg);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.lp-feature__icon--green {
    background: rgba(29, 233, 182, 0.15);
    color: var(--lp-green-dark);
}

.lp-feature__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
    .lp-feature__title {
        font-size: 1.75rem;
    }
}

.lp-feature__desc {
    font-size: 1rem;
    color: var(--lp-gray-700);
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

.lp-feature__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-feature__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--lp-gray-800);
}

.lp-feature__list-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-green);
    color: var(--lp-black);
    border-radius: 50%;
    font-size: 0.75rem;
    margin-top: 2px;
}

.lp-feature__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.lp-feature__visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
}

/* Feature mockup containers */
.lp-feature__mockup {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.lp-feature__mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-purple), var(--lp-green));
}

/* ============================================
   POWER MODULES PREVIEW
   ============================================ */
.lp-modules-preview {
    padding: 4rem 0;
    background: var(--lp-gray-50);
}

@media (min-width: 768px) {
    .lp-modules-preview {
        padding: 5rem 0;
    }
}

.lp-modules-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 576px) {
    .lp-modules-preview__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .lp-modules-preview__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .lp-modules-preview__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.lp-module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    text-align: center;
    transition: all var(--lp-transition);
}

.lp-module-card:hover {
    border-color: var(--lp-purple-light);
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-2px);
}

.lp-module-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 137, 212, 0.1);
    color: var(--lp-purple);
    border-radius: var(--lp-radius-md);
    font-size: 1.25rem;
}

.lp-module-card__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-gray-700);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.lp-testimonials {
    padding: 4rem 0;
    background: var(--lp-white);
}

@media (min-width: 768px) {
    .lp-testimonials {
        padding: 5rem 0;
    }
}

.lp-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lp-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .lp-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-testimonial {
    padding: 1.5rem;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
}

.lp-testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.lp-testimonial__stars svg,
.lp-testimonial__stars i {
    width: 18px;
    height: 18px;
}

.lp-testimonial__quote {
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--lp-gray-800);
    margin: 0 0 1.25rem;
    line-height: 1.7;
}

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

.lp-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.lp-testimonial__info {
    display: flex;
    flex-direction: column;
}

.lp-testimonial__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lp-gray-900);
}

.lp-testimonial__title {
    font-size: 0.8125rem;
    color: var(--lp-gray-500);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.lp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    padding: 2rem 0;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp-gray-600);
}

.lp-trust-badge__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-green);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.lp-pricing {
    padding: 4rem 0;
    background: var(--lp-white);
    position: relative;
}

/* Decorative dots pattern */
.lp-pricing::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 10%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--lp-purple-light) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
    pointer-events: none;
}

.lp-pricing::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 8%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--lp-green) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

@media (min-width: 768px) {
    .lp-pricing {
        padding: 5rem 0;
    }
}

.lp-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .lp-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .lp-pricing__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-price-card {
    position: relative;
    padding: 1.5rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    transition: box-shadow var(--lp-transition);
}

.lp-price-card:hover {
    box-shadow: var(--lp-shadow-lg);
}

.lp-price-card--popular {
    border-color: var(--lp-purple);
    border-width: 2px;
}

.lp-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.875rem;
    background: var(--lp-purple);
    color: var(--lp-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--lp-radius-full);
    white-space: nowrap;
}

.lp-price-card__header {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--lp-gray-200);
    margin-bottom: 1.25rem;
}

.lp-price-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 0.75rem;
}

.lp-price-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
    flex-wrap: wrap;
}

.lp-price-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-gray-900);
}

.lp-price-card__amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lp-gray-900);
    line-height: 1;
}

.lp-price-card__period {
    font-size: 0.9375rem;
    color: var(--lp-gray-500);
    margin-left: 0.25rem;
}

.lp-price-card__features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.lp-price-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--lp-gray-700);
}

.lp-price-card__feature-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-green);
    margin-top: 1px;
}

.lp-price-card__feature--disabled {
    color: var(--lp-gray-400);
}

.lp-price-card__feature--disabled .lp-price-card__feature-icon {
    color: var(--lp-gray-300);
}

.lp-price-card__cta {
    margin-top: auto;
}

/* ============================================
   FINAL CTA
   ============================================ */
.lp-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7c3aed 0%, var(--lp-purple) 50%, #06b6d4 100%);
    color: var(--lp-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated floating circles */
.lp-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: floatUp 15s ease-in-out infinite;
    pointer-events: none;
}

.lp-final-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: floatUp 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (min-width: 768px) {
    .lp-final-cta {
        padding: 6rem 0;
    }
}

.lp-final-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.lp-final-cta__title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .lp-final-cta__title {
        font-size: 2.5rem;
    }
}

.lp-final-cta__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem;
}

.lp-final-cta__btn {
    margin-bottom: 2rem;
}

.lp-final-cta__points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-final-cta__point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.lp-final-cta__point-icon {
    color: var(--lp-green);
}

/* ============================================
   KANBAN PREVIEW (HERO VISUAL)
   ============================================ */
.lp-kanban-preview {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--lp-gray-100);
    border-radius: var(--lp-radius-xl);
    overflow-x: auto;
    box-shadow: var(--lp-shadow-lg);
}

@media (min-width: 768px) {
    .lp-kanban-preview {
        gap: 1.25rem;
        padding: 1.25rem;
    }
}

.lp-kanban-col {
    flex: 0 0 200px;
    min-width: 200px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
}

@media (min-width: 768px) {
    .lp-kanban-col {
        flex: 0 0 220px;
        min-width: 220px;
    }
}

.lp-kanban-col__header {
    padding: 0.75rem 1rem;
    background: var(--lp-gray-50);
    border-bottom: 1px solid var(--lp-gray-200);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lp-kanban-col__cards {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 120px;
}

.lp-kanban-card {
    padding: 0.75rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-md);
    box-shadow: var(--lp-shadow-sm);
    animation: kanbanSlideIn 0.5s ease forwards;
    opacity: 0;
}

.lp-kanban-card:nth-child(1) { animation-delay: 0.1s; }
.lp-kanban-card:nth-child(2) { animation-delay: 0.2s; }
.lp-kanban-card:nth-child(3) { animation-delay: 0.3s; }

.lp-kanban-card--won {
    border-left: 3px solid var(--lp-green);
    background: rgba(29, 233, 182, 0.05);
}

.lp-kanban-card__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-gray-800);
    margin: 0 0 0.25rem;
}

.lp-kanban-card__value {
    font-size: 0.75rem;
    color: var(--lp-gray-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.lp-animate-ready {
    opacity: 0;
    transform: translateY(20px);
}

.lp-animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes kanbanSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from bottom */
.lp-fade-up {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger children animations */
.lp-stagger-children > * {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.lp-stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.lp-stagger-children > *:nth-child(2) { animation-delay: 0.15s; }
.lp-stagger-children > *:nth-child(3) { animation-delay: 0.2s; }
.lp-stagger-children > *:nth-child(4) { animation-delay: 0.25s; }
.lp-stagger-children > *:nth-child(5) { animation-delay: 0.3s; }
.lp-stagger-children > *:nth-child(6) { animation-delay: 0.35s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.lp-text-center {
    text-align: center;
}

.lp-text-left {
    text-align: left;
}

.lp-text-right {
    text-align: right;
}

.lp-mb-0 { margin-bottom: 0; }
.lp-mb-1 { margin-bottom: 0.5rem; }
.lp-mb-2 { margin-bottom: 1rem; }
.lp-mb-3 { margin-bottom: 1.5rem; }
.lp-mb-4 { margin-bottom: 2rem; }
.lp-mb-5 { margin-bottom: 3rem; }

.lp-mt-0 { margin-top: 0; }
.lp-mt-1 { margin-top: 0.5rem; }
.lp-mt-2 { margin-top: 1rem; }
.lp-mt-3 { margin-top: 1.5rem; }
.lp-mt-4 { margin-top: 2rem; }
.lp-mt-5 { margin-top: 3rem; }

.lp-py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.lp-py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.lp-py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.lp-py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.lp-py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.lp-hidden {
    display: none !important;
}

@media (max-width: 575px) {
    .lp-hidden-mobile {
        display: none !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .lp-hidden-sm {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lp-hidden-md {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .lp-hidden-lg {
        display: none !important;
    }
}

/* ============================================
   FOOTER (LANDING PAGE SPECIFIC)
   ============================================ */
.lp-footer {
    padding: 3rem 0 2rem;
    background: var(--lp-gray-900);
    color: var(--lp-gray-400);
}

.lp-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.lp-footer__logo {
    color: var(--lp-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.lp-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-footer__link {
    color: var(--lp-gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--lp-transition);
}

.lp-footer__link:hover {
    color: var(--lp-white);
}

.lp-footer__copyright {
    font-size: 0.8125rem;
    color: var(--lp-gray-500);
}

/* ============================================
   FIX: Additional styles for HTML class names
   ============================================ */

/* Badge (hero) */
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(163, 137, 212, 0.1);
    color: var(--lp-purple);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--lp-radius-full);
    margin-bottom: 1.5rem;
}

/* Text accent (gradient text) */
.lp-text-accent {
    background: linear-gradient(135deg, var(--lp-purple) 0%, var(--lp-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero note */
.lp-hero__note {
    font-size: 0.875rem;
    color: var(--lp-gray-500);
}

/* Avatar Stack */
.lp-avatar-stack {
    display: flex;
    align-items: center;
}

.lp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--lp-white);
    object-fit: cover;
    margin-left: -12px;
    box-shadow: var(--lp-shadow-sm);
}

.lp-avatar:first-child {
    margin-left: 0;
}

/* Hero trust section */
.lp-hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .lp-hero__trust {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.lp-hero__trust-text {
    font-size: 0.875rem;
    color: var(--lp-gray-600);
}

/* Hero content - center on mobile, left on desktop */
.lp-hero__content {
    text-align: center;
}

@media (min-width: 992px) {
    .lp-hero__content {
        text-align: left;
    }

    .lp-hero__trust {
        justify-content: flex-start;
    }

    .lp-hero__cta {
        justify-content: flex-start;
    }
}

/* Mobile Menu - HIDDEN BY DEFAULT */
.lp-nav__mobile {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--lp-white);
    border-top: 1px solid var(--lp-gray-200);
    box-shadow: var(--lp-shadow-lg);
    padding: 1rem;
    z-index: 999;
}

.lp-nav__mobile.active {
    display: block;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .lp-nav__mobile {
        display: none !important;
    }
}

.lp-nav__mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav__mobile-links li {
    border-bottom: 1px solid var(--lp-gray-100);
}

.lp-nav__mobile-links li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
}

.lp-nav__mobile-links a {
    display: block;
    padding: 0.75rem 0;
    color: var(--lp-gray-700);
    text-decoration: none;
    font-weight: 500;
}

/* Nav toggle button - hamburger icon */
.lp-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
}

.lp-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lp-gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hide toggle on desktop */
@media (min-width: 768px) {
    .lp-nav__toggle {
        display: none;
    }
}

/* Hide desktop nav actions on mobile */
@media (max-width: 767px) {
    .lp-nav__actions {
        display: none;
    }
}

/* Kanban Preview - Hero Visual */
.lp-kanban-preview {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--lp-white);
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-xl);
    overflow-x: auto;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .lp-kanban-preview {
        margin-top: 0;
    }
}

.lp-kanban-preview__column {
    flex: 0 0 140px;
    min-width: 140px;
}

@media (min-width: 576px) {
    .lp-kanban-preview__column {
        flex: 1;
        min-width: 120px;
    }
}

.lp-kanban-preview__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--lp-gray-200);
    margin-bottom: 0.75rem;
}

.lp-kanban-preview__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-gray-400);
}

.lp-kanban-preview__header--leads .lp-kanban-preview__dot {
    background: #64b5f6;
}

.lp-kanban-preview__header--qualified .lp-kanban-preview__dot {
    background: #ffb74d;
}

.lp-kanban-preview__header--proposal .lp-kanban-preview__dot {
    background: #ba68c8;
}

.lp-kanban-preview__header--won .lp-kanban-preview__dot {
    background: var(--lp-green);
}

.lp-kanban-preview__count {
    margin-left: auto;
    font-size: 0.6875rem;
    color: var(--lp-gray-500);
}

.lp-kanban-preview__card {
    padding: 0.625rem;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-md);
    margin-bottom: 0.5rem;
}

.lp-kanban-preview__card--won {
    border-left: 3px solid var(--lp-green);
    background: rgba(29, 233, 182, 0.08);
}

.lp-kanban-preview__card--highlight {
    border-left: 3px solid var(--lp-purple);
}

.lp-kanban-preview__company {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-gray-800);
    margin-bottom: 0.125rem;
}

.lp-kanban-preview__value {
    display: block;
    font-size: 0.75rem;
    color: var(--lp-gray-500);
}

/* Problem section fixes */
.lp-problem__text {
    font-size: 0.9375rem;
    color: var(--lp-gray-600);
    margin: 0;
    line-height: 1.6;
}

.lp-problem__arrow {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.lp-problem__arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--lp-green);
    color: var(--lp-black);
    border-radius: 50%;
    font-size: 1.5rem;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   FLOATING DECORATIVE SHAPES
   ============================================ */
.lp-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.lp-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.lp-shape--1 {
    top: 10%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--lp-purple-light) 0%, transparent 100%);
    animation: float1 8s ease-in-out infinite;
}

.lp-shape--2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lp-green) 0%, transparent 100%);
    animation: float2 10s ease-in-out infinite;
}

.lp-shape--3 {
    top: 30%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(163, 137, 212, 0.3) 0%, transparent 100%);
    animation: float3 12s ease-in-out infinite;
}

.lp-shape--4 {
    bottom: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(29, 233, 182, 0.3) 0%, transparent 100%);
    animation: float1 9s ease-in-out infinite reverse;
}

.lp-shape--5 {
    top: 40%;
    right: 5%;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(163, 137, 212, 0.3);
    background: transparent;
    animation: float2 7s ease-in-out infinite;
}

.lp-shape--ring {
    border: 3px solid rgba(163, 137, 212, 0.2);
    background: transparent;
}

.lp-shape--square {
    border-radius: 8px;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-15px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.05); }
}

/* Feature description */
.lp-feature__description {
    font-size: 1rem;
    color: var(--lp-gray-600);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

/* Feature list items */
.lp-feature__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-feature__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--lp-gray-700);
}

.lp-feature__list li i {
    color: var(--lp-green);
    font-size: 1rem;
}

/* Old mockups removed - using redesigned versions below */

/* Email mockup */
.lp-mockup-email {
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.lp-mockup-email__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--lp-gray-200);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-gray-800);
}

.lp-mockup-email__header i {
    color: var(--lp-purple);
}

.lp-mockup-email__body {
    padding: 1.25rem;
}

.lp-mockup-email__line {
    height: 10px;
    background: var(--lp-gray-200);
    border-radius: 5px;
    margin-bottom: 0.75rem;
}

.lp-mockup-email__line:nth-child(2) {
    width: 85%;
}

.lp-mockup-email__line:nth-child(3) {
    width: 70%;
}

.lp-mockup-email__line--highlight {
    background: linear-gradient(90deg, rgba(163, 137, 212, 0.4) 0%, rgba(29, 233, 182, 0.3) 100%);
}

.lp-mockup-email__extracted {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border-top: 1px solid rgba(29, 233, 182, 0.3);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-green-dark);
}

.lp-mockup-email__extracted i {
    color: var(--lp-green);
    font-size: 1rem;
}

/* Actions mockup */
.lp-mockup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--lp-white);
    padding: 1rem;
    border-radius: var(--lp-radius-lg);
}

.lp-mockup-actions__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-gray-800);
    transition: all 0.2s ease;
}

.lp-mockup-actions__item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.lp-mockup-actions__item i {
    color: var(--lp-gray-500);
    font-size: 1rem;
}

.lp-mockup-actions__item--urgent {
    border-left: 4px solid #ef5350;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.lp-mockup-actions__item--urgent i {
    color: #ef5350;
}

/* ============================================
   NEW FEATURE MOCKUPS - REDESIGNED
   ============================================ */

/* Feature badge */
.lp-feature__badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, rgba(163, 137, 212, 0.15) 0%, rgba(163, 137, 212, 0.1) 100%);
    color: var(--lp-purple);
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.lp-feature__badge--ai {
    background: linear-gradient(135deg, rgba(29, 233, 182, 0.2) 0%, rgba(29, 233, 182, 0.1) 100%);
    color: var(--lp-green-dark);
}

/* Alternate feature row - no special styling needed in open layout */
.lp-feature-row--alt {
    /* Can add subtle differences if needed */
}

/* Browser mockup frame */
.lp-mockup-browser {
    background: var(--lp-white);
    border-radius: 12px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.lp-mockup-browser__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--lp-gray-200);
}

.lp-mockup-browser__dots {
    display: flex;
    gap: 6px;
}

.lp-mockup-browser__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lp-gray-300);
}

.lp-mockup-browser__dots span:first-child {
    background: #ef5350;
}

.lp-mockup-browser__dots span:nth-child(2) {
    background: #ffc107;
}

.lp-mockup-browser__dots span:last-child {
    background: #4caf50;
}

.lp-mockup-browser__url {
    flex: 1;
    padding: 0.5rem 1rem;
    background: var(--lp-white);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--lp-gray-500);
    border: 1px solid var(--lp-gray-200);
}

.lp-mockup-browser__content {
    padding: 1.5rem;
    background: var(--lp-gray-50);
}

/* Kanban mockup - redesigned */
.lp-mockup-kanban {
    display: flex;
    gap: 1rem;
}

.lp-mockup-kanban__col {
    flex: 1;
    min-width: 0;
}

.lp-mockup-kanban__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.lp-mockup-kanban__header--blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.lp-mockup-kanban__header--yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.lp-mockup-kanban__header--green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.lp-mockup-kanban__count {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}

.lp-mockup-kanban__card {
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: 8px;
    padding: 0.875rem;
    margin-bottom: 0.625rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    overflow: hidden;
    display: block;
}

.lp-mockup-kanban__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.lp-mockup-kanban__card--active {
    border-left: 3px solid var(--lp-purple);
}

.lp-mockup-kanban__card--done {
    border-left: 3px solid var(--lp-green);
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.lp-mockup-kanban__company {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-gray-900);
    margin-bottom: 0.25rem;
}

.lp-mockup-kanban__value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lp-green-dark);
    margin-bottom: 0.5rem;
}

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

.lp-mockup-kanban__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.625rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lp-purple-light) 0%, var(--lp-purple) 100%);
    color: white;
    border-radius: 50%;
}

.lp-mockup-kanban__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    background: var(--lp-green);
    color: white;
    border-radius: 50%;
}

.lp-mockup-kanban__date {
    font-size: 0.6875rem;
    color: var(--lp-gray-500);
}

/* Email Parser mockup */
.lp-mockup-email-parser {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .lp-mockup-email-parser {
        flex-wrap: nowrap;
    }
}

.lp-mockup-email-parser__email {
    flex: 1;
    min-width: 280px;
    background: var(--lp-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.lp-mockup-email-parser__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--lp-gray-200);
}

.lp-mockup-email-parser__avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
}

.lp-mockup-email-parser__from {
    display: flex;
    flex-direction: column;
}

.lp-mockup-email-parser__from strong {
    font-size: 0.875rem;
    color: var(--lp-gray-900);
}

.lp-mockup-email-parser__from span {
    font-size: 0.75rem;
    color: var(--lp-gray-500);
}

.lp-mockup-email-parser__subject {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lp-gray-900);
    border-bottom: 1px solid var(--lp-gray-100);
}

.lp-mockup-email-parser__body {
    padding: 1.25rem;
}

.lp-mockup-email-parser__body p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--lp-gray-700);
    margin: 0 0 0.75rem;
}

.lp-mockup-email-parser__body p:last-child {
    margin-bottom: 0;
}

/* Highlight styles */
.lp-highlight {
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-weight: 600;
}

.lp-highlight--purple {
    background: rgba(163, 137, 212, 0.2);
    color: var(--lp-purple-dark);
}

.lp-highlight--green {
    background: rgba(29, 233, 182, 0.2);
    color: var(--lp-green-dark);
}

.lp-highlight--blue {
    background: rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

/* Arrow connector */
.lp-mockup-email-parser__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}

.lp-mockup-email-parser__arrow i {
    font-size: 1.5rem;
    color: var(--lp-purple);
    animation: pulseArrow 2s infinite;
}

.lp-mockup-email-parser__arrow span {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-gray-500);
}

@keyframes pulseArrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.6; }
}

/* Output card */
.lp-mockup-email-parser__output {
    min-width: 200px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border: 2px solid var(--lp-green);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(29, 233, 182, 0.2);
}

.lp-mockup-email-parser__output-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 0.875rem;
    margin-bottom: 0.875rem;
    border-bottom: 1px solid rgba(29, 233, 182, 0.3);
}

.lp-mockup-email-parser__output-header i {
    font-size: 1.25rem;
    color: var(--lp-green);
}

.lp-mockup-email-parser__output-header span {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lp-green-dark);
}

.lp-mockup-email-parser__output-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.lp-mockup-email-parser__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--lp-gray-500);
}

.lp-mockup-email-parser__value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-gray-900);
}

.lp-mockup-email-parser__value--green {
    color: var(--lp-green-dark);
}

/* Actions Panel mockup */
.lp-mockup-actions-panel {
    background: var(--lp-white);
    border-radius: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.lp-mockup-actions-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--lp-gray-200);
}

.lp-mockup-actions-panel__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-gray-900);
}

.lp-mockup-actions-panel__title i {
    color: var(--lp-purple);
}

.lp-mockup-actions-panel__count {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    background: var(--lp-purple);
    color: white;
    border-radius: 50px;
}

.lp-mockup-actions-panel__list {
    padding: 0.75rem;
}

/* Individual action items */
.lp-mockup-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    border-radius: 12px;
    margin-bottom: 0.625rem;
    transition: all 0.2s ease;
}

.lp-mockup-action:last-child {
    margin-bottom: 0;
}

.lp-mockup-action:hover {
    background: var(--lp-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.lp-mockup-action--urgent {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.lp-mockup-action--urgent .lp-mockup-action__priority {
    background: #ef4444;
    color: white;
}

.lp-mockup-action--high {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-color: #fde68a;
}

.lp-mockup-action--high .lp-mockup-action__priority {
    background: #f59e0b;
    color: white;
}

.lp-mockup-action--success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #a7f3d0;
}

.lp-mockup-action--success .lp-mockup-action__priority {
    background: var(--lp-green);
    color: white;
}

.lp-mockup-action__priority {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--lp-gray-200);
    color: var(--lp-gray-600);
    border-radius: 10px;
    flex-shrink: 0;
}

.lp-mockup-action__content {
    flex: 1;
    min-width: 0;
}

.lp-mockup-action__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-gray-900);
    margin-bottom: 0.25rem;
}

.lp-mockup-action__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lp-mockup-action__tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: var(--lp-gray-200);
    color: var(--lp-gray-600);
    border-radius: 4px;
}

.lp-mockup-action__tag--red {
    background: #fecaca;
    color: #b91c1c;
}

.lp-mockup-action__tag--yellow {
    background: #fde68a;
    color: #92400e;
}

.lp-mockup-action__tag--green {
    background: #a7f3d0;
    color: #065f46;
}

.lp-mockup-action__deal {
    font-size: 0.6875rem;
    color: var(--lp-gray-500);
}

.lp-mockup-action__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: 8px;
    color: var(--lp-gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.lp-mockup-action__btn:hover {
    background: var(--lp-purple);
    border-color: var(--lp-purple);
    color: white;
}

/* Feature row responsive adjustments */
@media (min-width: 992px) {
    .lp-feature-row .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .lp-feature-row .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* Modules section */
.lp-modules {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(163, 137, 212, 0.05) 100%);
    border-radius: var(--lp-radius-xl);
    margin-top: 2rem;
}

.lp-section-subtitle-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 0.5rem;
}

.lp-module-card {
    padding: 2rem 1.5rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-xl);
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lp-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-purple), var(--lp-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lp-module-card:hover {
    border-color: var(--lp-purple-light);
    box-shadow: 0 10px 40px rgba(163, 137, 212, 0.15);
    transform: translateY(-4px);
}

.lp-module-card:hover::before {
    transform: scaleX(1);
}

.lp-module-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(163, 137, 212, 0.15) 0%, rgba(29, 233, 182, 0.1) 100%);
    color: var(--lp-purple);
    border-radius: var(--lp-radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.lp-module-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 0.75rem;
}

.lp-module-card__text {
    font-size: 0.875rem;
    color: var(--lp-gray-700);
    margin: 0;
    line-height: 1.6;
}

/* Social Proof Section */
.lp-social-proof {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 50%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.lp-social-proof::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(163, 137, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (min-width: 768px) {
    .lp-social-proof {
        padding: 5rem 0;
    }
}

/* Testimonial card */
.lp-testimonial {
    padding: 1.5rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-lg);
    margin-bottom: 1.5rem;
}

.lp-testimonial__stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.lp-testimonial__stars i {
    font-size: 1rem;
}

.lp-testimonial__quote {
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--lp-gray-800);
    margin: 0 0 1.25rem;
    line-height: 1.7;
}

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

.lp-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.lp-testimonial__info {
    display: flex;
    flex-direction: column;
}

.lp-testimonial__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lp-gray-900);
}

.lp-testimonial__company {
    font-size: 0.8125rem;
    color: var(--lp-gray-500);
}

/* Trust badges */
.lp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    padding: 2rem 0 0;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp-gray-600);
}

.lp-trust-badge i {
    color: var(--lp-green);
}

/* Pricing section */
.lp-price-card__features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.lp-price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--lp-gray-800);
}

.lp-price-card__features li i {
    color: var(--lp-green);
    margin-top: 2px;
}

.lp-price-card__feature--disabled {
    color: var(--lp-gray-400) !important;
}

.lp-price-card__feature--disabled i {
    color: var(--lp-gray-300) !important;
}

/* Final CTA white button */
.lp-btn--white {
    background: var(--lp-white);
    color: var(--lp-purple);
}

.lp-btn--white:hover {
    background: var(--lp-gray-100);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg);
}

/* Final CTA trust */
.lp-final-cta__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.lp-final-cta__trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-final-cta__trust i {
    color: var(--lp-green);
}

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
    padding: 3rem 0 2rem;
    background: var(--lp-gray-900);
    color: var(--lp-gray-400);
}

.lp-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--lp-gray-700);
}

@media (min-width: 768px) {
    .lp-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.lp-footer__brand {
    text-align: center;
}

@media (min-width: 768px) {
    .lp-footer__brand {
        text-align: left;
    }
}

.lp-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-footer__logo i {
    color: var(--lp-purple);
}

.lp-footer__tagline {
    font-size: 0.875rem;
    color: var(--lp-gray-500);
    margin: 0.5rem 0 0;
}

.lp-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lp-footer__links {
        justify-content: flex-end;
    }
}

.lp-footer__links a {
    font-size: 0.875rem;
    color: var(--lp-gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer__links a:hover {
    color: var(--lp-white);
}

.lp-footer__bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.lp-footer__bottom p {
    font-size: 0.8125rem;
    color: var(--lp-gray-500);
    margin: 0;
}

/* ============================================
   EARLY ACCESS FORMS
   ============================================ */
.lp-early-access-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.lp-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.lp-input {
    flex: 1;
    min-width: 150px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border: 2px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-md);
    background: var(--lp-white);
    transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-input:focus {
    outline: none;
    border-color: var(--lp-purple);
    box-shadow: 0 0 0 3px rgba(163, 137, 212, 0.2);
}

.lp-input::placeholder {
    color: var(--lp-gray-400);
}

/* Textarea specific styles */
.lp-textarea {
    width: 100%;
    min-width: 100%;
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
    line-height: 1.5;
}

.lp-form-message {
    text-align: center;
    margin-top: 0.75rem;
    min-height: 1.5rem;
}

.lp-success {
    color: var(--lp-green-dark);
    font-weight: 500;
}

.lp-error {
    color: #ef4444;
    font-weight: 500;
}

/* Dark background form (Final CTA) */
.lp-final-cta .lp-input {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
}

.lp-final-cta .lp-input:focus {
    border-color: var(--lp-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.lp-final-cta .lp-success {
    color: var(--lp-green);
}

.lp-final-cta .lp-error {
    color: #fca5a5;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lp-form-row {
        flex-direction: column;
    }

    .lp-input {
        min-width: 100%;
    }

    .lp-form-row .lp-btn {
        width: 100%;
    }
}

/* Fix testimonial stars - make them filled */
.lp-testimonial__stars i {
    fill: currentColor;
}

.lp-testimonial__stars i::before {
    content: "\2605"; /* Filled star unicode */
}

/* Override feather icon-star to show as filled */
.lp-testimonial__stars .icon-star {
    background: #fbbf24;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filled stars for testimonials */
.lp-testimonial__stars {
    font-size: 1rem;
    letter-spacing: 0.125rem;
}

.lp-testimonial__stars i.feather.icon-star {
    position: relative;
    color: transparent;
}

.lp-testimonial__stars i.feather.icon-star::before {
    content: "\2605";
    position: absolute;
    left: 0;
    color: #fbbf24;
}

/* Star filled element for HTML entities */
.lp-star-filled {
    color: #fbbf24;
    font-size: 1.125rem;
}

/* Centered form row for Final CTA */
.lp-form-row--centered {
    justify-content: center;
}

/* Dark input styling */
.lp-input--dark {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
}

.lp-input--dark:focus {
    border-color: var(--lp-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Dark form styling */
.lp-early-access-form--dark .lp-form-message {
    color: var(--lp-white);
}

.lp-early-access-form--dark .lp-success {
    color: var(--lp-green);
}

.lp-early-access-form--dark .lp-error {
    color: #fca5a5;
}

/* ============================================
   MODAL
   ============================================ */
.lp-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lp-modal--active {
    display: flex;
}

.lp-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lp-modal__container {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--lp-white);
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lp-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lp-gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--lp-gray-600);
    transition: all var(--lp-transition);
    z-index: 1;
}

.lp-modal__close:hover {
    background: var(--lp-gray-200);
    color: var(--lp-gray-900);
}

.lp-modal__content {
    padding: 2rem;
}

.lp-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin: 0 0 0.5rem;
    padding-right: 2rem;
}

.lp-modal__subtitle {
    font-size: 0.9375rem;
    color: var(--lp-gray-600);
    margin: 0 0 1.5rem;
}

.lp-form-group {
    margin-bottom: 1rem;
}

.lp-form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.lp-form-group .lp-input {
    width: 100%;
}

/* Modal form message spacing */
.lp-modal .lp-form-message {
    margin-top: 1rem;
}
