.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.dark .lp-header {
    background: rgba(15, 23, 42, 0.85);
}
.lp-header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.lp-logo img {
    height: 30px;
    width: auto;
}
.lp-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.lp-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lp-nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius);
    transition: all 0.15s ease;
    text-decoration: none;
}
.lp-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}
.lp-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}
.lp-mobile-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.lp-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 8px 24px 16px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    gap: 2px;
}
.lp-mobile-menu.open {
    display: flex;
}
.lp-mobile-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 12px;
    border-radius: var(--radius);
    transition: all 0.15s ease;
    text-decoration: none;
}
.lp-mobile-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.lp-mobile-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}
.lp-hero {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.lp-hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16,185,129,.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.dark .lp-hero-glow {
    background: radial-gradient(ellipse, rgba(16,185,129,.08) 0%, transparent 70%);
}
.lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    margin-bottom: 20px;
}
.lp-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.lp-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 480px;
}
.lp-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.lp-hero-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
}
.lp-hero-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.lp-hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}
.lp-dots {
    display: flex;
    gap: 5px;
}
.lp-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
}
.lp-dots span:first-child { background: #ef4444; }
.lp-dots span:nth-child(2) { background: #f59e0b; }
.lp-dots span:last-child { background: #10b981; }
.lp-hero-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.lp-hero-card-body {
    padding: 8px;
}
.lp-channel-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    transition: background 0.15s ease;
}
.lp-channel:hover {
    background: var(--bg-tertiary);
}
.lp-channel.active {
    background: var(--accent-light);
}
.lp-channel-icon {
    width: 42px;
    height: 28px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.lp-channel-icon.live {
    background: var(--danger);
    color: #fff;
    font-size: 9px;
    animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.lp-channel-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.lp-channel-info {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}
.lp-section-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px;
}
.lp-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.lp-section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.lp-section-header p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.lp-features {
    padding: 72px 0;
    background: var(--bg-tertiary);
}
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 14px;
}
.lp-feature-card {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}
.lp-feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
    transform: translateY(-2px);
}
.lp-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    margin-bottom: 14px;
}
.lp-feature-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.lp-feature-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.lp-how {
    padding: 72px 0;
}
.lp-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.lp-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 16px;
}
.lp-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.lp-step h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.lp-step p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.lp-step-divider {
    width: 48px;
    height: 2px;
    background: var(--border-color);
    margin-top: 22px;
    flex-shrink: 0;
}
.lp-stats {
    padding: 56px 0;
    background: var(--bg-tertiary);
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 12px;
}
.lp-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.lp-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.lp-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}
.lp-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding: 40px 0 0;
    background: var(--bg-secondary);
}
.lp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
}
.lp-footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 240px;
}
.lp-footer-links {
    display: flex;
    gap: 48px;
}
.lp-footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.lp-footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 3px 0;
    transition: color 0.15s ease;
    text-decoration: none;
}
.lp-footer-col a:hover {
    color: var(--text-primary);
}
.lp-footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.lp-features-grid .lp-feature-card:nth-child(2).fade-up { transition-delay: 0.05s; }
.lp-features-grid .lp-feature-card:nth-child(3).fade-up { transition-delay: 0.10s; }
.lp-features-grid .lp-feature-card:nth-child(4).fade-up { transition-delay: 0.15s; }
.lp-features-grid .lp-feature-card:nth-child(5).fade-up { transition-delay: 0.20s; }
.lp-features-grid .lp-feature-card:nth-child(6).fade-up { transition-delay: 0.25s; }
.lp-features-grid .lp-feature-card:nth-child(7).fade-up { transition-delay: 0.30s; }
.lp-features-grid .lp-feature-card:nth-child(8).fade-up { transition-delay: 0.35s; }
.lp-stats-grid .lp-stat:nth-child(2).fade-up { transition-delay: 0.08s; }
.lp-stats-grid .lp-stat:nth-child(3).fade-up { transition-delay: 0.16s; }
.lp-stats-grid .lp-stat:nth-child(4).fade-up { transition-delay: 0.24s; }
.lp-gradient-text {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.lp-badge-live {
    background: rgba(239,68,68,.1) !important;
    color: #ef4444 !important;
}
.lp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: livePulse 2s ease infinite;
}
.lp-hero-trust-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.lp-trust-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.lp-trust-mini svg {
    color: var(--accent);
    flex-shrink: 0;
}
.lp-btn-glow {
    box-shadow: 0 0 20px rgba(16,185,129,.25);
    transition: box-shadow 0.3s ease;
}
.lp-btn-glow:hover {
    box-shadow: 0 0 30px rgba(16,185,129,.35);
}
.lp-hero-float-badge {
    position: absolute;
    bottom: -12px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.lp-hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.lp-brands {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.lp-brands-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.lp-brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.lp-brand-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}

.lp-trust {
    padding: 72px 0;
}
.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 14px;
}
.lp-trust-card {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}
.lp-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.lp-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.lp-trust-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.lp-trust-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.lp-testimonials {
    padding: 72px 0;
    background: var(--bg-tertiary);
}
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 14px;
}
.lp-testimonial-card {
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}
.lp-testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.lp-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.lp-testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.lp-testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.lp-testimonial-role {
    font-size: 11px;
    color: var(--text-muted);
}

.lp-cta {
    padding: 72px 0;
}
.lp-cta-inner {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(5,150,105,.04));
    border: 1px solid rgba(16,185,129,.2);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.lp-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(16,185,129,.06), transparent 50%);
    pointer-events: none;
}
.lp-cta-inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
}
.lp-cta-inner p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 24px;
    position: relative;
}
.lp-cta-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.lp-features-grid .lp-feature-card:nth-child(2).fade-up { transition-delay: 0.05s; }
.lp-features-grid .lp-feature-card:nth-child(3).fade-up { transition-delay: 0.10s; }
.lp-features-grid .lp-feature-card:nth-child(4).fade-up { transition-delay: 0.15s; }
.lp-features-grid .lp-feature-card:nth-child(5).fade-up { transition-delay: 0.20s; }
.lp-features-grid .lp-feature-card:nth-child(6).fade-up { transition-delay: 0.25s; }
.lp-features-grid .lp-feature-card:nth-child(7).fade-up { transition-delay: 0.30s; }
.lp-features-grid .lp-feature-card:nth-child(8).fade-up { transition-delay: 0.35s; }
.lp-stats-grid .lp-stat:nth-child(2).fade-up { transition-delay: 0.08s; }
.lp-stats-grid .lp-stat:nth-child(3).fade-up { transition-delay: 0.16s; }
.lp-stats-grid .lp-stat:nth-child(4).fade-up { transition-delay: 0.24s; }
.lp-trust-grid .lp-trust-card:nth-child(2).fade-up { transition-delay: 0.06s; }
.lp-trust-grid .lp-trust-card:nth-child(3).fade-up { transition-delay: 0.12s; }
.lp-trust-grid .lp-trust-card:nth-child(4).fade-up { transition-delay: 0.18s; }
.lp-trust-grid .lp-trust-card:nth-child(5).fade-up { transition-delay: 0.24s; }
.lp-trust-grid .lp-trust-card:nth-child(6).fade-up { transition-delay: 0.30s; }
.lp-testimonials-grid .lp-testimonial-card:nth-child(2).fade-up { transition-delay: 0.08s; }
.lp-testimonials-grid .lp-testimonial-card:nth-child(3).fade-up { transition-delay: 0.16s; }

@media (max-width: 1024px) {
    .lp-nav { display: none; }
    .lp-mobile-toggle { display: flex; }
    .lp-desktop-only { display: none; }
    .lp-hero { padding: 56px 0 48px; }
    .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .lp-hero-desc { margin-left: auto; margin-right: auto; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-badges { justify-content: center; }
    .lp-hero-trust-row { justify-content: center; }
    .lp-hero-visual { order: -1; }
    .lp-hero-card { max-width: 360px; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .lp-container { padding: 0 12px; }
    .lp-header-inner { height: 52px; }
    .lp-hero { padding: 36px 0 32px; }
    .lp-hero-content h1 { font-size: 28px; }
    .lp-hero-desc { font-size: 14px; }
    .lp-hero-card { max-width: 100%; }
    .lp-section-header h2 { font-size: 22px; }
    .lp-section-header { margin-bottom: 28px; }
    .lp-features { padding: 48px 0; }
    .lp-how { padding: 48px 0; }
    .lp-steps { flex-direction: column; align-items: center; gap: 0; }
    .lp-step { max-width: 100%; padding: 16px 0; }
    .lp-step-divider { width: 2px; height: 24px; margin: 0; }
    .lp-stats { padding: 40px 0; }
    .lp-stat { padding: 18px 12px; }
    .lp-stat-value { font-size: 24px; }
    .lp-cta { padding: 48px 0; }
    .lp-cta-inner { padding: 32px 16px; }
    .lp-cta-inner h2 { font-size: 22px; }
    .lp-footer-inner { flex-direction: column; gap: 24px; }
    .lp-footer-links { gap: 32px; }
    .lp-hero-actions .btn-lg { width: 100%; }
    .lp-trust { padding: 48px 0; }
    .lp-testimonials { padding: 48px 0; }
    .lp-brands-row { gap: 10px; font-size: 11px; }
    .lp-brands-row .lp-brand-dot { display: none; }
    .lp-hero-float-badge { display: none; }
    .lp-feature-card { padding: 18px; }
    .lp-feature-card h3 { font-size: 14px; }
    .lp-feature-card p { font-size: 12px; }
    .lp-trust-card { padding: 18px; }
    .lp-testimonial-card { padding: 18px; }
    .lp-setup-card { padding: 20px 16px; }
    .lp-seo-card { padding: 20px 16px; }
    .lp-setup { padding: 48px 0; }
    .lp-seo-content { padding: 48px 0; }
}
@media (max-width: 380px) {
    .lp-hero-content h1 { font-size: 26px; }
}

.sp-hero {
    position: relative;
    padding: 40px 0 44px;
    overflow: hidden;
}
.sp-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16,185,129,.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.dark .sp-hero::before {
    background: radial-gradient(ellipse, rgba(16,185,129,.06) 0%, transparent 70%);
}
.sp-hero .lp-container {
    position: relative;
    z-index: 1;
}

.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.sp-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}
.sp-breadcrumb a:hover { color: var(--accent-hover); }
.sp-breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    margin-bottom: 16px;
}

.sp-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.sp-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 680px;
    margin: 0;
}

.sp-content {
    padding: 0 0 80px;
}
.sp-content .lp-container {
    max-width: 960px;
}

.sp-prose h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.sp-prose h2:first-child { margin-top: 0; }
.sp-prose h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 10px;
}
.sp-prose p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 16px;
}
.sp-prose ul, .sp-prose ol {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    padding-left: 20px;
    margin: 0 0 20px;
}
.sp-prose li {
    margin-bottom: 4px;
}
.sp-prose li::marker {
    color: var(--accent);
}
.sp-prose strong {
    color: var(--text-primary);
    font-weight: 600;
}
.sp-prose a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .15s;
}
.sp-prose a:hover {
    border-bottom-color: var(--accent);
}

.sp-table-wrap {
    overflow-x: auto;
    margin: 24px 0 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}
.sp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.sp-table thead {
    background: var(--bg-tertiary);
}
.sp-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}
.sp-table th.sp-highlight {
    color: var(--accent);
    position: relative;
}
.sp-table th.sp-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}
.sp-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}
.sp-table tr:last-child td { border-bottom: none; }
.sp-table tr:hover td {
    background: rgba(16,185,129,.03);
}
.sp-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 140px;
}
.sp-table td.sp-highlight {
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    background: rgba(16,185,129,.04);
}
.sp-table td:not(:first-child) {
    text-align: center;
}
.sp-table .sp-check {
    color: var(--accent);
    font-weight: 700;
}
.sp-table .sp-dim {
    color: var(--text-muted);
}

.sp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 16px;
    margin: 24px 0 36px;
}
.sp-feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16,185,129,.3);
}
.sp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--accent-light);
    color: var(--accent);
}
.sp-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
}
.sp-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.sp-quotes {
    display: grid;
    gap: 16px;
    margin: 24px 0 36px;
}
.sp-quote {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.sp-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.sp-quote::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: .12;
    line-height: 1;
    pointer-events: none;
}
.sp-quote-text {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 12px;
}
.sp-quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-quote-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.sp-quote-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.sp-quote-role {
    font-size: 11px;
    color: var(--text-muted);
}
.sp-quote-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}
.sp-quote-stars svg {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    stroke: none;
}

.sp-cta {
    position: relative;
    text-align: center;
    padding: 48px 32px;
    margin: 56px 0 0;
    background: linear-gradient(135deg, rgba(16,185,129,.07), rgba(59,130,246,.05));
    border: 1px solid rgba(16,185,129,.15);
    border-radius: 20px;
    overflow: hidden;
}
.sp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(16,185,129,.06), transparent 60%);
    pointer-events: none;
}
.sp-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    position: relative;
}
.sp-cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.sp-cta .btn { position: relative; color: #fff !important; border-bottom: none !important; }
.sp-cta .btn:hover { color: #fff !important; }

.sp-faq-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.sp-faq-group-title:first-of-type { margin-top: 0; }
.sp-faq-group-title svg {
    width: 20px; height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}
.sp-faq {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.sp-faq:hover {
    border-color: rgba(16,185,129,.25);
}
.sp-faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    transition: background .15s;
}
.sp-faq-q:hover {
    background: rgba(16,185,129,.03);
}
.sp-faq-q svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform .25s ease, color .15s;
}
.sp-faq.open .sp-faq-q svg {
    transform: rotate(180deg);
    color: var(--accent);
}
.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 22px;
}
.sp-faq.open .sp-faq-a {
    max-height: 1000px;
    padding: 0 22px 20px;
}
.sp-faq-a p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin: 0 0 8px; }
.sp-faq-a p:last-child { margin-bottom: 0; }
.sp-faq-a ul, .sp-faq-a ol { font-size: 14px; color: var(--text-secondary); line-height: 1.8; padding-left: 20px; margin: 8px 0; }
.sp-faq-a li { margin-bottom: 2px; }
.sp-faq-a li::marker { color: var(--accent); }
.sp-faq-a a { color: var(--accent); font-weight: 500; }
.sp-faq-a strong { color: var(--text-primary); }

@media (max-width: 768px) {
    .sp-hero { padding: 32px 0 32px; }
    .sp-title { font-size: 28px; }
    .sp-subtitle { font-size: 15px; }
    .sp-prose h2 { font-size: 20px; margin-top: 36px; }
    .sp-features { grid-template-columns: 1fr; }
    .sp-cta { padding: 36px 20px; }
    .sp-cta h3 { font-size: 20px; }
    .sp-table th, .sp-table td { padding: 12px 14px; font-size: 13px; }
}
@media (max-width: 480px) {
    .sp-hero { padding: 24px 0 24px; }
    .sp-title { font-size: 24px; }
    .sp-subtitle { font-size: 14px; }
    .sp-content { padding-bottom: 48px; }
    .sp-feature-card { padding: 20px; }
    .sp-quote { padding: 20px; }
    .sp-faq-q { padding: 16px 18px; font-size: 14px; }
    .sp-faq-a { padding-left: 18px; padding-right: 18px; }
}

.lp-setup {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.lp-seo-content {
    padding: 80px 0;
    background: var(--bg-primary);
}
.lp-seo-content#iptv-karsilastirma,
.lp-seo-content#iptv-yurtdisi {
    background: var(--bg-secondary);
}
.lp-setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 16px;
    margin-top: 32px;
}
.lp-setup-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-setup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: var(--accent);
}
.lp-setup-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.lp-setup-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lp-setup-card-icon.green  { background: rgba(16,185,129,0.1); color: #10b981; }
.lp-setup-card-icon.blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.lp-setup-card-icon.amber  { background: rgba(245,158,11,0.1); color: #f59e0b; }
.lp-setup-card-icon.purple { background: rgba(168,85,247,0.1); color: #a855f7; }
.lp-setup-card-icon.pink   { background: rgba(236,72,153,0.1); color: #ec4899; }
.lp-setup-card-icon svg { stroke: currentColor; }
.lp-setup-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.lp-setup-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}
.lp-setup-card-steps {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.lp-setup-card-steps strong { color: var(--text-primary); }

.lp-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 16px;
    margin-top: 32px;
}
.lp-seo-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-seo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
.lp-seo-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}
.lp-seo-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.lp-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 12px;
    margin-top: 32px;
}
.lp-country-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.lp-country-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}
.lp-country-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}
.lp-country-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.lp-forum-content {
    max-width: 800px;
    margin: 32px auto 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
}
.lp-forum-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}
.lp-forum-content h3 + h3,
.lp-forum-content p + h3 { margin-top: 24px; }
.lp-forum-content ul {
    padding-left: 20px;
    margin: 0;
}
.lp-forum-content li { margin-bottom: 4px; }
.lp-forum-content li::marker { color: var(--accent); }
.lp-forum-content strong { color: var(--text-primary); }

@media (max-width: 768px) {
    .lp-setup-grid { grid-template-columns: 1fr; }
    .lp-seo-grid { grid-template-columns: 1fr; }
    .lp-country-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .lp-country-grid { grid-template-columns: 1fr; }
    .lp-setup-card { padding: 22px 18px; }
    .lp-seo-card { padding: 22px 18px; }
}
