/* ===== Shared Landing Page Styles ===== */

/* Hero */
.lp-hero-outer {
    background: linear-gradient(135deg, #0a0f1a 0%, #101829 100%);
    padding: 120px 0 60px;
}

.lp-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lp-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.25;
}

.lp-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .72);
    margin: 0 0 20px;
    line-height: 1.6;
}

.lp-breadcrumb {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

.lp-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.lp-breadcrumb a:hover {
    color: #59d4ff;
}

/* Sections */
.lp-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 24px;
}

.lp-section--alt {
    background: #0d1320;
}

.lp-section-label {
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #59d4ff;
    margin: 0 0 8px;
}

.lp-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.lp-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 10px;
}

.lp-section p,
.lp-section li {
    font-size: 1rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.lp-section ul,
.lp-section ol {
    padding-left: 1.5em;
    margin: 12px 0;
}

.lp-section li {
    margin-bottom: 6px;
}

.lp-section a {
    color: #59d4ff;
    text-decoration: none;
}

.lp-section a:hover {
    text-decoration: underline;
}

/* Advantage Cards */
.lp-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.lp-adv-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color .25s;
}

.lp-adv-card:hover {
    border-color: rgba(89, 212, 255, .3);
}

.lp-adv-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.lp-adv-card p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .68);
    margin: 0;
    line-height: 1.55;
}

.lp-adv-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block;
}

/* Steps */
.lp-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.lp-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 56px;
    margin-bottom: 24px;
    min-height: 40px;
}

.lp-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #59d4ff, #3b82f6);
    color: #0a0f1a;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-steps li strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

/* Price Table */
.lp-price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: .95rem;
}

.lp-price-table th {
    background: rgba(89, 212, 255, .1);
    color: #59d4ff;
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.lp-price-table td {
    padding: 12px 16px;
    color: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.lp-price-table tr:hover td {
    background: rgba(255, 255, 255, .03);
}

/* FAQ */
.lp-faq {
    margin: 28px 0;
}

.lp-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.lp-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.lp-faq-q {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    cursor: pointer;
}

.lp-faq-a {
    font-size: .95rem;
    color: rgba(255, 255, 255, .72);
    margin: 0;
    line-height: 1.65;
}

/* CTA */
.lp-cta {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, rgba(89, 212, 255, .08), rgba(59, 130, 246, .08));
    border-radius: 16px;
    margin: 40px 0;
}

.lp-cta h2 {
    margin-bottom: 12px;
}

.lp-cta p {
    margin-bottom: 24px;
}

.lp-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #59d4ff, #3b82f6);
    color: #0a0f1a !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s;
}

.lp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(89, 212, 255, .25);
}

/* Internal Links Box */
.lp-links-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.lp-links-box h3 {
    margin-top: 0;
}

.lp-links-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-links-box li {
    margin: 0;
}

.lp-links-box a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(89, 212, 255, .08);
    border: 1px solid rgba(89, 212, 255, .15);
    border-radius: 6px;
    font-size: .9rem;
    transition: background .2s;
}

.lp-links-box a:hover {
    background: rgba(89, 212, 255, .15);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
    .lp-hero-outer {
        padding: 100px 16px 40px;
    }

    .lp-section {
        padding: 40px 16px;
    }

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

    .lp-price-table {
        font-size: .85rem;
    }

    .lp-price-table th,
    .lp-price-table td {
        padding: 10px 10px;
    }
}