/* 
 * WP Falcons Landing Page Styles - Scoped & Isolated 
 * Wraps all styles in .wp-falcons-lp-body to prevent theme conflicts
 */

/* Scoped Variables */
.wp-falcons-lp-body {
    --primary: #044F4D;
    --primary-light: #066360;
    --primary-dark: #022B2A;
    --accent: #00D9D9;
    --accent-glow: rgba(0, 217, 217, 0.4);
    --dark: #090C10;
    --dark-card: #151921;
    --light: #F8FAFC;
    --text: #1E293B;
    --text-muted: #64748B;
    --border: rgba(0, 0, 0, 0.08);
    --white: #ffffff;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 20, 50, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Base Reset for Landing Page Body */
.wp-falcons-lp-body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

.wp-falcons-lp-body * {
    box-sizing: border-box;
}

.wp-falcons-lp-body h1,
.wp-falcons-lp-body h2,
.wp-falcons-lp-body h3,
.wp-falcons-lp-body h4 {
    font-family: 'Outfit', sans-serif;
}

/* Scoped Container */
.wp-falcons-lp-body .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.wp-falcons-lp-body .section-padding {
    padding: 120px 0;
}

.wp-falcons-lp-body .text-center {
    text-align: center;
}

/* ===== TOP TRUST BAR ===== */
.wp-falcons-lp-body .top-trust-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.wp-falcons-lp-body .mini-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.wp-falcons-lp-body .mini-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.wp-falcons-lp-body .mini-badge:hover {
    color: var(--primary);
}

/* ===== HERO ===== */
.wp-falcons-lp-body .hero {
    background: var(--dark);
    color: #fff;
    padding: 120px 0 180px;
    position: relative;
    overflow: hidden;
}

.wp-falcons-lp-body .hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at 50% 0%, rgba(4, 79, 77, 0.3) 0px, transparent 60%),
        radial-gradient(at 80% 80%, rgba(0, 217, 217, 0.15) 0px, transparent 50%);
    z-index: 1;
}

.wp-falcons-lp-body #cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(4, 79, 77, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

.wp-falcons-lp-body .hero-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.wp-falcons-lp-body .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    background: rgba(4, 79, 77, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(0, 217, 217, 0.3);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-falcons-lp-body .hero h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    color: #fff;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.wp-falcons-lp-body .hero h1 .hero-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #10B981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.wp-falcons-lp-body .hero h1 .hero-main-text,
.wp-falcons-lp-body .hero h1 .hero-sub-text {
    color: #fff;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-falcons-lp-body .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #94A3B8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.wp-falcons-lp-body .trust-chips {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.wp-falcons-lp-body .chip {
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    backdrop-filter: blur(10px);
    color: #E2E8F0;
    transition: all 0.3s ease;
}

.wp-falcons-lp-body .chip:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.wp-falcons-lp-body .chip i {
    color: var(--accent);
    font-weight: 900;
}

.wp-falcons-lp-body .hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Tag Marquee */
.wp-falcons-lp-body .tag-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0 3.5rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.wp-falcons-lp-body .tag-track {
    display: inline-flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
}

.wp-falcons-lp-body .tag-item {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    opacity: 0.5;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.wp-falcons-lp-body .tag-item::after {
    content: "•";
    color: rgba(0, 217, 217, 0.3);
    font-size: 1.2rem;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Dashboard Mockup */
.wp-falcons-lp-body .hero-preview {
    margin-top: 60px;
}

.wp-falcons-lp-body .dashboard-mockup {
    width: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    text-align: left;
}

.wp-falcons-lp-body .mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wp-falcons-lp-body .head-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #334155;
}

.wp-falcons-lp-body .mockup-title {
    margin-left: auto;
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 600;
}

.wp-falcons-lp-body .mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wp-falcons-lp-body .mockup-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.wp-falcons-lp-body .mockup-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.wp-falcons-lp-body .mockup-card span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #64748B;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.wp-falcons-lp-body .mockup-card b {
    display: block;
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1;
}

.wp-falcons-lp-body .mockup-card p {
    font-size: 0.8rem;
    color: #94A3B8;
    margin: 0;
}

.wp-falcons-lp-body .mockup-terminal {
    background: rgba(0, 217, 217, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 217, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    white-space: pre-line;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.wp-falcons-lp-body .btn {
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    border: none;
}

.wp-falcons-lp-body .btn-primary {
    background: var(--gradient-primary);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(4, 79, 77, 0.25);
}

.wp-falcons-lp-body .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(4, 79, 77, 0.35);
}

.wp-falcons-lp-body .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}

.wp-falcons-lp-body .btn-outline:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-4px);
}

.wp-falcons-lp-body .btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

.wp-falcons-lp-body .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.wp-falcons-lp-body .btn-large {
    padding: 1.4rem 2.8rem;
    font-size: 1.1rem;
}

/* ===== TRUST BAR ===== */
.wp-falcons-lp-body .trust-bar {
    background: #ffffff;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.wp-falcons-lp-body .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.wp-falcons-lp-body .trust-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.wp-falcons-lp-body .trust-item:hover {
    background: rgba(4, 79, 77, 0.03);
    transform: translateY(-4px);
}

.wp-falcons-lp-body .trust-item b {
    display: block;
    font-size: 3.5rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.75rem;
}

.wp-falcons-lp-body .trust-item span {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS (HORIZONTAL SCROLL) ===== */
.wp-falcons-lp-body .clients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.wp-falcons-lp-body .testimonials-horizontal {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    padding: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.wp-falcons-lp-body .testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    min-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.wp-falcons-lp-body .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.wp-falcons-lp-body .testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.wp-falcons-lp-body .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.wp-falcons-lp-body .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wp-falcons-lp-body .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wp-falcons-lp-body .author-info strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.wp-falcons-lp-body .author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.wp-falcons-lp-body .section-header {
    margin-bottom: 5rem;
}

.wp-falcons-lp-body .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(4, 79, 77, 0.08);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.wp-falcons-lp-body .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.wp-falcons-lp-body .section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.wp-falcons-lp-body .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.wp-falcons-lp-body .service-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.wp-falcons-lp-body .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.wp-falcons-lp-body .service-card:hover::before {
    transform: scaleX(1);
}

.wp-falcons-lp-body .service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.wp-falcons-lp-body .service-card.featured {
    border-color: var(--primary);
}

.wp-falcons-lp-body .featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.wp-falcons-lp-body .service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.wp-falcons-lp-body .service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.wp-falcons-lp-body .service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.wp-falcons-lp-body .service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wp-falcons-lp-body .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.wp-falcons-lp-body .service-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wp-falcons-lp-body .service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.wp-falcons-lp-body .service-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.wp-falcons-lp-body .service-link:hover {
    gap: 1rem;
}

/* ===== PLUGIN SHOWCASE (HORIZONTAL) ===== */
.wp-falcons-lp-body .plugin-showcase {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.wp-falcons-lp-body .plugin-grid {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.wp-falcons-lp-body .plugin-grid::-webkit-scrollbar {
    display: none;
}

.wp-falcons-lp-body .plugin-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
}

.wp-falcons-lp-body .plugin-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.wp-falcons-lp-body .plugin-thumb {
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-falcons-lp-body .plugin-icon {
    font-size: 5rem;
    transition: transform 0.4s ease;
}

.wp-falcons-lp-body .plugin-card:hover .plugin-icon {
    transform: scale(1.1) rotate(-5deg);
}

.wp-falcons-lp-body .plugin-body {
    padding: 2.5rem;
}

.wp-falcons-lp-body .plugin-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.wp-falcons-lp-body .badge-tag {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.wp-falcons-lp-body .tag-premium {
    background: rgba(4, 79, 77, 0.1);
    color: var(--primary);
}

.wp-falcons-lp-body .tag-performance {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.wp-falcons-lp-body .tag-enterprise {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.wp-falcons-lp-body .plugin-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wp-falcons-lp-body .stars {
    color: #F59E0B;
    font-size: 0.9rem;
}

.wp-falcons-lp-body .rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wp-falcons-lp-body .plugin-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.wp-falcons-lp-body .plugin-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wp-falcons-lp-body .plugin-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.wp-falcons-lp-body .plugin-features span {
    background: rgba(4, 79, 77, 0.05);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 600;
}

.wp-falcons-lp-body .plugin-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.wp-falcons-lp-body .plugin-price {
    display: flex;
    flex-direction: column;
}

.wp-falcons-lp-body .price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.wp-falcons-lp-body .price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

/* ===== WHY US ===== */
.wp-falcons-lp-body .why-us-section {
    background: #fff;
}

.wp-falcons-lp-body .why-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
}

.wp-falcons-lp-body .why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.wp-falcons-lp-body .why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.wp-falcons-lp-body .why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.wp-falcons-lp-body .why-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PROCESS TIMELINE ===== */
.wp-falcons-lp-body .process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.wp-falcons-lp-body .timeline {
    max-width: 900px;
    margin: 0 auto;
}

.wp-falcons-lp-body .step-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.wp-falcons-lp-body .step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(4, 79, 77, 0.2);
}

.wp-falcons-lp-body .step-content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.wp-falcons-lp-body .step-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CASE STUDY ===== */
.wp-falcons-lp-body .case-study-section {
    background: #fff;
}

.wp-falcons-lp-body .case-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.wp-falcons-lp-body .case-content {
    padding: 4rem;
}

.wp-falcons-lp-body .case-badge {
    display: inline-block;
    background: rgba(4, 79, 77, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.wp-falcons-lp-body .case-content h3 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.wp-falcons-lp-body .case-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.wp-falcons-lp-body .case-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.wp-falcons-lp-body .case-detail strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.wp-falcons-lp-body .case-stats {
    background: var(--primary);
    color: #fff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.wp-falcons-lp-body .case-stat-item {
    text-align: center;
}

.wp-falcons-lp-body .case-stat-item b {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.wp-falcons-lp-body .case-stat-item span {
    font-size: 1rem;
    color: #E2E8F0;
}

/* ===== PRICING ===== */
.wp-falcons-lp-body .pricing-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.wp-falcons-lp-body .enterprise-card {
    background: #fff;
    padding: 4rem;
    border-radius: 48px;
    border: 2px solid var(--border);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.wp-falcons-lp-body .enterprise-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.wp-falcons-lp-body .enterprise-badge {
    display: inline-block;
    background: rgba(4, 79, 77, 0.1);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.wp-falcons-lp-body .enterprise-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.wp-falcons-lp-body .enterprise-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.wp-falcons-lp-body .btn-enterprise {
    background: var(--gradient-primary);
    color: #fff;
    padding: 1.3rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(4, 79, 77, 0.2);
    transition: all 0.3s ease;
}

.wp-falcons-lp-body .btn-enterprise:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(4, 79, 77, 0.3);
}

.wp-falcons-lp-body .enterprise-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.wp-falcons-lp-body .enterprise-features {
    list-style: none;
    padding: 2.5rem;
    margin: 0;
    background: #f8fafc;
    border-radius: 24px;
}

.wp-falcons-lp-body .enterprise-features li {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    gap: 1rem;
    font-weight: 600;
}

.wp-falcons-lp-body .enterprise-features li i {
    color: var(--primary);
    font-style: normal;
}

/* ===== FAQ ===== */
.wp-falcons-lp-body .faq-section {
    background: #fff;
}

.wp-falcons-lp-body .faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.wp-falcons-lp-body .faq-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wp-falcons-lp-body .faq-item:hover {
    border-color: var(--primary);
}

.wp-falcons-lp-body .faq-item.active {
    border-color: var(--primary);
    background: #f8fafc;
    box-shadow: var(--shadow-md);
}

.wp-falcons-lp-body .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    padding: 1.75rem 2rem;
    text-align: left;
    transition: color 0.3s ease;
}

.wp-falcons-lp-body .faq-q:hover {
    color: var(--primary);
}

.wp-falcons-lp-body .faq-q span {
    color: var(--primary);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.wp-falcons-lp-body .faq-item.active .faq-q span {
    transform: rotate(45deg);
}

.wp-falcons-lp-body .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    padding: 0 2rem;
}

.wp-falcons-lp-body .faq-item.active .faq-a {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.wp-falcons-lp-body .faq-a p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== FINAL CTA ===== */
.wp-falcons-lp-body .cta-section {
    padding: 100px 0;
}

.wp-falcons-lp-body .final-cta {
    background: var(--gradient-primary);
    color: #fff;
    padding: 80px 60px;
    border-radius: 48px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(4, 79, 77, 0.3);
}

.wp-falcons-lp-body .final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -3px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
}

.wp-falcons-lp-body .cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.wp-falcons-lp-body .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.wp-falcons-lp-body .cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wp-falcons-lp-body .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.wp-falcons-lp-body .trust-badge-item svg {
    color: var(--accent);
}

/* ===== REVEAL ===== */
.wp-falcons-lp-body .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.wp-falcons-lp-body .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .wp-falcons-lp-body .enterprise-card,
    .wp-falcons-lp-body .case-card {
        grid-template-columns: 1fr;
    }

    .wp-falcons-lp-body .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wp-falcons-lp-body .hero {
        padding: 80px 0 120px;
    }

    .wp-falcons-lp-body .hero h1 {
        font-size: 2.5rem;
    }

    .wp-falcons-lp-body .btn {
        width: 100%;
        justify-content: center;
    }

    .wp-falcons-lp-body .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-falcons-lp-body .grid-3 {
        grid-template-columns: 1fr;
    }

    .wp-falcons-lp-body .testimonial-card {
        min-width: 340px;
    }

    .wp-falcons-lp-body .plugin-card {
        min-width: 340px;
    }

    .wp-falcons-lp-body .section-padding {
        padding: 80px 0;
    }

    .wp-falcons-lp-body .step-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .wp-falcons-lp-body .trust-grid {
        grid-template-columns: 1fr;
    }

    .wp-falcons-lp-body .testimonial-card,
    .wp-falcons-lp-body .plugin-card {
        min-width: 300px;
    }
}

/* FORCE FULL WIDTH LAYOUT (Override Astra Defaults) */
.wp-falcons-lp-body #content,
.wp-falcons-lp-body #primary,
.wp-falcons-lp-body #main,
.wp-falcons-lp-body .ast-container,
.wp-falcons-lp-body .site-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.wp-falcons-lp-body .site-content {
    overflow: hidden;
}

.wp-falcons-lp-body .entry-content,
.wp-falcons-lp-body .entry-header {
    margin: 0 !important;
    max-width: 100% !important;
}