/* ============================================================
   Landing Page 2 - JunkShun Branded Styles
   Location: /start/css/landingPage2.css
   ============================================================ */

:root {
    --js-blue: #0b3d91;
    --js-blue-light: #0066cc;
    --js-blue-dark: #0a2d6e;
    --js-yellow: #FDB813;
    --js-yellow-dark: #e5a611;
    --js-green: #10b981;
    --js-red: #ef4444;
    --js-dark: #1e293b;
    --js-light: #f8fafc;
    --js-gray: #64748b;
    --js-gray-light: #e2e8f0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--js-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ---- Header ---- */
.lp2-header {
    background: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--js-gray-light);
}

.lp2-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lp2-logo-container img {
    height: 45px;
    margin-right: 10px;
}

.lp2-logo-text {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.lp2-logo-blue {
    color: var(--js-blue);
}

.lp2-logo-yellow {
    color: var(--js-yellow);
}

.lp2-highlight {
    color: #60a5fa;
}

/* ---- Hero Section ---- */
.lp2-hero {
    background: linear-gradient(135deg, #0a1628 0%, var(--js-blue) 100%);
    color: white;
    padding: 3.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.lp2-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lp2-hero .container {
    position: relative;
    z-index: 1;
}

.lp2-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lp2-hero-subheadline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.lp2-hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.lp2-hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.lp2-hero-badge i:first-child {
    color: var(--js-yellow);
}

/* ---- Hero Form ---- */
.lp2-hero-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lp2-hero-form h3 {
    color: var(--js-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lp2-form-subtitle {
    text-align: center;
    color: var(--js-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.lp2-hero-form .form-label {
    color: var(--js-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.lp2-hero-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--js-gray-light);
    border-radius: 8px;
}

.lp2-hero-form .form-control:focus {
    border-color: var(--js-blue);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.form-note {
    text-align: center;
    color: var(--js-gray);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ---- Primary Button ---- */
.lp2-btn-primary {
    background: var(--js-yellow);
    color: var(--js-dark);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s;
}

.lp2-btn-primary:hover {
    background: var(--js-yellow-dark);
    color: var(--js-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(253, 184, 19, 0.4);
}

/* ---- Trust Badges (below forms) ---- */
.lp2-trust-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    color: var(--js-gray);
    font-size: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lp2-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lp2-trust-badges i {
    color: var(--js-green);
}

/* ---- Trust Bar ---- */
.lp2-trust-bar {
    background: #f1f5f9;
    padding: 1rem 0;
    border-bottom: 1px solid var(--js-gray-light);
}

.lp2-trust-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--js-dark);
    padding: 0.25rem 0;
}

.lp2-trust-bar-item i {
    color: var(--js-blue);
}

/* ---- Section Base ---- */
.lp2-section {
    padding: 4.5rem 0;
}

.lp2-section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--js-dark);
}

.lp2-section-subtitle {
    font-size: 1.1rem;
    color: var(--js-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ---- Problem Section ---- */
.lp2-problem-section {
    background: #fef2f2;
}

.lp2-problem-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.lp2-problem-card i {
    font-size: 2.5rem;
    color: var(--js-red);
    margin-bottom: 1rem;
}

.lp2-problem-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--js-dark);
}

.lp2-problem-card p {
    color: var(--js-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.lp2-problem-stat {
    background: linear-gradient(135deg, var(--js-red) 0%, #dc2626 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.lp2-big-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.lp2-problem-stat p {
    margin-bottom: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ---- Comparison Section ---- */
.lp2-comparison-section {
    background: white;
}

.lp2-comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.lp2-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--js-blue);
    color: white;
    font-weight: 700;
    padding: 1rem 1.25rem;
}

.lp2-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--js-gray-light);
    align-items: center;
}

.lp2-comparison-row:last-child {
    border-bottom: none;
}

.lp2-highlight-row {
    background: #f0fdf4;
}

.lp2-check {
    color: var(--js-green);
    font-size: 1.25rem;
}

.lp2-cross {
    color: var(--js-red);
    font-size: 1.25rem;
}

.lp2-feature-badge {
    background: var(--js-green);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 0.5rem;
    letter-spacing: 0.02em;
}

/* ---- AI Callout ---- */
.lp2-ai-callout {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border-left: 4px solid var(--js-yellow);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2.5rem;
    max-width: 800px;
}

.lp2-ai-callout h4 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.lp2-ai-callout p {
    color: #78350f;
    margin: 0;
    line-height: 1.6;
}

/* ---- Platform Section ---- */
.lp2-platform-section {
    background: #f0f7ff;
}

.lp2-platform-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    font-size: 0.9rem;
}

.lp2-platform-pill i {
    font-size: 1.4rem;
}

.lp2-platform-pill-accent {
    background: var(--js-blue);
    color: white;
}

.lp2-platform-pill-accent i {
    color: var(--js-yellow);
}

.lp2-platform-how {
    color: var(--js-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ---- How It Works ---- */
.lp2-how-it-works {
    background: var(--js-light);
}

.lp2-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.lp2-step-number {
    width: 60px;
    height: 60px;
    background: var(--js-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.lp2-step-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--js-dark);
}

.lp2-step-card p {
    color: var(--js-gray);
    margin-bottom: 0;
}

/* ---- Stats Section ---- */
.lp2-stats-section {
    background: linear-gradient(135deg, var(--js-blue) 0%, var(--js-blue-dark) 100%);
    color: white;
    padding: 3.5rem 0;
}

.lp2-stat-box {
    text-align: center;
    padding: 1.5rem;
}

.lp2-stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--js-yellow);
}

.lp2-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ---- Pricing Section ---- */
.lp2-pricing-section {
    background: white;
}

.lp2-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--js-gray-light);
}

.lp2-pricing-card::before {
    content: 'SIMPLE PRICING';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--js-yellow);
    color: var(--js-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.lp2-pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--js-dark);
    line-height: 1;
}

.lp2-pricing-price span {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--js-gray);
}

.lp2-pricing-after {
    color: var(--js-gray);
    margin-bottom: 1.5rem;
}

.lp2-pricing-features {
    text-align: left;
    margin: 1.5rem 0;
}

.lp2-pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.lp2-pricing-features li:last-child {
    border-bottom: none;
}

.lp2-pricing-features i {
    color: var(--js-green);
}

.lp2-pricing-note {
    color: var(--js-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ---- FAQ Section ---- */
.lp2-faq-section {
    background: var(--js-light);
}

.lp2-faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lp2-faq-question {
    font-weight: 700;
    color: var(--js-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.lp2-faq-question i {
    color: var(--js-blue);
    margin-top: 0.2rem;
}

.lp2-faq-answer {
    color: var(--js-gray);
    padding-left: 1.75rem;
    margin-bottom: 0;
}

/* ---- Final CTA ---- */
.lp2-final-cta {
    background: linear-gradient(135deg, #0a1628 0%, var(--js-blue) 100%);
    color: white;
    padding: 4.5rem 0;
    text-align: center;
}

.lp2-final-cta h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.lp2-final-cta-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 2rem auto 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lp2-final-cta-form .form-label {
    color: var(--js-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.lp2-final-cta-form .form-control {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--js-gray-light);
    border-radius: 8px;
}

.lp2-final-cta-form .form-control:focus {
    border-color: var(--js-blue);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

/* ---- Footer ---- */
.lp2-footer {
    background: var(--js-blue-dark);
    color: white;
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.lp2-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.lp2-footer a:hover {
    color: white;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .lp2-hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .lp2-hero-subheadline {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .lp2-hero-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lp2-hero {
        padding: 2.5rem 0 3rem;
    }

    .lp2-hero h1 {
        font-size: 1.75rem;
    }

    .lp2-hero-form {
        padding: 1.5rem;
    }

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

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

    .lp2-comparison-header,
    .lp2-comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.85rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .lp2-feature-badge {
        display: none;
    }

    .lp2-stat-number {
        font-size: 2rem;
    }

    .lp2-big-number {
        font-size: 2.5rem;
    }

    .lp2-pricing-price {
        font-size: 3rem;
    }

    .lp2-final-cta h2 {
        font-size: 1.75rem;
    }

    .lp2-final-cta-form {
        padding: 1.5rem;
    }

    .lp2-ai-callout {
        padding: 1.25rem;
    }

    .lp2-trust-bar-item {
        font-size: 0.8rem;
    }
}

/* ---- Social Proof Section ---- */
.lp2-proof-section {
    background: white;
}

.lp2-casestudy-box {
    max-width: 900px;
    background: var(--js-light);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    border: 1px solid var(--js-gray-light);
    border-left: 4px solid var(--js-blue);
}

.lp2-casestudy-label {
    font-weight: 700;
    color: var(--js-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.lp2-casestudy-text {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.lp2-casestudy-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp2-casestudy-stat {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid var(--js-gray-light);
}

.lp2-casestudy-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--js-blue);
    line-height: 1;
}

.lp2-casestudy-stat-label {
    font-size: 0.75rem;
    color: var(--js-gray);
    font-weight: 600;
    margin-top: 0.25rem;
}

.lp2-casestudy-link {
    color: var(--js-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.lp2-casestudy-link:hover {
    color: var(--js-blue-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .lp2-casestudy-box {
        padding: 1.5rem;
    }

    .lp2-casestudy-stats {
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }

    .lp2-casestudy-stat {
        flex: 1;
    }
}

/* ---- Founder's Note Section ---- */
.lp2-founder-section {
    background: var(--js-light);
}

.lp2-founder-box {
    max-width: 750px;
    background: white;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--js-blue);
}

.lp2-founder-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--js-dark);
    margin-bottom: 1.25rem;
}

.lp2-founder-box p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lp2-founder-box p:last-of-type {
    margin-bottom: 1.5rem;
}

.lp2-founder-sig {
    border-top: 1px solid var(--js-gray-light);
    padding-top: 1rem;
    color: var(--js-dark);
}

.lp2-founder-sig span {
    color: var(--js-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lp2-founder-box {
        padding: 1.5rem;
    }
}