/* ===== LANDING PAGE SHARED STYLES ===== */

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR ===== */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.landing-nav .nav-logo img {
    height: 36px;
}
.landing-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.landing-nav .nav-links a {
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}
.landing-nav .nav-links a:hover {
    color: #007bff;
}
.landing-nav .nav-cta {
    background: #007bff;
    color: white !important;
    padding: 9px 24px;
    border-radius: 6px;
    transition: background 0.2s !important;
}
.landing-nav .nav-cta:hover {
    background: #0056b3 !important;
    color: white !important;
}

/* ===== SECTIONS ===== */
.section-padding { padding: 90px 0; }

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary-solid {
    background: #007bff;
    color: white;
    padding: 13px 36px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s;
    border: none;
    cursor: pointer;
}
.btn-primary-solid:hover {
    background: #0056b3;
    color: white !important;
    text-decoration: none;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 11px 34px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}
.btn-outline-white:hover {
    background: white;
    color: #007bff !important;
    text-decoration: none;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem;
}
.feature-icon.blue   { background: #e7f0ff; color: #007bff; }
.feature-icon.green  { background: #e8f8f0; color: #28a745; }
.feature-icon.purple { background: #f3e8ff; color: #6f42c1; }
.feature-box h4 { font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.feature-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 20px;
}

/* ===== STATS ===== */
.stats-section { background: #f8f9fa; }
.stat-item { text-align: center; padding: 30px 15px; }
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #007bff;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.95rem; color: #666; }

/* ===== HOW IT WORKS ===== */
.hiw-section {
    background: #eef2fb;
    padding: 90px 0;
}

.hiw-row {
    position: relative;
    margin-top: 20px;
}
.hiw-row::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 35px);
    right: calc(12.5% + 35px);
    height: 3px;
    background: linear-gradient(90deg, #a8c8ff, #007bff, #a8c8ff);
    z-index: 0;
}

.hiw-step {
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.hiw-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0062e0 0%, #33aeff 100%);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0,98,224,0.45);
    border: 4px solid #eef2fb;
}

.hiw-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 18px 24px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.09);
    transition: transform 0.25s, box-shadow 0.25s;
    border-top: 3px solid #007bff;
}
.hiw-step:hover .hiw-inner {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,98,224,0.16);
}

.hiw-icon {
    font-size: 5rem !important;
    color: #007bff !important;
    display: block;
    margin-bottom: 14px;
    line-height: 1;
    transition: color 0.25s;
}
.hiw-step:hover .hiw-icon {
    color: #0056b3;
}

.hiw-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.hiw-step p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .hiw-row::before { display: none; }
}

/* ===== PRICING PREVIEW (landing page) ===== */
.pricing-preview-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d47a1 100%);
    color: white;
}
.pricing-preview-section .section-title { color: white; }
.pricing-preview-section .section-subtitle { color: rgba(255, 255, 255, 0.75); }

.pricing-card-preview {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}
.pricing-card-preview:hover { transform: translateY(-6px); }
.pricing-card-preview.featured {
    background: white;
    color: #1a1a2e;
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.pricing-card-preview .plan-name {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}
.pricing-card-preview.featured .plan-name { color: #666; }
.pricing-card-preview .price-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.pricing-card-preview.featured .price-amount { color: #007bff; }
.pricing-card-preview .price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    display: block;
}
.pricing-card-preview.featured .price-label { color: #888; }
.pricing-card-preview .features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 26px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}
.pricing-card-preview.featured .features-list { color: #444; }
.pricing-card-preview .features-list li { padding: 5px 0; }
.pricing-card-preview .features-list li::before { content: '✓  '; color: #28a745; font-weight: 700; }

.btn-plan-outline {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid white;
    color: white;
    transition: all 0.25s;
}
.btn-plan-outline:hover { background: white; color: #1a1a2e !important; text-decoration: none; }

.btn-plan-filled {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: #007bff;
    color: white;
    transition: background 0.25s;
}
.btn-plan-filled:hover { background: #0056b3; color: white !important; text-decoration: none; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
}
.testimonial-card .quote {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-card .author { font-weight: 700; color: #1a1a2e; }
.stars { color: #ffc107; font-size: 1.1rem; margin-bottom: 14px; }

/* ===== CTA SECTION ===== */
.cta-section { background: #007bff; }
.cta-section .section-title { color: white; }
.cta-section p { color: rgba(255, 255, 255, 0.88); font-size: 1.1rem; margin-bottom: 35px; }

.btn-cta-white {
    background: white;
    color: #007bff;
    padding: 13px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s;
    margin-right: 16px;
}
.btn-cta-white:hover { background: #e7f0ff; color: #007bff !important; text-decoration: none; }

.btn-cta-ghost {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}
.btn-cta-ghost:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

/* ===== SITE FOOTER ===== */
.site-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.65);
    padding: 55px 0 0;
}
.site-footer .footer-brand {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}
.site-footer p { font-size: 0.9rem; }
.site-footer h6 { color: white; font-weight: 600; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: white; }
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== PRICING PAGE ===== */
.pricing-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d47a1 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}
.pricing-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}
.pricing-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 auto;
}

.pricing-full-card {
    background: white;
    border-radius: 14px;
    padding: 40px 38px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.pricing-full-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}
.pricing-full-card.popular {
    border-color: #007bff;
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 123, 255, 0.18);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pricing-full-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.pricing-full-card .price-wrapper {
    margin: 20px 0 8px;
}
.pricing-full-card .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}
.pricing-full-card .price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}
.pricing-full-card .price-period {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 6px;
}
.pricing-full-card .price-desc {
    font-size: 0.88rem;
    color: #999;
    margin-bottom: 28px;
}
.pricing-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 20px 0;
}
.plan-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.92rem;
}
.plan-features-list li {
    padding: 7px 0;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.plan-features-list .check { color: #28a745; font-weight: 700; flex-shrink: 0; }
.plan-features-list .x    { color: #ccc; flex-shrink: 0; }
.plan-features-list .feat-text { flex: 1; }

.btn-plan-primary {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    background: #007bff;
    color: white;
    transition: background 0.25s;
    border: 2px solid #007bff;
}
.btn-plan-primary:hover { background: #0056b3; border-color: #0056b3; color: white !important; text-decoration: none; }

.btn-plan-secondary {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
    transition: all 0.25s;
}
.btn-plan-secondary:hover { background: #007bff; color: white !important; text-decoration: none; }

.btn-plan-current {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    border: none !important;
    cursor: default;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(40,167,69,0.3);
    letter-spacing: 0.3px;
}
.btn-plan-current:hover { color: white !important; text-decoration: none !important; }
.btn-plan-disabled {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    text-align: center;
    background: #f0f0f0 !important;
    color: #999 !important;
    border: 1.5px dashed #ccc !important;
    cursor: not-allowed;
    text-decoration: none !important;
    letter-spacing: 0.2px;
}
.btn-plan-disabled:hover { color: #999 !important; text-decoration: none !important; }

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.faq-item h5 { font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.faq-item p  { color: #666; font-size: 0.95rem; margin: 0; }


/* ── Checkout Page ─────────────────────────────────────── */
.co-page {
    min-height: 100vh;
    background: #f4f6fb;
    padding: 100px 0 60px;
}
.co-breadcrumb { margin-bottom: 28px; }
.co-breadcrumb a { color: #007bff; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.co-breadcrumb a:hover { text-decoration: underline; }

.co-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .co-grid { grid-template-columns: 1fr; }
}

/* Summary card */
.co-summary {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
}
.co-summary-header {
    padding: 32px 28px 28px;
    color: white;
}
.co-summary-plan {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.8;
    margin-bottom: 10px;
}
.co-summary-price { display: flex; align-items: flex-end; gap: 4px; line-height: 1; margin-bottom: 4px; }
.co-summary-currency { font-size: 1.3rem; font-weight: 700; padding-bottom: 6px; }
.co-summary-amount { font-size: 3.6rem; font-weight: 800; }
.co-summary-cycle { font-size: 0.85rem; opacity: 0.7; }

.co-summary-body { background: white; padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.co-feature-list { flex: 1; }
.co-summary-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #aaa; margin-bottom: 14px; }
.co-feature-list { list-style: none; padding: 0; margin: 0 0 20px; }
.co-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}
.co-feature-list li:last-child { border-bottom: none; }
.co-feature-list svg { width: 16px; height: 16px; flex-shrink: 0; }

.co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    border-top: 2px solid #f0f0f0;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
}
.co-total-val { font-size: 1.3rem; font-weight: 800; color: #007bff; }
.co-cancel-note { font-size: 0.78rem; color: #bbb; margin: 10px 0 0; text-align: center; }

/* Form card */
.co-form-wrap {
    background: white;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.co-form-wrap form {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.co-form-footer {
    margin-top: auto;
    padding-top: 24px;
}
@media (max-width: 600px) {
    .co-form-wrap { padding: 28px 20px; }
}

.co-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 22px;
}
.co-step {
    width: 28px;
    height: 28px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}
.co-card-icons { display: flex; gap: 6px; margin-left: auto; }
.co-card-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.co-card-badge.visa  { background: #1a1f71; color: white; }
.co-card-badge.mc    { background: #eb001b; color: white; }
.co-card-badge.amex  { background: #007bc1; color: white; }

.co-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.co-row-3 { display: flex; gap: 16px; }
@media (max-width: 600px) {
    .co-row-2 { grid-template-columns: 1fr; }
    .co-row-3 { flex-direction: column; }
}

.co-field { margin-bottom: 18px; }
.co-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 7px;
}
.co-optional { font-weight: 400; color: #bbb; }
.co-input-wrap { position: relative; }
.co-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #bbb;
    pointer-events: none;
}
.co-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid #e8e8e8;
    border-radius: 9px;
    font-size: 0.93rem;
    color: #1a1a2e;
    background: #fafbff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}
.co-input:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.08);
}
.co-input::placeholder { color: #ccc; }

.co-pay-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    margin-top: 10px;
    letter-spacing: 0.3px;
}
.co-pay-btn:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.co-pay-btn:disabled { background: #aaa; cursor: not-allowed; transform: none; }
.co-secure-note {
    font-size: 0.78rem;
    color: #bbb;
    text-align: center;
    margin: 12px 0 0;
}

.co-alert {
    padding: 13px 18px;
    border-radius: 9px;
    margin-bottom: 22px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.co-alert-error   { background: #fff5f5; color: #c0392b; border: 1px solid #fcc; }
.co-alert-success { background: #f0fff8; color: #1e7e34; border: 1px solid #b2dfdb; }

@keyframes spin { to { transform: rotate(360deg); } }
.co-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
.co-logged-as {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fff8;
    border: 1px solid #b2dfdb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 22px;
}
.co-logged-as a { color: #007bff; text-decoration: none; }
.co-logged-as a:hover { text-decoration: underline; }

/* Guarantee block */
.co-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0fff8;
    border: 1px solid #b2dfdb;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 24px;
}
.co-guarantee svg { flex-shrink: 0; margin-top: 2px; }
.co-guarantee strong { display: block; font-size: 0.95rem; color: #1a1a2e; margin-bottom: 4px; }
.co-guarantee p { margin: 0; font-size: 0.82rem; color: #555; line-height: 1.5; }

/* FAQ */
.co-faq { margin-top: 24px; }
.co-faq-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #aaa;
    margin-bottom: 10px;
}
.co-faq-item { border-bottom: 1px solid #eee; }
.co-faq-item:first-of-type { border-top: 1px solid #eee; }
.co-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    text-align: left;
    gap: 8px;
}
.co-faq-q:hover { color: #007bff; }
.co-faq-arrow { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.co-faq-item.open .co-faq-arrow { transform: rotate(180deg); }
.co-faq-a {
    display: none;
    font-size: 0.83rem;
    color: #555;
    line-height: 1.6;
    padding-bottom: 12px;
}
.co-faq-item.open .co-faq-a { display: block; }


/* ===== HERO (new) ===== */
.lp-hero {
    background-color: #1a3a5c;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
}
.lp-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.4px;
    margin-bottom: 22px;
}
.lp-hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 22px;
}
@media (max-width: 768px) {
    .lp-hero-title { font-size: 2.2rem; }
}
.lp-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.75;
}
.lp-hero-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.lp-hero-pills span {
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lp-hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.lp-hero-login {
    margin-top: 36px;
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}
.lp-hero-login a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.lp-hero-login a:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: underline;
}
.lp-hero-ctas .btn-primary-solid {
    padding: 15px 44px;
    font-size: 1rem;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.lp-hero-ctas .btn-primary-solid:hover {
    background: #1ebe5a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}
.lp-hero-ctas .btn-outline-white {
    padding: 13px 44px;
    font-size: 1rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.75);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-hero-ctas .btn-outline-white:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ===== PAIN POINTS ===== */
.pain-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: left;
}
.pain-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.pain-icon {
    font-size: 1.9rem;
    margin-bottom: 14px;
    line-height: 1;
}
.pain-card h5 {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1rem;
    margin-bottom: 10px;
}
.pain-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ===== FEATURES GRID ===== */
.feat-card {
    background: white;
    border-radius: 12px;
    padding: 28px 20px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}
.feat-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.11);
    transform: translateY(-5px);
}
.feat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}
.feat-card h5 {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.97rem;
    margin-bottom: 10px;
}
.feat-card p {
    font-size: 0.86rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ===== PRODUCT PREVIEW CARDS ===== */
.product-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0,0,0,0.09);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-preview-card:hover {
    box-shadow: 0 14px 45px rgba(0,0,0,0.14);
    transform: translateY(-5px);
}
.pp-header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
}
.pp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    display: inline-block;
}
.pp-title {
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    font-weight: 600;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.pp-body {
    flex: 1;
    padding: 8px 0;
}
.pp-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #888;
    padding: 10px;
    border-top: 1px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* inbox mock */
.pp-chat-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    cursor: default;
    transition: background 0.2s;
}
.pp-chat-item:hover { background: #f8f9fa; }
.pp-active { background: #eef4ff !important; }
.pp-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pp-chat-meta { flex: 1; text-align: left; overflow: hidden; }
.pp-name { font-size: 0.75rem; font-weight: 700; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-msg  { font-size: 0.68rem; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-badge {
    background: #007bff;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* QR mock */
.pp-center { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; gap: 12px; }
.pp-qr-box { background: #f8f9fa; border-radius: 10px; padding: 16px 18px; }
.pp-qr-label { font-size: 0.75rem; color: #666; text-align: center; line-height: 1.5; }
.pp-qr-status { background: #e8f8f0; color: #28a745; font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* campaign mock */
.pp-campaign-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.72rem;
    color: #444;
    gap: 4px;
}
.pp-campaign-row span:first-child { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pp-campaign-row span:nth-child(2) { width: 32px; text-align: right; color: #666; }
.pp-campaign-head { font-weight: 700; color: #1a1a2e; border-bottom: 2px solid #eee; }
.pp-status {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
}
.pp-done  { background: #e8f8f0; color: #28a745; }
.pp-run   { background: #e7f0ff; color: #007bff; }
.pp-draft { background: #f5f5f5; color: #888; }

/* analytics mock */
.pp-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f5;
}
.pp-stat-label { font-size: 0.7rem; color: #888; }
.pp-stat-val   { font-size: 0.82rem; font-weight: 700; color: #1a1a2e; }
.pp-bar-wrap {
    display: flex;
    height: 6px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
    background: #f0f0f0;
}
.pp-bar { height: 100%; }

/* ===== TRUST BADGES ===== */
.trust-section {
    background: #f8f9fb;
    padding: 90px 0;
}

.trust-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 22px 26px;
    text-align: center;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    border-top: 3px solid #007bff;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0,98,224,0.13);
}

.trust-icon {
    font-size: 3rem !important;
    color: #007bff !important;
    display: block;
    margin-bottom: 14px;
    line-height: 1;
    transition: color 0.25s;
}
.trust-card:hover .trust-icon {
    color: #0056b3 !important;
}

.trust-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 7px;
}
.trust-desc {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 576px) {
    .lp-hero-pills { flex-direction: column; align-items: center; }
    .section-title  { font-size: 1.7rem; }
    .section-subtitle { font-size: 0.95rem; }
    .pain-card, .feat-card { text-align: center; }
    .pain-icon { text-align: center; }
}
