/* ── SUBSCRIBE HERO ── */
.subscribe-hero {
    margin-top: 80px;
    background: linear-gradient(150deg, #496520 0%, #3d5a1a 75%, #6B583C 100%);
    padding: 72px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subscribe-hero::before {
    content: '🌳';
    position: absolute;
    font-size: 320px;
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.subscribe-hero-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
    position: relative;
}

.subscribe-hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    position: relative;
}

.subscribe-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
}

/* ── BILLING TOGGLE ── */
.billing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin: 52px auto 0;
}

.billing-toggle {
    display: inline-flex;
    background: white;
    border-radius: 14px;
    padding: 5px;
    gap: 4px;
    box-shadow: var(--shadow);
}

.toggle-btn {
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-btn.active {
    background: var(--green);
    color: white;
}

.save-badge {
    background: #FFF3CD;
    color: #856404;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
}

.toggle-btn.active .save-badge {
    background: rgba(255,255,255,0.25);
    color: white;
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 48px;
}

.trust-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
}

.trust-strip-icon {
    width: 36px;
    height: 36px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ── PLAN CARDS ── */
.plans-section {
    padding: 60px 48px 80px;
    background: var(--bg);
}

.plans-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.plan-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card.selected {
    border-color: var(--green);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(73,101,32,0.08);
}

.plan-card.popular {
    background: linear-gradient(150deg, #496520 0%, #2D3D12 100%);
    border-color: transparent;
    transform: translateY(-8px);
}

.plan-card.popular:hover {
    transform: translateY(-12px);
}

.plan-card.popular.selected {
    box-shadow: 0 0 0 4px rgba(73,101,32,0.25);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card.popular .plan-badge {
    background: white;
    color: var(--green);
}

.plan-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
}

.plan-card.popular .plan-name {
    color: white;
}

.plan-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-card.popular .plan-tagline {
    color: rgba(255,255,255,0.65);
}

.plan-price-wrap {
    margin-bottom: 6px;
}

.plan-price {
    font-size: 42px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.plan-card.popular .plan-price {
    color: white;
}

.plan-price sup {
    font-size: 22px;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.plan-price span {
    font-size: 26px;
}

.plan-period {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 24px;
    min-height: 36px;
}

.plan-card.popular .plan-period {
    color: rgba(255,255,255,0.65);
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.plan-card.popular .plan-divider {
    background: rgba(255,255,255,0.18);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-card.popular .plan-features li {
    color: rgba(255,255,255,0.88);
}

.plan-features li::before {
    display: none !important;
}

.feature-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.plan-card.popular .feature-check {
    background: rgba(255,255,255,0.2);
    color: white;
}

.plan-select-btn {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    border: none;
    background: var(--green);
    color: white;
    transition: all 0.2s;
}

.plan-select-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(73,101,32,0.35);
}

.plan-card.popular .plan-select-btn {
    background: white;
    color: var(--green);
}

.plan-card.popular .plan-select-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── CHECKOUT PANEL ── */
.checkout-section {
    padding: 0 48px 80px;
    background: var(--bg);
}

.checkout-card {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: none;
}

.checkout-card.visible {
    display: block;
}

.checkout-header {
    background: linear-gradient(150deg, #496520 0%, #2D3D12 100%);
    padding: 32px 36px;
    color: white;
}

.checkout-header-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.checkout-header h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 4px;
}

.checkout-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
}

.checkout-body {
    padding: 36px;
}

.checkout-summary {
    background: var(--green-light);
    border: 1px solid var(--green-border);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-summary-plan {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}

.checkout-summary-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--green);
}

.checkout-summary-period {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.checkout-stripe-btn {
    width: 100%;
    padding: 18px;
    background: var(--green);
    border: none;
    border-radius: 14px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkout-stripe-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(73,101,32,0.35);
}

.checkout-stripe-btn svg {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.checkout-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.checkout-trust-item span {
    font-size: 15px;
}

.checkout-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1114px) {
    .subscribe-hero {
        margin-top: 72px;
        padding: 56px 24px 64px;
    }

    .plans-section {
        padding: 48px 24px 60px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .plan-card.popular {
        transform: none;
    }

    .checkout-section {
        padding: 0 24px 60px;
    }

    .trust-strip {
        padding: 28px 24px;
    }

    .trust-strip-inner {
        gap: 28px;
    }
}