/* ============================================================
   CALM & CLEAN
   PRICING PAGE
   COMPLETE REPLACEMENT CSS
   ============================================================ */


/* ============================================================
   GLOBAL
============================================================ */

.pricing-page {
    --cc-navy: #0d1b2a;
    --cc-navy-2: #13263a;
    --cc-green: #2ecc71;
    --cc-green-dark: #20a85a;
    --cc-green-soft: #eafaf1;
    --cc-border: #dfe7ee;
    --cc-border-light: #edf2f6;
    --cc-bg: #f8fafc;
    --cc-white: #ffffff;
    --cc-text: #142033;
    --cc-muted: #64748b;
    --cc-shadow: 0 12px 35px rgba(13, 27, 42, 0.08);
    --cc-shadow-hover: 0 18px 45px rgba(13, 27, 42, 0.13);

    font-family: "Inter", sans-serif;
    color: var(--cc-text);
    background: var(--cc-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.pricing-page *,
.pricing-page *::before,
.pricing-page *::after {
    box-sizing: border-box;
}

.pricing-page a {
    text-decoration: none;
}

.pricing-page img {
    max-width: 100%;
    height: auto;
}

.pricing-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================================
   HERO
============================================================ */

.pricing-hero {
    position: relative;
    padding: 100px 0 90px;
    background:
        radial-gradient(circle at 85% 20%, rgba(46, 204, 113, 0.10), transparent 28%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #f1f8f4 100%);
    border-bottom: 1px solid var(--cc-border-light);
}

.pricing-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--cc-green-soft);
    color: var(--cc-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pricing-hero h1 {
    margin: 0;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.pricing-hero h1 span {
    display: block;
    margin-top: 8px;
    color: var(--cc-green-dark);
}

.pricing-hero p {
    max-width: 720px;
    margin: 25px auto 0;
    color: var(--cc-muted);
    font-size: 17px;
    line-height: 1.8;
}

.pricing-hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.pricing-btn-primary {
    color: #ffffff;
    background: var(--cc-green);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.22);
}

.pricing-btn-primary:hover {
    color: #ffffff;
    background: var(--cc-green-dark);
    transform: translateY(-2px);
}

.pricing-btn-secondary {
    color: var(--cc-navy);
    background: #ffffff;
    border: 1px solid var(--cc-border);
}

.pricing-btn-secondary:hover {
    color: var(--cc-navy);
    border-color: var(--cc-green);
    transform: translateY(-2px);
}

.pricing-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 28px;
}

.pricing-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cc-muted);
    font-size: 13px;
    font-weight: 600;
}

.pricing-trust i {
    color: var(--cc-green);
}


/* ============================================================
   INTRO
============================================================ */

.pricing-intro {
    padding: 75px 0 30px;
    background: #ffffff;
}


/* ============================================================
   SECTION
============================================================ */

.pricing-section {
    padding: 85px 0;
    background: #ffffff;
}

.pricing-section-alt {
    background: var(--cc-bg);
}

.pricing-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.pricing-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--cc-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pricing-section-heading h2 {
    margin: 0;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.pricing-section-heading p {
    margin: 16px auto 0;
    max-width: 680px;
    color: var(--cc-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* ============================================================
   PRICING GRID
============================================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.pricing-grid-villas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid-move {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* ============================================================
   PRICE CARD
============================================================ */

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--cc-border);
    border-radius: 22px;
    box-shadow: var(--cc-shadow);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.35);
    box-shadow: var(--cc-shadow-hover);
}

.price-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 20px;
    background: var(--cc-green-soft);
    color: var(--cc-green-dark);
    font-size: 28px;
    line-height: 1;
}

.price-card-category {
    display: block;
    margin-bottom: 7px;
    color: var(--cc-green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-card h3 {
    margin: 0;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}

.price-card h3 span {
    color: var(--cc-muted);
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.price {
    margin-top: 13px;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.price small {
    color: var(--cc-muted);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.price-note {
    margin: 10px 0 0;
    color: var(--cc-muted);
    font-size: 13px;
    line-height: 1.6;
}

.price-note strong {
    color: var(--cc-navy);
}


/* ============================================================
   POPULAR BADGE
============================================================ */

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 14px;
    border-radius: 0 20px 0 12px;
    background: var(--cc-green);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
}


/* ============================================================
   REGULAR HOME CLEANING
============================================================ */

.regular-home-cleaning-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.regular-home-card {
    padding: 25px;
    border-radius: 18px;
}

.regular-home-card .price-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 17px;
    border-radius: 16px;
    font-size: 22px;
}

.regular-home-card h3 {
    font-size: 20px;
}

.regular-home-card .price {
    font-size: 28px;
}

.regular-home-featured-card {
    border: 2px solid var(--cc-green);
    box-shadow: 0 14px 35px rgba(46, 204, 113, 0.13);
}

.regular-cleaning-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    padding: 13px 0;
    border-top: 1px solid var(--cc-border-light);
    border-bottom: 1px solid var(--cc-border-light);
}

.regular-cleaning-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cc-muted);
    font-size: 12px;
}

.regular-cleaning-info i {
    width: 16px;
    color: var(--cc-green-dark);
    text-align: center;
}

.included-title {
    margin-top: 20px;
    color: var(--cc-navy);
    font-size: 13px;
}

.price-card ul {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.price-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
}

.price-card ul li i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--cc-green);
    font-size: 11px;
}

.regular-cleaning-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    background: #f8fafc;
    color: var(--cc-muted);
    font-size: 11px;
    line-height: 1.55;
}

.regular-cleaning-note i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--cc-green-dark);
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--cc-navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s ease;
}

.card-btn:hover {
    background: var(--cc-green-dark);
    color: #ffffff;
    transform: translateY(-1px);
}


/* ============================================================
   REGULAR CLEANING SCOPE
============================================================ */

.regular-cleaning-scope-box {
    margin-top: 55px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid var(--cc-border);
    border-radius: 22px;
    box-shadow: var(--cc-shadow);
}

.regular-cleaning-scope-heading {
    margin-bottom: 28px;
    text-align: center;
}

.regular-cleaning-scope-heading h3 {
    margin: 0;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 26px;
}

.regular-cleaning-scope-heading p {
    margin: 8px auto 0;
    color: var(--cc-muted);
    font-size: 14px;
}

.regular-task-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.regular-task-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--cc-border-light);
    border-radius: 15px;
    background: #fbfcfd;
}

.regular-task-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 11px;
    background: var(--cc-green-soft);
    color: var(--cc-green-dark);
}

.regular-task-item strong {
    display: block;
    color: var(--cc-navy);
    font-size: 13px;
}

.regular-task-item p {
    margin: 7px 0 0;
    color: var(--cc-muted);
    font-size: 11px;
    line-height: 1.55;
}

.pricing-service-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 4px solid var(--cc-green);
    border-radius: 0 12px 12px 0;
    background: #f8fafc;
}

.pricing-service-note strong {
    flex: 0 0 auto;
    color: var(--cc-navy);
    font-size: 13px;
}

.pricing-service-note p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 12px;
    line-height: 1.65;
}


/* ============================================================
   MONTHLY PLANS
============================================================ */

.monthly-price-card {
    padding: 30px;
}

.monthly-featured-card {
    border: 2px solid var(--cc-green);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.13);
}

.monthly-plan-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.monthly-plan-mini-stats > div {
    padding: 12px;
    border: 1px solid var(--cc-border-light);
    border-radius: 10px;
    background: #f8fafc;
}

.monthly-plan-mini-stats strong {
    display: inline;
    color: var(--cc-navy);
    font-size: 16px;
}

.monthly-plan-mini-stats span {
    color: var(--cc-muted);
    font-size: 10px;
}


/* ============================================================
   MONTHLY BONUS
   This is the visual style to match the deep-clean bonus.
============================================================ */

.monthly-bonus-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding: 16px 17px;
    border: 1px solid #bfe8ce;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #f0fcf5 0%,
        #e9f9ef 100%
    );
}

.monthly-bonus-box strong {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--cc-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.monthly-bonus-box span {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #24523a;
    font-size: 12px;
    line-height: 1.5;
}

.monthly-bonus-box span::first-letter {
    color: var(--cc-green-dark);
}


/* ============================================================
   MONTHLY OFFER HIGHLIGHT
============================================================ */

.monthly-offer-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding: 30px 32px;
    border: 1px solid #cdebd8;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #f4fcf7,
        #ffffff
    );
}

.monthly-offer-highlight h3 {
    margin: 0;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 23px;
}

.monthly-offer-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.monthly-offer-items span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--cc-border);
    color: var(--cc-navy);
    font-size: 11px;
    font-weight: 600;
}

.pricing-note {
    margin: 22px auto 0;
    max-width: 850px;
    color: var(--cc-muted);
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}


/* ============================================================
   DEEP CLEANING PRICE OPTIONS
============================================================ */

.deep-clean-card,
.villa-card {
    padding: 30px;
}

.deep-price-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.deep-price-options > div {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    background: #f8fafc;
}

.deep-price-options span {
    display: block;
    margin-bottom: 5px;
    color: var(--cc-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.deep-price-options strong {
    display: block;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    line-height: 1.2;
}


/* ============================================================
   DEEP CLEANING BONUS
   IMPORTANT:
   Force the entire bonus into a vertical box.
============================================================ */

.deep-clean-bonus {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 20px 0 4px !important;
    padding: 15px 16px !important;

    background: linear-gradient(
        135deg,
        #f0fcf5 0%,
        #e7f9ee 100%
    ) !important;

    border: 1px solid #bde8cd !important;
    border-radius: 14px !important;

    overflow: hidden !important;
}

.deep-bonus-icon {
    flex: 0 0 34px !important;

    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 10px !important;
    background: #ffffff !important;

    font-size: 18px !important;
    line-height: 1 !important;
}


/*
   The inner div MUST occupy the remaining width.
*/

.deep-clean-bonus > div {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/*
   FREE BONUS title
*/

.deep-clean-bonus > div > strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: var(--cc-green-dark) !important;

    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    line-height: 1.35 !important;

    font-weight: 800 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
}


/*
   Bonus description
*/

.deep-clean-bonus > div > span {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #24523a !important;

    font-family: "Inter", sans-serif !important;
    font-size: 13px !important;
    line-height: 1.55 !important;

    font-weight: 500 !important;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}


/* ============================================================
   DEEP CLEAN SCOPE
============================================================ */

.deep-clean-scope-box {
    margin-top: 50px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid var(--cc-border);
    border-radius: 22px;
    box-shadow: var(--cc-shadow);
}

.deep-clean-scope-box h3 {
    margin: 0 0 25px;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    text-align: center;
}

.deep-task-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.deep-task-grid > div {
    padding: 20px;
    border: 1px solid var(--cc-border-light);
    border-radius: 15px;
    background: #fbfcfd;
}

.deep-task-grid strong {
    display: block;
    color: var(--cc-navy);
    font-size: 13px;
}

.deep-task-grid p {
    margin: 8px 0 0;
    color: var(--cc-muted);
    font-size: 11px;
    line-height: 1.6;
}


/* ============================================================
   VILLA FEATURED
============================================================ */

.villa-featured-card {
    border: 2px solid var(--cc-green);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.12);
}


/* ============================================================
   MOVE-IN / MOVE-OUT
============================================================ */

.move-card {
    padding: 28px;
}

.move-cleaning-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 11px;
    background: #f8fafc;
}

.move-cleaning-hours strong {
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.move-cleaning-hours span {
    color: var(--cc-muted);
    font-size: 11px;
}


/* ============================================================
   SPECIALIZED SERVICES
============================================================ */

#kitchen-bathroom .price-card,
#addons .price-card {
    min-height: 100%;
}

#kitchen-bathroom .price-card ul {
    margin-bottom: 15px;
}

#addons .price-card {
    min-height: 300px;
}


/* ============================================================
   FINAL CTA
============================================================ */

.pricing-final-cta {
    padding: 85px 0;
    background: var(--cc-navy);
}

.pricing-cta-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.pricing-cta-box .pricing-label {
    color: #72e6a0;
}

.pricing-cta-box h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
}

.pricing-cta-box p {
    max-width: 680px;
    margin: 17px auto 0;
    color: #b9c5d1;
    font-size: 15px;
    line-height: 1.75;
}

.pricing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pricing-btn-whatsapp {
    color: #ffffff;
    background: var(--cc-green);
}

.pricing-btn-whatsapp:hover {
    color: #ffffff;
    background: var(--cc-green-dark);
}

.pricing-btn-call {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
}

.pricing-btn-call:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}


/* ============================================================
   FAQ
============================================================ */

.pricing-faq {
    padding: 85px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    border-bottom: 1px solid var(--cc-border);
}

.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
    color: var(--cc-navy);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    flex: 0 0 auto;
    color: var(--cc-green-dark);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary i {
    transform: rotate(180deg);
}

.faq-list details p {
    max-width: 820px;
    margin: -3px 0 20px;
    color: var(--cc-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* ============================================================
   FLOATING WHATSAPP
============================================================ */

.pricing-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 48px;
    padding: 0 17px;

    border-radius: 999px;

    background: #25d366;
    color: #ffffff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.18);

    font-size: 13px;
    font-weight: 800;

    transition: all 0.25s ease;
}

.pricing-floating-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.22);
}

.pricing-floating-whatsapp i {
    font-size: 20px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .pricing-container {
        width: min(100% - 32px, 960px);
    }

    .pricing-grid,
    .pricing-grid-villas,
    .pricing-grid-move {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .regular-home-cleaning-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .regular-task-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .deep-task-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .pricing-container {
        width: min(100% - 24px, 560px);
    }

    .pricing-hero {
        padding: 70px 0 65px;
    }

    .pricing-hero h1 {
        font-size: 36px;
    }

    .pricing-hero p {
        font-size: 14px;
    }

    .pricing-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .pricing-btn {
        width: 100%;
    }

    .pricing-trust {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-intro,
    .pricing-section,
    .pricing-faq,
    .pricing-final-cta {
        padding: 60px 0;
    }

    .pricing-section-heading {
        margin-bottom: 35px;
    }

    .pricing-section-heading h2 {
        font-size: 28px;
    }

    .pricing-section-heading p {
        font-size: 13px;
    }


    /* ALL CARDS */

    .pricing-grid,
    .pricing-grid-villas,
    .pricing-grid-move,
    .regular-home-cleaning-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .price-card,
    .monthly-price-card,
    .deep-clean-card,
    .villa-card,
    .move-card {
        padding: 24px;
        border-radius: 18px;
    }


    /* REGULAR */

    .regular-home-card {
        padding: 24px;
    }

    .regular-home-card .price {
        font-size: 29px;
    }


    /* MONTHLY */

    .monthly-plan-mini-stats {
        grid-template-columns: 1fr 1fr;
    }

    .monthly-offer-highlight {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .monthly-offer-items {
        justify-content: flex-start;
    }


    /* TASK BOXES */

    .regular-cleaning-scope-box,
    .deep-clean-scope-box {
        padding: 24px;
        border-radius: 18px;
    }

    .regular-task-grid,
    .deep-task-grid {
        grid-template-columns: 1fr;
    }


    /* DEEP PRICES */

    .deep-price-options {
        grid-template-columns: 1fr 1fr;
    }

    .deep-price-options strong {
        font-size: 19px;
    }


    /* DEEP BONUS */

    .deep-clean-bonus {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 14px !important;
        gap: 10px !important;
    }

    .deep-clean-bonus > div {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .deep-clean-bonus > div > strong {
        font-size: 10px !important;
    }

    .deep-clean-bonus > div > span {
        font-size: 12px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
    }


    /* SERVICE NOTE */

    .pricing-service-note {
        flex-direction: column;
        gap: 4px;
    }


    /* CTA */

    .pricing-cta-box h2 {
        font-size: 29px;
    }

    .pricing-cta-box p {
        font-size: 13px;
    }


    /* FAQ */

    .faq-list summary {
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-list details p {
        font-size: 12px;
    }


    /* WHATSAPP */

    .pricing-floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        padding: 0 15px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .pricing-container {
        width: calc(100% - 20px);
    }

    .pricing-hero h1 {
        font-size: 31px;
    }

    .pricing-hero {
        padding: 55px 0;
    }

    .price-card {
        padding: 21px;
    }

    .price-icon {
        width: 62px;
        height: 62px;
        border-radius: 16px;
    }

    .price-card h3 {
        font-size: 21px;
    }

    .price {
        font-size: 28px;
    }

    .deep-price-options {
        gap: 7px;
    }

    .deep-price-options > div {
        padding: 11px;
    }

    .deep-price-options strong {
        font-size: 17px;
    }

    .deep-clean-bonus {
        padding: 13px !important;
    }

    .deep-bonus-icon {
        flex-basis: 31px !important;
        width: 31px !important;
        min-width: 31px !important;
        height: 31px !important;
        font-size: 16px !important;
    }

    .deep-clean-bonus > div > span {
        font-size: 11px !important;
    }

    .monthly-plan-mini-stats {
        gap: 7px;
    }

    .monthly-plan-mini-stats > div {
        padding: 10px;
    }

    .pricing-floating-whatsapp span {
        display: none;
    }

    .pricing-floating-whatsapp {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }

}