* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lp-primary: #7c3aed;
    --lp-primary-light: #a78bfa;
    --lp-primary-dark: #6d28d9;
    --lp-secondary: #06b6d4;
    --lp-success: #10b981;
    --lp-danger: #ef4444;
    --lp-warning: #f59e0b;
    --lp-text: #1e293b;
    --lp-text-light: #64748b;
    --lp-bg: #ffffff;
    --lp-bg-light: #f8f9fe;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--lp-text);
    background: var(--lp-bg-light);
    overflow-x: hidden;
}

/* Floating Shapes Background */
.lp-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.lp-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.lp-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--lp-primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.lp-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--lp-secondary);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.lp-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--lp-warning);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Container */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    animation: fadeInDown 0.8s ease-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero creator - stacked, round avatar with theme border */
.lp-creator-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.lp-creator-hero-avatar-wrap {
    flex-shrink: 0;
}

.lp-creator-hero-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lp-primary);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}

.lp-creator-hero-info {
    text-align: center;
}

.lp-creator-hero-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lp-primary);
    text-decoration: none;
    letter-spacing: 0.3px;
}

a.lp-creator-hero-name:hover {
    color: var(--lp-primary-dark);
}

/* Form creator chip - compact pill (user said bottom one is good) */
.lp-creator-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-creator-chip:hover {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.3);
}

.lp-creator-chip-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lp-creator-chip-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-primary);
    text-decoration: none;
    letter-spacing: 0.3px;
}

a.lp-creator-chip-name:hover {
    color: var(--lp-primary-dark);
}

.lp-creator-form.lp-creator-chip {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.lp-creator-form.lp-creator-chip:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

.lp-creator-form .lp-creator-chip-avatar {
    width: 32px;
    height: 32px;
}

.lp-creator-form .lp-creator-chip-name {
    color: white;
}

.lp-creator-form a.lp-creator-chip-name:hover {
    color: white;
    opacity: 0.95;
}

.lp-hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.lp-hero-subtitle {
    font-size: 1.5rem;
    color: var(--lp-text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.lp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.lp-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.lp-cta-primary:hover::before {
    width: 300px;
    height: 300px;
    max-width: 100vw;
    max-height: 100vh;
}

.lp-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none;
}

.lp-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.lp-scroll-indicator i {
    font-size: 2rem;
    color: var(--lp-primary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--lp-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.lp-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lp-section-subtitle {
    font-size: 1.25rem;
    color: var(--lp-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Problems Grid */
.lp-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.lp-problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #fee2e2;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.lp-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-danger) 0%, #fca5a5 100%);
}

.lp-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
    border-color: var(--lp-danger);
}

.lp-problem-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lp-danger) 0%, #fca5a5 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.lp-problem-text {
    color: var(--lp-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* Aspirations Grid */
.lp-aspirations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.lp-aspiration-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #d1fae5;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.lp-aspiration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-success) 0%, #6ee7b7 100%);
}

.lp-aspiration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    border-color: var(--lp-success);
}

.lp-aspiration-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lp-success) 0%, #6ee7b7 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.lp-aspiration-text {
    color: var(--lp-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* Big Idea Section */
.lp-big-idea {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 3rem;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #fbbf24;
    position: relative;
    overflow: hidden;
}

.lp-big-idea::before {
    content: '💡';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    opacity: 0.1;
}

.lp-big-idea-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lp-vs-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lp-vs-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.lp-vs-bad {
    color: var(--lp-danger);
}

.lp-vs-good {
    color: var(--lp-success);
}

.lp-vs-text {
    color: var(--lp-text);
    line-height: 1.7;
}

.lp-curiosity-box {
    background: linear-gradient(135deg, var(--lp-warning) 0%, #f59e0b 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.lp-curiosity-box i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* Benefits Grid */
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--lp-bg-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.lp-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.lp-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
    border-color: var(--lp-primary-light);
}

.lp-benefit-card:hover::before {
    transform: scaleY(1);
}

.lp-benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.lp-benefit-text {
    color: var(--lp-text);
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Authority Section */
.lp-authority-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--lp-secondary);
    position: relative;
}

.lp-authority-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lp-secondary) 0%, #22d3ee 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.lp-authority-text {
    font-size: 1.25rem;
    color: var(--lp-text);
    line-height: 1.8;
    font-style: italic;
    font-weight: 500;
}

/* FAQ Section */
.lp-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.lp-faq-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--lp-bg-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.lp-faq-item:hover {
    border-color: var(--lp-primary-light);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.lp-faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.lp-faq-question i {
    color: var(--lp-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.lp-faq-answer {
    color: var(--lp-text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    padding-left: 2rem;
}

/* Urgency Banner */
.lp-urgency-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid var(--lp-danger);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: var(--lp-danger);
    }

    50% {
        border-color: #fca5a5;
    }
}

.lp-urgency-icon {
    font-size: 3rem;
    color: var(--lp-danger);
    margin-bottom: 1rem;
    animation: swing 1s ease-in-out infinite;
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

.lp-urgency-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-danger);
    line-height: 1.6;
}

/* Form Section */
.lp-form-section {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.lp-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
}

.lp-form-wrapper {
    position: relative;
    z-index: 2;
}

.lp-form-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.lp-form-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lp-form-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

.lp-form-box {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lp-form-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 2rem;
    text-align: center;
}

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

.lp-form-label {
    display: block;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.lp-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--lp-text);
    transition: all 0.3s ease;
    font-family: inherit;
}

.lp-form-input:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.lp-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.lp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.lp-privacy-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--lp-text-light);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lp-privacy-note i {
    color: var(--lp-success);
}

/* Viral Loop Branding (inside form section) */
.lp-branding-text {
    text-align: center;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 0;
}

.lp-branding-link {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.lp-branding-link:hover {
    opacity: 0.9;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .lp-container {
        padding: 0 1.5rem;
    }
}

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

    .lp-hero {
        padding: 3rem 0;
    }

    .lp-hero-badge {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .lp-hero-title {
        font-size: 2.5rem;
    }

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

    .lp-cta-primary {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .lp-creator-hero-avatar {
        width: 48px;
        height: 48px;
        border-width: 2px;
    }

    .lp-creator-hero-name {
        font-size: 0.875rem;
    }

    .lp-creator-chip {
        padding: 0.3rem 0.75rem;
    }

    .lp-creator-chip-avatar {
        width: 24px;
        height: 24px;
    }

    .lp-creator-chip-name {
        font-size: 0.75rem;
    }

    .lp-creator-form .lp-creator-chip-avatar {
        width: 28px;
        height: 28px;
    }

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

    .lp-section-header {
        margin-bottom: 3rem;
    }

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

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

    .lp-problems-grid,
    .lp-aspirations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lp-problem-card,
    .lp-aspiration-card {
        padding: 1.5rem;
    }

    .lp-problem-icon,
    .lp-aspiration-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

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

    .lp-benefit-card {
        padding: 2rem;
    }

    .lp-benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .lp-benefit-text {
        font-size: 1rem;
    }

    .lp-big-idea {
        padding: 2rem;
    }

    .lp-big-idea-vs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lp-vs-card {
        padding: 1.5rem;
    }

    .lp-curiosity-box {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .lp-curiosity-box i {
        font-size: 1.125rem;
    }

    .lp-authority-box {
        padding: 2rem;
    }

    .lp-authority-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .lp-authority-text {
        font-size: 1.125rem;
    }

    .lp-faq-item {
        padding: 1.5rem;
    }

    .lp-faq-question {
        font-size: 1.125rem;
    }

    .lp-faq-answer {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .lp-urgency-banner {
        padding: 1.5rem;
    }

    .lp-urgency-icon {
        font-size: 2.5rem;
    }

    .lp-urgency-text {
        font-size: 1.125rem;
    }

    .lp-form-section {
        padding: 4rem 0;
    }

    .lp-form-header {
        margin-bottom: 2rem;
    }

    .lp-form-title {
        font-size: 2rem;
    }

    .lp-form-subtitle {
        font-size: 1.125rem;
    }

    .lp-form-box {
        padding: 2rem;
    }

    .lp-form-box-title {
        font-size: 1.25rem;
    }

    .lp-shape-1 {
        width: 280px;
        height: 280px;
    }

    .lp-shape-2 {
        width: 220px;
        height: 220px;
    }

    .lp-shape-3 {
        width: 150px;
        height: 150px;
    }
}

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

    .lp-problems-grid,
    .lp-aspirations-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .lp-hero {
        padding: 2.5rem 0;
    }

    .lp-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.25rem;
    }

    .lp-hero-title {
        font-size: 2rem;
    }

    .lp-hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
    }

    .lp-cta-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .lp-creator-hero {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .lp-creator-hero-avatar {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }

    .lp-creator-hero-name {
        font-size: 0.8125rem;
    }

    .lp-creator-chip {
        padding: 0.25rem 0.6rem;
    }

    .lp-creator-chip-avatar {
        width: 22px;
        height: 22px;
    }

    .lp-creator-chip-name {
        font-size: 0.6875rem;
    }

    .lp-creator-form .lp-creator-chip-avatar {
        width: 26px;
        height: 26px;
    }

    .lp-scroll-indicator {
        bottom: 1.5rem;
    }

    .lp-scroll-indicator i {
        font-size: 1.5rem;
    }

    .lp-section-header {
        margin-bottom: 2.5rem;
    }

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

    .lp-section-subtitle {
        font-size: 0.9375rem;
    }

    .lp-section-badge {
        font-size: 0.75rem;
    }

    .lp-problem-card,
    .lp-aspiration-card {
        padding: 1.25rem;
    }

    .lp-problem-icon,
    .lp-aspiration-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .lp-problem-text,
    .lp-aspiration-text {
        font-size: 0.9375rem;
    }

    .lp-benefit-card {
        padding: 1.5rem;
    }

    .lp-benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .lp-benefit-text {
        font-size: 0.9375rem;
    }

    .lp-big-idea {
        padding: 1.5rem;
    }

    .lp-big-idea-vs {
        gap: 1rem;
    }

    .lp-vs-card {
        padding: 1.25rem;
    }

    .lp-curiosity-box {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

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

    .lp-authority-box {
        padding: 1.5rem;
    }

    .lp-authority-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .lp-authority-text {
        font-size: 1rem;
    }

    .lp-faq-item {
        padding: 1.25rem;
    }

    .lp-faq-question {
        font-size: 1rem;
    }

    .lp-faq-answer {
        padding-left: 1rem;
    }

    .lp-urgency-banner {
        padding: 1.25rem;
    }

    .lp-urgency-icon {
        font-size: 2rem;
    }

    .lp-urgency-text {
        font-size: 1rem;
    }

    .lp-form-section {
        padding: 3rem 0;
    }

    .lp-form-header {
        margin-bottom: 1.5rem;
    }

    .lp-form-title {
        font-size: 1.5rem;
    }

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

    .lp-form-box {
        padding: 1.5rem;
    }

    .lp-form-box-title {
        font-size: 1.125rem;
    }

    .lp-form-input {
        font-size: 16px;
    }

    .lp-submit-btn {
        padding: 1rem;
    }

    .lp-shape-1 {
        width: 200px;
        height: 200px;
    }

    .lp-shape-2 {
        width: 160px;
        height: 160px;
    }

    .lp-shape-3 {
        width: 100px;
        height: 100px;
    }

    .lp-branding-text {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 360px) {
    .lp-hero-title {
        font-size: 1.75rem;
    }
}

/* Success Modal - base styles (moved from inline) */
.lp-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lp-success-modal.lp-success-modal-visible {
    display: flex;
}

.lp-success-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    max-width: 500px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.lp-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #6ee7b7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.lp-success-icon i {
    color: white;
    font-size: 2.5rem;
}

.lp-success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 1rem;
}

.lp-success-message {
    color: var(--lp-text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.lp-success-close {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lp-success-content {
        padding: 2rem;
    }

    .lp-success-icon {
        width: 64px;
        height: 64px;
    }

    .lp-success-icon i {
        font-size: 2rem;
    }

    .lp-success-title {
        font-size: 1.5rem;
    }

    .lp-success-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lp-success-content {
        padding: 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .lp-success-icon {
        width: 56px;
        height: 56px;
    }

    .lp-success-icon i {
        font-size: 1.75rem;
    }

    .lp-success-title {
        font-size: 1.25rem;
    }

    .lp-success-message {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .lp-success-close {
        padding: 0.875rem 1.5rem;
    }
}

