/* =============================================
   PAGES.CSS — Scoped per-page styles
   WhatsApp Campaign
   
   SECTIONS:
   1. .page-home
   2. .page-auth     (Login + Signup)
   3. .page-features
   4. .page-pricing
   5. .page-contact
   6. .page-privacy
   ============================================= */

/* GLOBAL HERO ELEMENTS (ALL PAGES USE) */
.hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 22px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 12px 28px;
    background: #fff;
    color: var(--wc-green-deeper);
    font-weight: 800;
    border-radius: var(--wc-r);
    transition: all .2s;
}

    .btn-hero-primary:hover {
        background: var(--wc-light-green);
        transform: translateY(-2px);
    }

.btn-hero-outline {
    padding: 12px 28px;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: var(--wc-r);
    transition: all .2s;
}

    .btn-hero-outline:hover {
        border-color: #fff;
        background: rgba(255,255,255,.1);
    }

/* ── SHARED: inner hero used by multiple pages ── */
.page-hero {
    background: linear-gradient(135deg, var(--wc-green-deeper) 0%, var(--wc-green-dark) 60%, #1aaf5d 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

    .page-hero h1 {
        color: #fff;
        font-size: clamp(1.9rem, 3.5vw, 2.8rem);
        margin-bottom: 12px;
        position: relative;
    }

    .page-hero p {
        color: rgba(255,255,255,.72);
        font-size: 16px;
        max-width: 560px;
        margin: 0 auto;
        position: relative;
        line-height: 1.7;
    }

/* ═══════════════════════════════════════════════
   1. HOME PAGE
   ═══════════════════════════════════════════════ */
.page-home .hero-section {
    background: linear-gradient(135deg, var(--wc-green-deeper) 0%, var(--wc-green-dark) 55%, #1aaf5d 100%);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}

    .page-home .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
    }

.page-home .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-home .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    margin-bottom: 20px;
}

.page-home .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

    .page-home .hero-title span {
        color: var(--wc-light-green);
    }

.page-home .hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-home .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .page-home .hero-actions .btn-hero-primary {
        padding: 13px 30px;
        background: #fff;
        color: var(--wc-green-deeper);
        font-weight: 800;
        font-size: 15px;
        border-radius: var(--wc-radius, 10px);
        text-decoration: none;
        transition: all .18s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .page-home .hero-actions .btn-hero-primary:hover {
            background: var(--wc-light-green);
            transform: translateY(-2px);
        }

    .page-home .hero-actions .btn-hero-secondary {
        padding: 13px 30px;
        background: transparent;
        color: rgba(255,255,255,.85);
        font-weight: 600;
        font-size: 15px;
        border: 2px solid rgba(255,255,255,.35);
        border-radius: var(--wc-radius, 10px);
        text-decoration: none;
        transition: all .18s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .page-home .hero-actions .btn-hero-secondary:hover {
            border-color: rgba(255,255,255,.7);
            color: #fff;
        }

.page-home .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.page-home .stat-item .num {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.page-home .stat-item .lbl {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

/* Hero phone mockup */
.page-home .hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page-home .hero-phone-mockup {
    width: 260px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 28px;
    padding: 16px;
    backdrop-filter: blur(8px);
}

.page-home .phone-screen {
    background: var(--wc-bg, #F0F2F5);
    border-radius: 18px;
    overflow: hidden;
}

.phone-chat-header {
    background: var(--wc-green-dark);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.phone-avatar {
    width: 30px;
    height: 30px;
    background: var(--wc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.phone-messages {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.msg-bubble {
    max-width: 88%;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.55;
}

.msg-in {
    background: #fff;
    color: var(--wc-text);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.msg-out {
    background: var(--wc-light-green);
    color: var(--wc-text);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.msg-time {
    font-size: 10px;
    color: var(--wc-text-muted);
    text-align: right;
    margin-top: 2px;
}

/* Features strip on home */
.page-home .features-section {
    background: #fff;
}

.page-home .features-grid {
    max-width: 66%;
    margin: 48px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.page-home .feature-card {
    padding: 26px;
    border: 1px solid var(--wc-border);
    border-radius: 14px;
    transition: all .18s ease;
}

    .page-home .feature-card:hover {
        border-color: var(--wc-green);
        box-shadow: 0 8px 24px rgba(37,211,102,.10);
        transform: translateY(-3px);
    }

.page-home .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--wc-light-green);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .page-home .feature-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--wc-green-dark);
    }

.page-home .feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.page-home .feature-desc {
    font-size: 14px;
    color: var(--wc-text-muted);
    line-height: 1.65;
}

/* Steps */
.page-home .how-section {
    background: var(--wc-bg-light, #F7FAF8);
}

.page-home .steps-grid {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 32px;
}

.page-home .step-item {
    text-align: center;
}

.page-home .step-number {
    width: 46px;
    height: 46px;
    background: var(--wc-green);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.page-home .step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.page-home .step-desc {
    font-size: 14px;
    color: var(--wc-text-muted);
    line-height: 1.65;
}

/* CTA strip */
.page-home .cta-strip {
    background: linear-gradient(90deg, var(--wc-green-deeper), var(--wc-green-dark));
    padding: 72px 24px;
    text-align: center;
}

    .page-home .cta-strip h2 {
        color: #fff;
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 12px;
    }

    .page-home .cta-strip p {
        color: rgba(255,255,255,.7);
        margin-bottom: 28px;
        font-size: 16px;
    }

@media (max-width: 768px) {
    .page-home .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-home .hero-visual {
        justify-content: center;
    }

    .page-home .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════════════
   2. AUTH PAGES  (Login + Signup)
   ═══════════════════════════════════════════════ */
.page-auth {
    min-height: calc(100vh - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: var(--wc-bg);
}

.auth-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--wc-border);
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
    width: 100%;
    max-width: 460px;
    padding: 40px 36px;
    animation: authFadeIn .4s ease both;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--wc-green);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .auth-logo-icon svg {
        width: 24px;
        height: 24px;
        fill: #fff;
    }

.auth-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--wc-green-deeper);
}

    .auth-logo-text span {
        color: var(--wc-green);
    }

.auth-heading {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.auth-sub {
    font-size: 14px;
    color: var(--wc-text-muted);
    text-align: center;
    margin-bottom: 26px;
}

.auth-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-icon-wrap {
    position: relative;
}

    .input-icon-wrap .form-control-wc {
        padding-left: 42px;
    }

    .input-icon-wrap .input-icon {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: #B8C0CC;
        pointer-events: none;
    }

        .input-icon-wrap .input-icon svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.form-control-wc {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1.5px solid #D1D5DB;
    border-radius: 9px;
    font-size: 14px;
    font-family: inherit;
    color: var(--wc-text);
    background: #fff;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}

    .form-control-wc:focus {
        border-color: var(--wc-green);
        box-shadow: 0 0 0 3px rgba(37,211,102,.12);
    }

    .form-control-wc::placeholder {
        color: #C4CACE;
        font-size: 13px;
    }

.pwd-toggle-btn {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #B8C0CC;
    padding: 3px;
    display: flex;
    align-items: center;
    transition: color .18s;
}

    .pwd-toggle-btn:hover {
        color: var(--wc-text-muted);
    }

    .pwd-toggle-btn svg {
        width: 17px;
        height: 17px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--wc-text-muted);
    margin-bottom: 5px;
}

    .form-label .req {
        color: #DC2626;
        margin-left: 2px;
    }

.field-error {
    font-size: 12px;
    color: #DC2626;
    margin-top: 3px;
    display: none;
}

    .field-error.show {
        display: block;
    }

/* ASP.NET validator — show when active */
span[id*="rfv"].field-error[style*="inline"],
span[id*="rev"].field-error[style*="inline"],
span[id*="cv"].field-error[style*="inline"] {
    display: block !important;
}

.wc-alert {
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 14px;
    margin-bottom: .9rem;
}

.wc-alert-error {
    background: #FEF2F2;
    border-left: 4px solid #DC2626;
    color: #991B1B;
}

.wc-alert-success {
    background: #ECFDF5;
    border-left: 4px solid #059669;
    color: #065F46;
}

.wc-divider {
    border: none;
    border-top: 1px solid #E5E7EB;
    margin: 1.2rem 0;
}

.strength-bar-track {
    height: 3px;
    background: #E5E7EB;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.strength-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width .3s, background .3s;
}

.strength-text {
    font-size: 11.5px;
    margin-top: 3px;
    font-weight: 600;
}

/* Captcha */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #D1D5DB;
    border-radius: 9px;
    padding: 10px 14px;
    background: #F9FAFB;
    cursor: pointer;
    user-select: none;
    transition: border-color .18s;
}

    .captcha-box:hover {
        border-color: var(--wc-green);
    }

    .captcha-box.verified {
        border-color: #059669;
        background: #F0FDF4;
        cursor: default;
    }

    .captcha-box.error {
        border-color: #DC2626;
        background: #FEF2F2;
    }

.captcha-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #D1D5DB;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    transition: all .18s;
}

.captcha-box.verified .captcha-checkbox {
    background: #059669;
    border-color: #059669;
}

.captcha-checkmark {
    width: 13px;
    height: 11px;
    opacity: 0;
    transition: opacity .15s;
}

    .captcha-checkmark polyline {
        stroke: #fff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.captcha-box.verified .captcha-checkmark {
    opacity: 1;
}

.captcha-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #E5E7EB;
    border-top-color: var(--wc-green);
    border-radius: 50%;
    animation: spinC .65s linear infinite;
    display: none;
}

@keyframes spinC {
    to {
        transform: rotate(360deg);
    }
}

.captcha-label {
    font-size: 13.5px;
    color: var(--wc-text);
    flex: 1;
}

.captcha-logo {
    text-align: center;
    font-size: 10px;
    color: var(--wc-text-muted);
    line-height: 1.4;
    flex-shrink: 0;
}

.btn-wc-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--wc-green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s, transform .18s, box-shadow .18s;
    text-decoration: none;
    line-height: 1;
}

    .btn-wc-primary:hover {
        background: var(--wc-green-dark);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(37,211,102,.28);
    }

    .btn-wc-primary:active {
        transform: translateY(0);
    }

.auth-footer-text {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: var(--wc-text-muted);
}

    .auth-footer-text a {
        color: var(--wc-green-dark);
        font-weight: 600;
    }

.forgot-link {
    font-size: 12.5px;
    color: var(--wc-green-dark);
    float: right;
    font-weight: 500;
}

@media (max-width: 500px) {
    .auth-card {
        padding: 28px 20px;
    }

    .auth-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   3. FEATURES PAGE
   ═══════════════════════════════════════════════ */
.page-features .features-hero { /* uses .page-hero */
}

.page-features .feat-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.page-features .feat-card {
    background: #fff;
    border: 1px solid var(--wc-border);
    border-radius: 16px;
    padding: 28px;
    transition: all .18s ease;
}

    .page-features .feat-card:hover {
        border-color: var(--wc-green);
        box-shadow: 0 10px 28px rgba(37,211,102,.12);
        transform: translateY(-4px);
    }

.page-features .feat-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}

.page-features .feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 9px;
}

.page-features .feat-card p {
    font-size: 14px;
    color: var(--wc-text-muted);
    line-height: 1.7;
}

.page-features .feat-card ul {
    margin-top: 14px;
    padding-left: 0;
    list-style: none;
}

    .page-features .feat-card ul li {
        font-size: 13.5px;
        color: var(--wc-text-muted);
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .page-features .feat-card ul li::before {
            content: "✓";
            color: var(--wc-green);
            font-weight: 700;
            flex-shrink: 0;
        }

/* comparison table */
.page-features .compare-table-wrap {
    max-width: 900px;
    margin: 56px auto 0;
    padding: 0 24px;
    overflow-x: auto;
}

.page-features .compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    border: 1px solid var(--wc-border);
}

    .page-features .compare-table th {
        padding: 16px 20px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
        text-align: center;
    }

        .page-features .compare-table th:first-child {
            text-align: left;
            background: #F9FAFB;
        }

        .page-features .compare-table th.th-highlight {
            background: var(--wc-green);
            color: #fff;
        }

    .page-features .compare-table td {
        padding: 14px 20px;
        font-size: 14px;
        border-top: 1px solid var(--wc-border);
        text-align: center;
        color: var(--wc-text-muted);
    }

        .page-features .compare-table td:first-child {
            text-align: left;
            color: var(--wc-text);
            font-weight: 500;
        }

        .page-features .compare-table td.td-yes {
            color: var(--wc-green);
            font-weight: 700;
            font-size: 16px;
        }

        .page-features .compare-table td.td-no {
            color: #D1D5DB;
            font-size: 16px;
        }

    .page-features .compare-table tr:hover td {
        background: #F9FAFB;
    }

/* ═══════════════════════════════════════════════
   4. PRICING PAGE
   ═══════════════════════════════════════════════ */
.page-pricing .pricing-grid {
    max-width: 1100px;
    margin: 56px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.page-pricing .pricing-card {
    background: #fff;
    border: 1.5px solid var(--wc-border);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    transition: all .18s ease;
}

    .page-pricing .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,.10);
    }

    .page-pricing .pricing-card.popular {
        border-color: var(--wc-green);
        box-shadow: 0 8px 32px rgba(37,211,102,.18);
        transform: translateY(-8px);
    }

.page-pricing .popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wc-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}

.page-pricing .plan-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--wc-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.page-pricing .plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}

    .page-pricing .plan-price .amount {
        font-size: 42px;
        font-weight: 800;
        color: var(--wc-text);
        line-height: 1;
    }

    .page-pricing .plan-price .currency {
        font-size: 18px;
        font-weight: 700;
        color: var(--wc-text-muted);
        margin-bottom: 6px;
    }

    .page-pricing .plan-price .period {
        font-size: 14px;
        color: var(--wc-text-muted);
        margin-bottom: 5px;
    }

.page-pricing .plan-desc {
    font-size: 14px;
    color: var(--wc-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.page-pricing .plan-features {
    list-style: none;
    margin-bottom: 28px;
}

    .page-pricing .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--wc-text);
        padding: 6px 0;
        border-bottom: 1px solid #F3F4F6;
    }

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

        .page-pricing .plan-features li .fi {
            color: var(--wc-green);
            font-size: 15px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .page-pricing .plan-features li.disabled {
            color: var(--wc-text-muted);
        }

            .page-pricing .plan-features li.disabled .fi {
                color: #D1D5DB;
            }

.page-pricing .btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all .18s ease;
    text-decoration: none;
}

.page-pricing .btn-plan-green {
    background: var(--wc-green);
    color: #fff;
}

    .page-pricing .btn-plan-green:hover {
        background: var(--wc-green-dark);
        color: #fff;
        transform: translateY(-1px);
    }

.page-pricing .btn-plan-outline {
    background: transparent;
    color: var(--wc-green-dark);
    border: 2px solid var(--wc-green);
}

    .page-pricing .btn-plan-outline:hover {
        background: var(--wc-green);
        color: #fff;
    }

/* FAQ */
.page-pricing .faq-wrap {
    max-width: 760px;
    margin: 56px auto 0;
    padding: 0 24px;
}

.page-pricing .faq-item {
    border: 1px solid var(--wc-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.page-pricing .faq-q {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    user-select: none;
    transition: background .15s;
}

    .page-pricing .faq-q:hover {
        background: #F9FAFB;
    }

    .page-pricing .faq-q .faq-icon {
        transition: transform .22s;
        color: var(--wc-text-muted);
        flex-shrink: 0;
    }

.page-pricing .faq-item.open .faq-q .faq-icon {
    transform: rotate(45deg);
}

.page-pricing .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease, padding .28s ease;
    font-size: 14px;
    color: var(--wc-text-muted);
    line-height: 1.7;
    padding: 0 20px;
    background: #FAFAFA;
}

.page-pricing .faq-item.open .faq-a {
    max-height: 200px;
    padding: 14px 20px;
}

@media (max-width: 860px) {
    .page-pricing .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .page-pricing .pricing-card.popular {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════
   5. CONTACT PAGE
   ═══════════════════════════════════════════════ */
.page-contact .contact-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

.page-contact .contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
}

.page-contact .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.page-contact .info-icon {
    width: 42px;
    height: 42px;
    background: var(--wc-light-green);
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-contact .info-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--wc-green-dark);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.page-contact .info-text .lbl {
    font-size: 11px;
    color: var(--wc-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}

.page-contact .info-text .val {
    font-size: 15px;
    color: var(--wc-text);
    font-weight: 500;
    margin-top: 2px;
}

.page-contact .contact-form-card {
    background: #fff;
    border: 1px solid var(--wc-border);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

    .page-contact .contact-form-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 22px;
    }

@media (max-width: 768px) {
    .page-contact .contact-body {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   6. PRIVACY PAGE
   ═══════════════════════════════════════════════ */
.page-privacy .privacy-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 24px;
}

    .page-privacy .privacy-body h2 {
        font-size: 19px;
        font-weight: 700;
        margin: 36px 0 10px;
        color: var(--wc-green-deeper);
        padding-bottom: 8px;
        border-bottom: 2px solid var(--wc-light-green);
    }

        .page-privacy .privacy-body h2:first-child {
            margin-top: 0;
        }

    .page-privacy .privacy-body p {
        font-size: 15px;
        color: #374151;
        line-height: 1.8;
        margin-bottom: .8rem;
    }

    .page-privacy .privacy-body ul {
        padding-left: 20px;
        margin-bottom: .8rem;
    }

        .page-privacy .privacy-body ul li {
            font-size: 15px;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 5px;
        }

.bottom-cta {
    background: linear-gradient(90deg, var(--wc-green-deeper), var(--wc-green-dark));
    padding: 80px 24px;
    text-align: center;
}

    .bottom-cta h2 {
        color: #fff;
        font-size: clamp(1.5rem,3vw,2rem);
        margin-bottom: 12px;
        font-weight: 800;
    }

    .bottom-cta p {
        color: rgba(255,255,255,.7);
        margin-bottom: 28px;
        font-size: 16px;
    }

    .bottom-cta .cta-btn {
        padding: 14px 36px;
        background: #fff;
        color: var(--wc-green-deeper);
        font-weight: 800;
        font-size: 15px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .2s ease;
    }

        .bottom-cta .cta-btn:hover {
            background: var(--wc-light-green);
            transform: translateY(-2px);
        }