@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --cwb-green: #19733d;
    --cwb-green-dark: #125d31;
    --cwb-blue: #1654b7;
    --cwb-blue-dark: #0f4298;
    --cwb-navy: #163568;
    --cwb-navy-deep: #102e60;
    --cwb-cream: #fffdfa;
    --cwb-wash: #edf4f8;
    --cwb-wash-blue: #edf4fb;
    --cwb-text: #53677b;
    --cwb-muted: #5f6d80;
    --cwb-border: #e1e6ee;
    --cwb-radius: 6px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.cwb-windows {
    margin: 0;
    background: var(--cwb-cream);
    color: var(--cwb-navy);
    font-family: "DM Sans", "Inter", sans-serif;
    line-height: 1.5;
}

.cwb-windows img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.cwb-windows a {
    color: inherit;
    text-decoration: none;
}

.cwb-windows a.cwb-link {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cwb-windows button,
.cwb-windows input,
.cwb-windows select {
    font: inherit;
}

.cwb-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.cwb-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--cwb-border);
    background: rgba(255, 253, 250, 0.95);
    backdrop-filter: blur(8px);
}

.cwb-header__bar {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cwb-brand img {
    display: block;
    height: 70px;
    width: 125px;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.2s ease;
}

.cwb-brand:hover img {
    transform: scale(1.03);
}

.cwb-header__center {
    display: none;
}

.cwb-nav {
    display: flex;
    width: 100%;
    max-width: 640px;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
}

.cwb-nav a {
    position: relative;
    padding: 16px 6px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #253653;
    margin-bottom: 8px;
}

.cwb-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--cwb-green);
    transition: width 0.2s ease;
}

.cwb-nav a:hover,
.cwb-nav a.is-active {
    color: var(--cwb-blue);
}

.cwb-nav a:hover::after,
.cwb-nav a.is-active::after {
    width: 100%;
}

.cwb-header__book {
    display: grid;
    width: 100%;
    max-width: 560px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.cwb-header__side {
    display: none;
    align-items: center;
    gap: 20px;
}

.cwb-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cwb-navy);
}

.cwb-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #9db0c9;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cwb-navy);
}

.cwb-login:hover {
    background: #eff4f9;
}

.cwb-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 8px;
    color: var(--cwb-navy);
    cursor: pointer;
}

.cwb-header__mobile-book {
    border-top: 1px solid var(--cwb-border);
    background: var(--cwb-cream);
    padding: 10px 0;
}

.cwb-header__mobile-book .cwb-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cwb-mobile-nav {
    display: none;
    border-top: 1px solid var(--cwb-border);
    background: var(--cwb-cream);
}

.cwb-windows.is-menu-open .cwb-mobile-nav {
    display: block;
}

.cwb-mobile-nav a {
    display: block;
    border-bottom: 1px solid #e8edf2;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #253653;
}

.cwb-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--cwb-radius);
    padding: 12px 20px;
    font-family: inherit;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.15;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cwb-btn:hover {
    transform: translateY(-2px);
}

.cwb-btn--green,
.cwb-windows a.cwb-btn--green,
.cwb-windows a.cwb-btn--green:link,
.cwb-windows a.cwb-btn--green:visited,
.cwb-windows a.cwb-btn--green:hover,
.cwb-windows a.cwb-btn--green:focus,
.cwb-windows a.cwb-btn--green:active {
    background: var(--cwb-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(25, 115, 61, 0.18);
}

.cwb-btn--green:hover,
.cwb-windows a.cwb-btn--green:hover {
    background: var(--cwb-green-dark);
}

.cwb-btn--blue,
.cwb-windows a.cwb-btn--blue,
.cwb-windows a.cwb-btn--blue:link,
.cwb-windows a.cwb-btn--blue:visited,
.cwb-windows a.cwb-btn--blue:hover,
.cwb-windows a.cwb-btn--blue:focus,
.cwb-windows a.cwb-btn--blue:active {
    background: var(--cwb-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 84, 183, 0.18);
}

.cwb-btn--blue:hover,
.cwb-windows a.cwb-btn--blue:hover {
    background: var(--cwb-blue-dark);
}

.cwb-btn--green svg,
.cwb-btn--blue svg,
.cwb-windows a.cwb-btn--green svg,
.cwb-windows a.cwb-btn--blue svg {
    color: #fff;
    stroke: #fff;
}

.cwb-btn--outline,
.cwb-windows a.cwb-btn--outline,
.cwb-windows a.cwb-btn--outline:link,
.cwb-windows a.cwb-btn--outline:visited,
.cwb-windows a.cwb-btn--outline:hover,
.cwb-windows a.cwb-btn--outline:focus,
.cwb-windows a.cwb-btn--outline:active {
    background: transparent;
    color: var(--cwb-navy);
    border: 1px solid var(--cwb-navy);
    box-shadow: none;
}

.cwb-btn--outline:hover,
.cwb-windows a.cwb-btn--outline:hover {
    background: var(--cwb-navy);
    color: #fff;
}

.cwb-btn--outline svg,
.cwb-windows a.cwb-btn--outline svg {
    color: inherit;
    stroke: currentColor;
}

.cwb-btn--compact {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.63rem;
}

.cwb-btn .cwb-icon,
.cwb-icon--bin,
.cwb-icon--window {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.cwb-card__icon .cwb-icon--bin,
.cwb-card__icon .cwb-icon--window {
    width: 24px;
    height: 24px;
}

.cwb-hero {
    position: relative;
    overflow: hidden;
    background: var(--cwb-wash);
    padding: 56px 0 80px;
}

.cwb-hero__photos {
    display: none;
    pointer-events: none;
}

.cwb-hero__photo {
    position: absolute;
    inset: 0 auto 0 0;
    width: 38%;
    overflow: hidden;
}

.cwb-hero__photo--right {
    left: auto;
    right: 0;
}

.cwb-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cwb-hero__photo--left {
    left: -100px;
}

.cwb-hero__photo--left img {
    object-position: left center;
}

.cwb-hero__photo--left::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 35%, rgba(237, 244, 248, 0.45) 62%, #edf4f8 100%),
        linear-gradient(to bottom, rgba(237, 244, 248, 0.08), transparent 40%, rgba(237, 244, 248, 0.2));
}

.cwb-hero__photo--right img {
    object-position: right center;
}

.cwb-hero__photo--right::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left, transparent 35%, rgba(237, 244, 248, 0.45) 62%, #edf4f8 100%),
        linear-gradient(to bottom, rgba(237, 244, 248, 0.08), transparent 40%, rgba(237, 244, 248, 0.2));
}

.cwb-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.cwb-hero h1,
.cwb-display {
    margin: 0;
    font-family: Manrope, "DM Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--cwb-navy);
}

.cwb-hero h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
}

.cwb-hero h1 span {
    color: var(--cwb-green);
}

.cwb-hero__lead {
    max-width: 36rem;
    margin: 24px auto 0;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--cwb-navy);
}

.cwb-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    margin-top: 32px;
    text-align: center;
}

.cwb-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cwb-trust svg {
    margin-bottom: 12px;
    color: var(--cwb-green);
}

.cwb-trust p {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--cwb-navy);
}

.cwb-hero__mobile-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
}

.cwb-hero__mobile-photos figure {
    position: relative;
    height: 144px;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(20, 46, 80, 0.12);
}

.cwb-hero__mobile-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cwb-hero__mobile-photos figure:first-child img {
    object-position: left center;
}

.cwb-hero__mobile-photos figure:last-child img {
    object-position: right center;
}

.cwb-section {
    padding: 32px 0 64px;
}

.cwb-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}

.cwb-eyebrow {
    margin: 0 0 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cwb-green);
}

.cwb-eyebrow--blue {
    color: var(--cwb-blue);
}

.cwb-section h2,
.cwb-card h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--cwb-navy);
}

.cwb-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.cwb-more {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cwb-blue);
}

.cwb-cards {
    display: grid;
    gap: 24px;
}

.cwb-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cwb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(20, 46, 80, 0.11);
}

.cwb-card--green {
    border: 1px solid #b9d7c0;
    background: #f0f7f0;
}

.cwb-card--blue {
    border: 1px solid #bfd0e8;
    background: #f0f5fc;
}

.cwb-card__top {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

.cwb-card__top > div:first-child {
    min-width: 0;
    flex: 1;
}

.cwb-card__media {
    flex: none;
    width: calc(100% + 48px);
    max-width: none;
    height: 180px;
    margin: -24px -24px 0;
    border-radius: 0;
    overflow: hidden;
}

.cwb-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cwb-card__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #fff;
}

.cwb-card--green .cwb-card__icon {
    background: var(--cwb-green);
}

.cwb-card--blue .cwb-card__icon {
    background: var(--cwb-blue);
}

.cwb-card--green h3 {
    color: #1a733d;
}

.cwb-card p {
    max-width: 18rem;
    margin: 12px 0 0;
    line-height: 1.7;
    color: #586a7e;
}

.cwb-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.cwb-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #41556e;
}

.cwb-card li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cwb-card--green li svg {
    color: var(--cwb-green);
}

.cwb-card--blue li svg {
    color: var(--cwb-blue);
}

.cwb-card .cwb-btn {
    margin-top: 28px;
}

.cwb-reviews {
    background: var(--cwb-navy-deep);
    color: #fff;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.cwb-reviews__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.cwb-reviews__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cwb-reviews__logo {
    width: 48px;
    height: 48px;
}

.cwb-reviews__title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cwb-reviews__count {
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: #c6d5e8;
}

.cwb-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
    color: #ffbd22;
}

.cwb-reviews__quote {
    max-width: 275px;
    margin: 0;
    border-left: 1px solid #52709b;
    padding-left: 20px;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
    color: #e1e9f3;
}

.cwb-reviews__quote span {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    font-style: normal;
    color: #aebfd5;
}

.cwb-reviews__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #aabed8;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #fff;
}

.cwb-reviews__link:hover {
    background: #fff;
    color: var(--cwb-navy-deep);
}

.cwb-reviews--cta {
    padding: 28px 0;
}

.cwb-reviews__cta {
    display: grid;
    gap: 28px;
    align-items: center;
}

.cwb-reviews--cta .cwb-reviews__title {
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.cwb-reviews--cta .cwb-stars {
    margin-top: 8px;
}

.cwb-reviews--cta .cwb-stars svg {
    width: 18px;
    height: 18px;
}

.cwb-reviews__cta-main {
    text-align: center;
}

.cwb-reviews__cta-main h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.cwb-reviews__cta-main p {
    margin: 10px 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e1e9f3;
    padding-right: 85px;
}

.cwb-reviews__cta-main .cwb-btn {
    margin-top: 16px;
}

.cwb-reviews__cta-call {
    text-align: center;
}

.cwb-reviews__cta-call p {
    margin: 0;
    font-size: 0.85rem;
    color: #d5e0ee;
}

.cwb-reviews__cta-call a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    font-family: Manrope, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.cwb-steps {
    padding: 64px 0;
}

.cwb-steps__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cwb-steps__title h2 {
    font-size: 1.5rem;
}

.cwb-steps__title span {
    width: 48px;
    height: 1px;
    background: #8fb49b;
}

.cwb-steps__grid {
    display: grid;
    gap: 32px;
}

.cwb-step {
    position: relative;
    text-align: center;
}

.cwb-step__icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
}

.cwb-step__glyph {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef3fb;
    color: var(--cwb-navy);
}

.cwb-step__glyph svg {
    display: block;
    width: 36px;
    height: 36px;
}

.cwb-step__num {
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 1;
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cwb-green);
    font-family: Manrope, sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.cwb-step h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cwb-step__heading--green {
    color: var(--cwb-green);
}

.cwb-step__heading--navy {
    color: var(--cwb-navy);
}

.cwb-step p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cwb-navy);
}

.cwb-step__arrow {
    display: none;
}

.cwb-support {
    padding-bottom: 64px;
}

.cwb-support__grid {
    display: grid;
    gap: 16px;
}

.cwb-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #d8e0ea;
    border-radius: 8px;
    padding: 24px;
}

.cwb-panel--soft {
    background: #f0f5fb;
}

.cwb-panel--light {
    background: #f8fafc;
}

.cwb-panel__body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
}

.cwb-panel__copy {
    flex: 1;
    min-width: 0;
}

.cwb-panel--light .cwb-panel__body {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 16px;
    row-gap: 16px;
}

.cwb-panel--light .cwb-panel__icon {
    grid-column: 1;
    grid-row: 1;
}

.cwb-panel--light .cwb-panel__copy {
    grid-column: 2;
    grid-row: 1;
}

.cwb-panel--light .cwb-panel__actions {
    grid-column: 2 / -1;
    grid-row: 2;
    margin-top: 0;
}

.cwb-panel--light .cwb-panel__help {
    grid-column: 1 / -1;
    grid-row: 3;
}

.cwb-panel__icon {
    display: flex;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cwb-navy);
    color: #fff;
}

.cwb-panel h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.cwb-panel p {
    margin: 8px 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--cwb-text);
}

.cwb-panel__copy > .cwb-btn,
.cwb-panel__actions {
    margin-top: 16px;
}

.cwb-panel__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}

.cwb-panel__actions .cwb-btn {
    flex: 1 1 0;
}

.cwb-panel__help {
    width: 100%;
    border-top: 1px solid #d8e0ea;
    padding-top: 12px;
    text-align: center;
}

.cwb-panel__help a {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cwb-navy);
    white-space: nowrap;
}

.cwb-panel__help p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    line-height: 1.35;
}

.cwb-offer {
    background: var(--cwb-green);
    color: #fff;
}

.cwb-offer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 28px;
    padding: 12px 0;
}

.cwb-offer__copy {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.cwb-offer__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transform: rotate(-28deg);
}

.cwb-offer__eyebrow {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cwb-offer__text {
    margin: 4px 0 0;
    font-size: 0.95rem;
    line-height: 1.35;
}

.cwb-offer__text strong {
    font-weight: 800;
}

.cwb-offer__code {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.cwb-offer__code-box {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 14px;
    border-radius: 4px;
    background: #fff;
    color: var(--cwb-navy);
    font-family: Manrope, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.cwb-window-hero {
    position: relative;
    overflow: hidden;
    background: var(--cwb-wash-blue);
    padding: 56px 0;
}

.cwb-window-hero__grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.cwb-window-hero h1 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.04;
    color: var(--cwb-navy);
}

.cwb-window-hero h1 span {
    color: var(--cwb-green);
}

.cwb-window-hero__lead {
    max-width: none;
    margin: 24px 0 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--cwb-text);
}

.cwb-window-hero__detail {
    max-width: none;
    margin: 16px 0 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--cwb-text);
}

.cwb-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
    max-width: 560px;
    margin-top: 32px;
}

.cwb-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.cwb-highlight:nth-child(even) {
    border-left: 1px solid #cfd9e5;
}

.cwb-highlight svg {
    margin-bottom: 8px;
    color: var(--cwb-navy);
}

.cwb-highlight p {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--cwb-navy);
}

.cwb-window-hero__media {
    position: relative;
    overflow: hidden;
    background: var(--cwb-navy-deep);
    border-radius: 12px;
    min-height: 320px;
}

.cwb-window-hero__media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: right center;
}

.cwb-packages {
    padding: 48px 0 64px;
    background: var(--cwb-cream);
}

.cwb-packages__head {
    margin-bottom: 36px;
    text-align: center;
}

.cwb-price-grid {
    display: grid;
    gap: 20px;
}

.cwb-price {
    border-radius: 12px;
    padding: 24px;
}

.cwb-price--green {
    border: 2px solid #b9d7c0;
    background: #f0f7f0;
}

.cwb-price--blue {
    border: 2px solid #b8cce8;
    background: #f0f5fc;
}

.cwb-price.is-selected {
    box-shadow: 0 0 0 3px var(--cwb-navy);
}

.cwb-price__name {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cwb-price--green .cwb-price__name {
    color: var(--cwb-green);
}

.cwb-price--blue .cwb-price__name {
    color: var(--cwb-blue);
}

.cwb-price__sub {
    margin: 6px 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cwb-muted);
}

.cwb-price__from,
.cwb-price__period {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cwb-navy);
}

.cwb-price__from {
    margin: 22px 0 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cwb-price__period {
    margin: 2px 0 0;
}

.cwb-price__amount {
    margin: 2px 0 0;
    line-height: 1;
    font-family: Manrope, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.cwb-price--green .cwb-price__amount {
    color: var(--cwb-green);
}

.cwb-price--blue .cwb-price__amount {
    color: var(--cwb-blue);
}

.cwb-price__rule {
    height: 1px;
    margin: 20px 0;
    background: #d8e0ea;
}

.cwb-price__copy {
    margin: 0;
    font-size: 0.9rem;
    color: var(--cwb-navy);
}

.cwb-price ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.cwb-price li {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--cwb-navy);
}

.cwb-price li svg {
    flex-shrink: 0;
}

.cwb-price--green li svg {
    color: var(--cwb-green);
}

.cwb-price--blue li svg {
    color: var(--cwb-blue);
}

.cwb-price--green li .cwb-price__star,
.cwb-price--blue li .cwb-price__star {
    color: #ffbd22;
}

.cwb-price .cwb-btn {
    width: 100%;
    margin-top: 28px;
}

.cwb-addons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    border: 1px solid #d8e0ea;
    border-radius: 8px;
    background: #f7f8fa;
    padding: 20px 24px;
}

.cwb-addons__copy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cwb-addons__icon {
    display: flex;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cwb-navy);
    color: #fff;
}

.cwb-addons h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cwb-navy);
}

.cwb-addons p {
    margin: 6px 0 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--cwb-navy);
}

.cwb-addons .cwb-btn {
    flex-shrink: 0;
}


.cwb-note {
    margin: 16px 0 0;
    font-size: 0.85rem;
    color: var(--cwb-muted);
}

.cwb-footer {
    background: var(--cwb-navy-deep);
    color: #fff;
}

.cwb-footer__grid {
    display: grid;
    gap: 40px;
    padding: 48px 0;
}

.cwb-footer .cwb-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    filter: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.cwb-footer p {
    max-width: 260px;
    margin: 20px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #c8d7ea;
}

.cwb-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.cwb-footer h3 {
    margin: 0 0 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9dd3aa;
}

.cwb-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    color: #d5e0ee;
}

.cwb-footer__links a:hover {
    color: #fff;
}

.cwb-footer__contact > a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #d5e0ee;
}

.cwb-footer__contact > a:first-of-type {
    margin-top: 0;
    font-weight: 700;
    color: #fff;
}

.cwb-footer__contact .cwb-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    line-height: 0;
    border: 1px solid #3d5d86;
    border-radius: 50%;
    color: #fff;
}

.cwb-footer__contact .cwb-footer__socials a svg {
    display: block;
    width: 16px;
    height: 16px;
}

.cwb-footer__contact .cwb-footer__socials a:hover {
    background: #fff;
    color: var(--cwb-navy-deep);
}

.cwb-trustbar {
    background: var(--cwb-green);
}

.cwb-trustbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 40px;
    padding: 12px 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}

.cwb-trustbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .cwb-brand img {
        height: 100px;
        width: 184px;
    }

    .cwb-card {
        padding: 32px;
    }

    .cwb-card__top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
    }

    .cwb-card__media {
        flex: 0 0 150px;
        width: 150px;
        max-width: 150px;
        height: 140px;
        margin: 0;
        border-radius: 12px;
    }

    .cwb-price {
        padding: 32px;
    }

    .cwb-addons {
        flex-direction: row;
        align-items: center;
        padding: 22px 28px;
    }

    .cwb-highlights {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .cwb-highlight:nth-child(even) {
        border-left: 1px solid #cfd9e5;
    }

    .cwb-highlight:nth-child(3) {
        border-left: 1px solid #cfd9e5;
    }

    .cwb-window-hero__media img {
        height: 420px;
    }
}

@media (min-width: 768px) {
    .cwb-header__side {
        display: flex;
    }

    .cwb-trust {
        grid-template-columns: repeat(4, 1fr);
    }

    .cwb-reviews__inner {
        flex-direction: row;
        align-items: center;
    }

    .cwb-reviews__cta {
        grid-template-columns: minmax(180px, 0.8fr) 1.4fr minmax(210px, 0.9fr);
        gap: 24px 32px;
        align-items: center;
    }

    .cwb-reviews__cta-main {
        border-left: 1px solid rgba(255, 255, 255, 0.28);
        padding-left: 32px;
        text-align: left;
    }

    .cwb-reviews__cta-call {
        text-align: left;
    }

    .cwb-steps__grid {
        grid-template-columns: 1fr 1fr;
    }

    .cwb-price-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cwb-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .cwb-header__bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 32px;
    }

    .cwb-header__center {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
        padding-bottom: 12px;
    }

    .cwb-menu-toggle,
    .cwb-header__mobile-book,
    .cwb-mobile-nav {
        display: none !important;
    }

    .cwb-hero {
        min-height: 520px;
        padding: 64px 0;
    }

    .cwb-hero__photos {
        display: block;
        position: absolute;
        inset: 0;
    }

    .cwb-hero__mobile-photos {
        display: none;
    }

    .cwb-more {
        display: flex;
    }

    .cwb-cards {
        grid-template-columns: 1fr 1fr;
    }

    .cwb-steps__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cwb-step {
        text-align: left;
    }

    .cwb-step__icon {
        margin-left: 0;
    }

    .cwb-step__arrow {
        display: flex;
        position: absolute;
        top: 40px;
        left: calc(80px + (100% - 80px + 32px) / 2);
        width: 14px;
        height: 26px;
        align-items: center;
        justify-content: center;
        color: var(--cwb-green);
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .cwb-step__arrow svg {
        display: block;
        width: 14px;
        height: 26px;
    }

    .cwb-support__grid {
        grid-template-columns: 1fr 1.28fr;
    }

    .cwb-panel {
        padding: 28px;
    }

    .cwb-panel__body {
        flex-wrap: nowrap;
    }

    .cwb-panel__help {
        width: auto;
        max-width: 160px;
        flex-shrink: 0;
        border-top: 0;
        border-left: 1px solid #d8e0ea;
        padding: 0 0 0 16px;
        text-align: right;
    }

    .cwb-panel--light .cwb-panel__body {
        grid-template-columns: auto 1fr auto;
    }

    .cwb-panel--light .cwb-panel__help {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        max-width: 160px;
    }

    .cwb-panel--light .cwb-panel__actions {
        grid-column: 2 / -1;
        flex-wrap: nowrap;
    }

    .cwb-window-hero {
        min-height: 620px;
        display: flex;
        align-items: center;
        padding: 80px 0;
    }

    .cwb-window-hero__grid {
        grid-template-columns: minmax(50%, 1fr) 1fr;
    }

    .cwb-window-hero__media {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
        min-height: 0;
    }

    .cwb-window-hero__media img {
        height: 100%;
    }

    .cwb-window-hero__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to left, transparent 35%, rgba(237, 244, 251, 0.45) 62%, #edf4fb 100%);
        pointer-events: none;
    }

    .cwb-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    }

    .cwb-trustbar__inner {
        justify-content: space-between;
    }
}

@media (max-width: 1023px) {
    .cwb-section__head {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cwb-reviews__inner {
        align-items: center;
        text-align: center;
    }

    .cwb-reviews__brand {
        justify-content: center;
    }

    .cwb-reviews__quote {
        border-left: 0;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .cwb-reviews__cta-main p {
        padding-right: 0;
    }

    .cwb-steps {
        text-align: center;
    }

    .cwb-steps__grid {
        justify-items: center;
        gap: 16px;
    }

    .cwb-step {
        margin-bottom: 12px;
    }

    .cwb-footer__grid {
        text-align: center;
        justify-items: center;
    }

    .cwb-footer .cwb-brand img {
        margin: 0 auto;
    }

    .cwb-footer p {
        margin-left: auto;
        margin-right: auto;
    }

    .cwb-footer__links {
        align-items: center;
    }

    .cwb-footer__contact > a {
        justify-content: center;
    }

    .cwb-footer__socials {
        justify-content: center;
    }

    .cwb-offer__eyebrow {
        margin: 0 0 15px;
    }

    .cwb-offer__icon {
        margin-top: 15px;
    }

    .cwb-offer__code {
        margin: 8px 0;
    }

    .cwb-window-hero h1,
    .cwb-window-hero__lead,
    .cwb-window-hero__detail {
        text-align: center;
    }

    .cwb-addons .cwb-btn {
        align-self: center;
    }
}

.cwb-modal {
    border: 0;
    border-radius: 8px;
    padding: 0;
    width: min(920px, calc(100vw - 32px));
    max-width: 920px;
    color: var(--cwb-navy);
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 46, 96, 0.28);
}

.cwb-modal::backdrop {
    background: rgba(16, 46, 96, 0.55);
}

.cwb-modal__inner {
    padding: 28px 24px 24px;
}

.cwb-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cwb-modal__head h2 {
    margin: 0 0 8px;
    font-family: Manrope, sans-serif;
    font-size: 1.55rem;
}

.cwb-modal__head p {
    margin: 0;
    color: var(--cwb-text);
    font-size: 0.92rem;
}

.cwb-modal__close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--cwb-navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.cwb-modal__close:hover {
    background: #dce3ed;
}

.cwb-modal__scroll {
    overflow-x: auto;
}

.cwb-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.cwb-price-table th,
.cwb-price-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e1e6ee;
    vertical-align: middle;
}

.cwb-price-table thead th {
    background: #f4f8f5;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cwb-price-table tbody td.cwb-price-table__money {
    white-space: nowrap;
    font-weight: 700;
}

.cwb-price-table tbody tr:nth-child(even) {
    background: #f8fafc;
}
