/* ==========================================================
   Comfort Club Membership — Full-Width Premium Redesign
   All selectors scoped to .comfort-club-page for specificity.
   ========================================================== */

/* ── Override theme container for full-width layout ──────── */
/* Needs specificity > .page-template-default .page-content .container (0,3,0) */
body .page-content.comfort-club-page .container {
    max-width: 1320px;
    padding-right: 24px;
    padding-left: 24px;
}

/* ── Kill global ul li:before bullets on this page ───────── */
.comfort-club-page ul li:before,
.comfort-club-page ul li::before {
    content: none !important;
    display: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
}

.comfort-club-page ul li {
    padding-left: 0 !important;
    list-style: none !important;
}

.comfort-club-page ul {
    list-style: none !important;
    padding-left: 0 !important;
}

/* ── Page wrapper ──────────────────────────────────────────── */
.comfort-club-page {
    overflow-x: hidden;
    background: #fff;
    --navy: #011635;
    --navy-mid: #042452;
    --navy-light: #0a3472;
    --gold: #d4af37;
    --gold-light: #f6e27f;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --text-muted: #475569;
    --text-dark: #1e293b;
    --border-soft: rgba(1, 22, 53, 0.07);
}

/* ── Shared utilities ─────────────────────────────────────── */
.comfort-club-page .cc-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.comfort-club-page .cc-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin: 0 0 18px;
}

.comfort-club-page .cc-intro {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.comfort-club-page .cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    line-height: 1.3;
}

.comfort-club-page .cc-btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.comfort-club-page .cc-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
    color: var(--navy);
    text-decoration: none;
}

.comfort-club-page .cc-btn--navy {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(1, 22, 53, 0.2);
}
.comfort-club-page .cc-btn--navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 22, 53, 0.3);
    color: #fff;
    text-decoration: none;
}

.comfort-club-page .cc-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.comfort-club-page .cc-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================
   1. HERO — Wide split layout
   ========================================================== */
.comfort-club-page .cc-hero {
    padding: 72px 0 64px;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.comfort-club-page .cc-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.comfort-club-page .cc-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.comfort-club-page .cc-hero__content {
    position: relative;
    z-index: 1;
}

.comfort-club-page .cc-hero__badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.comfort-club-page .cc-hero__heading {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    color: #fff;
}

.comfort-club-page .cc-hero__subhead {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 32px;
    max-width: 520px;
}

.comfort-club-page .cc-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.comfort-club-page .cc-hero__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.comfort-club-page .cc-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comfort-club-page .cc-hero__trust-sep {
    color: rgba(255, 255, 255, 0.45);
}

.comfort-club-page .cc-hero__image {
    position: relative;
    z-index: 1;
}

.comfort-club-page .cc-hero__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    display: block;
}

@media (max-width: 991px) {
    .comfort-club-page .cc-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .comfort-club-page .cc-hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }
    .comfort-club-page .cc-hero__ctas {
        justify-content: center;
    }
    .comfort-club-page .cc-hero__trust {
        justify-content: center;
    }
    .comfort-club-page .cc-hero__image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .comfort-club-page .cc-hero {
        padding: 44px 0 36px;
    }
    .comfort-club-page .cc-hero__heading {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .comfort-club-page .cc-hero__subhead {
        font-size: 16px;
    }
    .comfort-club-page .cc-hero__ctas {
        flex-direction: column;
        align-items: center;
    }
    .comfort-club-page .cc-hero__ctas .cc-btn {
        width: 100%;
        max-width: 340px;
    }
}

/* ==========================================================
   2. PROOF BAR
   ========================================================== */
.comfort-club-page .cc-proof-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    padding: 28px 0;
    position: relative;
}

.comfort-club-page .cc-proof-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.comfort-club-page .cc-proof-bar__num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.comfort-club-page .cc-proof-bar__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(1, 22, 53, 0.7);
    margin-top: 2px;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .comfort-club-page .cc-proof-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
    .comfort-club-page .cc-proof-bar__num {
        font-size: 26px;
    }
}

/* ==========================================================
   3. PLAN COMPARISON — Full-width cards
   ========================================================== */
.comfort-club-page .cc-plans {
    padding: 88px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    text-align: center;
}

.comfort-club-page .cc-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 12px;
    align-items: start;
}

.comfort-club-page .cc-plan {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--border-soft);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.comfort-club-page .cc-plan:hover {
    box-shadow: 0 12px 40px rgba(4, 36, 82, 0.1);
    transform: translateY(-4px);
}

.comfort-club-page .cc-plan--premier {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 36px rgba(212, 175, 55, 0.14);
}
.comfort-club-page .cc-plan--premier:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.comfort-club-page .cc-plan__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comfort-club-page .cc-plan__header {
    padding: 32px 32px 22px;
    border-bottom: 1px solid var(--border-soft);
}

.comfort-club-page .cc-plan--premier .cc-plan__header {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%);
}

.comfort-club-page .cc-plan__name {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 4px;
}

.comfort-club-page .cc-plan__tier {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.comfort-club-page .cc-plan__body {
    padding: 28px 32px 32px;
}

.comfort-club-page .cc-plan__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.comfort-club-page .cc-plan__features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px !important;
}

.comfort-club-page .cc-plan__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(1, 22, 53, 0.04);
    list-style: none !important;
    position: relative;
}
.comfort-club-page .cc-plan__feature:last-child {
    border-bottom: none;
}

.comfort-club-page .cc-plan__check {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
    display: flex;
}

.comfort-club-page .cc-plan__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 32px;
    font-size: 17px;
}

.comfort-club-page .cc-plans-note {
    text-align: center;
    font-size: 15px;
    color: #64748b;
    margin-top: 24px;
}
.comfort-club-page .cc-plans-note a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}
.comfort-club-page .cc-plans-note a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .comfort-club-page .cc-plans {
        padding: 56px 0;
    }
    .comfort-club-page .cc-plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .comfort-club-page .cc-plan__header,
    .comfort-club-page .cc-plan__body {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* ==========================================================
   4. SERVICE IMAGE STRIP
   ========================================================== */
.comfort-club-page .cc-service-strip {
    position: relative;
    overflow: hidden;
}

.comfort-club-page .cc-service-strip__inner {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
}

.comfort-club-page .cc-service-strip__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comfort-club-page .cc-service-strip__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 88px 0;
    background: linear-gradient(135deg, rgba(1, 22, 53, 0.9) 0%, rgba(4, 36, 82, 0.8) 100%);
}

.comfort-club-page .cc-service-strip__heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.comfort-club-page .cc-service-strip__sub {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 0 32px;
}

@media (max-width: 767px) {
    .comfort-club-page .cc-service-strip__inner {
        min-height: 360px;
    }
    .comfort-club-page .cc-service-strip__overlay {
        padding: 52px 0;
    }
    .comfort-club-page .cc-service-strip__heading {
        font-size: 28px;
    }
}

/* ==========================================================
   5. BENEFITS — Full-width grid
   ========================================================== */
.comfort-club-page .cc-benefits {
    padding: 88px 0;
    text-align: center;
}

.comfort-club-page .cc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 12px;
}

.comfort-club-page .cc-benefit {
    text-align: left;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.comfort-club-page .cc-benefit:hover {
    box-shadow: 0 12px 36px rgba(4, 36, 82, 0.08);
    transform: translateY(-3px);
}

.comfort-club-page .cc-benefit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-glow);
    margin-bottom: 18px;
    flex-shrink: 0;
}

.comfort-club-page .cc-benefit__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}

.comfort-club-page .cc-benefit__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .comfort-club-page .cc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .comfort-club-page .cc-benefits {
        padding: 56px 0;
    }
    .comfort-club-page .cc-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   6. ENROLLMENT CTA — Full-width with large iframe
   ========================================================== */
.comfort-club-page .cc-enroll {
    padding: 88px 0;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.comfort-club-page .cc-enroll::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.comfort-club-page .cc-enroll__inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.comfort-club-page .cc-enroll__kicker {
    color: var(--gold-light);
}

.comfort-club-page .cc-enroll__heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 20px;
}

.comfort-club-page .cc-enroll__img-wrap {
    margin: 0 0 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.comfort-club-page .cc-enroll__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.comfort-club-page .cc-enroll__text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.comfort-club-page .cc-enroll__bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comfort-club-page .cc-enroll__bullet {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.comfort-club-page .cc-enroll__bullet svg {
    flex-shrink: 0;
}

.comfort-club-page .cc-enroll__wizard {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
    min-height: 600px;
}

.comfort-club-page .cc-enroll__iframe {
    width: 100%;
    height: 820px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .comfort-club-page .cc-enroll__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .comfort-club-page .cc-enroll__iframe {
        height: 780px;
    }
}

@media (max-width: 600px) {
    .comfort-club-page .cc-enroll {
        padding: 56px 0;
    }
    .comfort-club-page .cc-enroll__heading {
        font-size: 30px;
    }
    .comfort-club-page .cc-enroll__wizard {
        border-radius: 14px;
        margin: 0 -8px;
    }
    .comfort-club-page .cc-enroll__iframe {
        height: 700px;
    }
}

/* ==========================================================
   7. FAQ — Wider layout
   ========================================================== */
.comfort-club-page .cc-faq {
    padding: 88px 0;
    background: #f9fafb;
    text-align: center;
}

.comfort-club-page .cc-faq__list {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.comfort-club-page .cc-faq__item {
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease;
}
.comfort-club-page .cc-faq__item[open] {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.comfort-club-page .cc-faq__item summary {
    padding: 20px 28px;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.15s ease;
}
.comfort-club-page .cc-faq__item summary:hover {
    background: rgba(1, 22, 53, 0.02);
}
.comfort-club-page .cc-faq__item summary::-webkit-details-marker {
    display: none;
}
.comfort-club-page .cc-faq__item summary::marker {
    display: none;
    content: '';
}
.comfort-club-page .cc-faq__item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
}
.comfort-club-page .cc-faq__item[open] summary::after {
    content: '\2212';
}
.comfort-club-page .cc-faq__item[open] summary {
    background: rgba(212, 175, 55, 0.04);
}

.comfort-club-page .cc-faq__answer {
    padding: 0 28px 22px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .comfort-club-page .cc-faq {
        padding: 56px 0;
    }
    .comfort-club-page .cc-faq__item summary {
        padding: 18px 20px;
        font-size: 15px;
    }
    .comfort-club-page .cc-faq__answer {
        padding: 0 20px 18px;
        font-size: 15px;
    }
}

/* ==========================================================
   8. FINAL CTA
   ========================================================== */
.comfort-club-page .cc-final {
    padding: 88px 0;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comfort-club-page .cc-final::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.comfort-club-page .cc-final__kicker {
    color: var(--gold-light);
}

.comfort-club-page .cc-final__heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}

.comfort-club-page .cc-final__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.comfort-club-page .cc-final__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.comfort-club-page .cc-final__trust-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
}

.comfort-club-page .cc-final__trust-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.comfort-club-page .cc-final__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .comfort-club-page .cc-final {
        padding: 56px 0;
    }
    .comfort-club-page .cc-final__heading {
        font-size: 32px;
    }
    .comfort-club-page .cc-final__trust {
        gap: 32px;
    }
    .comfort-club-page .cc-final__ctas {
        flex-direction: column;
        align-items: center;
    }
    .comfort-club-page .cc-final__ctas .cc-btn {
        width: 100%;
        max-width: 340px;
    }
}

/* ==========================================================
   RESPONSIVE HEADING SCALE
   ========================================================== */
@media (max-width: 767px) {
    .comfort-club-page .cc-heading {
        font-size: 32px;
    }
    body .page-content.comfort-club-page .container {
        padding-right: 18px;
        padding-left: 18px;
    }
}
