/* =========================================================
   CALM & CLEAN
   MONTHLY HOME CLEANING PLANS
   Sharjah, UAE
   ========================================================= */

:root {
    --cc-navy: #0d1b2a;
    --cc-navy-light: #16283b;

    --cc-green: #2ecc71;
    --cc-green-dark: #20a85a;
    --cc-green-soft: #effaf4;

    /* 5% DISCOUNT */
    --cc-gold: #f59e0b;
    --cc-gold-dark: #d97706;
    --cc-gold-soft: #fff7df;

    --cc-white: #ffffff;
    --cc-light: #f7faf9;
    --cc-gray: #64748b;
    --cc-dark: #17212b;

    --cc-border: #e5e7eb;

    --cc-shadow:
        0 15px 40px rgba(13, 27, 42, 0.08);

    --cc-radius: 18px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.cc-monthly-page {
    width: 100%;
    background: var(--cc-white);
    color: var(--cc-dark);
    overflow: hidden;
    font-family: "Inter", Arial, sans-serif;
}

.cc-monthly-page *,
.cc-monthly-page *::before,
.cc-monthly-page *::after {
    box-sizing: border-box;
}

.cc-monthly-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.cc-monthly-section {
    padding: 90px 0;
}

.cc-monthly-light-section {
    background: var(--cc-light);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.cc-monthly-section-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.cc-monthly-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--cc-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cc-monthly-section-heading h2,
.cc-monthly-final-inner h2,
.cc-monthly-bonus-content h2 {
    margin: 0 0 16px;
    color: var(--cc-navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
}

.cc-monthly-section-heading p {
    margin: 0;
    color: var(--cc-gray);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.cc-monthly-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(13, 27, 42, 0.96) 0%,
            rgba(13, 27, 42, 0.84) 48%,
            rgba(13, 27, 42, 0.45) 100%
        ),
        url("../images/monthly-cleaning-hero.jpg")
        center / cover no-repeat;

    color: var(--cc-white);
}

.cc-monthly-hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.cc-monthly-hero-inner {
    position: relative;
    z-index: 2;
}

.cc-monthly-hero-content {
    max-width: 780px;
    padding: 80px 0;
}

.cc-monthly-hero .cc-monthly-eyebrow {
    color: #8df0b5;
}

.cc-monthly-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.cc-monthly-hero-subtitle {
    max-width: 690px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 21px;
    line-height: 1.6;
}

.cc-monthly-hero-text {
    max-width: 680px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.cc-monthly-hero-actions,
.cc-monthly-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cc-monthly-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 25px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cc-monthly-btn-primary {
    background: var(--cc-green);
    color: var(--cc-navy);
}

.cc-monthly-btn-primary:hover {
    background: #42dd83;
    color: var(--cc-navy);
    transform: translateY(-2px);
}

.cc-monthly-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.cc-monthly-btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

.cc-monthly-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin-top: 30px;
}

.cc-monthly-hero-trust span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.cc-monthly-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cc-monthly-benefit-card {
    padding: 30px 25px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: #fff;
    box-shadow: var(--cc-shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-monthly-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(13, 27, 42, 0.12);
}

.cc-monthly-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 20px;

    border-radius: 50%;
    background: var(--cc-green-soft);
    color: var(--cc-green-dark);

    font-size: 13px;
    font-weight: 800;
}

.cc-monthly-benefit-card h3 {
    margin: 0 0 12px;
    color: var(--cc-navy);
    font-size: 20px;
}

.cc-monthly-benefit-card p {
    margin: 0;
    color: var(--cc-gray);
    line-height: 1.7;
    font-size: 15px;
}


/* =========================================================
   PLAN GRID
   ========================================================= */

.cc-monthly-plans-section {
    background: #fff;
}

.cc-monthly-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* =========================================================
   PLAN CARD
   ========================================================= */

.cc-monthly-plan-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 32px 25px 25px;

    border: 1px solid var(--cc-border);
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(13, 27, 42, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.cc-monthly-plan-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(13, 27, 42, 0.13);
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.cc-monthly-plan-featured {
    border: 2px solid var(--cc-green);
}

.cc-monthly-plan-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 15px;

    border-radius: 50px;

    background: var(--cc-green);
    color: var(--cc-navy);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    white-space: nowrap;
}


/* =========================================================
   PLAN HEADER
   ========================================================= */

.cc-monthly-plan-top {
    text-align: center;
}

.cc-monthly-plan-icon {
    display: block;
    margin-bottom: 10px;
    font-size: 34px;
}

.cc-monthly-plan-type {
    display: block;
    margin-bottom: 5px;

    color: var(--cc-green-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.cc-monthly-plan-top h3 {
    margin: 0;
    color: var(--cc-navy);
    font-size: 24px;
    line-height: 1.25;
}


/* =========================================================
   PRICE
   ========================================================= */

.cc-monthly-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;

    margin-top: 23px;

    color: var(--cc-navy);

    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}

.cc-monthly-price span {
    color: var(--cc-green-dark);
    font-size: 17px;
    font-weight: 700;
}

.cc-monthly-price-label {
    margin: 8px 0 22px;

    color: var(--cc-gray);

    text-align: center;
    font-size: 13px;
}


/* =========================================================
   PLAN STATS
   ========================================================= */

.cc-monthly-plan-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-bottom: 25px;

    border: 1px solid var(--cc-border);
    border-radius: 12px;

    overflow: hidden;
    background: #fafcfc;
}

.cc-monthly-plan-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 76px;
    padding: 9px 5px;

    border-right: 1px solid var(--cc-border);

    text-align: center;
}

.cc-monthly-plan-stats > div:last-child {
    border-right: 0;
}

.cc-monthly-plan-stats strong {
    color: var(--cc-navy);
    font-size: 15px;
    line-height: 1.3;
}

.cc-monthly-plan-stats span {
    margin-top: 4px;
    color: var(--cc-gray);
    font-size: 10px;
    line-height: 1.3;
}


/* =========================================================
   INCLUDED
   ========================================================= */

.cc-monthly-included {
    margin-bottom: 22px;
}

.cc-monthly-included h4 {
    margin: 0 0 13px;

    color: var(--cc-navy);

    font-size: 14px;
    font-weight: 800;
}

.cc-monthly-plan-features {
    display: flex;
    flex-direction: column;
    gap: 9px;

    flex: 1;

    margin: 0;
    padding: 0;

    list-style: none;
}

.cc-monthly-plan-features li {
    position: relative;

    padding-left: 23px;

    color: #475569;

    font-size: 13px;
    line-height: 1.5;
}

.cc-monthly-plan-features li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--cc-green-dark);

    font-weight: 800;
}


/* =========================================================
   BONUS BOX
   ========================================================= */

.cc-monthly-bonus-box {
    margin-top: auto;
    margin-bottom: 20px;

    padding: 16px;

    border-radius: 13px;

    background: var(--cc-green-soft);

    border: 1px solid rgba(46, 204, 113, 0.25);
}

.cc-monthly-bonus-title {
    margin-bottom: 11px;

    color: var(--cc-navy);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
}

.cc-monthly-bonus-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cc-monthly-fridge-bonus {
    color: var(--cc-green-dark);
    font-size: 12px;
    font-weight: 700;
}


/*
   IMPORTANT:
   5% discount gets a different gold/orange color.
*/

.cc-monthly-discount-bonus {
    color: var(--cc-gold-dark);

    font-size: 12px;
    font-weight: 900;
}

.cc-monthly-bonus-box.bonus-5 {
    background: linear-gradient(
        135deg,
        #f0faf4 0%,
        #fff8e7 100%
    );

    border-color: rgba(245, 158, 11, 0.35);
}

.cc-monthly-bonus-box.bonus-10 {
    background: var(--cc-green-soft);
    border-color: rgba(46, 204, 113, 0.35);
}

.cc-monthly-bonus-box.bonus-10
.cc-monthly-discount-bonus {
    color: var(--cc-green-dark);
}


/* =========================================================
   BOOK BUTTON
   ========================================================= */

.cc-monthly-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 18px;

    border-radius: 8px;

    background: var(--cc-navy);
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.cc-monthly-plan-btn:hover {
    background: var(--cc-green);
    color: var(--cc-navy);
    transform: translateY(-2px);
}


/* =========================================================
   PRICING NOTE
   ========================================================= */

.cc-monthly-pricing-note {
    max-width: 850px;

    margin: 30px auto 0;

    color: var(--cc-gray);

    text-align: center;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COMPARISON TABLE
   ========================================================= */

.cc-monthly-table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--cc-border);
    border-radius: 15px;

    background: #fff;

    box-shadow: var(--cc-shadow);
}

.cc-monthly-table {
    width: 100%;
    min-width: 980px;

    border-collapse: collapse;
}

.cc-monthly-table th,
.cc-monthly-table td {
    padding: 17px 18px;

    border-bottom: 1px solid var(--cc-border);

    text-align: left;
    vertical-align: middle;

    font-size: 13px;
    line-height: 1.5;
}

.cc-monthly-table thead th {
    background: var(--cc-navy);
    color: #fff;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}

.cc-monthly-table tbody th {
    background: #fafcfc;
    color: var(--cc-navy);

    font-weight: 800;
}

.cc-monthly-table tbody td {
    color: var(--cc-gray);
}

.cc-monthly-table tbody td strong {
    color: var(--cc-green-dark);
    font-size: 15px;
}

.cc-monthly-table tbody tr:hover {
    background: #fbfefd;
}

.cc-monthly-table tbody tr:last-child th,
.cc-monthly-table tbody tr:last-child td {
    border-bottom: 0;
}

.cc-table-bonus-fridge {
    display: block;

    margin-bottom: 5px;

    color: var(--cc-green-dark);

    font-size: 12px;
    font-weight: 700;
}

.cc-table-bonus-discount {
    display: inline-block;

    padding: 4px 8px;

    border-radius: 20px;

    background: var(--cc-gold-soft);
    color: var(--cc-gold-dark);

    font-size: 11px;
    font-weight: 900;
}

.cc-table-bonus-discount.bonus-10 {
    background: var(--cc-green-soft);
    color: var(--cc-green-dark);
}


/* =========================================================
   TASKS
   ========================================================= */

.cc-monthly-task-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cc-monthly-task-card {
    padding: 28px;

    border: 1px solid var(--cc-border);
    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(13, 27, 42, 0.06);
}

.cc-monthly-task-card h3 {
    margin: 0 0 16px;

    color: var(--cc-navy);

    font-size: 20px;
}

.cc-monthly-task-card ul {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.cc-monthly-task-card li {
    position: relative;

    padding-left: 21px;

    color: var(--cc-gray);

    font-size: 14px;
    line-height: 1.5;
}

.cc-monthly-task-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--cc-green-dark);

    font-weight: 800;
}


/* =========================================================
   BONUS SECTION
   ========================================================= */

.cc-monthly-bonus-section {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--cc-navy),
            #17344a
        );
}

.cc-monthly-bonus-card {
    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 50px;

    align-items: center;

    padding: 55px;

    border-radius: 24px;

    background: #fff;
}

.cc-monthly-bonus-content h2 {
    font-size: 38px;
}

.cc-monthly-bonus-content p {
    margin: 0;

    color: var(--cc-gray);

    line-height: 1.7;
}

.cc-monthly-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.cc-monthly-bonus-grid > div {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 145px;

    padding: 20px;

    border: 1px solid var(--cc-border);
    border-radius: 14px;

    background: var(--cc-light);

    text-align: center;
}

.cc-monthly-bonus-grid span {
    margin-bottom: 10px;
    font-size: 28px;
}

.cc-monthly-bonus-grid strong {
    color: var(--cc-navy);
    font-size: 13px;
}

.cc-monthly-bonus-grid small {
    margin-top: 6px;

    color: var(--cc-gray);

    font-size: 11px;
}


/* 5% BONUS */
.cc-monthly-bonus-grid .bonus-5 {
    background: var(--cc-gold-soft);
    border-color: rgba(245, 158, 11, 0.35);
}

.cc-monthly-bonus-grid .bonus-5 strong {
    color: var(--cc-gold-dark);
}


/* 10% BONUS */
.cc-monthly-bonus-grid .bonus-10 {
    background: var(--cc-green-soft);
    border-color: rgba(46, 204, 113, 0.35);
}

.cc-monthly-bonus-grid .bonus-10 strong {
    color: var(--cc-green-dark);
}


/* =========================================================
   AUDIENCE
   ========================================================= */

.cc-monthly-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cc-monthly-audience-card {
    padding: 28px;

    border-left: 4px solid var(--cc-green);

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(13, 27, 42, 0.06);
}

.cc-monthly-audience-card h3 {
    margin: 0 0 10px;

    color: var(--cc-navy);

    font-size: 19px;
}

.cc-monthly-audience-card p {
    margin: 0;

    color: var(--cc-gray);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   EXCLUSIONS
   ========================================================= */

.cc-monthly-exclusion-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.cc-monthly-exclusion-grid > div {
    padding: 17px 20px;

    border: 1px solid var(--cc-border);
    border-radius: 10px;

    background: #fff;

    color: #475569;

    font-size: 14px;
}

.cc-monthly-exclusion-grid > div::before {
    content: "×";

    margin-right: 9px;

    color: #dc2626;

    font-weight: 800;
}


/* =========================================================
   STEPS
   ========================================================= */

.cc-monthly-steps-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.cc-monthly-step {
    padding: 30px;

    border-radius: 16px;

    background: #fff;

    box-shadow: var(--cc-shadow);
}

.cc-monthly-step > span {
    display: inline-flex;

    margin-bottom: 18px;

    color: var(--cc-green-dark);

    font-size: 14px;
    font-weight: 800;
}

.cc-monthly-step h3 {
    margin: 0 0 10px;

    color: var(--cc-navy);

    font-size: 20px;
}

.cc-monthly-step p {
    margin: 0;

    color: var(--cc-gray);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FAQ
   ========================================================= */

.cc-monthly-faq-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.cc-monthly-faq-item {
    overflow: hidden;

    border: 1px solid var(--cc-border);
    border-radius: 12px;

    background: #fff;
}

.cc-monthly-faq-item summary {
    position: relative;

    padding: 20px 50px 20px 22px;

    cursor: pointer;

    color: var(--cc-navy);

    font-size: 15px;
    font-weight: 700;

    list-style: none;
}

.cc-monthly-faq-item summary::-webkit-details-marker {
    display: none;
}

.cc-monthly-faq-item summary::after {
    content: "+";

    position: absolute;

    right: 20px;
    top: 17px;

    color: var(--cc-green-dark);

    font-size: 22px;
    font-weight: 400;
}

.cc-monthly-faq-item[open] summary::after {
    content: "−";
}

.cc-monthly-faq-item p {
    margin: 0;

    padding: 0 22px 22px;

    color: var(--cc-gray);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cc-monthly-final-cta {
    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            var(--cc-navy),
            #17344a
        );
}

.cc-monthly-final-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cc-monthly-final-inner h2 {
    color: #fff;
}

.cc-monthly-final-inner .cc-monthly-eyebrow {
    color: #8df0b5;
}

.cc-monthly-final-inner p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.cc-monthly-floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 18px;

    border-radius: 50px;

    background: #25d366;
    color: #fff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: transform 0.25s ease;
}

.cc-monthly-floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
}

.cc-monthly-floating-whatsapp > span:first-child {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .cc-monthly-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-monthly-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-monthly-task-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-monthly-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-monthly-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-monthly-bonus-card {
        grid-template-columns: 1fr;
    }

    .cc-monthly-bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cc-monthly-final-inner {
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .cc-monthly-container {
        width: min(100% - 30px, 1180px);
    }

    .cc-monthly-section {
        padding: 65px 0;
    }

    .cc-monthly-section-heading {
        margin-bottom: 35px;
    }

    .cc-monthly-section-heading h2,
    .cc-monthly-final-inner h2 {
        font-size: 30px;
    }

    .cc-monthly-section-heading p {
        font-size: 15px;
    }


    /* HERO */

    .cc-monthly-hero {
        min-height: 650px;

        background-position: 65% center;
    }

    .cc-monthly-hero-content {
        padding: 70px 0;
    }

    .cc-monthly-hero h1 {
        font-size: 39px;
        letter-spacing: -0.8px;
    }

    .cc-monthly-hero-subtitle {
        font-size: 17px;
    }

    .cc-monthly-hero-text {
        font-size: 14px;
    }

    .cc-monthly-hero-actions {
        flex-direction: column;
    }

    .cc-monthly-btn {
        width: 100%;
    }

    .cc-monthly-hero-trust {
        flex-direction: column;
        gap: 9px;
    }


    /* GRIDS */

    .cc-monthly-benefit-grid,
    .cc-monthly-plan-grid,
    .cc-monthly-task-grid,
    .cc-monthly-audience-grid,
    .cc-monthly-steps-grid,
    .cc-monthly-faq-grid {
        grid-template-columns: 1fr;
    }


    /* PLAN */

    .cc-monthly-plan-card {
        padding: 30px 22px 25px;
    }

    .cc-monthly-price {
        font-size: 44px;
    }


    /* STATS */

    .cc-monthly-plan-stats > div {
        min-height: 70px;
    }


    /* TABLE */

    .cc-monthly-table-wrap {
        border-radius: 10px;
    }

    .cc-monthly-table {
        min-width: 950px;
    }

    .cc-monthly-table th,
    .cc-monthly-table td {
        padding: 13px 14px;
        font-size: 12px;
    }


    /* BONUS */

    .cc-monthly-bonus-section {
        padding: 65px 0;
    }

    .cc-monthly-bonus-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .cc-monthly-bonus-content h2 {
        font-size: 30px;
    }

    .cc-monthly-bonus-grid {
        grid-template-columns: 1fr;
    }


    /* FINAL CTA */

    .cc-monthly-final-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-monthly-final-actions {
        width: 100%;
        flex-direction: column;
    }


    /* WHATSAPP */

    .cc-monthly-floating-whatsapp {
        right: 15px;
        bottom: 15px;

        width: 52px;
        height: 52px;

        padding: 14px;

        justify-content: center;
    }

    .cc-monthly-floating-whatsapp > span:first-child {
        display: block;
        font-size: 17px;
    }

    .cc-monthly-floating-whatsapp > span:last-child {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .cc-monthly-hero h1 {
        font-size: 34px;
    }

    .cc-monthly-section {
        padding: 55px 0;
    }

    .cc-monthly-plan-card {
        border-radius: 15px;
    }

    .cc-monthly-price {
        font-size: 40px;
    }

    .cc-monthly-plan-stats span {
        font-size: 9px;
    }

    .cc-monthly-plan-stats strong {
        font-size: 13px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.cc-monthly-page a:focus-visible,
.cc-monthly-page summary:focus-visible {
    outline: 3px solid rgba(46, 204, 113, 0.5);
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cc-monthly-page *,
    .cc-monthly-page *::before,
    .cc-monthly-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}