:root {
    --cd-pg-ink: #111c1a;
    --cd-pg-muted: #65716f;
    --cd-pg-line: #dfe6e3;
    --cd-pg-soft: #f5f7f5;
    --cd-pg-white: #ffffff;
    --cd-pg-lime: #aac900;
    --cd-pg-lime-bright: #c9ed24;
    --cd-pg-lime-soft: #f4f9dc;
    --cd-pg-green: #063e32;
    --cd-pg-green-2: #0b5a45;
    --cd-pg-green-3: #178162;
    --cd-pg-danger: #a13d3d;
    --cd-pg-shadow: 0 34px 110px rgba(6, 35, 29, .30);
    --cd-pg-radius: 28px;
}

.cd-pg-lock { overflow: hidden !important; }
.cd-pg-sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.cd-pg-launcher svg,
.cd-pg-dialog svg,
.cd-pg-results-body svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.cd-pg-launcher {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2147482000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cd-pg-green), var(--cd-pg-green-2));
    box-shadow: 0 18px 45px rgba(6,62,50,.32), inset 0 1px rgba(255,255,255,.12);
    color: #fff;
    font: 800 14px/1.2 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cd-pg-launcher::after { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(170,201,0,.36); border-radius: inherit; opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.cd-pg-launcher:hover { transform: translateY(-3px); background: linear-gradient(135deg, #044a3a, #0d694f); box-shadow: 0 23px 52px rgba(6,62,50,.38); }
.cd-pg-launcher:hover::after { opacity: 1; }
.cd-pg-launcher svg { width: 21px; height: 21px; color: var(--cd-pg-lime-bright); }
.cd-pg-launcher[hidden] { display: none !important; }

.cd-pg-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 26px;
    background: rgba(6, 25, 21, .65);
    backdrop-filter: blur(13px) saturate(.86);
    -webkit-backdrop-filter: blur(13px) saturate(.86);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}
.cd-pg-overlay.is-open { opacity: 1; visibility: visible; }

.cd-pg-dialog {
    position: relative;
    display: grid;
    grid-template-columns: 326px minmax(0, 1fr);
    width: min(1180px, 100%);
    max-height: min(820px, calc(100vh - 52px));
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.56);
    border-radius: var(--cd-pg-radius);
    background: var(--cd-pg-white);
    box-shadow: var(--cd-pg-shadow);
    transform: translateY(20px) scale(.982);
    transition: transform .24s ease;
    color: var(--cd-pg-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.cd-pg-overlay.is-open .cd-pg-dialog { transform: translateY(0) scale(1); }

.cd-pg-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 690px;
    overflow: hidden;
    padding: 38px 34px 28px;
    background:
        radial-gradient(circle at 78% 43%, rgba(170,201,0,.12), transparent 23%),
        radial-gradient(circle at 25% 70%, rgba(84,180,137,.19), transparent 29%),
        linear-gradient(155deg, #04392f 0%, #07513f 52%, #0c6b50 100%);
    color: #fff;
}
.cd-pg-rail::before,
.cd-pg-rail::after { content: ""; position: absolute; border: 1px solid rgba(196,234,35,.17); border-radius: 50%; pointer-events: none; }
.cd-pg-rail::before { width: 260px; height: 260px; left: -128px; bottom: 70px; }
.cd-pg-rail::after { width: 340px; height: 340px; right: -220px; top: 175px; }
.cd-pg-rail-brand { position: relative; z-index: 2; display: inline-flex; width: min(236px, 100%); text-decoration: none; }
.cd-pg-rail-brand img { display: block; width: 100%; height: auto; object-fit: contain; }
.cd-pg-rail-copy { position: relative; z-index: 2; margin-top: 38px; }
.cd-pg-rail-eyebrow { margin: 0 0 13px; color: var(--cd-pg-lime-bright); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.cd-pg-rail-copy h3 { margin: 0; color: #fff; font-size: clamp(30px, 3.1vw, 41px); line-height: 1.02; letter-spacing: -.045em; }
.cd-pg-rail-copy p:last-child { margin: 18px 0 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }
.cd-pg-rail-locations { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.cd-pg-rail-locations span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(2,34,27,.22); color: #fff; font-size: 12px; font-weight: 800; }
.cd-pg-rail-locations svg { color: var(--cd-pg-lime-bright); }
.cd-pg-rail-map { position: relative; z-index: 1; height: 170px; margin: 12px -18px 0; border-radius: 22px; background:
    linear-gradient(135deg, transparent 0 15%, rgba(170,201,0,.11) 15.5% 16%, transparent 16.5% 44%, rgba(170,201,0,.08) 44.5% 45%, transparent 45.5%),
    repeating-linear-gradient(32deg, transparent 0 26px, rgba(255,255,255,.035) 27px 28px),
    radial-gradient(circle at 30% 57%, rgba(170,201,0,.16), transparent 26%),
    rgba(0,29,23,.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.cd-pg-rail-map i { position: absolute; z-index: 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--cd-pg-lime-bright); color: #17482f; box-shadow: 0 0 0 8px rgba(201,237,36,.10), 0 0 34px rgba(201,237,36,.58); font-style: normal; animation: cdPgPin 2.5s ease-in-out infinite; }
.cd-pg-rail-map i svg { width: 22px; height: 22px; }
.cd-pg-rail-map .pin-one { left: 54px; top: 70px; }
.cd-pg-rail-map .pin-two { right: 45px; top: 34px; animation-delay: .8s; }
.cd-pg-rail-map .orbit-one,
.cd-pg-rail-map .orbit-two { position: absolute; border: 1px dashed rgba(201,237,36,.24); border-radius: 50%; }
.cd-pg-rail-map .orbit-one { width: 116px; height: 116px; left: 16px; top: 32px; }
.cd-pg-rail-map .orbit-two { width: 102px; height: 102px; right: 12px; top: 9px; }
@keyframes cdPgPin { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.cd-pg-rail-trust { position: relative; z-index: 2; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.14); }
.cd-pg-rail-trust > strong { display: block; color: #fff; font-size: 13px; }
.cd-pg-rail-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.cd-pg-rail-features span { min-width: 0; color: rgba(255,255,255,.74); text-align: center; font-size: 8.5px; line-height: 1.25; }
.cd-pg-rail-features svg { display: block; width: 24px; height: 24px; margin: 0 auto 7px; color: var(--cd-pg-lime-bright); }
.cd-pg-rail-features b { font-weight: 700; }

.cd-pg-workspace { position: relative; min-width: 0; overflow: hidden; background:
    radial-gradient(circle at 98% 11%, rgba(170,201,0,.08), transparent 27%),
    radial-gradient(circle at 73% 24%, rgba(4,62,50,.035), transparent 31%),
    linear-gradient(180deg, #fff 0%, #fdfefd 100%); }
.cd-pg-workspace::before { content: ""; position: absolute; right: -70px; top: 135px; width: 360px; height: 260px; border-radius: 45% 0 0 45%; background:
    radial-gradient(ellipse at 46% 63%, rgba(220,224,215,.50) 0 18%, transparent 19%),
    radial-gradient(ellipse at 66% 44%, rgba(225,217,201,.38) 0 18%, transparent 19%),
    linear-gradient(120deg, transparent 38%, rgba(236,232,223,.34) 39% 57%, transparent 58%); opacity: .55; filter: blur(.2px); pointer-events: none; }

.cd-pg-topbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
    padding: 15px 22px 15px 31px;
    border-bottom: 1px solid var(--cd-pg-line);
    background: rgba(255,255,255,.90);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.cd-pg-step-meta { display: flex; align-items: center; gap: 18px; min-width: 0; }
.cd-pg-step-meta > strong { white-space: nowrap; color: #2b3633; font-size: 12px; font-weight: 900; letter-spacing: .02em; }
.cd-pg-step-bubbles { display: flex; align-items: center; gap: 8px; }
.cd-pg-step-bubbles::before { content: ""; position: absolute; }
.cd-pg-step-bubbles button { position: relative; display: grid; place-items: center; width: 29px; height: 29px; padding: 0; border: 1px solid #e1e6e3; border-radius: 50%; background: #fff; color: #78817f; font: 800 11px/1 Inter, sans-serif; cursor: default; }
.cd-pg-step-bubbles button:not(:disabled) { cursor: pointer; }
.cd-pg-step-bubbles button.is-current { border-color: var(--cd-pg-lime); background: linear-gradient(145deg, var(--cd-pg-lime-bright), var(--cd-pg-lime)); color: #17311d; box-shadow: 0 5px 14px rgba(170,201,0,.32); }
.cd-pg-step-bubbles button.is-complete { border-color: #d6e5bd; background: #f3f8e4; color: #57720c; }
.cd-pg-top-actions { display: flex; align-items: center; gap: 8px; }
.cd-pg-language { position: relative; display: inline-flex; align-items: center; gap: 7px; height: 42px; padding: 0 10px; border: 1px solid var(--cd-pg-line); border-radius: 999px; background: #fff; color: var(--cd-pg-green); }
.cd-pg-language > svg { flex: 0 0 auto; width: 17px; height: 17px; }
.cd-pg-language select { width: 116px; height: 38px; padding: 0 23px 0 0; border: 0; outline: none; background: transparent; color: var(--cd-pg-ink); font: 800 11px/1 Inter, sans-serif; cursor: pointer; }
.cd-pg-dismiss { display: inline-flex; align-items: center; gap: 7px; height: 42px; padding: 0 12px; border: 1px solid var(--cd-pg-line); border-radius: 999px; background: #fff; color: #5d6865; font: 750 11px/1 Inter, sans-serif; cursor: pointer; transition: border-color .18s ease, color .18s ease, background .18s ease; }
.cd-pg-dismiss:hover { border-color: #cfd8d4; background: #f8faf9; color: var(--cd-pg-green); }
.cd-pg-dismiss svg { width: 16px; height: 16px; }
.cd-pg-close { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--cd-pg-line); border-radius: 50%; background: #fff; color: var(--cd-pg-ink); font-size: 24px; line-height: 1; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.cd-pg-close:hover { transform: rotate(4deg); background: var(--cd-pg-soft); }

.cd-pg-progress { position: relative; z-index: 3; height: 3px; background: #edf0ee; }
.cd-pg-progress span { display: block; width: 12%; height: 100%; background: linear-gradient(90deg, var(--cd-pg-lime), var(--cd-pg-lime-bright)); box-shadow: 0 0 18px rgba(170,201,0,.55); transition: width .3s ease; }
.cd-pg-content { position: relative; z-index: 2; max-height: calc(min(820px, 100vh - 52px) - 91px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #cad4cf transparent; }
.cd-pg-step { display: none; min-height: 596px; padding: 44px clamp(30px, 4.3vw, 62px) 34px; animation: cdPgFade .25s ease; }
.cd-pg-step.is-active { display: block; }
@keyframes cdPgFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cd-pg-eyebrow { margin: 0 0 11px; color: #688000; font: 900 11px/1.2 Inter, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.cd-pg-step h2 { position: relative; max-width: 720px; margin: 0; color: var(--cd-pg-ink); font: 820 clamp(32px, 4vw, 49px)/1.03 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -.045em; }
.cd-pg-step h2::after { content: ""; display: inline-block; width: 13px; height: 13px; margin: 0 0 .56em 11px; background: var(--cd-pg-lime); clip-path: polygon(50% 0,61% 39%,100% 50%,61% 61%,50% 100%,39% 61%,0 50%,39% 39%); }
.cd-pg-lead { max-width: 720px; margin: 15px 0 0; color: var(--cd-pg-muted); font: 500 16px/1.58 Inter, sans-serif; }
.cd-pg-helper { margin: 7px 0 0; color: var(--cd-pg-muted); font-size: 12px; line-height: 1.5; }

.cd-pg-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.cd-pg-choice-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cd-pg-choice {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0,1fr) 30px;
    gap: 14px;
    align-items: start;
    min-height: 164px;
    padding: 20px 17px 18px;
    overflow: hidden;
    border: 1px solid #dce3e0;
    border-radius: 18px;
    background: rgba(255,255,255,.90);
    color: var(--cd-pg-ink);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 9px 24px rgba(15,53,43,.045);
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cd-pg-choice::before { content: ""; position: absolute; inset: auto -34px -58px auto; width: 115px; height: 115px; border-radius: 50%; background: radial-gradient(circle, rgba(170,201,0,.15), transparent 66%); opacity: 0; transition: opacity .18s ease; }
.cd-pg-choice:hover { transform: translateY(-4px); border-color: #c4d37c; box-shadow: 0 17px 34px rgba(20,61,49,.11); }
.cd-pg-choice:hover::before { opacity: 1; }
.cd-pg-choice.is-selected { border-color: var(--cd-pg-lime); background: linear-gradient(145deg, #fff, #fbfde9); box-shadow: 0 0 0 2px rgba(170,201,0,.12), 0 16px 35px rgba(121,148,0,.16); }
.cd-pg-choice-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(145deg, #f5f9e0, #ebf3df); color: var(--cd-pg-green); }
.cd-pg-choice-icon svg { width: 25px; height: 25px; }
.cd-pg-choice-copy { min-width: 0; }
.cd-pg-choice strong { display: block; margin-top: 3px; font-size: 16px; line-height: 1.27; }
.cd-pg-choice-copy > span { display: block; margin-top: 9px; color: var(--cd-pg-muted); font-size: 12px; line-height: 1.45; }
.cd-pg-choice-arrow { display: grid; place-items: center; width: 30px; height: 30px; margin-top: 4px; border: 1px solid #e2e7e4; border-radius: 50%; background: #fff; color: #698300; transition: transform .18s ease, background .18s ease; }
.cd-pg-choice:hover .cd-pg-choice-arrow { transform: translateX(3px); background: var(--cd-pg-lime-soft); }
.cd-pg-choice-arrow svg { width: 15px; height: 15px; }

.cd-pg-quick-area { display: grid; grid-template-columns: 185px minmax(0, 1fr); gap: 18px; align-items: center; margin-top: 25px; padding-top: 23px; border-top: 1px solid var(--cd-pg-line); }
.cd-pg-section-label { margin: 24px 0 0; color: var(--cd-pg-ink); font-size: 12px; font-weight: 900; }
.cd-pg-quick-area .cd-pg-section-label { margin: 0; font-size: 13px; }
.cd-pg-area-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.cd-pg-area-card { position: relative; display: grid; grid-template-columns: 70px minmax(0,1fr); gap: 12px; align-items: center; min-height: 78px; padding: 7px 12px 7px 7px; border: 1px solid #dfe5e2; border-radius: 15px; background: #fff; text-align: left; cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.cd-pg-area-card:hover { transform: translateY(-2px); border-color: #c7d69a; box-shadow: 0 10px 24px rgba(21,65,52,.08); }
.cd-pg-area-card.is-selected { border-color: var(--cd-pg-lime); box-shadow: inset 0 0 0 1px var(--cd-pg-lime), 0 9px 24px rgba(170,201,0,.12); }
.cd-pg-area-art { position: relative; display: block; width: 70px; height: 64px; overflow: hidden; border-radius: 11px; background: linear-gradient(145deg, #0d5264, #1b7990 47%, #f1a64e); }
.cd-pg-area-art-granada { background: linear-gradient(155deg, #e3d7bc, #9c6f43 47%, #36536d); }
.cd-pg-area-art::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 24px; background: rgba(2,29,24,.38); clip-path: polygon(0 66%,18% 30%,33% 57%,55% 20%,72% 58%,100% 27%,100% 100%,0 100%); }
.cd-pg-area-art i { position: absolute; width: 10px; height: 10px; border: 3px solid var(--cd-pg-lime-bright); border-radius: 50% 50% 50% 0; background: #fff; transform: rotate(-45deg); box-shadow: 0 0 14px rgba(201,237,36,.65); }
.cd-pg-area-art i:first-child { left: 18px; top: 18px; }
.cd-pg-area-art i:last-child { right: 15px; top: 30px; }
.cd-pg-area-copy { min-width: 0; }
.cd-pg-area-copy strong { display: block; font-size: 13px; }
.cd-pg-area-copy span { display: block; margin-top: 4px; overflow: hidden; color: var(--cd-pg-muted); font-size: 10px; line-height: 1.35; }
.cd-pg-area-state { position: absolute; right: 10px; top: 8px; color: #6e820d; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.cd-pg-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.cd-pg-field { display: flex; flex-direction: column; gap: 7px; }
.cd-pg-field.full, .cd-pg-check.full { grid-column: 1 / -1; }
.cd-pg-field label, .cd-pg-field > span { color: var(--cd-pg-ink); font-size: 12px; font-weight: 800; }
.cd-pg-field input,
.cd-pg-field select,
.cd-pg-field textarea { width: 100%; min-height: 49px; box-sizing: border-box; padding: 11px 13px; border: 1px solid #ccd7d2; border-radius: 12px; outline: none; background: rgba(255,255,255,.94); color: var(--cd-pg-ink); font: 500 14px/1.35 Inter, sans-serif; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.cd-pg-field textarea { min-height: 94px; resize: vertical; }
.cd-pg-field input:focus,
.cd-pg-field select:focus,
.cd-pg-field textarea:focus { border-color: var(--cd-pg-lime); background: #fff; box-shadow: 0 0 0 4px rgba(170,201,0,.13); }
.cd-pg-field input[aria-invalid="true"] { border-color: var(--cd-pg-danger); }
.cd-pg-inline-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.cd-pg-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.cd-pg-pill { position: relative; display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border: 1px solid #d5ddda; border-radius: 999px; background: #fff; color: var(--cd-pg-ink); font-size: 12px; font-weight: 750; cursor: pointer; user-select: none; transition: border-color .16s ease, background .16s ease, transform .16s ease; }
.cd-pg-pill:hover { transform: translateY(-1px); border-color: #bfcabf; }
.cd-pg-pill input { position: absolute; opacity: 0; pointer-events: none; }
.cd-pg-pill:has(input:checked), .cd-pg-pill.is-selected { border-color: var(--cd-pg-lime); background: var(--cd-pg-lime-soft); color: #385300; box-shadow: inset 0 0 0 1px var(--cd-pg-lime); }
.cd-pg-pill input:focus-visible + span { outline: 2px solid var(--cd-pg-green); outline-offset: 3px; border-radius: 5px; }
.cd-pg-town-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.cd-pg-town-group { padding: 16px; border: 1px solid var(--cd-pg-line); border-radius: 15px; background: rgba(247,249,247,.92); }
.cd-pg-town-group h3 { margin: 0 0 10px; font-size: 13px; }
.cd-pg-town-list { display: flex; flex-wrap: wrap; gap: 7px; }
.cd-pg-town-list .cd-pg-pill { min-height: 35px; padding: 0 11px; font-size: 11px; }

.cd-pg-footer-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 27px; padding-top: 20px; border-top: 1px solid var(--cd-pg-line); }
.cd-pg-action-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.cd-pg-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 49px; box-sizing: border-box; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; text-decoration: none; font: 850 13px/1 Inter, sans-serif; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.cd-pg-button svg { width: 17px; height: 17px; }
.cd-pg-button:hover { transform: translateY(-2px); }
.cd-pg-button-primary { background: linear-gradient(135deg, var(--cd-pg-lime), var(--cd-pg-lime-bright)); color: #17220e; box-shadow: 0 10px 24px rgba(170,201,0,.26); }
.cd-pg-button-primary:hover { box-shadow: 0 14px 30px rgba(170,201,0,.34); }
.cd-pg-button-secondary { border-color: #ccd8d3; background: #fff; color: var(--cd-pg-ink); }
.cd-pg-button-quiet { min-height: 42px; padding: 0 7px; border: 0; background: transparent; color: var(--cd-pg-muted); }
.cd-pg-button[disabled] { opacity: .55; cursor: wait; transform: none; }
.cd-pg-error { min-height: 20px; margin: 11px 0 -3px; color: var(--cd-pg-danger); font-size: 12px; font-weight: 700; }

.cd-pg-match-preview { margin-top: 27px; padding: 22px; border: 1px solid #dfe7df; border-radius: 19px; background: linear-gradient(145deg, #f5f9e9, #fff); }
.cd-pg-match-counts { display: flex; flex-wrap: wrap; gap: 11px; }
.cd-pg-match-count { flex: 1 1 180px; padding: 17px; border-radius: 14px; background: #fff; box-shadow: 0 8px 22px rgba(24,61,56,.06); }
.cd-pg-match-count strong { display: block; color: #5d7600; font-size: 30px; line-height: 1; }
.cd-pg-match-count span { display: block; margin-top: 7px; color: var(--cd-pg-muted); font-size: 12px; }
.cd-pg-preview-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 9px; margin-top: 14px; }
.cd-pg-preview-card { min-width: 0; overflow: hidden; border: 1px solid var(--cd-pg-line); border-radius: 13px; background: #fff; }
.cd-pg-preview-media { display: grid; place-items: center; height: 84px; overflow: hidden; background: #eef2ee; }
.cd-pg-preview-media > img { width: 100%; height: 100%; object-fit: cover; }
.cd-pg-preview-placeholder { display: grid; place-items: center; width: 100%; height: 100%; padding: 13px; background: linear-gradient(145deg, #eef3ef, #fafbfa); }
.cd-pg-preview-placeholder img { width: 88%; max-height: 44px; object-fit: contain; }
.cd-pg-preview-card > div:last-child { padding: 11px; }
.cd-pg-preview-card strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.cd-pg-preview-card span { display: block; margin-top: 5px; color: var(--cd-pg-muted); font-size: 11px; }
.cd-pg-loading { display: inline-flex; gap: 5px; align-items: center; }
.cd-pg-loading i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: cdPgDot .9s infinite alternate; }
.cd-pg-loading i:nth-child(2) { animation-delay: .2s; }
.cd-pg-loading i:nth-child(3) { animation-delay: .4s; }
@keyframes cdPgDot { to { opacity: .25; transform: translateY(-3px); } }

.cd-pg-consent { display: grid; gap: 11px; margin-top: 22px; }
.cd-pg-check { display: grid; grid-template-columns: 22px 1fr; gap: 9px; align-items: start; color: var(--cd-pg-muted); font-size: 12px; line-height: 1.5; }
.cd-pg-check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--cd-pg-lime); }
.cd-pg-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.cd-pg-complete { text-align: center; padding-top: 64px; }
.cd-pg-success-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%; background: var(--cd-pg-lime-soft); color: #5e7700; font-size: 32px; font-weight: 900; }
.cd-pg-complete h2, .cd-pg-complete .cd-pg-lead { margin-inline: auto; }

.cd-pg-toast { position: fixed; left: 50%; bottom: 24px; z-index: 2147483640; display: flex; align-items: center; gap: 18px; max-width: min(520px, calc(100% - 28px)); padding: 14px 16px 14px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: #102d26; box-shadow: 0 20px 55px rgba(0,0,0,.28); color: #fff; font: 700 13px/1.4 Inter, sans-serif; opacity: 0; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .2s ease; }
.cd-pg-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cd-pg-toast[hidden] { display: none !important; }
.cd-pg-toast button { padding: 7px 11px; border: 0; border-radius: 999px; background: var(--cd-pg-lime-bright); color: #17311d; font: 900 11px/1 Inter, sans-serif; cursor: pointer; }

/* Private results page */
.cd-pg-results-body { margin: 0; background: #f2f5f2; color: var(--cd-pg-ink); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
.cd-pg-results-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; padding: 0 max(22px, calc((100vw - 1220px)/2)); border-bottom: 1px solid var(--cd-pg-line); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); }
.cd-pg-results-logo { display: inline-flex; width: 218px; max-width: 52vw; }
.cd-pg-results-logo img { display: block; width: 100%; height: auto; }
.cd-pg-results-language { display: inline-flex; align-items: center; gap: 7px; height: 42px; padding: 0 11px; border: 1px solid var(--cd-pg-line); border-radius: 999px; background: #fff; color: var(--cd-pg-green); }
.cd-pg-results-language select { width: 126px; height: 38px; padding: 0 22px 0 0; border: 0; outline: 0; background: transparent; color: var(--cd-pg-ink); font: 800 11px/1 Inter, sans-serif; }
.cd-pg-results-main { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 54px 0 70px; }
.cd-pg-results-hero { position: relative; overflow: hidden; padding: 50px clamp(26px, 5vw, 64px); border-radius: 28px; background:
    radial-gradient(circle at 88% 18%, rgba(201,237,36,.25), transparent 29%),
    linear-gradient(135deg, #04392f, #0b684e); color: #fff; box-shadow: 0 25px 65px rgba(6,62,50,.20); }
.cd-pg-results-hero::after { content: ""; position: absolute; right: -70px; bottom: -130px; width: 360px; height: 360px; border: 1px solid rgba(201,237,36,.20); border-radius: 50%; box-shadow: 0 0 0 55px rgba(201,237,36,.045), 0 0 0 110px rgba(201,237,36,.025); }
.cd-pg-results-hero .cd-pg-eyebrow { color: var(--cd-pg-lime-bright); }
.cd-pg-results-hero h1 { position: relative; z-index: 1; max-width: 760px; margin: 0; font-size: clamp(35px, 5vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.cd-pg-results-hero > p:last-child { position: relative; z-index: 1; max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.6; }
.cd-pg-results-loading { display: flex; justify-content: center; gap: 8px; padding: 80px; }
.cd-pg-results-loading span { width: 9px; height: 9px; border-radius: 50%; background: var(--cd-pg-lime); animation: cdPgDot .9s infinite alternate; }
.cd-pg-results-loading span:nth-child(2) { animation-delay: .2s; }
.cd-pg-results-loading span:nth-child(3) { animation-delay: .4s; }
.cd-pg-results-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 26px 0; padding: 17px 20px; border: 1px solid var(--cd-pg-line); border-radius: 16px; background: #fff; }
.cd-pg-results-summary strong { margin-left: auto; }
.cd-pg-saved-pill { display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 8px 12px; border-radius: 999px; background: var(--cd-pg-lime-soft); color: #526b00; font-size: 12px; font-weight: 900; }
.cd-pg-results-section { margin-top: 42px; }
.cd-pg-results-section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 16px; }
.cd-pg-results-section h2, .cd-pg-results-empty h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.03em; }
.cd-pg-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.cd-pg-result-card { overflow: hidden; border: 1px solid var(--cd-pg-line); border-radius: 20px; background: #fff; box-shadow: 0 12px 32px rgba(24,61,56,.08); transition: transform .18s ease, box-shadow .18s ease; }
.cd-pg-result-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(24,61,56,.13); }
.cd-pg-result-image { display: grid; place-items: center; height: 210px; overflow: hidden; background: linear-gradient(145deg, #dfe8e4, #f4f7f5); color: var(--cd-pg-muted); font-weight: 800; }
.cd-pg-result-image img { width: 100%; height: 100%; object-fit: cover; }
.cd-pg-result-card-body { padding: 20px; }
.cd-pg-result-location { margin: 0 0 7px; color: #6d8500; font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.cd-pg-result-card h3 { min-height: 46px; margin: 0; font-size: 18px; line-height: 1.3; }
.cd-pg-result-facts { display: flex; flex-wrap: wrap; gap: 9px 13px; margin: 17px 0; color: var(--cd-pg-muted); font-size: 12px; }
.cd-pg-result-facts strong { flex-basis: 100%; color: var(--cd-pg-ink); font-size: 19px; }
.cd-pg-result-reasons { min-height: 48px; margin: 0 0 16px; color: var(--cd-pg-muted); font-size: 12px; line-height: 1.5; }
.cd-pg-result-card .cd-pg-button { width: 100%; }
.cd-pg-results-alternatives { padding-top: 18px; border-top: 1px solid var(--cd-pg-line); }
.cd-pg-results-empty { margin-top: 30px; padding: 50px 30px; border: 1px solid var(--cd-pg-line); border-radius: 22px; background: #fff; text-align: center; }
.cd-pg-results-empty > p { max-width: 660px; margin: 15px auto 0; color: var(--cd-pg-muted); font-size: 16px; line-height: 1.6; }
.cd-pg-search-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: var(--cd-pg-lime-soft); color: #5e7600; font-size: 34px; }
.cd-pg-results-owner .cd-pg-success-icon { margin-top: 8px; }
.cd-pg-results-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 32px; }
.cd-pg-text-link { display: inline-block; margin-top: 20px; color: var(--cd-pg-green); font-weight: 800; }
.cd-pg-results-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px max(22px, calc((100vw - 1180px)/2)); border-top: 1px solid var(--cd-pg-line); background: #fff; color: var(--cd-pg-muted); font-size: 13px; }
.cd-pg-results-footer a { color: var(--cd-pg-green); font-weight: 850; text-decoration: none; }

@media (max-width: 1030px) {
    .cd-pg-dialog { grid-template-columns: 280px minmax(0, 1fr); }
    .cd-pg-rail { padding-inline: 27px; }
    .cd-pg-rail-copy { margin-top: 40px; }
    .cd-pg-rail-map { height: 180px; }
    .cd-pg-dismiss span { display: none; }
    .cd-pg-dismiss { width: 42px; padding: 0; justify-content: center; }
    .cd-pg-step-bubbles { gap: 5px; }
    .cd-pg-step-bubbles button { width: 27px; height: 27px; }
}

@media (max-width: 850px) {
    .cd-pg-overlay { align-items: end; padding: 0; }
    .cd-pg-dialog { display: block; width: 100%; max-height: 96vh; border-radius: 26px 26px 0 0; }
    .cd-pg-rail { display: flex; min-height: 0; height: 84px; padding: 20px 22px; justify-content: center; }
    .cd-pg-rail-brand { width: 225px; }
    .cd-pg-rail-copy, .cd-pg-rail-locations, .cd-pg-rail-map, .cd-pg-rail-trust { display: none; }
    .cd-pg-topbar { min-height: 79px; padding: 12px 15px 12px 20px; }
    .cd-pg-content { max-height: calc(96vh - 166px); }
    .cd-pg-step { min-height: 0; padding: 34px 22px 28px; }
    .cd-pg-choice-grid, .cd-pg-choice-grid.two { grid-template-columns: 1fr; }
    .cd-pg-choice { min-height: 116px; grid-template-columns: 54px minmax(0,1fr) 36px; align-items: center; }
    .cd-pg-choice-icon { width: 54px; height: 54px; }
    .cd-pg-choice-copy > span { margin-top: 5px; }
    .cd-pg-quick-area { grid-template-columns: 1fr; gap: 11px; }
    .cd-pg-form-grid, .cd-pg-town-groups { grid-template-columns: 1fr; }
    .cd-pg-inline-fields { grid-template-columns: 1fr 1fr; }
    .cd-pg-preview-cards { grid-template-columns: 1fr; }
    .cd-pg-preview-card { display: grid; grid-template-columns: 112px minmax(0,1fr); }
    .cd-pg-preview-media { height: 86px; }
    .cd-pg-results-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
    .cd-pg-launcher { right: 14px; bottom: 14px; min-height: 50px; padding: 0 16px; }
    .cd-pg-launcher span { display: none; }
    .cd-pg-rail { height: 76px; padding: 17px 19px; }
    .cd-pg-rail-brand { width: 205px; }
    .cd-pg-topbar { align-items: center; min-height: 74px; padding: 10px 12px 10px 16px; }
    .cd-pg-step-meta { gap: 7px; }
    .cd-pg-step-meta > strong { display: block; font-size: 10px; }
    .cd-pg-step-bubbles { display: none; }
    .cd-pg-step-bubbles button { width: 25px; height: 25px; font-size: 10px; }
    .cd-pg-language { width: 82px; height: 40px; padding: 0 8px; }
    .cd-pg-language select { width: 52px; font-size: 10px; }
    .cd-pg-dismiss { width: auto; max-width: 130px; height: 40px; padding: 0 9px; }
    .cd-pg-dismiss span { display: inline; max-width: 92px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 8.5px; }
    .cd-pg-close { width: 40px; height: 40px; }
    .cd-pg-content { max-height: calc(96vh - 153px); }
    .cd-pg-step { padding: 30px 18px 26px; }
    .cd-pg-step h2 { font-size: clamp(30px, 9vw, 42px); }
    .cd-pg-lead { font-size: 14px; }
    .cd-pg-choice { grid-template-columns: 50px minmax(0,1fr) 33px; gap: 12px; padding: 16px; }
    .cd-pg-choice-icon { width: 50px; height: 50px; }
    .cd-pg-choice strong { font-size: 15px; }
    .cd-pg-area-grid { grid-template-columns: 1fr; }
    .cd-pg-inline-fields { grid-template-columns: 1fr; }
    .cd-pg-footer-actions { align-items: stretch; flex-direction: column-reverse; }
    .cd-pg-action-right { width: 100%; margin: 0; }
    .cd-pg-action-right .cd-pg-button { flex: 1; }
    .cd-pg-button-quiet { align-self: center; }
    .cd-pg-toast { bottom: 14px; width: calc(100% - 28px); justify-content: space-between; }
    .cd-pg-results-main { width: min(100% - 24px, 1180px); padding-top: 28px; }
    .cd-pg-results-header { min-height: 68px; padding: 0 14px; }
    .cd-pg-results-logo { width: 170px; }
    .cd-pg-results-language { width: 80px; padding-inline: 8px; }
    .cd-pg-results-language select { width: 51px; font-size: 10px; }
    .cd-pg-results-hero { padding: 34px 23px; border-radius: 21px; }
    .cd-pg-results-grid { grid-template-columns: 1fr; }
    .cd-pg-results-summary strong { margin-left: 0; }
    .cd-pg-results-footer { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    .cd-pg-overlay, .cd-pg-dialog, .cd-pg-launcher, .cd-pg-choice, .cd-pg-button, .cd-pg-area-card, .cd-pg-toast { transition: none !important; }
    .cd-pg-step, .cd-pg-rail-map i { animation: none !important; }
}


/* Casa Direct V39.4.1 usability hotfix */
.cd-pg-section-label small { color: var(--cd-pg-muted); font-size: .78em; font-weight: 750; letter-spacing: 0; text-transform: none; }
.cd-pg-helper-tight { margin-top: -4px; margin-bottom: 10px; }
.cd-pg-pill:has(input[value="any"]) span { border-color: rgba(170,201,0,.48); background: linear-gradient(135deg,#f6fadf,#fff); font-weight: 900; }
.cd-pg-pill:has(input[value="any"]:checked) span { border-color: var(--cd-pg-lime); background: linear-gradient(135deg,var(--cd-pg-lime-soft),#fff); box-shadow: 0 7px 18px rgba(170,201,0,.18); }
.cd-pg-preview-cards { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.cd-pg-preview-card { display: grid; grid-template-columns: 150px minmax(0,1fr); color: inherit; text-decoration: none; box-shadow: 0 8px 22px rgba(24,61,56,.06); transition: transform .16s ease, box-shadow .16s ease; }
.cd-pg-preview-card:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(24,61,56,.11); }
.cd-pg-preview-media { height: 112px; }
.cd-pg-preview-card .cd-pg-preview-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 14px; }
.cd-pg-preview-card strong { font-size: 13px; white-space: normal; line-height: 1.35; }
.cd-pg-preview-card small { display: block; margin-top: 6px; color: #7b8582; font-size: 10px; font-weight: 800; }

.cd-pg-results-main { width: min(1280px,calc(100% - 36px)); padding-top: 34px; }
.cd-pg-results-hero { padding: 34px clamp(26px,4vw,52px); border-radius: 24px; }
.cd-pg-results-hero h1 { font-size: clamp(32px,4.2vw,48px); }
.cd-pg-results-hero > p:last-child { margin-top: 12px; }
.cd-pg-results-summary { margin: 18px 0 8px; }
.cd-pg-results-section { margin-top: 30px; }
.cd-pg-results-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.cd-pg-result-card { border-radius: 24px; border-color: #d7e0dc; box-shadow: 0 16px 40px rgba(24,61,56,.10); }
.cd-pg-result-card.is-exact { border-color: rgba(170,201,0,.58); box-shadow: 0 18px 44px rgba(112,139,0,.14); }
.cd-pg-result-image { position: relative; height: 310px; text-decoration: none; }
.cd-pg-result-image::after { content:""; position:absolute; inset:auto 0 0; height:34%; background:linear-gradient(to top,rgba(3,38,31,.36),transparent); pointer-events:none; }
.cd-pg-result-image img { transition: transform .35s ease; }
.cd-pg-result-card:hover .cd-pg-result-image img { transform: scale(1.025); }
.cd-pg-result-placeholder { display:grid; place-items:center; width:100%; height:100%; background:linear-gradient(145deg,#dfe8e4,#f4f7f5); color:var(--cd-pg-green); font-size:24px; font-weight:900; }
.cd-pg-result-badge { position:absolute; left:18px; top:18px; z-index:2; padding:9px 12px; border-radius:999px; background:rgba(4,57,47,.92); color:#fff; box-shadow:0 8px 20px rgba(0,0,0,.18); font-size:11px; font-weight:900; letter-spacing:.02em; }
.cd-pg-result-card.is-exact .cd-pg-result-badge { background:linear-gradient(135deg,var(--cd-pg-lime-bright),var(--cd-pg-lime)); color:#18230e; }
.cd-pg-result-card-body { padding:24px; }
.cd-pg-result-meta-line { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.cd-pg-result-meta-line > span { color:#7a8581; font-size:11px; font-weight:750; }
.cd-pg-result-location { margin:0; }
.cd-pg-result-card h3 { min-height:0; font-size:23px; line-height:1.23; }
.cd-pg-result-card h3 a { color:var(--cd-pg-ink); text-decoration:none; }
.cd-pg-result-card h3 a:hover { color:var(--cd-pg-green); }
.cd-pg-result-type { margin:8px 0 0; color:var(--cd-pg-muted); font-size:13px; }
.cd-pg-result-facts { align-items:flex-end; justify-content:space-between; margin:18px 0; }
.cd-pg-result-facts strong { flex-basis:auto; font-size:25px; }
.cd-pg-result-facts > div { display:flex; flex-wrap:wrap; gap:8px; }
.cd-pg-result-facts > div span { padding:7px 10px; border-radius:999px; background:#f0f4f1; color:#42504c; font-weight:800; }
.cd-pg-result-reasons { min-height:0; padding:12px 14px; border-radius:12px; background:#f6f8f6; }
.cd-pg-result-card .cd-pg-button { min-height:54px; font-size:14px; }

@media (max-width: 850px) {
    .cd-pg-preview-cards { grid-template-columns:1fr; }
    .cd-pg-results-grid { grid-template-columns:1fr; }
    .cd-pg-result-image { height:280px; }
}
@media (max-width: 520px) {
    .cd-pg-preview-card { grid-template-columns:112px minmax(0,1fr); }
    .cd-pg-preview-media { height:100px; }
    .cd-pg-results-main { width:min(100% - 20px,1280px); padding-top:20px; }
    .cd-pg-results-hero { padding:27px 20px; }
    .cd-pg-result-image { height:230px; }
    .cd-pg-result-card-body { padding:20px; }
    .cd-pg-result-card h3 { font-size:20px; }
    .cd-pg-result-meta-line { align-items:flex-start; flex-direction:column; gap:5px; }
}


/* Compact mobile introduction: the full guide opens only after the visitor opts in. */
.cd-pg-mobile-invite { position: fixed; isolation: isolate; pointer-events: auto; right: 14px; bottom: 14px; z-index: 2147482998; width: min(410px, calc(100% - 28px)); overflow: hidden; border: 1px solid rgba(170,201,0,.38); border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(0,31,25,.28); opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .2s ease, transform .2s ease; }
.cd-pg-mobile-invite[hidden] { display: none !important; }
.cd-pg-mobile-invite.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.cd-pg-mobile-invite-brand { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 11px 13px 11px 16px; background: linear-gradient(135deg,#043c31,#0a654d); }
.cd-pg-mobile-invite-brand img { display: block; width: 160px; height: auto; }
.cd-pg-mobile-invite-brand button { display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.10); color: #fff; font: 400 24px/1 Arial,sans-serif; cursor: pointer; }
.cd-pg-mobile-invite-body { padding: 16px 17px 14px; }
.cd-pg-mobile-invite-eyebrow { margin: 0 0 5px; color: #789000; font-size: 9px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.cd-pg-mobile-invite h2 { margin: 0; color: var(--cd-pg-ink); font-size: 23px; line-height: 1.12; letter-spacing: -.035em; }
.cd-pg-mobile-invite-lead { margin: 8px 0 14px; color: var(--cd-pg-muted); font-size: 12.5px; line-height: 1.48; }
.cd-pg-mobile-invite-actions { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 9px; }
.cd-pg-mobile-invite-start, .cd-pg-mobile-invite-later { min-height: 44px; border-radius: 12px; font: 900 12px/1 Inter,system-ui,sans-serif; cursor: pointer; }
.cd-pg-mobile-invite-start { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 16px; border: 0; background: linear-gradient(135deg,var(--cd-pg-lime-bright),var(--cd-pg-lime)); color: #17210e; box-shadow: 0 9px 22px rgba(170,201,0,.25); }
.cd-pg-mobile-invite-start svg { width: 17px; height: 17px; }
.cd-pg-mobile-invite-later { padding: 0 14px; border: 1px solid var(--cd-pg-line); background: #fff; color: #53605d; }
.cd-pg-mobile-invite-dismiss { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%; margin-top: 8px; padding: 5px 8px 0; border: 0; background: transparent; color: #75807d; font: 750 10px/1.25 Inter,system-ui,sans-serif; cursor: pointer; }
.cd-pg-mobile-invite-dismiss svg { width: 14px; height: 14px; }

@media (min-width: 851px) {
    .cd-pg-mobile-invite { display: none !important; }
}
@media (max-width: 360px) {
    .cd-pg-mobile-invite-brand img { width: 145px; }
    .cd-pg-mobile-invite-body { padding: 14px 14px 12px; }
    .cd-pg-mobile-invite h2 { font-size: 21px; }
    .cd-pg-mobile-invite-actions { grid-template-columns: 1fr; }
    .cd-pg-mobile-invite-start, .cd-pg-mobile-invite-later { min-height: 42px; }
}
@media (max-height: 520px) and (max-width: 850px) {
    .cd-pg-mobile-invite { bottom: 8px; max-height: calc(100vh - 16px); overflow-y: auto; }
    .cd-pg-mobile-invite-brand { min-height: 50px; }
    .cd-pg-mobile-invite-body { padding-block: 11px; }
    .cd-pg-mobile-invite-lead { margin-block: 6px 10px; }
}
