:root {
    --cm-ink: #09090b;
    --cm-muted: #535760;
    --cm-line: #ece8ee;
    --cm-soft: #fff7fa;
    --cm-paper: #ffffff;
    --cm-green: #16a35f;
    --cm-blue: #1589c9;
    --cm-pink: #db3f6b;
    --cm-purple: #8b3f98;
    --cm-mint: #dff6e8;
    --cm-sky: #dff3ff;
    --cm-radius: 18px;
    --cm-shadow: 0 24px 70px rgba(20, 20, 25, 0.12);
    --cm-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 0% 8%, rgba(219, 63, 107, 0.2), transparent 26rem),
        radial-gradient(circle at 100% 4%, rgba(21, 137, 201, 0.14), transparent 30rem),
        linear-gradient(90deg, #ffe1ea 0%, #fff 43%, #e4f8e8 76%, #e4f6ff 100%),
        #fff;
    color: var(--cm-ink);
    font-family: var(--cm-font);
    font-size: 17px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

img {
    max-width: 100%;
    height: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--cm-ink);
    color: #fff;
    border-radius: 999px;
}

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

.content-width {
    width: min(920px, calc(100vw - 40px));
}

.site-header {
    position: relative;
    top: auto;
    z-index: 50;
    width: min(1240px, calc(100vw - 40px));
    margin: 36px auto 0;
    border: 1px solid rgba(220, 216, 224, 0.95);
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 60px rgba(20, 20, 25, 0.12);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    width: 100%;
    min-height: 78px;
    padding: 0 56px;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: 112px;
    max-height: 68px;
    object-fit: contain;
}

.site-nav__list {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #000;
    font-weight: 800;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
    background: #f6f2f6;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.button--primary,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(180deg, #ee5d88, #c82f62);
    color: #fff;
    box-shadow: 0 9px 18px rgba(219, 63, 107, 0.28);
}

.button--ghost {
    background: #fff;
    color: var(--cm-ink);
    border: 2px solid #000;
}

.button--dark {
    background: var(--cm-ink);
    color: #fff;
}

.site-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid var(--cm-line);
    border-radius: 999px;
    background: #fff;
}

.site-menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--cm-ink);
}

.hero-home {
    overflow: hidden;
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(220, 216, 224, 0.95);
    border-top: 0;
    background:
        linear-gradient(90deg, rgba(255, 219, 230, 0.88) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(222, 246, 233, 0.82) 74%, rgba(226, 246, 255, 0.86) 100%),
        #fff;
}

.hero-home__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 70px 74px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: #c82f62;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-home h1,
.page-hero h1,
.section-heading h2,
.cta-band h2 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3rem, 6.5vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    font-weight: 1000;
    text-transform: uppercase;
}

.hero-home p:not(.eyebrow),
.page-hero p,
.cta-band p {
    max-width: 680px;
    color: #111;
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 650;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-orbit {
    position: relative;
    min-height: 470px;
    border-radius: 34px 34px 0 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(219, 63, 107, 0.18), transparent 5rem),
        radial-gradient(circle at 74% 20%, rgba(21, 137, 201, 0.16), transparent 7rem),
        radial-gradient(circle at 55% 78%, rgba(65, 164, 73, 0.2), transparent 12rem);
    box-shadow: none;
}

.hero-orbit--pop {
    isolation: isolate;
}

.pop-dot,
.signal-mark {
    position: absolute;
    z-index: 2;
}

.pop-dot {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(20, 20, 25, 0.12);
}

.pop-dot--pink {
    top: 67px;
    left: 64px;
    background: var(--cm-pink);
}

.pop-dot--green {
    right: 132px;
    top: 84px;
    background: var(--cm-green);
}

.pop-dot--blue {
    right: 46px;
    top: 164px;
    background: var(--cm-blue);
}

.pop-dot--purple {
    left: 118px;
    bottom: 112px;
    background: var(--cm-purple);
}

.signal-mark {
    display: flex;
    gap: 7px;
    align-items: flex-end;
}

.signal-mark span {
    display: block;
    width: 10px;
    border-radius: 999px;
    background: currentColor;
}

.signal-mark span:nth-child(1) {
    height: 30px;
}

.signal-mark span:nth-child(2) {
    height: 48px;
}

.signal-mark span:nth-child(3) {
    height: 66px;
}

.signal-mark--pink {
    top: 42px;
    left: 168px;
    color: var(--cm-pink);
    transform: rotate(-14deg);
}

.signal-mark--green {
    top: 28px;
    right: 198px;
    color: var(--cm-green);
    transform: rotate(18deg);
}

.hero-orbit::before {
    content: "";
    position: absolute;
    inset: auto 14% 0 auto;
    width: 62%;
    height: 48%;
    border: 0;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(135deg, rgba(65, 164, 73, 0.18), rgba(21, 137, 201, 0.1));
}

.hero-orbit__phone {
    position: absolute;
    right: 13%;
    bottom: 0;
    width: 46%;
    height: 68%;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 42px 42px 0 0;
    background: linear-gradient(160deg, #131317, #34343a);
    color: #fff;
    transform: rotate(-3deg);
    box-shadow: 0 32px 70px rgba(20, 20, 25, 0.2);
}

.hero-orbit__phone span {
    color: #7fd3ff;
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 1000;
    line-height: 0.9;
}

.hero-orbit__phone strong {
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 0.9;
}

.bubble {
    position: absolute;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    font-weight: 950;
    box-shadow: 0 10px 26px rgba(20, 20, 25, 0.13);
}

.bubble--one {
    top: 68px;
    left: 40px;
    color: var(--cm-blue);
}

.bubble--two {
    right: 22px;
    top: 126px;
    color: var(--cm-pink);
}

.bubble--three {
    left: 26px;
    bottom: 76px;
    color: var(--cm-green);
}

.feature-strip {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 54px 0 52px;
    border-inline: 1px solid rgba(220, 216, 224, 0.95);
    background: #fff;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-strip__grid div,
.info-card,
.notice-panel,
.colour-card,
.faq-list details {
    border: 2px solid var(--cm-line);
    border-radius: var(--cm-radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 28px rgba(23, 33, 47, 0.06);
}

.feature-strip__grid div {
    min-height: 132px;
    padding: 20px;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 1000;
    line-height: 1;
}

.feature-icon--pink {
    background: var(--cm-pink);
}

.feature-icon--green {
    background: var(--cm-green);
}

.feature-icon--purple {
    background: var(--cm-purple);
}

.feature-icon--blue {
    background: var(--cm-blue);
}

.feature-strip strong,
.info-card h2,
.info-card h3,
.colour-card h2,
.colour-card h3 {
    display: block;
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.05;
}

.feature-strip span,
.info-card p,
.colour-card p,
.notice-panel p {
    color: var(--cm-muted);
    font-weight: 650;
}

.content-section {
    padding: 70px 0;
}

.content-section--tint {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    background:
        linear-gradient(90deg, rgba(255, 224, 233, 0.75), rgba(255, 255, 255, 0.82), rgba(220, 247, 230, 0.72), rgba(224, 245, 255, 0.7));
    border-inline: 1px solid rgba(220, 216, 224, 0.95);
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: stretch;
    gap: 24px;
}

.split-panel h2,
.page-hero h1 {
    font-size: clamp(2.6rem, 5vw, 5.6rem);
}

.text-link {
    color: var(--cm-blue);
    font-weight: 950;
}

.colour-card {
    padding: 30px;
}

.colour-card--sun {
    background: linear-gradient(135deg, #ffd9e5, #fff);
}

.colour-card--mint {
    background: linear-gradient(135deg, #dff9e5, #e8f7ff);
}

.colour-card--blue {
    background: linear-gradient(135deg, #dff3ff, #eee5ff);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 28px;
}

.section-heading--center {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.cta-band h2 {
    font-size: clamp(2.4rem, 5vw, 5rem);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.plan-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-preview {
    min-height: 320px;
    padding: 28px;
    border: 3px solid currentColor;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(20, 20, 25, 0.09);
    text-align: center;
}

.plan-preview strong {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin: 0 auto 22px;
    border-radius: 26px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 1000;
    line-height: 0.9;
    text-transform: uppercase;
}

.plan-preview span {
    display: block;
    color: #000;
    font-size: 1.32rem;
    font-weight: 1000;
    line-height: 1.05;
    text-transform: uppercase;
}

.plan-preview em {
    display: block;
    margin-top: 12px;
    color: #000;
    font-style: normal;
    font-weight: 800;
}

.plan-preview--pink {
    color: var(--cm-pink);
    background: linear-gradient(180deg, #fff0f5, #fff);
}

.plan-preview--pink strong {
    background: linear-gradient(145deg, #f36f93, var(--cm-pink));
}

.plan-preview--green {
    color: var(--cm-green);
    background: linear-gradient(180deg, #effff3, #fff);
}

.plan-preview--green strong {
    background: linear-gradient(145deg, #6fca75, var(--cm-green));
}

.plan-preview--blue {
    color: var(--cm-blue);
    background: linear-gradient(180deg, #f0f9ff, #fff);
}

.plan-preview--blue strong {
    background: linear-gradient(145deg, #41aee8, var(--cm-blue));
}

.section-lede {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--cm-muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 750;
}

.pop-workflow-section,
.pop-home-plans-section,
.pop-benefits-section,
.pop-faq-section,
.pop-plan-showcase,
.pop-comparison-section {
    position: relative;
    overflow: hidden;
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 76px 0;
    border-inline: 1px solid rgba(220, 216, 224, 0.95);
}

.pop-workflow-section,
.pop-benefits-section,
.pop-comparison-section {
    background: #fff;
}

.pop-home-plans-section,
.pop-faq-section,
.pop-plan-showcase {
    background:
        radial-gradient(circle at 5% 10%, rgba(219, 63, 107, 0.12), transparent 18rem),
        radial-gradient(circle at 94% 8%, rgba(21, 137, 201, 0.1), transparent 20rem),
        linear-gradient(90deg, rgba(255, 247, 250, 0.92), rgba(255, 255, 255, 0.88), rgba(235, 250, 240, 0.86));
}

.decor-stripes {
    position: absolute;
    display: grid;
    gap: 10px;
    opacity: 0.72;
    pointer-events: none;
}

.decor-stripes span {
    display: block;
    width: 86px;
    height: 12px;
    border-radius: 999px;
    background: currentColor;
}

.decor-stripes--left {
    top: 92px;
    left: 28px;
    color: var(--cm-pink);
    transform: rotate(-16deg);
}

.decor-stripes--right {
    right: 28px;
    bottom: 92px;
    color: var(--cm-blue);
    transform: rotate(16deg);
}

.pop-workflow-grid,
.pop-benefit-grid,
.pop-home-plans-grid,
.pop-plan-grid {
    display: grid;
    gap: 20px;
}

.pop-workflow-grid,
.pop-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pop-workflow-step,
.pop-benefit-card,
.pop-home-plan-card,
.pop-plan-card {
    position: relative;
    border: 2px solid var(--cm-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 46px rgba(20, 20, 25, 0.08);
}

.pop-workflow-step {
    min-height: 285px;
    padding: 34px;
    text-align: center;
}

.pop-workflow-icon {
    display: inline-grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 24px;
    border-radius: 28px;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 1000;
    line-height: 1;
}

.pop-workflow-step--pink .pop-workflow-icon,
.pop-benefit-badge--pink {
    background: linear-gradient(145deg, #f26d96, var(--cm-pink));
}

.pop-workflow-step--green .pop-workflow-icon,
.pop-benefit-badge--green {
    background: linear-gradient(145deg, #69cf84, var(--cm-green));
}

.pop-workflow-step--blue .pop-workflow-icon,
.pop-benefit-badge--blue {
    background: linear-gradient(145deg, #57bdec, var(--cm-blue));
}

.pop-workflow-step h3,
.pop-benefit-card h3,
.pop-plan-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.pop-workflow-step p,
.pop-benefit-card p,
.pop-plan-card p,
.pop-faq-list p {
    margin: 0;
    color: var(--cm-muted);
    font-weight: 700;
}

.pop-home-plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pop-home-plan-card {
    display: grid;
    align-content: space-between;
    min-height: 330px;
    padding: 28px;
    color: #fff;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.pop-home-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(20, 20, 25, 0.14);
}

.pop-home-plan-card--pink {
    background: linear-gradient(160deg, #ef6e95, #c82f62);
}

.pop-home-plan-card--green {
    background: linear-gradient(160deg, #62ce7d, #16814d);
}

.pop-home-plan-card--blue {
    background: linear-gradient(160deg, #5bc1ef, #126ba8);
}

.pop-home-plan-card--purple {
    background: linear-gradient(160deg, #c679d2, #743184);
}

.pop-home-plan-card__label {
    display: inline-flex;
    width: max-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pop-home-plan-card strong {
    display: block;
    max-width: 220px;
    font-size: clamp(2.15rem, 4vw, 3.7rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.pop-home-plan-card em {
    display: block;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.86);
    font-style: normal;
    font-weight: 850;
}

.pop-benefit-card {
    min-height: 255px;
    padding: 30px;
}

.pop-benefit-badge {
    display: inline-grid;
    place-items: center;
    min-width: 64px;
    height: 58px;
    margin-bottom: 22px;
    padding: 0 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 1000;
}

.pop-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pop-faq-list details {
    padding: 24px 26px;
    border: 2px solid var(--cm-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(20, 20, 25, 0.07);
}

.pop-faq-list summary {
    cursor: pointer;
    font-size: 1.16rem;
    font-weight: 950;
}

.pop-faq-list p {
    margin-top: 12px;
}

.plans-showcase-hero {
    position: relative;
    overflow: hidden;
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 82px 74px 70px;
    border: 1px solid rgba(220, 216, 224, 0.95);
    border-top: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(219, 63, 107, 0.18), transparent 18rem),
        radial-gradient(circle at 88% 20%, rgba(21, 137, 201, 0.16), transparent 22rem),
        linear-gradient(90deg, rgba(255, 247, 250, 0.9), rgba(255, 255, 255, 0.92), rgba(225, 249, 234, 0.85));
}

.plans-showcase-hero h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.plans-showcase-hero p:not(.eyebrow) {
    max-width: 700px;
    color: #111;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    font-weight: 700;
}

.plan-builder-btn {
    margin-top: 18px;
}

.plans-hero-bars {
    position: absolute;
    right: 72px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 220px;
    opacity: 0.88;
}

.plans-hero-bars span {
    display: block;
    width: clamp(34px, 5vw, 62px);
    border-radius: 18px 18px 0 0;
}

.plans-hero-bars span:nth-child(1) { height: 84px; background: var(--cm-pink); }
.plans-hero-bars span:nth-child(2) { height: 132px; background: var(--cm-green); }
.plans-hero-bars span:nth-child(3) { height: 190px; background: var(--cm-blue); }
.plans-hero-bars span:nth-child(4) { height: 150px; background: var(--cm-purple); }
.plans-hero-bars span:nth-child(5) { height: 108px; background: #111; }

.pop-plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pop-plan-card {
    overflow: hidden;
    min-height: 430px;
    padding: 28px;
}

.pop-plan-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -34px;
    width: 138px;
    height: 238px;
    border-radius: 34px 34px 0 0;
    background: linear-gradient(160deg, #17171b, #3d3d44);
    transform: rotate(6deg);
    opacity: 0.1;
}

.pop-plan-letter {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin-bottom: 26px;
    border-radius: 26px;
    color: #fff;
    font-size: 4.2rem;
    font-weight: 1000;
    line-height: 1;
}

.pop-plan-card--pink .pop-plan-letter { background: var(--cm-pink); }
.pop-plan-card--green .pop-plan-letter { background: var(--cm-green); }
.pop-plan-card--blue .pop-plan-letter { background: var(--cm-blue); }
.pop-plan-card--purple .pop-plan-letter { background: var(--cm-purple); }

.pop-plan-card a {
    position: absolute;
    left: 28px;
    bottom: 28px;
    color: var(--cm-blue);
    font-weight: 950;
}

.pop-comparison-table-wrapper {
    overflow-x: auto;
    border: 2px solid var(--cm-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(20, 20, 25, 0.07);
}

.pop-comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.pop-comparison-table th,
.pop-comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--cm-line);
    text-align: left;
    font-weight: 800;
}

.pop-comparison-table thead th {
    background: #fff7fa;
    color: var(--cm-pink);
    font-size: 0.86rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pop-comparison-table tbody th {
    color: var(--cm-ink);
    font-weight: 950;
}

.pop-comparison-table tr:last-child th,
.pop-comparison-table tr:last-child td {
    border-bottom: 0;
}

.info-card,
.notice-panel {
    padding: 26px;
}

.how-it-works {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 72px 0;
    border-inline: 1px solid rgba(220, 216, 224, 0.95);
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps-grid article {
    min-height: 230px;
    padding: 30px;
    border: 2px solid var(--cm-line);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff, #fff7fa);
    text-align: center;
}

.steps-grid article:nth-child(2) {
    background: linear-gradient(180deg, #fff, #effff3);
}

.steps-grid article:nth-child(3) {
    background: linear-gradient(180deg, #fff, #eff8ff);
}

.steps-grid span {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--cm-ink);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 1000;
}

.steps-grid h3 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    line-height: 1;
}

.steps-grid p {
    margin: 0;
    color: var(--cm-muted);
    font-weight: 700;
}

.testimonial-band {
    padding: 36px;
    border-radius: 34px;
    background: #09090b;
    color: #fff;
}

.testimonial-band h2 {
    max-width: 900px;
    margin: 0 0 28px;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 0.96;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quote-grid blockquote {
    margin: 0;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.quote-grid p {
    margin-top: 0;
    font-weight: 850;
}

.quote-grid cite {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.cta-band {
    padding: 80px 0;
}

.cta-band__inner {
    padding: 42px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(219, 63, 107, 0.96), rgba(21, 137, 201, 0.86)),
        var(--cm-pink);
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.86);
}

.page-hero {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 78px 74px 58px;
    border: 1px solid rgba(220, 216, 224, 0.95);
    border-top: 0;
    background:
        linear-gradient(90deg, rgba(255, 224, 233, 0.72), rgba(255, 255, 255, 0.9) 48%, rgba(220, 247, 230, 0.72), rgba(220, 244, 255, 0.72));
}

.coverage-checker-section,
.contact-section {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 70px 0;
    border-inline: 1px solid rgba(220, 216, 224, 0.95);
    background: #fff;
}

.coverage-checker-card {
    padding: clamp(20px, 4vw, 42px);
    border: 2px solid var(--cm-line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 8% 5%, rgba(219, 63, 107, 0.12), transparent 18rem),
        radial-gradient(circle at 94% 5%, rgba(21, 137, 201, 0.12), transparent 18rem),
        #fff;
    box-shadow: var(--cm-shadow);
}

.coverage-iframe-wrap {
    overflow: hidden;
    margin-top: 28px;
    border: 2px solid var(--cm-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(20, 20, 25, 0.09);
}

.coverage-iframe-wrap iframe {
    display: block;
    width: 100%;
    min-height: 760px;
    border: 0;
}

.coverage-fallback {
    margin: 18px 0 0;
    text-align: center;
}

.coverage-fallback a {
    color: var(--cm-blue);
    font-weight: 950;
}

.contact-hero {
    background:
        radial-gradient(circle at 8% 18%, rgba(219, 63, 107, 0.15), transparent 18rem),
        radial-gradient(circle at 85% 8%, rgba(65, 164, 73, 0.13), transparent 18rem),
        linear-gradient(90deg, rgba(255, 224, 233, 0.78), rgba(255, 255, 255, 0.92), rgba(220, 244, 255, 0.74));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.contact-card {
    min-height: 260px;
    padding: clamp(24px, 4vw, 38px);
    border: 2px solid var(--cm-line);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(20, 20, 25, 0.08);
}

.contact-card--primary {
    background: linear-gradient(135deg, #fff0f5, #fff);
}

.contact-card--blue {
    background: linear-gradient(135deg, #eff8ff, #fff);
}

.contact-card--mint {
    background: linear-gradient(135deg, #effff3, #fff);
}

.contact-card--dark {
    background:
        radial-gradient(circle at 86% 10%, rgba(21, 137, 201, 0.22), transparent 13rem),
        var(--cm-ink);
    color: #fff;
}

.contact-card__label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--cm-pink);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-card--dark .contact-card__label {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.contact-card h2 {
    max-width: 680px;
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.contact-card p {
    color: var(--cm-muted);
    font-weight: 700;
}

.contact-card--dark p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-big-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--cm-blue);
    font-size: clamp(1.35rem, 3vw, 2.5rem);
    font-weight: 1000;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.contact-phone {
    display: inline-flex;
    color: var(--cm-blue);
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    font-weight: 1000;
    line-height: 1;
}

.contact-note {
    margin-top: 22px;
}

.contact-hours {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(20, 20, 25, 0.12);
    font-weight: 800;
}

.contact-hours span {
    color: var(--cm-blue);
}

.contact-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.contact-pill-list a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 16px;
    border: 2px solid var(--cm-ink);
    border-radius: 999px;
    background: #fff;
    font-weight: 950;
    text-decoration: none;
}

.page-hero--compact {
    padding: 48px 0 20px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.woocommerce-page .entry--page,
.woocommerce-account .entry--page,
.woocommerce-cart .entry--page,
.woocommerce-checkout .entry--page {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 54px 0;
}

.woocommerce-page .entry-content,
.woocommerce-account .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
    width: 100%;
}

.woocommerce-page .entry-content > .woocommerce,
.woocommerce-account .entry-content > .woocommerce,
.woocommerce-cart .entry-content > .woocommerce,
.woocommerce-checkout .entry-content > .woocommerce,
.woocommerce-page .entry-content > [class*="wp-block-woocommerce"],
.woocommerce-account .entry-content > [class*="wp-block-woocommerce"],
.woocommerce-cart .entry-content > [class*="wp-block-woocommerce"],
.woocommerce-checkout .entry-content > [class*="wp-block-woocommerce"],
.woocommerce-page .entry-content > .wc-block-components-notice-banner,
.woocommerce-account .entry-content > .wc-block-components-notice-banner,
.woocommerce-cart .entry-content > .wc-block-components-notice-banner,
.woocommerce-checkout .entry-content > .wc-block-components-notice-banner {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.woocommerce-page .entry-content > *:not(.woocommerce):not([class*="wp-block-woocommerce"]):not(.wc-block-components-notice-banner),
.woocommerce-account .entry-content > *:not(.woocommerce):not([class*="wp-block-woocommerce"]):not(.wc-block-components-notice-banner),
.woocommerce-cart .entry-content > *:not(.woocommerce):not([class*="wp-block-woocommerce"]):not(.wc-block-components-notice-banner),
.woocommerce-checkout .entry-content > *:not(.woocommerce):not([class*="wp-block-woocommerce"]):not(.wc-block-components-notice-banner) {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 950;
}

.shop-shell {
    padding: 54px 0 82px;
}

.woocommerce div.product,
.woocommerce-account .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    border: 1px solid var(--cm-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(18px, 4vw, 38px);
    box-shadow: 0 14px 44px rgba(23, 33, 47, 0.08);
}

.woocommerce ul.products li.product {
    border: 1px solid var(--cm-line);
    border-radius: 24px;
    background: #fff;
    padding: 18px !important;
    box-shadow: 0 10px 32px rgba(23, 33, 47, 0.07);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--cm-ink);
    font-size: 1.28rem;
    font-weight: 950;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: var(--cm-blue);
    font-weight: 950;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid var(--cm-line);
    background: #fff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) 1.6fr;
    gap: 42px;
    width: min(1180px, calc(100vw - 40px));
    padding: 48px 0;
    margin-inline: auto;
}

.site-footer__brand p {
    max-width: 360px;
    color: var(--cm-muted);
    font-weight: 650;
}

.site-footer__app-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.site-footer .site-footer__app-badges a {
    display: inline-flex;
    padding: 0;
}

.site-footer__app-badges img {
    display: block;
    width: auto;
    height: 42px;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.site-footer a {
    display: block;
    padding: 5px 0;
    color: var(--cm-muted);
    font-weight: 750;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--cm-blue);
}

.site-footer__bottom {
    width: min(1180px, calc(100vw - 40px));
    padding: 18px 0 32px;
    margin-inline: auto;
    color: var(--cm-muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.mvno-ui,
.mvno-account,
.mvno-activation-page {
    --mvno-primary: var(--cm-blue);
    --mvno-soft: var(--cm-soft);
    --mvno-ink: var(--cm-ink);
}

.colourful-mvno-theme .mvno-existing-sim-modal__panel,
.colourful-mvno-theme .mvno-cart-modal__panel {
    border: 1px solid rgba(216, 222, 228, 0.98);
    border-radius: 18px;
    box-shadow: var(--cm-shadow);
}

.colourful-mvno-theme .mvno-existing-sim-modal__actions .button,
.colourful-mvno-theme .mvno-existing-sim-modal__sim .button,
.colourful-mvno-theme .mvno-cart-modal__actions .button {
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ee5d88, #c82f62);
    color: #fff;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(219, 63, 107, 0.28);
}

.colourful-mvno-theme .mvno-existing-sim-modal__actions .button:hover,
.colourful-mvno-theme .mvno-existing-sim-modal__sim .button:hover,
.colourful-mvno-theme .mvno-cart-modal__actions .button:hover {
    filter: saturate(1.08);
    transform: translateY(-1px);
}

.colourful-mvno-theme .mvno-existing-sim-modal__actions .button[data-mvno-existing-close] {
    background: #fff;
    color: var(--cm-ink);
    border: 2px solid var(--cm-ink);
    box-shadow: none;
}

.colourful-mvno-theme .mvno-existing-sim-modal__sim .button:disabled,
.colourful-mvno-theme .mvno-existing-sim-modal__sim .button[disabled] {
    background: linear-gradient(180deg, #f6a6c2, #df82a5);
    color: rgba(9, 9, 11, 0.48);
    cursor: not-allowed;
    opacity: 0.82;
    transform: none;
}

.colourful-mvno-theme .mvno-existing-sim-modal__sim {
    border-color: rgba(213, 219, 227, 0.98);
    border-radius: 12px;
}

.colourful-mvno-theme .mvno-activation-page {
    width: min(1040px, calc(100vw - 40px));
    max-width: none !important;
    padding: 42px 0 70px !important;
}

.colourful-mvno-theme .mvno-activation-panel {
    border: 1px solid rgba(198, 214, 222, 0.95) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 4% 0%, rgba(219, 63, 107, 0.12), transparent 19rem),
        radial-gradient(circle at 100% 12%, rgba(65, 164, 73, 0.18), transparent 22rem),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 60px rgba(20, 20, 25, 0.07);
    padding: clamp(28px, 4vw, 48px) !important;
}

.colourful-mvno-theme .mvno-activation-panel h1 {
    margin: 0 0 28px !important;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 0.95;
}

.colourful-mvno-theme .mvno-activation-form {
    gap: 22px !important;
}

.colourful-mvno-theme .mvno-activation-form label {
    color: var(--cm-ink);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 950 !important;
}

.colourful-mvno-theme .mvno-activation-form input {
    min-height: 54px;
    margin-top: 10px !important;
    padding: 12px 16px;
    border: 2px solid rgba(194, 202, 213, 0.95);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--cm-ink);
    font: inherit;
    font-weight: 750;
}

.colourful-mvno-theme .mvno-activation-form input:focus {
    border-color: var(--cm-blue);
    box-shadow: 0 0 0 4px rgba(21, 137, 201, 0.16);
    outline: 0;
}

.colourful-mvno-theme .mvno-activation-status {
    color: #667085;
    font-size: clamp(1rem, 1.8vw, 1.24rem);
    font-weight: 750;
}

.colourful-mvno-theme .mvno-activation-form .button {
    min-height: 58px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ee5d88, #c82f62);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 12px 22px rgba(219, 63, 107, 0.28);
}

.colourful-mvno-theme .mvno-activation-form .button:disabled,
.colourful-mvno-theme .mvno-activation-form .button[disabled] {
    background: #c7c7c7;
    color: rgba(9, 9, 11, 0.36);
    box-shadow: none;
    cursor: not-allowed;
}

.colourful-mvno-theme .mvno-activation-notice {
    border-left-color: var(--cm-blue) !important;
    border-radius: 12px;
    background: rgba(21, 137, 201, 0.08);
}

.colourful-mvno-theme .mvno-activation-notice--error {
    border-left-color: var(--cm-pink) !important;
    background: rgba(219, 63, 107, 0.08);
}

@media (max-width: 980px) {
    .site-header {
        width: min(100% - 28px, 1240px);
        margin-top: 16px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        padding: 0 20px;
    }

    .site-menu-toggle {
        display: inline-grid;
        justify-self: end;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }

    .site-menu-open .site-nav,
    .site-menu-open .site-header__actions {
        display: flex;
        grid-column: 1 / -1;
    }

    .site-menu-open .site-nav__list,
    .site-menu-open .site-header__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-home__grid,
    .split-panel,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero-orbit {
        min-height: 420px;
    }

    .feature-strip__grid,
    .cards-grid,
    .plan-preview-grid,
    .quote-grid,
    .steps-grid,
    .pop-workflow-grid,
    .pop-benefit-grid,
    .pop-home-plans-grid,
    .pop-plan-grid,
    .pop-faq-list,
    .site-footer__columns {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .coverage-iframe-wrap iframe {
        min-height: 680px;
    }
}

@media (max-width: 640px) {
    .container,
    .content-width,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(100% - 28px, 1180px);
    }

    .site-logo {
        width: 132px;
    }

    .hero-home {
        padding-top: 44px;
        width: min(100% - 28px, 1240px);
    }

    .hero-home h1,
    .page-hero h1,
    .plans-showcase-hero h1 {
        font-size: clamp(3rem, 16vw, 4.7rem);
    }

    .hero-orbit {
        min-height: 340px;
        border-radius: 30px;
    }

    .hero-orbit__phone {
        inset: 66px 82px;
        border-radius: 28px;
    }

    .bubble {
        min-height: 42px;
        padding: 9px 12px;
        font-size: 0.86rem;
    }

    .bubble--one {
        top: 30px;
        left: 18px;
    }

    .bubble--two {
        top: 120px;
        right: 16px;
    }

    .bubble--three {
        bottom: 40px;
        left: 30px;
    }

    .pop-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .pop-dot--pink {
        top: 57px;
        left: 82px;
    }

    .pop-dot--green {
        right: 82px;
        top: 76px;
    }

    .pop-dot--blue {
        right: 36px;
        top: 158px;
    }

    .pop-dot--purple {
        left: 112px;
        bottom: 84px;
    }

    .feature-strip__grid,
    .cards-grid,
    .plan-preview-grid,
    .quote-grid,
    .steps-grid,
    .site-footer__columns {
        grid-template-columns: 1fr;
    }

    .content-section,
    .cta-band,
    .how-it-works,
    .pop-workflow-section,
    .pop-home-plans-section,
    .pop-benefits-section,
    .pop-faq-section,
    .pop-plan-showcase,
    .pop-comparison-section,
    .coverage-checker-section,
    .contact-section {
        padding: 46px 0;
    }

    .page-hero {
        width: min(100% - 28px, 1240px);
        padding: 46px 24px 38px;
    }

    .plans-showcase-hero {
        width: min(100% - 28px, 1240px);
        padding: 46px 24px 150px;
    }

    .hero-home__grid {
        padding: 46px 24px 0;
    }

    .signal-mark--pink {
        left: 96px;
    }

    .signal-mark--green {
        right: 110px;
    }

    .coverage-iframe-wrap {
        border-radius: 18px;
    }

    .coverage-iframe-wrap iframe {
        min-height: 620px;
    }

    .contact-card,
    .coverage-checker-card {
        border-radius: 22px;
    }

    .contact-hours li {
        display: grid;
    }

    .feature-strip__grid,
    .cards-grid,
    .plan-preview-grid,
    .quote-grid,
    .steps-grid,
    .pop-workflow-grid,
    .pop-benefit-grid,
    .pop-home-plans-grid,
    .pop-plan-grid,
    .pop-faq-list,
    .site-footer__columns {
        grid-template-columns: 1fr;
    }

    .pop-home-plan-card,
    .pop-plan-card {
        min-height: 300px;
    }

    .plans-hero-bars {
        right: 24px;
        height: 126px;
    }

    .plans-hero-bars span:nth-child(1) { height: 48px; }
    .plans-hero-bars span:nth-child(2) { height: 78px; }
    .plans-hero-bars span:nth-child(3) { height: 118px; }
    .plans-hero-bars span:nth-child(4) { height: 92px; }
    .plans-hero-bars span:nth-child(5) { height: 68px; }

    .decor-stripes {
        display: none;
    }
}
