/* ============================================================
   TURK LABEL — Landing Page Styles (scoped to #page-home)
   Adapted from 10 mayıs web sitesi (Amazon SP-API approved)
   All selectors scoped to #page-home to avoid SPA conflicts
   ============================================================ */

/* CSS Variables — scoped so they don't override dark SPA theme */
#page-home {
    --lp-primary:       #E31837;
    --lp-primary-dark:  #B71430;
    --lp-primary-light: #FF4D6A;
    --lp-secondary:     #1A1A2E;
    --lp-dark:          #0F0F1A;
    --lp-light:         #FFFFFF;
    --lp-gray:          #6B7280;
    --lp-gray-light:    #F3F4F6;
    --lp-success:       #10B981;
    --lp-gradient:      linear-gradient(135deg, #E31837 0%, #FF4D6A 100%);
    --lp-gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    background: #fff;
    color: #0F0F1A;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700&display=swap');

/* ── Buttons ── */
#page-home .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}
#page-home .lp-btn-primary {
    background: var(--lp-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(227,24,55,0.35);
}
#page-home .lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227,24,55,0.45);
}
#page-home .lp-btn-outline {
    background: transparent;
    color: var(--lp-dark);
    border: 2px solid var(--lp-dark);
}
#page-home .lp-btn-outline:hover {
    background: var(--lp-dark);
    color: white;
}
#page-home .lp-btn-white {
    background: white;
    color: var(--lp-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
#page-home .lp-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ── Layout Helpers ── */
#page-home .lp-container { max-width: 1300px; margin: 0 auto; }
#page-home section { padding: 6rem 2rem; }

#page-home .lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
#page-home .lp-section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(227,24,55,0.1);
    color: var(--lp-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(227,24,55,0.2);
}
#page-home .lp-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--lp-dark);
}
#page-home .lp-section-header p {
    color: var(--lp-gray);
    font-size: 1.1rem;
}

/* ── Hero ── */
#page-home .lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #fff 0%, var(--lp-gray-light) 100%);
    position: relative;
    overflow: hidden;
}
#page-home .lp-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(227,24,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}
#page-home .lp-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
#page-home .lp-hero-content { position: relative; z-index: 2; }
#page-home .lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(227,24,55,0.1);
    border: 1px solid rgba(227,24,55,0.2);
    border-radius: 50px;
    color: var(--lp-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
#page-home .lp-hero-badge::before { content: '🚀'; }
#page-home .lp-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--lp-dark);
}
#page-home .lp-hero-content h1 span {
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#page-home .lp-hero-content p {
    font-size: 1.2rem;
    color: var(--lp-gray);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
}
#page-home .lp-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
#page-home .lp-hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
#page-home .lp-stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--lp-primary);
    line-height: 1;
}
#page-home .lp-stat-label {
    color: var(--lp-gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}
#page-home .lp-hero-visual { position: relative; }
#page-home .lp-hero-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
}
#page-home .lp-hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-gray-light);
}
#page-home .lp-hero-card-icon {
    width: 50px;
    height: 50px;
    background: var(--lp-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
#page-home .lp-hero-card-title { font-weight: 700; font-size: 1.1rem; color: var(--lp-dark); }
#page-home .lp-hero-card-subtitle { color: var(--lp-gray); font-size: 0.85rem; }
#page-home .lp-process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--lp-gray-light);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}
#page-home .lp-step-num {
    width: 32px; height: 32px;
    background: var(--lp-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
#page-home .lp-step-text { font-weight: 500; color: var(--lp-dark); font-size: 0.95rem; }
#page-home .lp-floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: lp-float 3s ease-in-out infinite;
}
#page-home .lp-floating-badge.badge-1 { top: -20px; right: -30px; }
#page-home .lp-floating-badge.badge-2 { bottom: 40px; left: -40px; animation-delay: 1.5s; }
@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
#page-home .lp-badge-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
#page-home .lp-badge-icon.success { background: rgba(16,185,129,0.1); color: var(--lp-success); }
#page-home .lp-badge-icon.primary { background: rgba(227,24,55,0.1); color: var(--lp-primary); }
#page-home .lp-badge-text { font-weight: 600; font-size: 0.85rem; color: var(--lp-dark); }
#page-home .lp-badge-sub { font-size: 0.75rem; color: var(--lp-gray); }

/* ── Pricing ── */
#page-home .lp-pricing { background: var(--lp-gray-light); }
#page-home .lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
#page-home .lp-pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}
#page-home .lp-pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
#page-home .lp-pricing-card.featured {
    border-color: var(--lp-primary);
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(227,24,55,0.15);
}
#page-home .lp-pricing-card.featured:hover { transform: scale(1.05) translateY(-5px); }
#page-home .lp-pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
}
#page-home .lp-pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--lp-dark); }
#page-home .lp-pricing-price { margin: 1.5rem 0; }
#page-home .lp-pricing-price .amount { font-size: 3.5rem; font-weight: 800; color: var(--lp-primary); line-height: 1; }
#page-home .lp-pricing-price .currency { font-size: 1.5rem; font-weight: 600; color: var(--lp-primary); vertical-align: super; }
#page-home .lp-pricing-price .period { font-size: 1rem; color: var(--lp-gray); }
#page-home .lp-pricing-desc {
    color: var(--lp-gray); font-size: 0.95rem;
    margin-bottom: 1.5rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-gray-light);
}
#page-home .lp-pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
#page-home .lp-pricing-features li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 0; color: var(--lp-dark); font-size: 0.95rem;
}
#page-home .lp-pricing-features li::before {
    content: '✓';
    width: 24px; height: 24px;
    background: rgba(16,185,129,0.1);
    color: var(--lp-success);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

/* ── Pricing Extra ── */
#page-home .lp-pricing-card .lp-pkg-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
#page-home .lp-pricing-card .lp-pkg-credits { font-size: 1rem; color: var(--lp-gray); margin-bottom: 0.25rem; }
#page-home .lp-pricing-card .lp-pkg-bonus { font-size: 0.85rem; color: var(--lp-success); font-weight: 600; margin-bottom: 0.5rem; }
#page-home .lp-pricing-card .lp-pkg-per { font-size: 0.8rem; color: var(--lp-gray); margin-top: 0.25rem; }
#page-home .lp-pricing-card.free .lp-pricing-price .amount { font-size: 2rem; }
#page-home .lp-pkg-features { list-style: none; text-align: left; margin: 1rem 0 1.5rem; padding: 0; }
#page-home .lp-pkg-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.88rem; color: var(--lp-dark); border-bottom: 1px solid #f3f4f6; }
#page-home .lp-pkg-features li:last-child { border-bottom: none; }
#page-home .lp-pkg-features li.disabled { color: var(--lp-gray); text-decoration: line-through; opacity: 0.6; }

/* ── Custom Package ── */
#page-home .lp-custom-pkg {
    background: white; border-radius: 20px; padding: 2.5rem;
    max-width: 600px; margin: 2.5rem auto 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--lp-gray-light);
    text-align: center;
}
#page-home .lp-custom-pkg h3 { font-size: 1.4rem; color: var(--lp-dark); margin-bottom: 0.5rem; }
#page-home .lp-custom-pkg p { color: var(--lp-gray); font-size: 0.95rem; margin-bottom: 1.5rem; }
#page-home .lp-custom-input-row { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
#page-home .lp-custom-input-row input {
    width: 120px; padding: 0.75rem 1rem; text-align: center;
    border: 2px solid var(--lp-gray-light); border-radius: 10px;
    font-size: 1.3rem; font-weight: 700; color: var(--lp-dark);
    font-family: 'Poppins', sans-serif;
}
#page-home .lp-custom-input-row input:focus { border-color: var(--lp-primary); outline: none; }
#page-home .lp-custom-summary {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    background: var(--lp-gray-light); border-radius: 12px; padding: 1.25rem;
    margin-bottom: 1.5rem;
}
#page-home .lp-custom-summary-item { text-align: center; }
#page-home .lp-custom-summary-item .val { font-size: 1.4rem; font-weight: 700; color: var(--lp-primary); }
#page-home .lp-custom-summary-item .lbl { font-size: 0.75rem; color: var(--lp-gray); margin-top: 0.2rem; }
#page-home .lp-custom-summary-item .val.green { color: var(--lp-success); }

/* ── Comparison Table ── */
#page-home .lp-compare-wrap { overflow-x: auto; margin-top: 3rem; }
#page-home .lp-compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
#page-home .lp-compare-table th {
    padding: 1rem 0.75rem; text-align: center; font-weight: 700;
    background: var(--lp-dark); color: white; font-size: 0.85rem;
}
#page-home .lp-compare-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
#page-home .lp-compare-table th:last-child { border-radius: 0 12px 0 0; }
#page-home .lp-compare-table th.highlight { background: var(--lp-primary); }
#page-home .lp-compare-table td { padding: 0.75rem; text-align: center; border-bottom: 1px solid var(--lp-gray-light); }
#page-home .lp-compare-table td:first-child { text-align: left; font-weight: 500; color: var(--lp-dark); }
#page-home .lp-compare-table tr:hover td { background: rgba(227,24,55,0.03); }
#page-home .lp-compare-table tr:last-child td { border-bottom: none; }
#page-home .lp-compare-table td.highlight { background: rgba(227,24,55,0.05); font-weight: 600; }

/* ── Pricing card extras ── */
#page-home .lp-pkg-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--lp-dark); }
#page-home .lp-pkg-credits { font-size: 1rem; font-weight: 700; color: var(--lp-primary); margin: 0.4rem 0; }
#page-home .lp-pkg-features { list-style: none; padding: 0; margin: 1.2rem 0; text-align: left; }
#page-home .lp-pkg-features li { padding: 0.35rem 0; font-size: 0.88rem; color: #555; border-bottom: 1px solid #f0f0f0; }
#page-home .lp-pkg-features li:last-child { border-bottom: none; }
#page-home .lp-pricing-card.featured .lp-pkg-name { color: white; }
#page-home .lp-pricing-card.featured .lp-pkg-credits { color: rgba(255,255,255,0.9); }
#page-home .lp-pricing-card.featured .lp-pkg-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.15); }
/* Custom summary val/lbl */
#page-home .lp-custom-summary-val { font-size: 1.6rem; font-weight: 800; color: var(--lp-primary); }
#page-home .lp-custom-summary-lbl { font-size: 0.8rem; color: #888; margin-top: 0.2rem; }

/* ── Payment Modal ── */
.lp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.lp-modal-overlay.active { display: flex; }
.lp-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    animation: lpModalIn 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: #0f0f1a;
}
@keyframes lpModalIn { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
.lp-modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 16px;
}
.lp-modal-title { font-size: 1.4rem; font-weight: 800; color: #0f0f1a; }
.lp-modal-close {
    width: 36px; height: 36px;
    border: none; background: #f3f4f6;
    border-radius: 50%; cursor: pointer;
    font-size: 20px; color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.lp-modal-close:hover { background: #e5e7eb; color: #0f0f1a; }
.lp-modal-body { padding: 24px; }
.lp-modal-plan-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #f0f0f0;
}
.lp-modal-plan-name { font-weight: 700; color: #0f0f1a; font-size: 1rem; }
.lp-modal-plan-price { font-size: 1.4rem; font-weight: 800; color: #E31837; }
.lp-modal-form-group { margin-bottom: 1rem; }
.lp-modal-form-group label { display: block; color: #6b7280; font-size: 0.82rem; margin-bottom: 0.4rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.lp-modal-form-group input {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb; border-radius: 10px;
    font-size: 0.95rem; font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
    outline: none;
}
.lp-modal-form-group input:focus { border-color: #E31837; }
.lp-modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-card-input-wrap { position: relative; }
.lp-card-input-wrap input { padding-right: 85px; }
.lp-card-icons { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; }
.lp-modal-secure {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; font-size: 0.78rem; color: #6b7280; margin-top: 14px;
}
.lp-modal-secure svg { color: #10b981; flex-shrink: 0; }
@media (max-width: 480px) {
    .lp-modal-form-row { grid-template-columns: 1fr; }
}

/* ── Audience ── */
#page-home .lp-audience { background: var(--lp-gray-light); }
#page-home .lp-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
#page-home .lp-audience-card {
    background: white; padding: 2.5rem;
    border-radius: 20px; text-align: center;
    transition: all 0.3s ease; border: 2px solid transparent;
}
#page-home .lp-audience-card:hover {
    border-color: var(--lp-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(227,24,55,0.1);
}
#page-home .lp-audience-icon {
    width: 80px; height: 80px;
    background: var(--lp-gradient);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(227,24,55,0.2);
}
#page-home .lp-audience-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--lp-dark); }
#page-home .lp-audience-card p { color: var(--lp-gray); font-size: 0.95rem; line-height: 1.7; }

/* ── How It Works ── */
#page-home .lp-how-it-works {
    background: var(--lp-gradient-dark);
    color: white; position: relative; overflow: hidden;
}
#page-home .lp-how-it-works .lp-section-label { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; }
#page-home .lp-how-it-works .lp-section-header h2 { color: white; }
#page-home .lp-how-it-works .lp-section-header p { color: rgba(255,255,255,0.7); }
#page-home .lp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
#page-home .lp-step-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem; border-radius: 20px; text-align: center;
}
#page-home .lp-step-number {
    width: 70px; height: 70px;
    background: var(--lp-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(227,24,55,0.4);
}
#page-home .lp-step-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
#page-home .lp-step-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }

/* ── Features ── */
#page-home .lp-features { background: white; }
#page-home .lp-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
#page-home .lp-feature-card {
    background: var(--lp-gray-light);
    padding: 2rem; border-radius: 16px;
    transition: all 0.3s ease; border: 2px solid transparent;
}
#page-home .lp-feature-card:hover {
    background: white;
    border-color: rgba(227,24,55,0.2);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
#page-home .lp-feature-icon {
    width: 55px; height: 55px;
    background: var(--lp-gradient);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(227,24,55,0.2);
}
#page-home .lp-feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--lp-dark); }
#page-home .lp-feature-card p { color: var(--lp-gray); font-size: 0.875rem; line-height: 1.6; }

/* ── Why Choose ── */
#page-home .lp-why-choose { background: white; }
#page-home .lp-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
#page-home .lp-why-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 2rem; color: var(--lp-dark); }
#page-home .lp-why-list { list-style: none; }
#page-home .lp-why-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem; padding: 1.25rem;
    background: var(--lp-gray-light); border-radius: 12px;
    transition: all 0.3s ease;
}
#page-home .lp-why-list li:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateX(5px); }
#page-home .lp-why-check {
    width: 28px; height: 28px;
    background: var(--lp-gradient); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.8rem; margin-top: 2px;
}
#page-home .lp-why-text h4 { font-size: 1.05rem; margin-bottom: 0.25rem; color: var(--lp-dark); }
#page-home .lp-why-text p { color: var(--lp-gray); font-size: 0.9rem; }
#page-home .lp-why-visual {
    background: var(--lp-gray-light);
    border-radius: 24px; padding: 3rem;
    box-shadow: 0 25px 80px rgba(0,0,0,0.08);
}
#page-home .lp-stats-big { text-align: center; margin-bottom: 2rem; }
#page-home .lp-stats-big-number {
    font-size: 4.5rem; font-weight: 900;
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
#page-home .lp-stats-big-label { color: var(--lp-gray); font-size: 1.1rem; margin-top: 0.5rem; }
#page-home .lp-mini-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
#page-home .lp-mini-stat { background: white; padding: 1.25rem; border-radius: 12px; text-align: center; }
#page-home .lp-mini-stat-num { font-size: 1.75rem; font-weight: 700; color: var(--lp-primary); }
#page-home .lp-mini-stat-label { font-size: 0.8rem; color: var(--lp-gray); }

/* ── Security ── */
#page-home .lp-security { background: var(--lp-gray-light); }
#page-home .lp-security-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
#page-home .lp-security-card {
    text-align: center; padding: 2rem 1.5rem;
    background: white; border-radius: 16px; transition: all 0.3s ease;
}
#page-home .lp-security-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.08); transform: translateY(-3px); }
#page-home .lp-security-icon {
    width: 65px; height: 65px;
    background: var(--lp-gray-light); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
#page-home .lp-security-card h4 { font-size: 0.95rem; color: var(--lp-dark); margin-bottom: 0.5rem; }
#page-home .lp-security-card p { color: var(--lp-gray); font-size: 0.8rem; line-height: 1.5; }

/* ── FAQ ── */
#page-home .lp-faq { background: white; }
#page-home .lp-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
#page-home .lp-faq-item { background: var(--lp-gray-light); padding: 1.75rem; border-radius: 16px; border-left: 4px solid var(--lp-primary); }
#page-home .lp-faq-item h4 { font-size: 1rem; color: var(--lp-dark); margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; }
#page-home .lp-faq-item h4::before {
    content: '?';
    width: 24px; height: 24px;
    background: var(--lp-gradient); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
#page-home .lp-faq-item p { color: var(--lp-gray); font-size: 0.9rem; line-height: 1.6; padding-left: 2rem; }

/* ── Amazon Connect Section ── */
#page-home .lp-amazon-connect {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
}
#page-home .lp-connect-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}
#page-home .lp-connect-left { color: white; }
#page-home .lp-connect-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,153,0,0.15); padding: 0.5rem 1rem;
    border-radius: 20px; font-size: 0.85rem; margin-bottom: 1.5rem;
    border: 1px solid rgba(255,153,0,0.3);
}
#page-home .lp-connect-left h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
#page-home .lp-connect-left h2 span { color: #E31837; }
#page-home .lp-connect-left p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
#page-home .lp-connect-feature { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
#page-home .lp-connect-feature-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
#page-home .lp-connect-feature span { color: rgba(255,255,255,0.9); }
#page-home .lp-connect-card {
    background: white; border-radius: 20px; padding: 2rem;
    text-align: center; box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
#page-home .lp-connect-logo { height: 55px; border-radius: 10px; margin-bottom: 1.5rem; }
#page-home .lp-connect-card h3 { font-size: 1.4rem; color: #0F0F1A; margin-bottom: 0.5rem; font-weight: 700; }
#page-home .lp-connect-card p { color: #6B7280; margin-bottom: 1.5rem; font-size: 0.9rem; }
#page-home .lp-amazon-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%; padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #FF9900 0%, #FFAD33 100%);
    color: #111; border: none; border-radius: 10px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    text-decoration: none; box-shadow: 0 4px 15px rgba(255,153,0,0.4);
    transition: all 0.3s;
}
#page-home .lp-amazon-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,153,0,0.5); }
#page-home .lp-marketplace-tags { display: flex; justify-content: center; gap: 0.4rem; margin-top: 0.8rem; }
#page-home .lp-marketplace-tags span {
    padding: 0.2rem 0.6rem; background: #F3F4F6;
    border-radius: 15px; font-size: 0.7rem; color: #6B7280;
}
#page-home .lp-connect-divider { margin: 1.2rem 0; display: flex; align-items: center; gap: 0.8rem; color: #6B7280; font-size: 0.8rem; }
#page-home .lp-connect-divider div { flex: 1; height: 1px; background: #e5e7eb; }
#page-home .lp-connect-steps { text-align: left; background: #F3F4F6; border-radius: 10px; padding: 1rem; }
#page-home .lp-connect-step {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 0.6rem; font-size: 0.8rem; color: #6B7280;
}
#page-home .lp-connect-step:last-child { margin-bottom: 0; }
#page-home .lp-connect-step-num {
    width: 20px; height: 20px;
    background: linear-gradient(135deg, #E31837, #FF4D6A);
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
#page-home .lp-secure-note {
    display: flex; align-items: center; gap: 0.4rem;
    justify-content: center; color: #6B7280; font-size: 0.75rem; margin-top: 0.8rem;
}

/* ── CTA / Contact ── */
#page-home .lp-cta {
    background: var(--lp-gradient-dark);
    text-align: center; position: relative; overflow: hidden;
    padding: 6rem 2rem;
}
#page-home .lp-cta::before {
    content: '';
    position: absolute; top: -50%; left: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(227,24,55,0.15) 0%, transparent 60%);
    pointer-events: none;
}
#page-home .lp-cta-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
#page-home .lp-cta h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: white; margin-bottom: 1rem; }
#page-home .lp-cta > .lp-cta-container > p { color: rgba(255,255,255,0.8); font-size: 1.25rem; margin-bottom: 2.5rem; }
#page-home .lp-contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; margin-top: 3rem; text-align: left;
}
#page-home .lp-contact-info { background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 16px; }
#page-home .lp-contact-info h3 { color: white; margin-bottom: 1.5rem; font-size: 1.5rem; }
#page-home .lp-contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
#page-home .lp-contact-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.8); }
#page-home .lp-contact-icon {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
#page-home .lp-contact-item a { color: white; text-decoration: none; font-weight: 500; }
#page-home .lp-contact-form-box { background: white; padding: 2rem; border-radius: 16px; }
#page-home .lp-contact-form-box h3 { color: var(--lp-dark); margin-bottom: 1.5rem; font-size: 1.5rem; }
#page-home .lp-contact-form { display: flex; flex-direction: column; gap: 1rem; }
#page-home .lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#page-home .lp-form-group { display: flex; flex-direction: column; }
#page-home .lp-form-group label { color: #6B7280; font-size: 0.85rem; margin-bottom: 0.5rem; font-weight: 500; }
#page-home .lp-form-group input,
#page-home .lp-form-group select,
#page-home .lp-form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb; border-radius: 8px;
    font-size: 0.95rem; font-family: 'Poppins', sans-serif;
    background: white; color: #0F0F1A;
}
#page-home .lp-form-group textarea { resize: vertical; }

/* ── Footer ── */
#page-home .lp-footer { background: var(--lp-dark); padding: 4rem 2rem 2rem; }
#page-home .lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
#page-home .lp-footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 300px; line-height: 1.7; margin-top: 1rem; }
#page-home .lp-footer-brand .lp-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
#page-home .lp-footer-brand .lp-logo img { height: 50px; border-radius: 8px; }
#page-home .lp-footer-column h4 { color: white; font-size: 1rem; margin-bottom: 1.5rem; }
#page-home .lp-footer-column ul { list-style: none; padding: 0; }
#page-home .lp-footer-column li { margin-bottom: 0.75rem; }
#page-home .lp-footer-column a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; font-size: 0.9rem; }
#page-home .lp-footer-column a:hover { color: var(--lp-primary); }
#page-home .lp-footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.5); font-size: 0.85rem;
}
#page-home .lp-footer-links { display: flex; gap: 2rem; }
#page-home .lp-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
#page-home .lp-footer-links a:hover { color: var(--lp-primary); }

/* ── Payment Modal ── */
.lp-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 2000;
    align-items: center; justify-content: center; padding: 20px;
}
.lp-modal-overlay.active { display: flex; }
.lp-modal {
    background: white; border-radius: 20px;
    width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
}
.lp-modal-header {
    padding: 24px 24px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.lp-modal-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #0F0F1A; }
.lp-modal-close {
    width: 36px; height: 36px; border: none;
    background: #F3F4F6; border-radius: 50%;
    cursor: pointer; font-size: 24px; color: #6B7280;
    display: flex; align-items: center; justify-content: center;
}
.lp-modal-close:hover { background: #e5e7eb; }
.lp-modal-body { padding: 24px; }
.lp-selected-plan {
    background: #F3F4F6; border-radius: 12px;
    padding: 16px 20px; margin-bottom: 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.lp-selected-plan-name { font-weight: 600; color: #0F0F1A; }
.lp-selected-plan-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #E31837; }
.lp-pform-group { margin-bottom: 1rem; }
.lp-pform-group label { display: block; color: #6B7280; font-size: 0.85rem; margin-bottom: 0.5rem; font-weight: 500; }
.lp-pform-group input {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb; border-radius: 8px;
    font-size: 0.95rem; font-family: 'Poppins', sans-serif;
}
.lp-pform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-secure-badge { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: #6B7280; margin-top: 16px; }

/* ── OAuth Modal ── */
@keyframes lp-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes lp-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes lp-modal-in { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.lp-oauth-modal .lp-modal { animation: lp-modal-in 0.3s ease; max-width: 450px; }

/* ── Responsive ── */
@media (max-width: 1200px) {
    #page-home .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    #page-home .lp-security-grid { grid-template-columns: repeat(3, 1fr); }
    #page-home .lp-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    #page-home .lp-pricing-card.featured { transform: none; }
    #page-home .lp-pricing-card.featured:hover { transform: translateY(-5px); }
}
@media (max-width: 1024px) {
    #page-home .lp-hero-container { grid-template-columns: 1fr; text-align: center; }
    #page-home .lp-hero-content p { max-width: 100%; margin: 0 auto 2rem; }
    #page-home .lp-hero-buttons { justify-content: center; }
    #page-home .lp-hero-stats { justify-content: center; }
    #page-home .lp-hero-visual { max-width: 500px; margin: 2rem auto 0; }
    #page-home .lp-audience-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    #page-home .lp-steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    #page-home .lp-why-grid { grid-template-columns: 1fr; }
    #page-home .lp-faq-grid { grid-template-columns: 1fr; }
    #page-home .lp-footer-grid { grid-template-columns: repeat(2, 1fr); }
    #page-home .lp-connect-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    #page-home .lp-hero-content h1 { font-size: 2.5rem; }
    #page-home .lp-hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
    #page-home .lp-features-grid { grid-template-columns: 1fr; }
    #page-home .lp-security-grid { grid-template-columns: 1fr 1fr; }
    #page-home .lp-footer-grid { grid-template-columns: 1fr; text-align: center; }
    #page-home .lp-footer-bottom { flex-direction: column; gap: 1rem; }
    #page-home .lp-cta h2 { font-size: 2rem; }
    #page-home .lp-contact-wrapper { grid-template-columns: 1fr; }
    #page-home .lp-form-row { grid-template-columns: 1fr; }
    #page-home .lp-pform-row { grid-template-columns: 1fr; }
}
