/* Web Push Notifications Landing Page — Leadnest.ai */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
    --wp-primary:       #673AB7;
    --wp-primary-dark:  #5e35b1;
    --wp-primary-deep:  #4527a0;
    --wp-accent:        #8B5CF6; /* Brand Violet Accent */
    --wp-accent-dark:   #7C3AED;
    --wp-text:          #1f2937;
    --wp-text-muted:    #64748b;
    --wp-heading:       #0f172a;
    --wp-bg-light:      #f8fafc;
    --wp-white:         #ffffff;
    --wp-border:        #f1f5f9;
}

/* ══════════════════════════════════════
   BASE RESET
══════════════════════════════════════ */
html { 
    height: auto !important; 
    overflow-x: hidden !important; 
    scroll-behavior: smooth;
}
body { 
    height: auto !important; 
    overflow-x: hidden !important; 
    overflow-y: visible !important; 
    position: relative; 
    margin: 0; 
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
main { overflow: visible !important; }

.wp-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--wp-text);
    padding-top: 90px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    /* Support for modern mobile safe areas */
    padding-bottom: env(safe-area-inset-bottom, 20px);
}

/* ══════════════════════════════════════
   BACKGROUND UTILITIES
══════════════════════════════════════ */
.wp-bg-light  { background: var(--wp-bg-light); }
.wp-bg-white  { background: var(--wp-white); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.wp-hero {
    height: calc(100vh - 90px);
    min-height: 620px;
    background: var(--wp-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.wp-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,  rgba(103, 58, 183, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(103, 58, 183, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    pointer-events: none;
    z-index: 1;
}

.wp-hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.wp-hero-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.wp-hero-text  { flex: 1.15; }
.wp-hero-visual {
    flex: 0.95;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(103, 58, 183, 0.07);
    color: var(--wp-primary);
    border: 1px solid rgba(103, 58, 183, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.wp-hero-text h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--wp-heading);
    letter-spacing: -0.03em;
}

.wp-line-1 {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .wp-line-1 {
        white-space: normal;
    }
}

/* Hero Features List */
.wp-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 44px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
}

.wp-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
}

.wp-hero-features li i {
    color: var(--wp-primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Removed individual feature colors as requested */

.wp-hero-features li:last-child {
    grid-column: span 1;
}

.wp-accent-brand { color: var(--wp-accent); }

.wp-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 36px;
    max-width: 95%;
    font-weight: 400;
}

.wp-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(103, 58, 183, 0.15), 0 10px 20px rgba(0,0,0,0.05);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}

.wp-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(103, 58, 183, 0.2), 0 15px 30px rgba(0,0,0,0.08);
}

.wp-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

/* Sticky Button Pulse Effect */
@keyframes wp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(103, 58, 183, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(103, 58, 183, 0); }
    100% { box-shadow: 0 0 0 0 rgba(103, 58, 183, 0); }
}

.wp-sticky-cta .wp-btn-primary {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(103, 58, 183, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: wp-pulse 2s infinite;
}

.wp-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    border: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}

.wp-btn:active {
    transform: scale(0.96);
}

.wp-btn-lg { padding: 16px 36px; font-size: 16px; }

.wp-btn-primary {
    background: var(--wp-primary);
    color: white !important;
    box-shadow: 0 4px 14px rgba(103,58,183,0.25);
}

.wp-btn-primary:hover {
    background: var(--wp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103,58,183,0.3);
}

.wp-btn-primary:active {
    transform: scale(0.96) translateY(0);
}

.wp-btn-secondary {
    background: #f3f4f6;
    color: #111827 !important;
    border: 1px solid transparent;
}

.wp-btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.wp-hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--wp-border);
}

.wp-trust-divider { width: 1px; height: 24px; background: #e2e8f0; flex-shrink: 0; }

.wp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.wp-trust-item i { color: var(--wp-primary); font-size: 18px; }

/* ══════════════════════════════════════
   PARTNER SLIDER
══════════════════════════════════════ */
.wp-partner-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid var(--wp-border);
}

.wp-trusted-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--wp-text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wp-trusted-heading::before,
.wp-trusted-heading::after {
    content: '';
    height: 1px;
    width: 40px;
    background: rgba(0,0,0,0.1);
}

.wp-partner-img {
    filter: none;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: 38px;
    width: auto !important;
    margin: 0 auto;
}

.wp-partner-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.wp-stats-band {
    background: #0f172a;
    padding: 70px 0;
    color: white;
    position: relative;
    z-index: 10;
}

.wp-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    gap: 32px;
}

.wp-stat-value {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wp-accent);
}

.wp-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* Stats Disclaimer */
.wp-stats-disclaimer {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding: 0 24px;
}

/* ══════════════════════════════════════
   FEATURE SECTIONS
══════════════════════════════════════ */
.wp-feature-section { padding: 120px 0; }

.wp-feature-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 24px;
}

.wp-feature-reverse { flex-direction: row-reverse; }

.wp-feature-content { flex: 1; }
.wp-feature-image   { flex: 1; }

.wp-feature-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.07);
    color: var(--wp-accent);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wp-feature-content h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--wp-heading);
    letter-spacing: -0.02em;
}

.wp-feature-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--wp-text-muted);
    margin-bottom: 36px;
}

.wp-feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.wp-feature-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--wp-heading);
}

.wp-feature-highlights li i {
    color: var(--wp-accent);
    font-size: 20px;
}

.wp-feature-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.wp-steps-section { padding: 120px 0; background: #fff; }

.wp-steps-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wp-step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--wp-bg-light);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.wp-step-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.08);
    transform: translateY(-5px);
}

.wp-step-number {
    width: 54px;
    height: 54px;
    background: var(--wp-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 28px;
    box-shadow: 0 8px 16px rgba(103, 58, 183, 0.25);
}

.wp-step-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wp-heading);
}

.wp-step-card p {
    font-size: 15px;
    color: var(--wp-text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   CAPABILITIES GRID
══════════════════════════════════════ */
.wp-capabilities-section { padding: 120px 0; }

.wp-section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.wp-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--wp-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wp-section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--wp-heading);
    margin-bottom: 20px;
}

.wp-capabilities-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wp-cap-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--wp-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-cap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.08);
    border-color: rgba(103, 58, 183, 0.2);
}

.wp-cap-icon {
    width: 56px;
    height: 56px;
    background: rgba(103, 58, 183, 0.07);
    color: var(--wp-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.wp-cap-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wp-heading);
}

.wp-cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-cap-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--wp-text-muted);
    margin-bottom: 12px;
}

.wp-cap-list li i {
    color: var(--wp-primary);
    font-size: 16px;
}

/* ══════════════════════════════════════
   CONVERSION FEATURES
══════════════════════════════════════ */
.wp-conversion-section { padding: 120px 0; }

.wp-conversion-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wp-conv-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--wp-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-conv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.08);
    border-color: rgba(103, 58, 183, 0.2);
}

.wp-conv-icon {
    width: 56px;
    height: 56px;
    background: rgba(103, 58, 183, 0.07);
    color: var(--wp-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.wp-conv-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wp-heading);
}

.wp-conv-card p {
    font-size: 15px;
    color: var(--wp-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.wp-faq-section { padding: 120px 0; }

.wp-faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--wp-border);
    overflow: hidden;
}

.wp-faq-question {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.wp-faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--wp-heading);
}

.wp-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wp-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wp-faq-open .wp-faq-icon {
    background: var(--wp-primary);
    color: white;
    transform: rotate(45deg);
}

.wp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
}

.wp-faq-open .wp-faq-answer {
    max-height: 400px;
    padding-bottom: 32px;
}

.wp-faq-answer p {
    color: var(--wp-text-muted);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--wp-border);
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.wp-cta-section { padding: 120px 24px; }

.wp-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #673AB7 0%, #311b92 100%);
    border-radius: 48px;
    padding: 100px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(103, 58, 183, 0.3);
}

.wp-cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.wp-cta-content h2 { font-size: 48px; font-weight: 600; margin-bottom: 24px; }

.wp-cta-content p { font-size: 20px; opacity: 0.9; margin-bottom: 48px; }

.wp-cta-buttons { display: flex; gap: 20px; justify-content: center; }

.wp-btn-white { background: white; color: var(--wp-primary) !important; }
.wp-btn-white:hover { background: #f8fafc; transform: translateY(-3px); }

.wp-btn-outline {
    background: rgba(255,255,255,0.05);
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.wp-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.wp-reveal       { opacity: 0; transform: translateY(30px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.wp-reveal-left  { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.wp-reveal-right { opacity: 0; transform: translateX(50px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }

.wp-animate-in .wp-reveal,
.wp-animate-in.wp-reveal,
.wp-animate-in .wp-reveal-left,
.wp-animate-in.wp-reveal-left,
.wp-animate-in .wp-reveal-right,
.wp-animate-in.wp-reveal-right { opacity: 1 !important; transform: translate(0,0) scale(1) !important; }

.wp-delay-1 { transition-delay: 0.1s; }
.wp-delay-2 { transition-delay: 0.2s; }
.wp-delay-3 { transition-delay: 0.3s; }
.wp-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   STICKY CTA (Native App Feel)
══════════════════════════════════════ */
.wp-sticky-cta {
    position: fixed;
    bottom: 24px; /* Floating look */
    left: 20px;
    right: 20px;
    padding: 0;
    background: transparent;
    z-index: 2000;
    display: block; /* Always block, use opacity/pointer-events for transition */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    transform: translateY(120px);
    opacity: 0;
    pointer-events: none;
}

.wp-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ══════════════════════════════════════
   RESPONSIVE (Enhanced for Native App Feel)
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .wp-capabilities-grid, .wp-conversion-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .wp-hero { height: auto; padding: 60px 0 100px; }
    .wp-hero-content { flex-direction: column; text-align: center; gap: 50px; }
    .wp-hero-text h1 { font-size: 42px; }
    .wp-hero-cta { justify-content: center; }
    .wp-hero-trust { justify-content: center; }
    .wp-hero-features { 
        justify-content: center;
        max-width: 600px;
        margin: 0 auto 40px;
        text-align: left;
    }
    .wp-feature-container { flex-direction: column !important; gap: 60px; text-align: center; }
    .wp-feature-highlights { justify-items: start; }
    .wp-cta-content h2 { font-size: 36px; }
    .wp-steps-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .wp-wrapper {
        padding-top: 70px; /* Match the new mobile header height */
    }

    .wp-hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .wp-hero-content {
        padding: 0 20px;
        gap: 40px;
    }

    .wp-hero-badge {
        padding: 8px 14px;
        font-size: 11px;
        margin-bottom: 24px;
    }

    .wp-hero-text h1 {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .wp-hero-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 32px;
        color: #4b5563;
    }

    .wp-hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

    .wp-hero-features li {
        font-size: 14px;
    }

    .wp-hero-features li:last-child {
        grid-column: span 1;
    }

    .wp-hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 40px;
    }

    .wp-hero-cta .wp-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .wp-hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding: 24px;
        background: rgba(103, 58, 183, 0.03);
        border-radius: 20px;
        border: 1px solid rgba(103, 58, 183, 0.08);
        margin-top: 0;
    }

    .wp-trust-divider { display: none; }

    /* Partner Section */
    .wp-partner-section {
        padding: 50px 0;
    }

    .wp-trusted-heading {
        font-size: 9px !important;
        letter-spacing: 2.5px;
        opacity: 0.6;
        margin: 0 0 24px 0 !important;
        font-weight: 700;
        text-transform: uppercase;
    }

    .wp-trusted-heading::before,
    .wp-trusted-heading::after {
        width: 30px;
    }

    /* Stats Band */
    .wp-stats-band {
        padding: 60px 0;
    }

    .wp-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .wp-stat-value {
        font-size: 32px;
    }

    .wp-stat-label {
        font-size: 10px;
    }

    .wp-stats-disclaimer {
        font-size: 11px;
        margin-top: 30px;
    }

    /* Features */
    .wp-feature-section {
        padding: 80px 0;
    }

    .wp-feature-container {
        padding: 0 20px;
        gap: 40px;
    }

    .wp-feature-content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .wp-feature-content h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .wp-feature-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .wp-feature-highlights {
        gap: 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
        list-style: none;
    }

    .wp-feature-highlights li {
        font-size: 14px;
    }

    .wp-feature-img {
        border-radius: 20px;
    }

    /* Steps */
    .wp-steps-section {
        padding: 80px 0;
    }

    .wp-section-header {
        margin-bottom: 50px;
    }

    .wp-section-header h2 {
        font-size: 32px;
    }

    .wp-steps-grid {
        padding: 0 20px;
        gap: 20px;
    }

    .wp-step-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    /* Capabilities */
    .wp-capabilities-section, .wp-conversion-section {
        padding: 80px 0;
    }

    .wp-capabilities-grid, .wp-conversion-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 16px;
    }

    .wp-cap-card, .wp-conv-card {
        padding: 32px;
        border-radius: 24px;
        text-align: left;
    }

    .wp-cap-icon, .wp-conv-icon {
        margin-left: 0;
    }

    /* FAQ */
    .wp-faq-section {
        padding: 80px 0;
    }

    .wp-faq-grid {
        padding: 0 20px;
        gap: 12px;
    }

    .wp-faq-question {
        padding: 24px;
    }

    .wp-faq-question span {
        font-size: 16px;
    }

    /* CTA */
    .wp-cta-section {
        padding: 80px 20px;
    }

    .wp-cta-container {
        border-radius: 32px;
        padding: 60px 24px;
        margin: 0;
    }

    .wp-cta-content h2 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .wp-cta-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .wp-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .wp-cta-buttons .wp-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wp-hero-text h1 {
        font-size: 28px;
    }
    
    .wp-stat-item {
        width: 100%;
    }
    
    .wp-stat-value {
        font-size: 36px;
    }
}
