:root {
    --ccs-dark-green: #2c4e3d;
    --ccs-light-green: #5ca177;
    --ccs-yellow: #f2c638;
    --ccs-beige: #faf3df;
    --ccs-red: #fb6142;
    --ccs-ink: #0e0e0e;
    --ccs-muted: #58655f;
    --ccs-border: rgba(92, 161, 119, 0.24);
    --ccs-shadow: 0 24px 70px rgba(44, 78, 61, 0.14);
}

html {
    scroll-behavior: smooth;
}

.ccs-page,
.ccs-page *,
.ccs-floating-tab,
.ccs-floating-tab * {
    box-sizing: border-box;
}

.ccs-page {
    color: var(--ccs-ink);
    background: #fff;
    margin-bottom: -44px;
}

.ccs-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ccs-hero {
    --ccs-hero-image: none;
    position: relative;
    isolation: isolate;
    min-height: 470px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 84px 0 118px;
    color: #fff;
    background-color: var(--ccs-dark-green);
}

.ccs-hero::before {
    content: "";
    position: absolute;
    inset: -4px;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(24, 48, 36, 0.96) 0%, rgba(30, 62, 45, 0.83) 48%, rgba(30, 62, 45, 0.66) 100%),
        var(--ccs-hero-image);
    background-position: center;
    background-size: cover;
}

.ccs-hero::after {
    content: "";
    position: absolute;
    inset: auto -5% -95px;
    z-index: -1;
    height: 170px;
    border-radius: 50% 50% 0 0;
    background: var(--ccs-beige);
}

.ccs-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ccs-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--ccs-dark-green);
    background: var(--ccs-yellow);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ccs-eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ccs-hero h1 {
    max-width: 880px;
    margin: 24px auto 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.ccs-hero p {
    max-width: 700px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Mulish", sans-serif;
    font-size: clamp(17px, 1.8vw, 18px);
    font-weight: 600;
    line-height: 1.65;
}

.ccs-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 30px;
    padding: 13px 25px;
    border: 1px solid var(--ccs-yellow);
    border-radius: 999px;
    color: var(--ccs-dark-green);
    background: var(--ccs-yellow);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ccs-hero__button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.ccs-hero__button:hover {
    color: #fff;
    background: var(--ccs-dark-green);
    transform: translateY(-2px);
}

.ccs-hero__shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}

.ccs-hero__shape--one {
    width: 104px;
    height: 104px;
    top: 58px;
    left: max(24px, calc(50% - 650px));
    border: 20px solid rgba(242, 198, 56, 0.9);
}

.ccs-hero__shape--two {
    width: 74px;
    height: 74px;
    right: max(32px, calc(50% - 640px));
    bottom: 85px;
    background: rgba(251, 97, 66, 0.86);
}

.ccs-centre-selection {
    position: relative;
    padding: 0 0 110px;
    background: var(--ccs-beige);
}

.ccs-selection-shell {
    position: relative;
    margin-top: -48px;
}

.ccs-section-heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ccs-section-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ccs-red);
    font-family: "Architects Daughter", cursive;
    font-size: 20px;
    font-weight: 700;
}

.ccs-section-heading h2 {
    margin: 0;
    color: var(--ccs-dark-green);
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ccs-section-heading p {
    margin: 16px auto 0;
    color: var(--ccs-muted);
    font-family: "Mulish", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
}

.ccs-centre-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.ccs-centre-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--ccs-border);
    border-radius: 24px;
    color: inherit;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 12px 38px rgba(44, 78, 61, 0.09);
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.ccs-centre-card:hover {
    border-color: var(--ccs-light-green);
    box-shadow: 0 22px 50px rgba(44, 78, 61, 0.16);
    transform: translateY(-7px);
}

.ccs-centre-card:focus-visible,
.ccs-floating-tab:focus-visible,
.ccs-hero__button:focus-visible,
.ccs-back-link:focus-visible {
    outline: 3px solid var(--ccs-yellow);
    outline-offset: 4px;
}

.ccs-centre-card__media {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ccs-dark-green), var(--ccs-light-green));
}

.ccs-centre-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(25, 51, 38, 0.6) 100%);
}

.ccs-centre-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.ccs-centre-card:hover .ccs-centre-card__media img {
    transform: scale(1.055);
}

.ccs-centre-card__fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.ccs-centre-card__fallback svg {
    width: 88px;
    height: 88px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.82);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.ccs-centre-card__eyebrow {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--ccs-dark-green);
    background: var(--ccs-yellow);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ccs-centre-card__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
}

.ccs-centre-card__content h3 {
    margin: 0;
    color: var(--ccs-dark-green);
    font-family: "Poppins", sans-serif;
    font-size: clamp(25px, 2.5vw, 32px);
    font-weight: 500;
    line-height: 1.2;
}

.ccs-centre-card__address {
    display: flex;
    max-width: 290px;
    align-items: flex-start;
    gap: 9px;
    margin: 11px 0 0;
    color: var(--ccs-muted);
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.ccs-centre-card__address svg {
    width: 19px;
    min-width: 19px;
    height: 19px;
    margin-top: 2px;
    fill: none;
    stroke: var(--ccs-light-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ccs-centre-card__action {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 9px;
    color: var(--ccs-dark-green);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.ccs-centre-card__action svg {
    width: 38px;
    height: 38px;
    padding: 10px;
    border-radius: 50%;
    fill: none;
    stroke: var(--ccs-dark-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    background: var(--ccs-yellow);
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ccs-centre-card:hover .ccs-centre-card__action svg {
    color: #fff;
    stroke: #fff;
    background: var(--ccs-dark-green);
    transform: translateX(3px);
}

.ccs-estimate-note {
    display: flex;
    max-width: 720px;
    align-items: flex-start;
    gap: 12px;
    margin: 36px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(92, 161, 119, 0.24);
    border-radius: 14px;
    background: rgba(238, 245, 241, 0.78);
}

.ccs-estimate-note__icon {
    display: grid;
    width: 23px;
    min-width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ccs-light-green);
    font-family: Georgia, serif;
    font-size: 14px;
    font-weight: 700;
}

.ccs-estimate-note p {
    margin: 0;
    color: var(--ccs-muted);
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.ccs-floating-tab {
    position: fixed;
    z-index: 97;
    top: 55%;
    right: 0;
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    justify-content: flex-end;
    gap:14px;
    overflow: hidden;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    color: #fff;
        box-shadow: 0 12px 34px rgba(20, 50, 35, 0.3);
    text-decoration: none;
    transform: translateY(-50%);
    transition: background-color 180ms ease, box-shadow 180ms ease;
    opacity: 1;
    background: var(--ccs-dark-green) !important;
}
 
.ccs-floating-tab--active {
    box-shadow: 0 16px 40px rgba(20, 50, 35, 0.36);
}
.ccs-floating-tab:hover{
    background: var(--ccs-light-green) !important;
}

.ccs-floating-tab__label {
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.ccs-floating-tab__icon {
    display: grid;
    width: 46px;
    min-width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 13px;
    color: var(--ccs-dark-green);
    background: var(--ccs-yellow);
}

.ccs-floating-tab__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ccs-placeholder-hero {
    padding: 70px 0 78px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 20%, rgba(242, 198, 56, 0.3) 0 70px, transparent 72px),
        linear-gradient(125deg, var(--ccs-dark-green), #376a51);
}

.ccs-placeholder-hero h1 {
    max-width: 850px;
    margin: 22px 0 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.ccs-placeholder-hero p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.ccs-back-link {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ccs-back-link:hover {
    color: var(--ccs-yellow);
}

.ccs-back-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.ccs-placeholder-content {
    padding: 70px 0 110px;
    background: var(--ccs-beige);
}

.ccs-placeholder-panel {
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(32px, 6vw, 60px);
    border: 1px solid var(--ccs-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--ccs-shadow);
    text-align: center;
}

.ccs-placeholder-panel__step {
    color: var(--ccs-red);
    font-family: "Architects Daughter", cursive;
    font-size: 19px;
    font-weight: 700;
}

.ccs-placeholder-panel h2 {
    margin: 9px 0 0;
    color: var(--ccs-dark-green);
    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
}

.ccs-placeholder-panel p {
    max-width: 570px;
    margin: 16px auto 0;
    color: var(--ccs-muted);
    font-family: "Mulish", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .ccs-centre-grid {
        grid-template-columns: 1fr;
    }

    .ccs-centre-card__media {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .ccs-container {
        width: min(100% - 30px, 620px);
    }

    .ccs-hero {
        min-height: 410px;
        padding: 68px 0 108px;
    }

    .ccs-hero::before {
        background-image:
            linear-gradient(rgba(27, 55, 41, 0.86), rgba(27, 55, 41, 0.9)),
            var(--ccs-hero-image);
    }

    .ccs-hero::after {
        bottom: -112px;
    }

    .ccs-hero h1 {
        margin-top: 20px;
        font-size: clamp(34px, 10vw, 46px);
    }

    .ccs-hero p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.55;
    }

    .ccs-hero__button {
        min-height: 48px;
        margin-top: 24px;
        padding: 12px 21px;
        font-size: 14px;
    }

    .ccs-hero__shape--one {
        width: 65px;
        height: 65px;
        top: 28px;
        left: -18px;
        border-width: 13px;
    }

    .ccs-hero__shape--two {
        width: 46px;
        height: 46px;
        right: -12px;
        bottom: 78px;
    }

    .ccs-centre-selection {
        padding-bottom: 76px;
    }

    .ccs-selection-shell {
        margin-top: -37px;
        padding: 30px 18px;
        border-radius: 23px;
    }

    .ccs-section-heading > span {
        font-size: 18px;
    }

    .ccs-section-heading p {
        margin-top: 13px;
        font-size: 15px;
        line-height: 1.55;
    }

    .ccs-centre-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .ccs-centre-card {
        border-radius: 20px;
    }

    .ccs-centre-card__media {
        height: 210px;
    }

    .ccs-centre-card__eyebrow {
        right: 14px;
        bottom: 13px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .ccs-centre-card__content {
        display: block;
        min-height: auto;
        padding: 21px 19px 22px;
    }

    .ccs-centre-card__content h3 {
        font-size: 25px;
    }

    .ccs-centre-card__address {
        font-size: 14px;
    }

    .ccs-centre-card__action {
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 17px;
        border-top: 1px solid var(--ccs-border);
    }

    .ccs-estimate-note {
        margin-top: 25px;
        padding: 14px;
    }

    .ccs-floating-tab {
        top: 70%;
    }

    .ccs-floating-tab__label {
        display: none;
    }

    .ccs-placeholder-hero {
        padding: 48px 0 58px;
    }

    .ccs-back-link {
        margin-bottom: 22px;
    }

    .ccs-placeholder-hero h1 {
        font-size: 34px;
    }

    .ccs-placeholder-hero p {
        font-size: 16px;
    }

    .ccs-placeholder-content {
        padding: 48px 0 80px;
    }

    .ccs-placeholder-panel {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .ccs-placeholder-panel p {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ccs-page *,
    .ccs-floating-tab,
    .ccs-floating-tab * {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Reusable centre calculator
   ========================================================================== */

.k2k-ccs,
.k2k-ccs * {
    box-sizing: border-box;
}

.k2k-ccs {
    --cc-green-900: #2c4e3d;
    --cc-green-800: #376a51;
    --cc-green-600: #5ca177;
    --cc-green-100: #e9f3ed;
    --cc-cream: #faf3df;
    --cc-yellow: #f2c638;
    --cc-coral: #fb6142;
    --cc-ink: #1d2c25;
    --cc-muted: #607068;
    --cc-line: #dce7e0;
    --cc-white: #fff;
    --cc-shadow-sm: 0 8px 24px rgba(44, 78, 61, 0.09);
    --cc-shadow: 0 22px 60px rgba(44, 78, 61, 0.13);
    position: relative;
    overflow: clip;
    color: var(--cc-ink);
    background: var(--cc-cream);
    font-family: "Mulish", sans-serif;
}

.k2k-ccs button,
.k2k-ccs input,
.k2k-ccs select,
.k2k-ccs textarea {
    font: inherit;
}

.k2k-ccs button,
.k2k-ccs a {
    -webkit-tap-highlight-color: transparent;
}

.k2k-ccs button {
    cursor: pointer;
}

.k2k-ccs button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.k2k-ccs [hidden] {
    display: none !important;
}

.cc-wrap {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.cc-tool-hero {
    --cc-tool-hero-image: none;
    position: relative;
    isolation: isolate;
    min-height: 430px;
    display: flex;
    overflow: hidden;
    align-items: center;
    color: var(--cc-white);
    background: var(--cc-green-900);
}

.cc-tool-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(100deg, rgba(31, 61, 46, 0.98) 0%, rgba(44, 78, 61, 0.91) 52%, rgba(44, 78, 61, 0.74) 100%),
        var(--cc-tool-hero-image);
    background-position: center;
    background-size: cover;
}

.cc-tool-hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -112px;
    left: -8%;
    z-index: -1;
    height: 160px;
    border-radius: 50% 50% 0 0;
    background: var(--cc-cream);
}

.cc-tool-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 58px;
    padding-bottom: 92px;
}

.cc-tool-hero__orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.cc-tool-hero__orb--one {
    top: 58px;
    right: 10%;
    width: 148px;
    height: 148px;
    border: 28px solid rgba(242, 198, 56, 0.2);
}

.cc-tool-hero__orb--two {
    right: 23%;
    bottom: 82px;
    width: 52px;
    height: 52px;
    background: rgba(251, 97, 66, 0.74);
}

.cc-change-centre {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.cc-change-centre:hover {
    color: var(--cc-yellow);
    transform: translateX(-3px);
}

.cc-tool-eyebrow {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--cc-green-900);
    background: var(--cc-yellow);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cc-tool-hero h1 {
    max-width: 790px;
    margin: 20px 0 0;
    color: var(--cc-white);
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 5.2vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.042em;
}

.cc-tool-hero__inner > p {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.87);
    font-size: clamp(17px, 1.7vw, 18px);
    font-weight: 600;
    line-height: 1.65;
}

.cc-tool-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.cc-tool-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.09);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.cc-tool-badges i {
    color: var(--cc-yellow);
}

.cc-main {
    position: relative;
    padding: 12px 0 110px;
    scroll-margin-top: 90px;
    margin-bottom: -44px;
    background:
        radial-gradient(circle at 8% 20%, rgba(242, 198, 56, 0.16) 0 52px, transparent 54px),
        radial-gradient(circle at 94% 67%, rgba(92, 161, 119, 0.12) 0 90px, transparent 92px),
        var(--cc-cream);
}

.cc-stepper {
    position: relative;
    z-index: 3;
    overflow: hidden;
    margin: -60px 0 28px;
    border: 1px solid rgba(92, 161, 119, 0.16);
    border-radius: 28px;
    background: var(--cc-white);
    box-shadow: var(--cc-shadow);
}

.cc-stepper-head {
    padding: 30px 34px 26px;
    text-align: center;
}

.cc-stepper-kicker {
    margin: 0;
    color: var(--cc-coral);
    font-family: "Architects Daughter", cursive;
    font-size: 18px;
    font-weight: 700;
}

.cc-stepper-title {
    margin: 7px 0 0;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: clamp(27px, 3vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.cc-stepper-track {
    display: grid;
    grid-template-columns: auto minmax(40px, 1fr) auto minmax(40px, 1fr) auto;
    align-items: center;
    padding: 22px clamp(26px, 7vw, 86px) 25px;
    border-top: 1px solid var(--cc-line);
    background: #fbfdfb;
}

.cc-stp {
    min-width: 90px;
    text-align: center;
}

.cc-stp-dot {
    display: grid;
    width: 38px;
    height: 38px;
    margin-inline: auto;
    place-items: center;
    border: 2px solid #cbd9d0;
    border-radius: 50%;
    color: #75857d;
    background: var(--cc-white);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.cc-stp-lbl {
    margin-top: 8px;
    color: #75857d;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.cc-stp-line {
    height: 2px;
    margin: 0 10px 27px;
    background: #dbe5de;
}

.cc-stp.active .cc-stp-dot {
    border-color: var(--cc-yellow);
    color: var(--cc-green-900);
    background: var(--cc-yellow);
    box-shadow: 0 0 0 6px rgba(242, 198, 56, 0.18);
}

.cc-stp.active .cc-stp-lbl {
    color: var(--cc-green-900);
}

.cc-stp.done .cc-stp-dot {
    border-color: var(--cc-green-600);
    color: var(--cc-white);
    background: var(--cc-green-600);
}

.cc-panel {
    display: none;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(92, 161, 119, 0.17);
    border-radius: 28px;
    background: var(--cc-white);
    box-shadow: var(--cc-shadow-sm);
}

.cc-panel.active {
    display: block;
    animation: cc-panel-in 300ms ease both;
}

@keyframes cc-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.cc-panel-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.cc-panel-heading > span {
    color: var(--cc-coral);
    font-family: "Architects Daughter", cursive;
    font-size: 18px;
    font-weight: 700;
}

.cc-panel-heading h2 {
    margin: 5px 0 0;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: clamp(29px, 3.8vw, 38px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.cc-panel-heading p {
    margin: 12px 0 0;
    color: var(--cc-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.cc-field {
    position: relative;
    margin-top: 27px;
}

.cc-field:first-child {
    margin-top: 0;
}

.cc-field > label,
.cc-sublbl {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.cc-info-btn {
    display: inline-grid;
    width: 27px;
    min-width: 27px;
    height: 27px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--cc-green-600);
    background: transparent;
    font-size: 16px;
}

.cc-info-btn:hover,
.cc-info-btn[aria-expanded="true"] {
    color: var(--cc-green-900);
    background: var(--cc-green-100);
}

.cc-seg {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cc-seg-btn {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1.5px solid var(--cc-line);
    border-radius: 15px;
    color: #4f6258;
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    transition: border-color 170ms ease, background-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.cc-seg-btn:hover {
    border-color: var(--cc-green-600);
    transform: translateY(-1px);
}

.cc-seg-btn.sel {
    border-color: var(--cc-green-600);
    color: var(--cc-green-900);
    background: var(--cc-green-100);
    box-shadow: inset 0 0 0 1px rgba(92, 161, 119, 0.2);
}

.cc-seg-title,
.cc-seg-sub {
    display: block;
}

.cc-seg-sub {
    margin-top: 2px;
    color: var(--cc-muted);
    font-family: "Mulish", sans-serif;
    font-size: 12px;
    font-weight: 650;
}

.cc-slider-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 22px;
    align-items: center;
}

.cc-slider-row input[type="range"] {
    width: 100%;
    height: 7px;
    border: 0;
    border-radius: 999px;
    outline: 0;
    accent-color: var(--cc-green-600);
    background: #dfeae3;
}

.cc-slider-row input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--cc-green-600);
    box-shadow: 0 2px 8px rgba(44, 78, 61, 0.3);
    appearance: none;
}

.cc-money-box {
    display: grid;
    min-height: 52px;
    place-items: center;
    padding: 10px 14px;
    border: 2px solid var(--cc-green-600);
    border-radius: 14px;
    color: var(--cc-green-900);
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.cc-hint {
    margin: 10px 0 0;
    color: #75837c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.cc-pop-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transition: grid-template-rows 220ms ease, opacity 180ms ease, margin-top 220ms ease;
}

.cc-pop-panel.open {
    grid-template-rows: 1fr;
    margin-top: 12px;
    opacity: 1;
}

.cc-pop-inner {
    min-height: 0;
    padding: 0 16px;
    border-left: 3px solid transparent;
    color: #53665c;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    transition: padding 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.cc-pop-panel.open .cc-pop-inner {
    padding: 15px 17px;
    border-color: var(--cc-yellow);
    border-radius: 0 12px 12px 0;
    background: #fff9e7;
}

.cc-child-card {
    margin-top: 24px;
    padding: clamp(22px, 3.5vw, 34px);
    border: 1px solid var(--cc-line);
    border-radius: 22px;
    background: #fbfdfb;
}

.cc-child-card:first-child {
    margin-top: 0;
}

.cc-child-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cc-line);
}

.cc-child-head h3 {
    margin: 0;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 750;
}

.cc-child-head h3::before {
    content: "\f1ae";
    margin-right: 9px;
    color: var(--cc-coral);
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 900;
}

.cc-child-remove {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid rgba(251, 97, 66, 0.28);
    border-radius: 999px;
    color: #bb442f;
    background: #fff2ef;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.cc-child-card .c-age {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.cc-child-card .c-age .cc-seg-btn {
    flex-direction: column;
    gap: 0;
}

.cc-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 24px;
}

.cc-room-card {
    position: relative;
    display: flex;
    min-height: 158px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 17px 13px;
    border: 1.5px solid var(--cc-line);
    border-radius: 17px;
    color: var(--cc-ink);
    background: #fff;
    text-align: center;
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease, background-color 170ms ease;
}

.cc-room-card:hover {
    border-color: var(--cc-green-600);
    transform: translateY(-2px);
}

.cc-room-card.sel {
    border-color: var(--cc-green-600);
    background: var(--cc-green-100);
    box-shadow: inset 0 0 0 1px rgba(92, 161, 119, 0.22);
}

.cc-room-card.sel::after {
    content: "\f00c";
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--cc-green-600);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
}

.cc-room-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    place-items: center;
    border-radius: 50%;
    background: var(--cc-cream);
    font-size: 23px;
}

.cc-room-name {
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 750;
}

.cc-room-type,
.cc-room-age {
    display: block;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.cc-room-type {
    margin-top: 3px;
}

.cc-room-age {
    color: #849088;
}

.cc-session-list {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.cc-sess {
    display: flex;
    width: 100%;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 17px;
    border: 1.5px solid var(--cc-line);
    border-radius: 15px;
    color: var(--cc-ink);
    background: #fff;
    text-align: left;
    transition: border-color 170ms ease, background-color 170ms ease;
}

.cc-sess:hover,
.cc-sess.sel {
    border-color: var(--cc-green-600);
}

.cc-sess.sel {
    background: var(--cc-green-100);
}

.cc-sess-left,
.cc-sess-right {
    display: flex;
    align-items: center;
}

.cc-sess-left {
    flex-direction: column;
    align-items: flex-start;
}

.cc-sess-time {
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 750;
}

.cc-sess-hrs {
    margin-top: 3px;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 600;
}

.cc-sess-right {
    flex-shrink: 0;
    gap: 12px;
}

.cc-sess-fee {
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.cc-sess-rb {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border: 2px solid #b9c9bf;
    border-radius: 50%;
    background: #fff;
}

.cc-sess.sel .cc-sess-rb {
    border: 6px solid var(--cc-green-600);
}

.cc-days-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    align-items: center;
    gap: 18px;
}

.cc-days-row .cc-sublbl {
    margin: 0;
}

.cc-days-select,
.cc-field input:not([type="range"]):not([type="checkbox"]),
.cc-field textarea {
    width: 100%;
    border: 1.5px solid var(--cc-line);
    border-radius: 13px;
    color: var(--cc-ink);
    background: #fff;
    outline: 0;
    transition: border-color 170ms ease, box-shadow 170ms ease;
}

.cc-days-select {
    min-height: 50px;
    padding: 10px 42px 10px 14px;
}

.cc-field input:not([type="range"]):not([type="checkbox"]) {
    min-height: 52px;
    padding: 12px 14px;
}

.cc-field textarea {
    min-height: 100px;
    padding: 13px 14px;
    resize: vertical;
}

.cc-days-select:focus,
.cc-field input:not([type="range"]):not([type="checkbox"]):focus,
.cc-field textarea:focus {
    border-color: var(--cc-green-600);
    box-shadow: 0 0 0 4px rgba(92, 161, 119, 0.15);
}

.cc-add-child-btn {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    border: 1.5px dashed var(--cc-green-600);
    border-radius: 15px;
    color: var(--cc-green-900);
    background: rgba(233, 243, 237, 0.6);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 750;
}

.cc-add-child-btn:hover {
    background: var(--cc-green-100);
}

.cc-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 17px 0 0;
    color: #6d7b74;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.cc-fee-note i {
    margin-top: 3px;
    color: var(--cc-coral);
}

.cc-freq {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px;
    padding: 6px;
    border-radius: 15px;
    background: #edf4ef;
}

.cc-freq-btn {
    min-height: 43px;
    padding: 9px 12px;
    border: 0;
    border-radius: 10px;
    color: #607068;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.cc-freq-btn.sel {
    color: var(--cc-green-900);
    background: #fff;
    box-shadow: 0 4px 14px rgba(44, 78, 61, 0.1);
}

.cc-results-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.cc-res-rows {
    overflow: hidden;
    border: 1px solid var(--cc-line);
    border-radius: 18px;
}

.cc-res-row {
    display: flex;
    min-height: 63px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-top: 1px solid var(--cc-line);
    background: #fff;
}

.cc-res-row:first-child {
    border-top: 0;
}

.cc-res-k {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #53665c;
    font-size: 14px;
    font-weight: 700;
}

.cc-res-v {
    flex-shrink: 0;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.cc-pct-pill {
    display: inline-flex;
    min-width: 64px;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--cc-green-900);
    background: var(--cc-yellow);
    font-size: 14px;
}

.cc-res-green {
    background: #f0f8f2;
}

.cc-res-green .cc-res-v,
.cc-res-v-green {
    color: #287246;
}

.cc-res-warn {
    background: #fffaf0;
}

.cc-res-warn .cc-res-v {
    color: #a56510;
}

.cc-res-big {
    min-height: 82px;
    color: #fff;
    background: var(--cc-green-900);
}

.cc-res-big .cc-res-k,
.cc-res-big .cc-res-v {
    color: #fff;
}

.cc-res-big .cc-res-v {
    font-size: clamp(24px, 3vw, 32px);
}

.cc-res-v-sm {
    font-size: 16px;
}

.cc-child-rate-card {
    padding: 20px;
    border: 1px solid var(--cc-line);
    border-radius: 18px;
    background: #fbfdfb;
}

.cc-child-rate-card h3 {
    margin: 0 0 13px;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 750;
}

.cc-child-rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--cc-line);
}

.cc-child-rate-row:first-child {
    border-top: 0;
}

.cc-child-rate-row > div {
    min-width: 0;
}

.cc-child-rate-row strong,
.cc-child-rate-row span {
    display: block;
}

.cc-child-rate-row strong {
    color: var(--cc-ink);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 750;
}

.cc-child-rate-row > div span {
    overflow: hidden;
    margin-top: 2px;
    color: var(--cc-muted);
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cc-child-rate-value {
    flex-shrink: 0;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--cc-green-900);
    background: var(--cc-green-100);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.cc-child-rate-value--higher {
    color: #714e00;
    background: #fff1ad;
}

.cc-disc {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 18px;
    border: 1px solid #f1dfaa;
    border-radius: 14px;
    color: #725f32;
    background: #fffaf0;
}

.cc-disc i {
    margin-top: 3px;
    color: #c89214;
}

.cc-disc p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.cc-send-section {
    margin-top: 32px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(92, 161, 119, 0.22);
    border-radius: 22px;
    background: #f7fbf8;
}

.cc-send-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.cc-send-header__icon {
    display: grid;
    width: 50px;
    min-width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: var(--cc-green-900);
    background: var(--cc-yellow);
    font-size: 20px;
}

.cc-send-header h3 {
    margin: 0;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 500;
    line-height: 1.25;
}

.cc-send-header p {
    margin: 5px 0 0;
    color: var(--cc-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.cc-lead-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
}

.cc-lead-grid .cc-field {
    margin-top: 0;
    margin-bottom: 18px;
}

.cc-req {
    color: var(--cc-coral);
}

.cc-hint-inline {
    color: #829087;
    font-family: "Mulish", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.cc-field input::placeholder,
.cc-field textarea::placeholder,
.cc-self-row input::placeholder {
    color: #9ba69f;
}

.cc-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.cc-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 18px;
    color: #52645a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.cc-consent input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cc-green-600);
}

.cc-send-btn,
.cc-btn-next,
.cc-btn-back,
.cc-tour-btn-primary,
.cc-tour-btn-secondary,
.cc-self-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-weight: 750;
    text-decoration: none;
    transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.cc-send-btn {
    width: 100%;
    min-height: 55px;
    margin-top: 20px;
    padding: 13px 22px;
    border: 1px solid var(--cc-green-900);
    color: #fff;
    background: var(--cc-green-900);
    font-size: 14px;
}

.cc-send-btn:hover:not(:disabled) {
    background: var(--cc-green-600);
    border-color: var(--cc-green-600);
    transform: translateY(-1px);
}

.cc-success,
.cc-error {
    align-items: flex-start;
    gap: 11px;
    margin-top: 16px;
    padding: 15px 17px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.cc-success:not([hidden]),
.cc-error:not([hidden]) {
    display: flex;
}

.cc-success {
    border: 1px solid #b9ddc5;
    color: #286942;
    background: #eef8f1;
}

.cc-error {
    border: 1px solid #f2c7bd;
    color: #97402e;
    background: #fff1ee;
}

.cc-error a {
    color: #8d3322;
    font-weight: 800;
}

.cc-book-inline-btn {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: var(--cc-green-900);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.cc-privacy-note {
    margin: 11px 0 0;
    color: #7a8880;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.cc-privacy-note i {
    margin-right: 5px;
    color: var(--cc-green-600);
}

.cc-share-wrap {
    margin-top: 27px;
}

.cc-share-divider {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #849088;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-share-divider::before,
.cc-share-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--cc-line);
}

.cc-share-tabs {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.cc-share-tab {
    display: inline-flex;
    min-height: 40px;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 11px;
    border: 1px solid var(--cc-line);
    border-radius: 11px;
    color: #607068;
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.cc-share-tab.active {
    border-color: var(--cc-green-600);
    color: var(--cc-green-900);
    background: var(--cc-green-100);
}

.cc-share-panel {
    display: none;
    margin-top: 12px;
}

.cc-share-panel.active {
    display: block;
}

.cc-self-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.cc-self-row input {
    width: 100%;
    min-width: 0;
    min-height: 49px;
    padding: 11px 14px;
    border: 1.5px solid var(--cc-line);
    border-radius: 12px;
    outline: 0;
}

.cc-self-row input:focus {
    border-color: var(--cc-green-600);
    box-shadow: 0 0 0 4px rgba(92, 161, 119, 0.14);
}

.cc-self-row button {
    min-height: 49px;
    padding: 11px 17px;
    border: 1px solid var(--cc-green-900);
    color: #fff;
    background: var(--cc-green-900);
    font-size: 12px;
}

.cc-self-row button:hover {
    border-color: var(--cc-green-600);
    background: var(--cc-green-600);
}

.cc-self-row button.wa-btn {
    border-color: #238c4c;
    background: #238c4c;
}

.cc-tour-section {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 87% 18%, rgba(242, 198, 56, 0.28) 0 66px, transparent 68px),
        radial-gradient(circle at 75% 92%, rgba(251, 97, 66, 0.3) 0 42px, transparent 44px),
        var(--cc-green-900);
}

.cc-tour-inner {
    position: relative;
    z-index: 1;
    padding: clamp(29px, 5vw, 48px);
    text-align: center;
}

.cc-tour-eyebrow {
    margin: 0;
    color: var(--cc-yellow);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cc-tour-section h2 {
    margin: 8px 0 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.cc-tour-section h2 + p {
    max-width: 690px;
    margin: 13px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

.cc-tour-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.cc-tour-actions {
    gap: 11px;
    margin-top: 25px;
}

.cc-tour-btn-primary,
.cc-tour-btn-secondary {
    min-height: 50px;
    padding: 12px 21px;
    border: 1px solid var(--cc-yellow);
    font-size: 13px;
}

.cc-tour-btn-primary {
    color: var(--cc-green-900);
    background: var(--cc-yellow);
}

.cc-tour-btn-secondary {
    color: #fff;
    background: transparent;
}

.cc-tour-btn-primary:hover,
.cc-tour-btn-secondary:hover {
    color: var(--cc-green-900);
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.cc-tour-note {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.cc-disclaimer {
    max-width: 770px;
    margin: 22px auto 0;
    color: #79877f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
}

.cc-disclaimer a {
    color: var(--cc-green-800);
    font-weight: 800;
}

.cc-wizard-error {
    margin: 18px 0 0;
}

.cc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 24px;
}

.cc-btn-next,
.cc-btn-back {
    min-height: 52px;
    padding: 12px 23px;
    font-size: 14px;
}

.cc-btn-next {
    margin-left: auto;
    border: 1px solid var(--cc-green-900);
    color: #fff;
    background: var(--cc-green-900);
}

.cc-btn-back {
    border: 1px solid #cddbd2;
    color: var(--cc-green-900);
    background: #fff;
}

.cc-btn-next:hover,
.cc-btn-back:hover {
    border-color: var(--cc-green-600);
    color: #fff;
    background: var(--cc-green-600);
    transform: translateY(-1px);
}

.k2k-ccs button:focus-visible,
.k2k-ccs a:focus-visible,
.k2k-ccs input:focus-visible,
.k2k-ccs select:focus-visible,
.k2k-ccs textarea:focus-visible {
    outline: 3px solid var(--cc-yellow);
    outline-offset: 3px;
}
.cc-sess-help {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-top: 0.55rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    background: #eef8e5;
    color: #08783e;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.4;
}

.cc-sess-help i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #d79f00;
}

@media (max-width: 900px) {
    .cc-results-layout {
        grid-template-columns: 1fr;
    }

    .cc-child-rate-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0 25px;
        align-items: start;
    }

    .cc-child-rate-card h3 {
        margin-top: 12px;
    }

    .cc-room-grid,
    .cc-child-card .c-age {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .cc-wrap {
        width: min(100% - 30px, 620px);
    }

    .cc-tool-hero {
        min-height: 400px;
    }

    .cc-tool-hero::before {
        background-image:
            linear-gradient(rgba(37, 70, 53, 0.92), rgba(37, 70, 53, 0.94)),
            var(--cc-tool-hero-image);
    }

    .cc-tool-hero::after {
        bottom: -122px;
    }

    .cc-tool-hero__inner {
        padding-top: 44px;
        padding-bottom: 84px;
    }

    .cc-change-centre {
        margin-bottom: 21px;
        font-size: 13px;
    }

    .cc-tool-hero h1 {
        font-size: clamp(35px, 10vw, 49px);
    }

    .cc-tool-hero__inner > p {
        font-size: 16px;
        line-height: 1.55;
    }

    .cc-tool-hero__orb--one {
        top: 35px;
        right: -36px;
        width: 104px;
        height: 104px;
        border-width: 20px;
    }

    .cc-tool-hero__orb--two {
        right: 20%;
        bottom: 53px;
        width: 37px;
        height: 37px;
    }

    .cc-tool-badges {
        gap: 8px;
        margin-top: 21px;
    }

    .cc-tool-badges span {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .cc-main {
        padding-bottom: 82px;
    }

    .cc-stepper {
        margin-top: -48px;
        border-radius: 22px;
    }

    .cc-stepper-head {
        padding: 25px 18px 22px;
    }

    .cc-stepper-kicker {
        font-size: 16px;
    }

    .cc-stepper-title {
        font-size: 27px;
    }

    .cc-stepper-track {
        padding: 18px 15px 20px;
    }

    .cc-stp {
        min-width: 60px;
    }

    .cc-stp-dot {
        width: 34px;
        height: 34px;
    }

    .cc-stp-lbl {
        font-size: 10px;
    }

    .cc-stp-line {
        min-width: 12px;
        margin: 0 4px 25px;
    }

    .cc-panel {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .cc-panel-heading {
        margin-bottom: 27px;
    }

    .cc-panel-heading h2 {
        font-size: 30px;
    }

    .cc-panel-heading p {
        font-size: 14px;
    }

    .cc-slider-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cc-money-box {
        width: 150px;
        justify-self: end;
    }

    .cc-child-card {
        padding: 21px 16px;
        border-radius: 18px;
    }

    .cc-room-grid {
        grid-template-columns: 1fr;
    }

    .cc-room-card {
        min-height: 92px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        column-gap: 12px;
        justify-items: start;
        text-align: left;
    }

    .cc-room-icon {
        grid-row: 1 / span 2;
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .cc-room-name {
        align-self: end;
    }

    .cc-room-type {
        grid-column: 2;
        align-self: start;
        margin: 0;
    }

    .cc-room-age {
        grid-column: 3;
        grid-row: 1 / span 2;
        align-self: center;
        padding-right: 16px;
    }

    .cc-child-card .c-age {
        grid-template-columns: 1fr;
    }
    .cc-seg-btn{
        flex-direction: column;
    }

    .cc-child-card .c-age .cc-seg-btn {
        min-height: 54px;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cc-child-card .c-age .cc-seg-sub {
        margin: 0;
    }

    .cc-days-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cc-sess {
        gap: 12px;
        padding: 14px;
    }

    .cc-results-layout {
        gap: 16px;
    }

    .cc-child-rate-card {
        display: block;
    }

    .cc-child-rate-card h3 {
        margin-top: 0;
    }

    .cc-send-section {
        padding: 24px 17px;
    }

    .cc-lead-grid {
        grid-template-columns: 1fr;
    }

    .cc-share-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cc-share-tab {
        min-width: 0;
        padding-inline: 7px;
    }

    .cc-tour-section {
        border-radius: 19px;
    }
}

@media (max-width: 520px) {
    .cc-wrap {
        width: calc(100% - 24px);
    }

    .cc-tool-hero__inner {
        padding-top: 34px;
    }

    .cc-tool-eyebrow {
        font-size: 10px;
    }

    .cc-tool-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .cc-tool-badges span:nth-child(3) {
        display: none;
    }

    .cc-stepper {
        margin-top: -42px;
    }

    .cc-stepper-title {
        font-size: 24px;
    }


    .cc-stp-lbl {
        max-width: 68px;
        margin-inline: auto;
        line-height: 1.25;
    }

    .cc-panel {
        padding: 24px 15px;
    }

    .cc-panel-heading h2 {
        font-size: 27px;
    }

    .cc-seg {
        grid-template-columns: 1fr;
    }

    .cc-child-head {
        align-items: flex-start;
    }

    .cc-child-head h3 {
        font-size: 19px;
    }

    .cc-child-remove {
        padding: 7px 9px;
        font-size: 10px;
    }

    .cc-room-card {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .cc-room-age {
        display: none;
    }

    .cc-sess {
        align-items: flex-start;
    }

    .cc-sess-right {
        flex-direction: column-reverse;
        gap: 7px;
    }

    .cc-sess-rb {
        align-self: flex-end;
    }

    .cc-sess-fee {
        font-size: 12px;
    }

    .cc-freq {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-res-row {
        min-height: 58px;
        gap: 13px;
        padding: 13px;
    }

    .cc-res-k {
        font-size: 12px;
    }

    .cc-res-v {
        font-size: 15px;
    }

    .cc-res-big {
        align-items: flex-end;
    }

    .cc-res-big .cc-res-v {
        font-size: 28px;
    }

    .cc-send-header {
        align-items: flex-start;
    }

    .cc-send-header__icon {
        width: 43px;
        min-width: 43px;
        height: 43px;
        border-radius: 12px;
        font-size: 17px;
    }

    .cc-send-header h3 {
        font-size: 19px;
    }

    .cc-share-tabs {
        gap: 5px;
    }

    .cc-share-tab {
        font-size: 6px;
    }
        .cc-share-tab i {
        display: none;
    }

    .cc-self-row {
        grid-template-columns: 1fr;
    }

    .cc-self-row button {
        width: 100%;
    }

    .cc-tour-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cc-tour-btn-primary,
    .cc-tour-btn-secondary {
        width: 100%;
    }

    .cc-tour-features {
        align-items: center;
        flex-direction: column;
    }

    .cc-tour-note {
        overflow-wrap: anywhere;
    }

    .cc-nav {
        gap: 9px;
    }

    .cc-btn-next,
    .cc-btn-back {
        min-height: 49px;
        padding: 11px 17px;
        font-size: 12px;
    }

    .cc-wizard-error {
        margin-top: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .k2k-ccs *,
    .k2k-ccs *::before,
    .k2k-ccs *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}