.hero-section {
    min-height: var(--ec-hero-desktop-height);
    display: grid;
    grid-template-columns: minmax(440px, 0.82fr) minmax(560px, 1.18fr);
    gap: 34px;
    align-items: start;
    padding: 96px 30px 34px 44px;
    border-bottom: 1px solid var(--ec-color-border);
    background: #ffffff;
}

@media (min-width: 821px) {
    .hero-section {
        height: var(--ec-hero-desktop-height);
        margin-left: var(--ec-sidebar-width);
    }
}

.hero-section__content {
    min-width: 0;
    max-width: 460px;
}

.hero-section__eyebrow {
    margin: 0 0 20px;
    color: var(--ec-color-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-section h1 {
    margin: 0;
    color: var(--ec-color-text);
    font-size: clamp(3.7rem, 4vw, 4.25rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-section h1 span {
    display: block;
    white-space: nowrap;
}

.hero-section__intro {
    max-width: 330px;
    margin: 18px 0 24px;
    color: var(--ec-color-muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.hero-search {
    width: 100%;
    max-width: 400px;
}

.hero-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.hero-search__field {
    height: 52px;
    display: grid;
    grid-template-columns: 1fr 58px;
    background: var(--ec-color-surface);
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    overflow: hidden;
}

.hero-search__field input {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    color: var(--ec-color-text);
    border: 0;
    font: inherit;
    font-size: 0.96rem;
}

.hero-search__field input:focus {
    outline: 0;
}

.hero-search__field:focus-within {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 4px;
}

.hero-search__field button {
    position: relative;
    display: grid;
    place-items: center;
    color: var(--ec-color-surface);
    background: var(--ec-color-brand);
    border: 0;
    cursor: pointer;
}

.hero-search__field button span {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.hero-search__field button span::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 9px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.hero-section__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-section__filters button {
    min-height: 36px;
    padding: 0 18px;
    color: var(--ec-color-text);
    background: var(--ec-color-surface);
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

.hero-section__filters button:first-child {
    color: var(--ec-color-surface);
    background: var(--ec-color-brand);
    border-color: var(--ec-color-brand);
}

.hero-section__filters button:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 4px;
}

.hero-section__popular {
    margin-top: 24px;
}

.hero-section__popular p {
    margin: 0 0 12px;
    color: var(--ec-color-text);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-section__popular div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-section__popular a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: var(--ec-color-text);
    background: var(--ec-color-surface);
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 430px;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 0 44px;
}

.hero-visual img {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border: 0;
}

.hero-card {
    position: relative;
    z-index: 1;
    width: min(100%, 590px);
    margin: 315px 20px 0 auto;
    padding: 20px 58px 20px 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 22px;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.1);
}

.hero-carousel {
    position: absolute;
    right: 18px;
    bottom: 1px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-carousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-carousel__dots span {
    width: 7px;
    height: 7px;
    display: block;
    background: #c9ccd1;
    border-radius: 50%;
}

.hero-carousel__dots span.is-active {
    background: #8d929a;
}

.hero-carousel button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 50%;
    font: inherit;
    font-size: 1.42rem;
    line-height: 1;
    cursor: pointer;
}

.hero-carousel button:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.hero-card__favorite {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ec-color-text);
    background: transparent;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

.hero-card__favorite span {
    color: inherit;
    font-size: 1.32rem;
    line-height: 1;
}

.hero-card__favorite:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.hero-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ec-color-text);
    font-size: 1.38rem;
}

.hero-card span {
    color: var(--ec-color-muted);
    font-size: 0.9rem;
}

.hero-card__facts {
    grid-column: 1 / 2;
}

.hero-card dl {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0;
}

.hero-card dl div {
    display: flex;
    gap: 7px;
    align-items: baseline;
}

.hero-card dt {
    color: var(--ec-color-muted);
    font-size: 0.78rem;
}

.hero-card dd {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-card__voice {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    min-width: 178px;
    min-height: 56px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.hero-card__voice button {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 1px solid var(--ec-color-brand);
    border-radius: 50%;
    cursor: pointer;
}

.hero-card__voice button:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.hero-card__voice button span {
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid currentColor;
}

.hero-card__waveform {
    width: 76px;
    height: 26px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.hero-card__waveform span {
    width: 2px;
    background: #b7bcc3;
    border-radius: 5px;
}

.hero-card__waveform span:nth-child(1),
.hero-card__waveform span:nth-child(12) {
    height: 8px;
}

.hero-card__waveform span:nth-child(2),
.hero-card__waveform span:nth-child(11) {
    height: 13px;
}

.hero-card__waveform span:nth-child(3),
.hero-card__waveform span:nth-child(10) {
    height: 18px;
}

.hero-card__waveform span:nth-child(4),
.hero-card__waveform span:nth-child(9) {
    height: 22px;
}

.hero-card__waveform span:nth-child(5),
.hero-card__waveform span:nth-child(8) {
    height: 15px;
}

.hero-card__waveform span:nth-child(6),
.hero-card__waveform span:nth-child(7) {
    height: 24px;
}

.hero-card__voice small {
    color: var(--ec-color-muted);
    font-size: 0.78rem;
}

@media (max-width: 1180px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 96px 38px 42px;
    }

    .hero-section__content {
        max-width: 560px;
    }

    .hero-section h1 {
        max-width: 520px;
    }

    .hero-visual {
        min-height: 430px;
    }
}

@media (max-width: 820px) {
    .hero-section {
        min-height: auto;
        padding: 44px 20px 34px;
        background: #ffffff;
    }

    .hero-section__content,
    .hero-search,
    .hero-visual,
    .hero-card {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: clamp(2.35rem, 10.2vw, 3.25rem);
    }

    .hero-section__intro {
        margin-top: 18px;
        font-size: 1rem;
    }

    .hero-search__field {
        height: 54px;
        grid-template-columns: 1fr 54px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-visual img {
        height: 260px;
    }

    .hero-card {
        margin: 210px 0 0;
        padding: 18px 54px 18px 18px;
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        right: 0;
    }

    .hero-card__facts,
    .hero-card__voice {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-card__voice {
        justify-content: flex-start;
        width: fit-content;
    }
}

@media (max-width: 520px) {
    .hero-section h1 {
        font-size: clamp(2.2rem, 10vw, 2.6rem);
    }

    .hero-section__filters button,
    .hero-section__popular a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-card dl {
        gap: 12px;
    }

    .hero-card__voice {
        width: 100%;
    }
}

.benefits-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.benefit-block {
    min-height: 120px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 28px 32px;
}

.benefit-block + .benefit-block {
    border-left: 1px solid var(--ec-color-border);
}

.benefit-block h2 {
    margin: 0 0 7px;
    color: var(--ec-color-text);
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 800;
}

.benefit-block p {
    max-width: 190px;
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.benefit-block__icon {
    position: relative;
    width: 46px;
    height: 46px;
    display: block;
    color: var(--ec-color-text);
}

.benefit-block__icon--search::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 25px;
    height: 25px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.benefit-block__icon--search::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 10px;
    width: 15px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.benefit-block__icon--voice::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 4px;
    width: 12px;
    height: 26px;
    border: 2px solid currentColor;
    border-radius: 8px;
}

.benefit-block__icon--voice::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 22px;
    width: 22px;
    height: 16px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 14px 14px;
}

.benefit-block__icon--save::before,
.benefit-block__icon--save::after {
    content: "";
    position: absolute;
    top: 9px;
    width: 18px;
    height: 27px;
    border: 2px solid currentColor;
    border-radius: 18px 18px 0 0;
    background: #ffffff;
}

.benefit-block__icon--save::before {
    left: 9px;
    transform: rotate(-45deg);
    transform-origin: 100% 100%;
}

.benefit-block__icon--save::after {
    right: 9px;
    transform: rotate(45deg);
    transform-origin: 0 100%;
}

.benefit-block__icon--confidence::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 4px;
    width: 14px;
    height: 22px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: skewX(-22deg);
}

.benefit-block__icon--confidence::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 20px;
    width: 15px;
    height: 22px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: skewX(-22deg);
}

@media (max-width: 1100px) {
    .benefits-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-block + .benefit-block {
        border-left: 0;
    }

    .benefit-block:nth-child(even) {
        border-left: 1px solid var(--ec-color-border);
    }

    .benefit-block:nth-child(n + 3) {
        border-top: 1px solid var(--ec-color-border);
    }
}

@media (max-width: 640px) {
    .benefits-section {
        grid-template-columns: 1fr;
    }

    .benefit-block {
        min-height: auto;
        padding: 24px 20px;
    }

    .benefit-block:nth-child(even) {
        border-left: 0;
    }

    .benefit-block + .benefit-block {
        border-top: 1px solid var(--ec-color-border);
    }
}

.curated-homes {
    padding: 34px 56px 38px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.curated-homes__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.curated-homes__header h2 {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.curated-homes__header a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ec-color-text);
    font-size: 0.88rem;
    font-weight: 700;
}

.property-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.property-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.property-card__media {
    position: relative;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

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

.property-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ec-color-text);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ec-color-border);
    border-radius: 50%;
    cursor: pointer;
}

.property-card__favorite span {
    font-size: 1.2rem;
    line-height: 1;
}

.property-card__favorite:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.property-card__voice {
    position: absolute;
    right: 10px;
    bottom: 10px;
    min-width: 64px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.property-card__voice span {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background: var(--ec-color-brand);
    border-radius: 50%;
}

.property-card__voice span::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #ffffff;
}

.property-card__voice small {
    color: var(--ec-color-text);
    font-size: 0.72rem;
    font-weight: 700;
}

.property-card__body {
    padding: 14px 14px 12px;
}

.property-card__body h3 {
    margin: 0 0 6px;
    color: var(--ec-color-text);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.property-card__body p {
    margin: 0 0 12px;
    color: var(--ec-color-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.property-card__body dl {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin: 0;
}

.property-card__body dl div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.property-card__body dt {
    color: var(--ec-color-muted);
    font-size: 0.72rem;
}

.property-card__body dd {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 0.74rem;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .curated-homes {
        padding: 34px 38px 38px;
    }

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

@media (max-width: 640px) {
    .curated-homes {
        padding: 30px 20px 34px;
    }

    .curated-homes__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .property-card-grid {
        grid-template-columns: 1fr;
    }
}

.map-preview-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
    gap: 34px;
    align-items: center;
    padding: 30px 56px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.map-preview-section__content h2 {
    margin: 0 0 10px;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.map-preview-section__content p {
    max-width: 190px;
    margin: 0 0 12px;
    color: var(--ec-color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.map-preview-section__content button {
    min-height: 42px;
    margin-top: 6px;
    padding: 0 22px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 1px solid var(--ec-color-brand);
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.map-preview-section__content button:focus-visible,
.map-preview__zoom button:focus-visible,
.map-preview__draw:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.map-preview {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.map-preview::before,
.map-preview::after {
    content: "";
    position: absolute;
    inset: -20%;
    border: 1px solid rgba(17, 24, 39, 0.06);
    transform: rotate(14deg);
}

.map-preview::after {
    inset: -18% -12%;
    transform: rotate(-18deg);
}

.map-preview__road {
    position: absolute;
    display: block;
    height: 2px;
    background: rgba(17, 24, 39, 0.08);
    transform-origin: center;
}

.map-preview__road--one {
    left: -8%;
    top: 34%;
    width: 118%;
    transform: rotate(-8deg);
}

.map-preview__road--two {
    left: -6%;
    top: 62%;
    width: 112%;
    transform: rotate(10deg);
}

.map-preview__road--three {
    left: 12%;
    top: -20%;
    width: 2px;
    height: 150%;
    transform: rotate(22deg);
}

.map-preview__road--four {
    right: 24%;
    top: -18%;
    width: 2px;
    height: 150%;
    transform: rotate(-16deg);
}

.map-preview__marker {
    position: absolute;
    z-index: 2;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
    font-size: 0.84rem;
    font-weight: 800;
}

.map-preview__marker--one {
    left: 28%;
    top: 14%;
}

.map-preview__marker--two {
    left: 48%;
    top: 38%;
}

.map-preview__marker--three {
    right: 17%;
    top: 30%;
}

.map-preview__marker--four {
    left: 22%;
    bottom: 26%;
}

.map-preview__marker--five {
    right: 28%;
    bottom: 22%;
}

.map-preview__zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    overflow: hidden;
    display: grid;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.map-preview__zoom button {
    width: 36px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 0;
    font: inherit;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
}

.map-preview__zoom button + button {
    border-top: 1px solid var(--ec-color-border);
}

.map-preview__draw {
    position: absolute;
    right: 12px;
    bottom: 18px;
    z-index: 3;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.map-preview__draw span {
    width: 22px;
    height: 22px;
    display: block;
    border: 2px dashed var(--ec-color-muted);
}

@media (max-width: 1180px) {
    .map-preview-section {
        grid-template-columns: 1fr;
        padding: 30px 38px;
    }

    .map-preview-section__content p {
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .map-preview-section {
        padding: 28px 20px;
    }

    .map-preview {
        min-height: 260px;
    }

    .map-preview__marker--one {
        left: 14%;
        top: 16%;
    }

    .map-preview__marker--two {
        left: 42%;
        top: 34%;
    }

    .map-preview__marker--three {
        right: 12%;
        top: 52%;
    }

    .map-preview__marker--four {
        left: 12%;
        bottom: 28%;
    }

    .map-preview__marker--five {
        right: 20%;
        bottom: 16%;
    }

    .map-preview__draw {
        left: 12px;
        right: auto;
        bottom: 14px;
    }
}

.how-it-works {
    padding: 26px 56px 28px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.how-it-works h2 {
    margin: 0 0 24px;
    color: var(--ec-color-text);
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.how-it-works__steps {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.how-step {
    position: relative;
    min-height: 82px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 0 28px;
}

.how-step__connector {
    position: absolute;
    left: -10px;
    top: 50%;
    color: var(--ec-color-text);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.how-step__icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: block;
    color: var(--ec-color-text);
    border: 1px solid var(--ec-color-border);
    border-radius: 50%;
}

.how-step h3 {
    margin: 0 0 7px;
    color: var(--ec-color-text);
    font-size: 0.96rem;
    line-height: 1.25;
    font-weight: 800;
}

.how-step p {
    max-width: 170px;
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.how-step__icon--search::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 14px;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.how-step__icon--search::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 17px;
    width: 12px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
}

.how-step__icon--listen::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 12px;
    width: 12px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 8px;
}

.how-step__icon--listen::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 31px;
    width: 22px;
    height: 14px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 14px 14px;
}

.how-step__icon--tour::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 17px;
    width: 26px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.how-step__icon--tour::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 11px;
    width: 16px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.how-step__icon--move::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.how-step__icon--move::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: rotate(-45deg);
}

@media (max-width: 1180px) {
    .how-it-works {
        padding: 26px 38px 28px;
    }

    .how-it-works__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
    }

    .how-step:nth-child(3) .how-step__connector {
        display: none;
    }
}

@media (max-width: 640px) {
    .how-it-works {
        padding: 26px 20px 28px;
    }

    .how-it-works h2 {
        text-align: left;
    }

    .how-it-works__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-step {
        min-height: auto;
        padding: 0;
    }

    .how-step__connector {
        display: none;
    }
}

.lifestyle-section {
    padding: 28px 56px 34px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.lifestyle-section h2 {
    margin: 0 0 22px;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
}

.lifestyle-card {
    min-height: 78px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 14px 10px;
    color: var(--ec-color-text);
    background: #f7f7f8;
    border: 1px solid transparent;
    border-radius: 5px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.lifestyle-card:hover {
    border-color: var(--ec-color-border);
    background: #ffffff;
}

.lifestyle-card:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.lifestyle-card__icon {
    position: relative;
    width: 28px;
    height: 28px;
    display: block;
    color: var(--ec-color-text);
}

.lifestyle-card__icon--waterfront::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 15px;
    height: 13px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-22deg);
}

.lifestyle-card__icon--waterfront::after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: 5px;
    width: 20px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.lifestyle-card__icon--modern::before,
.lifestyle-card__icon--modern::after {
    content: "";
    position: absolute;
    border: 2px solid currentColor;
}

.lifestyle-card__icon--modern::before {
    left: 7px;
    top: 4px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}

.lifestyle-card__icon--modern::after {
    left: 9px;
    bottom: 4px;
    width: 10px;
    height: 8px;
}

.lifestyle-card__icon--luxury::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 12px;
    height: 17px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 45% 45%;
}

.lifestyle-card__icon--luxury::after {
    content: "";
    position: absolute;
    left: 5px;
    bottom: 4px;
    width: 18px;
    height: 7px;
    border-top: 2px solid currentColor;
}

.lifestyle-card__icon--ranch::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 11px;
    width: 18px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: 0;
}

.lifestyle-card__icon--ranch::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}

.lifestyle-card__icon--condos::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 14px;
    height: 22px;
    border: 2px solid currentColor;
}

.lifestyle-card__icon--condos::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 7px;
    width: 4px;
    height: 14px;
    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.lifestyle-card__icon--townhomes::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    width: 22px;
    height: 14px;
    border: 2px solid currentColor;
    border-top: 0;
}

.lifestyle-card__icon--townhomes::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}

.lifestyle-card__icon--investment::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 5px;
    width: 16px;
    height: 19px;
    border: 2px solid currentColor;
}

.lifestyle-card__icon--investment::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 8px;
    width: 7px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.lifestyle-card__icon--new::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 18px;
    height: 14px;
    border: 2px solid currentColor;
    border-top: 0;
}

.lifestyle-card__icon--new::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 1px;
    color: currentColor;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 1180px) {
    .lifestyle-section {
        padding: 28px 38px 34px;
    }

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

@media (max-width: 640px) {
    .lifestyle-section {
        padding: 28px 20px 34px;
    }

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

.communities-testimonial-row {
    background: #ffffff;
}

.communities-section {
    display: grid;
    grid-template-columns: minmax(190px, 0.22fr) minmax(0, 0.78fr);
    gap: 28px;
    align-items: stretch;
    padding: 30px 56px 34px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.communities-section__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.communities-section__intro h2 {
    margin: 0 0 10px;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.communities-section__intro p {
    max-width: 210px;
    margin: 0 0 18px;
    color: var(--ec-color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.communities-section__intro a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
}

.communities-section__intro a:hover {
    border-color: var(--ec-color-text);
}

.communities-section__intro a:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.community-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.community-card {
    min-height: 142px;
    padding: 18px;
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
}

.community-card h3 {
    margin: 0 0 6px;
    color: var(--ec-color-text);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.community-card p {
    margin: 0 0 18px;
    color: var(--ec-color-muted);
    font-size: 0.84rem;
    line-height: 1.4;
}

.community-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.community-card dt {
    margin: 0 0 4px;
    color: var(--ec-color-muted);
    font-size: 0.76rem;
    line-height: 1.3;
}

.community-card dd {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 800;
}

@media (min-width: 1181px) {
    .communities-testimonial-row {
        display: grid;
        grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.24fr);
        align-items: stretch;
    }

    .communities-testimonial-row .communities-section {
        padding-right: 28px;
    }

    .communities-testimonial-row .testimonial-section {
        grid-template-columns: 1fr;
        align-content: space-between;
        gap: 22px;
        align-items: start;
        padding-left: 32px;
        border-left: 1px solid var(--ec-color-border);
    }

    .communities-testimonial-row .testimonial-controls {
        justify-content: flex-end;
    }
}

@media (max-width: 1180px) {
    .communities-testimonial-row {
        display: block;
    }

    .communities-section {
        grid-template-columns: 1fr;
        padding: 30px 38px 34px;
    }

    .communities-section__intro {
        max-width: 360px;
    }

    .communities-section__intro p {
        max-width: none;
    }

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

@media (max-width: 640px) {
    .communities-section {
        padding: 28px 20px 34px;
    }

    .community-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .community-card {
        min-height: auto;
    }
}

.testimonial-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 30px 56px 34px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.testimonial-section__content {
    position: relative;
    max-width: 560px;
    padding-left: 44px;
}

.testimonial-section__content::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: 30px;
    color: var(--ec-color-text);
    font-size: 3.4rem;
    line-height: 0.8;
    font-weight: 800;
}

.testimonial-section h2 {
    margin: 0 0 16px;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.testimonial-section blockquote {
    margin: 0 0 22px;
}

.testimonial-section blockquote p {
    max-width: 440px;
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.testimonial-customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-customer img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(1);
}

.testimonial-customer p {
    margin: 0 0 3px;
    color: var(--ec-color-text);
    font-size: 0.88rem;
    line-height: 1.25;
    font-weight: 800;
}

.testimonial-customer span {
    display: block;
    color: var(--ec-color-muted);
    font-size: 0.8rem;
    line-height: 1.25;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dots span {
    width: 6px;
    height: 6px;
    background: #c8c8cb;
    border-radius: 50%;
}

.testimonial-dots .is-active {
    background: var(--ec-color-text);
}

.testimonial-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-arrows button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 50%;
    cursor: default;
}

.testimonial-arrows button span {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
}

.testimonial-arrows button:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .testimonial-section {
        padding: 30px 38px 34px;
    }
}

@media (max-width: 760px) {
    .testimonial-section {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 22px;
    }

    .testimonial-controls {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .testimonial-section {
        padding: 28px 20px 34px;
    }

    .testimonial-section__content {
        padding-left: 36px;
    }

    .testimonial-section__content::before {
        top: 30px;
        font-size: 2.8rem;
    }
}

.newsletter-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(360px, 0.52fr);
    gap: 28px;
    align-items: center;
    padding: 26px 56px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.newsletter-section__heading {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.newsletter-section__icon {
    position: relative;
    width: 44px;
    height: 34px;
    color: var(--ec-color-text);
    border: 1px solid currentColor;
    border-radius: 5px;
}

.newsletter-section__icon::before,
.newsletter-section__icon::after {
    content: "";
    position: absolute;
    top: 9px;
    width: 22px;
    height: 1px;
    background: currentColor;
}

.newsletter-section__icon::before {
    left: 0;
    transform: rotate(34deg);
    transform-origin: left center;
}

.newsletter-section__icon::after {
    right: 0;
    transform: rotate(-34deg);
    transform-origin: right center;
}

.newsletter-section h2 {
    max-width: 340px;
    margin: 0;
    color: var(--ec-color-text);
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 800;
}

.newsletter-form {
    justify-self: start;
    width: 100%;
    max-width: 430px;
}

.newsletter-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.newsletter-form__field {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 14px;
}

.newsletter-form__field:focus-within {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.newsletter-form input {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.92rem;
}

.newsletter-form input:focus {
    outline: 0;
}

.newsletter-form button {
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 0;
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.newsletter-form button:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: -6px;
}

@media (max-width: 1180px) {
    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 38px;
    }

    .newsletter-form {
        justify-self: stretch;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .newsletter-section {
        padding: 24px 20px;
    }

    .newsletter-section__heading {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .newsletter-section__icon {
        width: 40px;
        height: 32px;
    }

    .newsletter-section h2 {
        font-size: 1.05rem;
    }

    .newsletter-form__field {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .newsletter-form input {
        min-height: 44px;
    }

    .newsletter-form button {
        min-height: 44px;
    }
}

.site-footer {
    background: #ffffff;
    color: var(--ec-color-text);
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(180px, 0.22fr) minmax(360px, 0.48fr) minmax(240px, 0.3fr);
    gap: 34px;
    padding: 28px 56px 26px;
    border-bottom: 1px solid var(--ec-color-border);
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 800;
    text-decoration: none;
}

.site-footer__mark {
    position: relative;
    width: 22px;
    height: 22px;
    color: var(--ec-color-text);
}

.site-footer__mark::before,
.site-footer__mark::after {
    content: "";
    position: absolute;
    top: 50%;
    border: 1px solid currentColor;
    border-left: 0;
    border-radius: 0 50% 50% 0;
    transform: translateY(-50%);
}

.site-footer__mark::before {
    left: 4px;
    width: 9px;
    height: 14px;
}

.site-footer__mark::after {
    left: 0;
    width: 16px;
    height: 20px;
}

.site-footer__brand p {
    max-width: 210px;
    margin: 18px 0 0;
    color: var(--ec-color-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.site-footer__social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--ec-color-muted);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 50%;
    font-size: 0.82rem;
    line-height: 1;
    text-decoration: none;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--ec-color-text);
    font-size: 0.88rem;
    line-height: 1.25;
    font-weight: 800;
}

.site-footer__links a {
    display: block;
    margin: 0 0 10px;
    color: var(--ec-color-muted);
    font-size: 0.82rem;
    line-height: 1.35;
    text-decoration: none;
}

.site-footer__apps {
    padding: 22px;
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
}

.site-footer__apps > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.app-badge {
    min-height: 46px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border-radius: 5px;
    text-decoration: none;
}

.app-badge > span:first-child {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--ec-color-brand);
    background: #ffffff;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
}

.app-badge > span:last-child {
    color: #ffffff;
    font-size: 0.72rem;
    line-height: 1.15;
    font-weight: 800;
}

.site-footer a:hover {
    color: var(--ec-color-text);
}

.site-footer a:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 56px;
}

.site-footer__legal-start {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__legal p {
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.site-footer__legal nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.site-footer__legal a {
    color: var(--ec-color-muted);
    font-size: 0.78rem;
    line-height: 1.35;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        padding: 28px 38px 26px;
    }

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

    .site-footer__apps {
        max-width: 360px;
    }

    .site-footer__legal {
        padding: 16px 38px;
    }
}

@media (max-width: 760px) {
    .site-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__legal-start {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .site-footer__legal nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-footer__main {
        padding: 28px 20px 24px;
    }

    .site-footer__links {
        gap: 24px 20px;
    }

    .site-footer__apps {
        max-width: none;
        padding: 18px;
    }

    .site-footer__apps > div {
        grid-template-columns: 1fr;
    }

    .site-footer__legal {
        padding: 16px 20px;
    }
}

@media (min-width: 821px) {
    .benefits-section {
        padding-right: var(--ec-page-gutter);
        padding-left: var(--ec-page-gutter);
    }

    .curated-homes {
        padding-right: calc(var(--ec-page-gutter) + 56px);
        padding-left: calc(var(--ec-page-gutter) + 56px);
    }

    .map-preview-section {
        padding-right: calc(var(--ec-page-gutter) + 56px);
        padding-left: calc(var(--ec-page-gutter) + 56px);
    }

    .how-it-works {
        padding-right: calc(var(--ec-page-gutter) + 56px);
        padding-left: calc(var(--ec-page-gutter) + 56px);
    }

    .lifestyle-section {
        padding-right: calc(var(--ec-page-gutter) + 56px);
        padding-left: calc(var(--ec-page-gutter) + 56px);
    }

    .communities-testimonial-row {
        padding-right: var(--ec-page-gutter);
        padding-left: var(--ec-page-gutter);
    }

    .newsletter-section {
        padding-right: calc(var(--ec-page-gutter) + 56px);
        padding-left: calc(var(--ec-page-gutter) + 56px);
    }

    .site-footer__main,
    .site-footer__legal {
        padding-right: calc(var(--ec-page-gutter) + 56px);
        padding-left: calc(var(--ec-page-gutter) + 56px);
    }
}

.route-page {
    min-height: 620px;
    padding: 120px 56px 80px;
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.route-page__content {
    max-width: 760px;
    margin: 0 auto;
}

.route-page__content h1 {
    margin: 0 0 16px;
    color: var(--ec-color-text);
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
}

.route-page__content p {
    max-width: 560px;
    margin: 0 0 24px;
    color: var(--ec-color-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.route-page__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.route-page__content a:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

@media (max-width: 820px) {
    .route-page {
        min-height: 480px;
        padding: 72px 20px 56px;
    }
}

.seller-page {
    min-height: 100vh;
    padding-bottom: 56px;
    background: #ffffff;
}

.list-your-home-template {
    --ec-seller-hero-height: var(--ec-hero-desktop-height);
}

.list-your-home-template .site-sidebar {
    height: var(--ec-seller-hero-height);
}

.seller-hero {
    min-height: var(--ec-seller-hero-height);
    display: grid;
    grid-template-columns: minmax(340px, 0.46fr) minmax(420px, 0.54fr);
    gap: 34px;
    align-items: center;
    margin-left: var(--ec-sidebar-width);
    padding: 76px calc(var(--ec-page-gutter) + 44px) 44px 44px;
    border-bottom: 1px solid var(--ec-color-border);
}

@media (min-width: 821px) {
    .seller-hero {
        height: var(--ec-seller-hero-height);
        overflow: hidden;
    }
}

.seller-hero__content,
.seller-listing-preview,
.seller-address,
.seller-voice,
.seller-demo,
.seller-steps,
.seller-final-cta {
    min-width: 0;
}

.seller-hero__content > p {
    margin: 0 0 12px;
    color: var(--ec-color-muted);
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 800;
}

.seller-hero h1 {
    margin: 0 0 14px;
    color: var(--ec-color-text);
    font-size: clamp(2.75rem, 4.2vw, 4.35rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.seller-hero__content > strong {
    display: block;
    max-width: 500px;
    margin-bottom: 8px;
    color: var(--ec-color-text);
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 800;
}

.seller-hero__content > span {
    display: block;
    max-width: 500px;
    margin-bottom: 18px;
    color: var(--ec-color-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.seller-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.seller-hero__meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--ec-color-text);
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
    font-size: 0.84rem;
    font-weight: 800;
}

.seller-hero__action,
.seller-address-form button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 0;
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.seller-listing-preview {
    position: relative;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 610px;
    padding: 10px;
    background: #f7f7f8;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-listing-preview img,
.seller-voice__media img,
.seller-demo__preview img {
    width: 100%;
    display: block;
    object-fit: cover;
    background: #f4f4f4;
}

.seller-listing-preview img {
    max-height: 305px;
    aspect-ratio: 1.78 / 1;
}

.seller-listing-preview__card {
    position: relative;
    display: grid;
    gap: 7px;
    margin-top: 7px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-listing-preview__card > button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 50%;
    cursor: pointer;
}

.seller-listing-preview__card > strong {
    color: var(--ec-color-text);
    font-size: 1.12rem;
    line-height: 1.1;
    font-weight: 800;
}

.seller-listing-preview__card > span {
    color: var(--ec-color-muted);
    font-size: 0.86rem;
    line-height: 1.3;
}

.seller-listing-preview__card dl {
    display: flex;
    gap: 8px;
    margin: 0;
}

.seller-listing-preview__card dl div {
    display: flex;
    gap: 4px;
    font-size: 0.76rem;
}

.seller-listing-preview__card dt {
    color: var(--ec-color-muted);
}

.seller-listing-preview__card dd {
    margin: 0;
    color: var(--ec-color-text);
    font-weight: 800;
}

.seller-preview-voice,
.seller-voice__player {
    min-height: 36px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    max-width: 320px;
    padding: 5px 8px;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-preview-voice i,
.seller-voice__player i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--ec-color-brand);
    border-radius: 50%;
    font-size: 0.7rem;
}

.seller-preview-voice span,
.seller-voice__player span {
    height: 18px;
    background: repeating-linear-gradient(90deg, transparent 0 5px, #c7ccd3 5px 7px);
}

.seller-preview-voice small,
.seller-voice__player small {
    color: var(--ec-color-text);
    font-size: 0.82rem;
    font-weight: 800;
}

.seller-address,
.seller-voice,
.seller-demo,
.seller-steps,
.seller-final-cta {
    padding-right: calc(var(--ec-page-gutter) + 56px);
    padding-left: calc(var(--ec-page-gutter) + 56px);
    border-bottom: 1px solid var(--ec-color-border);
}

.seller-account-page .seller-account-step {
    min-height: 700px;
    margin-left: 0;
    padding-top: 152px;
    padding-bottom: 72px;
}

.seller-account-step {
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(560px, 0.66fr);
    gap: 38px;
    align-items: start;
    max-width: var(--ec-page-max-width);
    margin-right: auto;
    margin-left: auto;
    padding: 42px calc(var(--ec-page-gutter) + 56px);
    background: #ffffff;
    border-bottom: 1px solid var(--ec-color-border);
}

.seller-account-step__intro,
.seller-account-step__forms,
.seller-auth-form,
.seller-auth-form label,
.seller-auth-form fieldset {
    min-width: 0;
}

.seller-account-step__intro > p:first-child {
    margin: 0 0 12px;
    color: var(--ec-color-muted);
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.seller-account-step h1,
.seller-account-step h2 {
    margin: 0 0 14px;
    color: var(--ec-color-text);
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
}

.seller-account-step__intro > span {
    display: block;
    max-width: 460px;
    color: var(--ec-color-muted);
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: break-word;
}

.seller-account-step__property,
.seller-account-step__notice,
.seller-address__error {
    margin-top: 18px;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-account-step__property {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 460px;
    padding: 14px;
    background: #f7f7f8;
}

.seller-account-step__property i {
    color: var(--ec-color-text);
}

.seller-account-step__property strong {
    color: var(--ec-color-text);
    font-size: 0.92rem;
    line-height: 1.35;
}

.seller-account-step__notice,
.seller-address__error {
    max-width: 560px;
    padding: 12px 14px;
    color: var(--ec-color-text);
    background: #f7f7f8;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 700;
}

.seller-account-step__forms {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 16px;
}

.seller-account-step__tabs {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seller-account-step__tabs a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.seller-account-step__tabs a.is-active {
    color: #ffffff;
    background: var(--ec-color-brand);
    border-color: var(--ec-color-brand);
}

.seller-auth-form {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-auth-form h2 {
    margin-bottom: 2px;
    font-size: 1.25rem;
    line-height: 1.2;
}

.seller-auth-form label,
.seller-auth-form legend {
    color: var(--ec-color-text);
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 800;
}

.seller-auth-form input[type="text"],
.seller-auth-form input[type="email"],
.seller-auth-form input[type="password"] {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-top: 8px;
    padding: 0 14px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.92rem;
}

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

.seller-auth-form fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

.seller-auth-form legend {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.seller-auth-form fieldset label {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    background: #f7f7f8;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-auth-form button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 0;
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.seller-auth-form__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.seller-auth-form__links a {
    color: var(--ec-color-text);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.seller-account-step__tabs a:focus-visible,
.seller-auth-form input:focus-visible,
.seller-auth-form button:focus-visible,
.seller-auth-form__links a:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.seller-address,
.seller-final-cta {
    display: grid;
    grid-template-columns: minmax(260px, 0.38fr) minmax(420px, 0.62fr);
    gap: 34px;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 34px;
}

.seller-address h2,
.seller-voice h2,
.seller-demo h2,
.seller-steps h2,
.seller-final-cta h2 {
    margin: 0 0 12px;
    color: var(--ec-color-text);
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 800;
}

.seller-address p,
.seller-voice p,
.seller-demo p,
.seller-steps p,
.seller-final-cta p {
    max-width: 620px;
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.seller-address-form {
    width: 100%;
    max-width: 680px;
    justify-self: start;
}

.seller-address-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--ec-color-text);
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 800;
}

.seller-address-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 12px;
}

.seller-address-form input {
    width: 100%;
    min-height: 48px;
    min-width: 0;
    padding: 0 16px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.94rem;
}

.seller-address-form--compact > div {
    grid-template-columns: minmax(0, 1fr) 190px;
}

.seller-voice,
.seller-demo {
    display: grid;
    grid-template-columns: minmax(360px, 0.48fr) minmax(360px, 0.52fr);
    gap: 38px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 42px;
}

.seller-voice__media,
.seller-demo__preview {
    padding: 10px;
    background: #f7f7f8;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.seller-voice__media {
    position: relative;
}

.seller-voice__media img,
.seller-demo__preview img {
    aspect-ratio: 1.6 / 1;
}

.seller-voice__player {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(320px, calc(100% - 48px));
    background: #ffffff;
}

.seller-demo ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.seller-demo li {
    color: var(--ec-color-text);
    font-size: 0.9rem;
    font-weight: 800;
}

.seller-demo li::before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-right: 9px;
    background: var(--ec-color-brand);
    border-radius: 50%;
    vertical-align: 2px;
}

.seller-demo__preview > div {
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 0 0 5px 5px;
}

.seller-demo__preview strong,
.seller-demo__preview span {
    display: block;
}

.seller-demo__preview strong {
    color: var(--ec-color-text);
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 800;
}

.seller-demo__preview span {
    margin: 4px 0 10px;
    color: var(--ec-color-muted);
    font-size: 0.9rem;
}

.seller-steps {
    padding-top: 38px;
    padding-bottom: 40px;
}

.seller-steps ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.seller-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
}

.seller-steps li > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--ec-color-brand);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
}

.seller-steps h3 {
    margin: 0 0 8px;
    color: var(--ec-color-text);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.seller-final-cta {
    border-bottom: 0;
}

.seller-hero__action:focus-visible,
.seller-listing-preview__card > button:focus-visible,
.seller-address-form input:focus-visible,
.seller-address-form button:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .seller-account-page .seller-account-step {
        margin-left: auto;
        padding: 128px 38px 56px;
    }

    .seller-account-step {
        grid-template-columns: 1fr;
        padding: 34px 38px;
    }

    .seller-account-step__forms {
        grid-template-columns: 1fr;
    }

    .seller-address,
    .seller-voice,
    .seller-demo,
    .seller-final-cta {
        grid-template-columns: 1fr;
        padding: 34px 38px;
    }

    .seller-steps {
        padding: 34px 38px;
    }

    .seller-address-form {
        justify-self: stretch;
        max-width: none;
    }

    .seller-steps ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 821px) and (max-width: 1180px) {
    .seller-hero {
        grid-template-columns: minmax(240px, 0.45fr) minmax(300px, 0.55fr);
        gap: 24px;
        padding: 76px 28px 40px 32px;
    }

    .seller-hero h1 {
        font-size: clamp(2.35rem, 4vw, 3.05rem);
    }

    .seller-hero__content > strong {
        font-size: 1rem;
    }

    .seller-hero__content > span {
        font-size: 0.88rem;
    }

    .seller-listing-preview img {
        max-height: 250px;
    }

    .seller-listing-preview__card {
        padding: 10px 12px;
    }
}

@media (max-width: 820px) {
    .seller-account-page .seller-account-step {
        min-height: auto;
        margin-left: 0;
        padding: 48px 20px 34px;
    }

    .seller-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
        overflow: visible;
        margin-left: 0;
        padding: 48px 20px 34px;
    }
}

@media (max-width: 640px) {
    .seller-page {
        padding-bottom: 44px;
    }

    .seller-hero {
        padding: 34px 20px;
    }

    .seller-hero,
    .seller-hero__content,
    .seller-listing-preview,
    .seller-account-step,
    .seller-address,
    .seller-voice,
    .seller-demo,
    .seller-steps,
    .seller-final-cta {
        width: 100%;
        max-width: calc(100vw - 40px);
    }

    .seller-hero h1 {
        max-width: 300px;
        font-size: clamp(2.25rem, 9vw, 2.45rem);
    }

    .seller-account-step h1,
    .seller-account-step h2 {
        font-size: 1.65rem;
    }

    .seller-account-step__intro h1,
    .seller-account-step__intro h2 {
        max-width: 300px;
    }

    .seller-account-step__intro > span {
        max-width: 270px;
    }

    .seller-auth-form h2 {
        font-size: 1.25rem;
    }

    .seller-hero__content > strong,
    .seller-hero__content > span {
        max-width: 310px;
    }

    .seller-hero__meta {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 230px;
    }

    .seller-listing-preview img,
    .seller-listing-preview__card,
    .seller-voice__media,
    .seller-demo__preview,
    .seller-demo__preview img {
        width: 100%;
        max-width: 100%;
    }

    .seller-listing-preview__card > button {
        top: 12px;
        right: 12px;
    }

    .seller-address,
    .seller-voice,
    .seller-demo,
    .seller-steps,
    .seller-final-cta {
        padding: 30px 20px;
    }

    .seller-address-form > div,
    .seller-address-form--compact > div,
    .seller-auth-form__grid,
    .seller-auth-form fieldset,
    .seller-demo ul,
    .seller-steps ol {
        grid-template-columns: 1fr;
    }

    .seller-address-form button,
    .seller-auth-form button {
        width: 100%;
    }

    .seller-voice__player {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .seller-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
    }
}

.homes-page {
    min-height: 100vh;
    padding: 0 0 56px;
    background: #ffffff;
}

.homes-hero {
    min-height: var(--ec-hero-desktop-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: var(--ec-sidebar-width);
    padding: 106px calc(var(--ec-page-gutter) + 56px) 56px 56px;
    border-bottom: 1px solid var(--ec-color-border);
}

.homes-hero,
.homes-page__header,
.homes-page__header > div,
.homes-search,
.homes-toolbar,
.homes-filters,
.homes-results,
.homes-grid,
.homes-states {
    min-width: 0;
}

.homes-page__header {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(360px, 0.58fr);
    gap: 36px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ec-color-border);
}

.homes-page__header p {
    margin: 0 0 14px;
    color: var(--ec-color-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.homes-page__header h1 {
    margin: 0 0 12px;
    color: var(--ec-color-text);
    font-size: clamp(3rem, 4.8vw, 4.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.homes-page__header span {
    color: var(--ec-color-muted);
    font-size: 1rem;
    line-height: 1.45;
}

.homes-search {
    justify-self: end;
    width: 100%;
    max-width: 560px;
}

.homes-search label,
.homes-filters label,
.homes-sort {
    color: var(--ec-color-text);
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 800;
}

.homes-search > div {
    height: 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    margin-top: 8px;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    overflow: hidden;
}

.homes-search input {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    color: var(--ec-color-text);
    border: 0;
    font: inherit;
    font-size: 0.96rem;
}

.homes-search input:focus {
    outline: 0;
}

.homes-search > div:focus-within {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 4px;
}

.homes-search button {
    width: 58px;
    height: 100%;
    min-width: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 0;
    cursor: pointer;
}

.homes-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--ec-color-border);
}

.homes-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 14px;
}

.homes-filters label,
.homes-sort {
    display: grid;
    gap: 7px;
}

.homes-filters select,
.homes-sort select {
    min-width: 150px;
    min-height: 40px;
    padding: 0 34px 0 12px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
}

.homes-filter-check {
    min-height: 40px;
    display: flex !important;
    align-items: center;
    gap: 9px !important;
    padding: 0 12px;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.homes-filter-check input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--ec-color-brand);
}

.homes-results {
    padding: 30px calc(var(--ec-page-gutter) + 56px) 0;
}

.homes-results__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.homes-results__header h2 {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.homes-results__header p {
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.homes-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 30px calc(var(--ec-page-gutter) + 56px);
}

.homes-pagination a {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.homes-pagination a[aria-current="page"] {
    color: #ffffff;
    background: var(--ec-color-brand);
    border-color: var(--ec-color-brand);
}

.homes-pagination a:focus-visible,
.homes-search button:focus-visible,
.homes-filters select:focus-visible,
.homes-sort select:focus-visible,
.homes-filter-check:focus-within {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

.homes-states {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 4px calc(var(--ec-page-gutter) + 56px) 0;
}

.homes-states article {
    min-height: 150px;
    padding: 22px;
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
}

.homes-states i {
    display: block;
    margin-bottom: 16px;
    color: var(--ec-color-text);
    font-size: 1.6rem;
}

.homes-states h2 {
    margin: 0 0 8px;
    color: var(--ec-color-text);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.homes-states p {
    max-width: 420px;
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .homes-page {
        padding: 0 0 48px;
    }

    .homes-hero {
        padding: 96px 38px 42px;
    }

    .homes-page__header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .homes-search {
        justify-self: stretch;
        max-width: none;
    }

    .homes-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

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

    .homes-results {
        padding: 30px 38px 0;
    }

    .homes-pagination {
        padding: 30px 38px;
    }

    .homes-states {
        padding: 4px 38px 0;
    }
}

@media (max-width: 820px) {
    .homes-hero {
        min-height: auto;
        margin-left: 0;
        padding: 48px 20px 34px;
    }
}

@media (max-width: 640px) {
    .homes-page {
        padding: 0 0 44px;
    }

    .homes-hero {
        padding: 34px 20px;
    }

    .homes-page__header,
    .homes-search,
    .homes-search > div,
    .homes-toolbar,
    .homes-results,
    .homes-grid,
    .property-card,
    .homes-pagination,
    .homes-states {
        width: 100%;
        max-width: 100%;
    }

    .homes-page__header,
    .homes-search,
    .homes-search > div,
    .homes-toolbar,
    .homes-grid,
    .property-card {
        max-width: calc(100vw - 40px);
    }

    .homes-search > div {
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .homes-search button {
        width: 52px;
        min-width: 52px;
    }

    .homes-page__header h1 {
        font-size: clamp(2.25rem, 9.8vw, 2.75rem);
    }

    .homes-filters,
    .homes-filters label,
    .homes-sort {
        width: 100%;
    }

    .homes-filters select,
    .homes-sort select {
        width: 100%;
    }

    .homes-grid,
    .homes-states {
        grid-template-columns: 1fr;
    }

    .homes-results {
        padding: 30px 20px 0;
    }

    .homes-pagination {
        padding: 30px 20px;
    }

    .homes-states {
        padding: 4px 20px 0;
    }

    .homes-results__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

.property-page {
    min-height: 100vh;
    padding-bottom: 56px;
    background: #ffffff;
}

.property-detail-template {
    --ec-property-hero-height: 720px;
}

.property-detail-template .site-sidebar {
    height: var(--ec-property-hero-height);
}

.property-hero {
    min-height: var(--ec-property-hero-height);
    display: grid;
    grid-template-columns: minmax(420px, 0.58fr) minmax(320px, 0.42fr);
    gap: 36px;
    align-items: center;
    margin-left: var(--ec-sidebar-width);
    padding: 86px calc(var(--ec-page-gutter) + 56px) 56px 56px;
    border-bottom: 1px solid var(--ec-color-border);
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 118px;
    gap: 8px;
    min-width: 0;
    padding: 10px;
    background: #f7f7f8;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.property-gallery img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    background: #f4f4f4;
}

.property-gallery__main {
    grid-column: 1 / -1;
    aspect-ratio: 1.8 / 1;
}

.property-gallery img:not(.property-gallery__main) {
    aspect-ratio: 2.2 / 1;
}

.property-hero__summary {
    min-width: 0;
}

.property-hero__summary p {
    margin: 0 0 14px;
    color: var(--ec-color-muted);
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.property-hero__summary h1 {
    margin: 0 0 10px;
    color: var(--ec-color-text);
    font-size: clamp(2.4rem, 4.2vw, 4.45rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.property-hero__summary > span {
    display: block;
    margin-bottom: 24px;
    color: var(--ec-color-muted);
    font-size: 1rem;
    line-height: 1.45;
}

.property-hero__summary > strong {
    display: block;
    margin-bottom: 20px;
    color: var(--ec-color-text);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

.property-facts,
.property-detail-grid {
    display: grid;
    gap: 12px;
    margin: 0;
}

.property-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.property-facts div,
.property-detail-grid div {
    padding: 14px;
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
}

.property-facts dt,
.property-detail-grid dt {
    margin-bottom: 5px;
    color: var(--ec-color-muted);
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 700;
}

.property-facts dd,
.property-detail-grid dd {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.property-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.property-actions button,
.property-contact button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 1px solid var(--ec-color-brand);
    border-radius: 5px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.property-actions button + button {
    color: var(--ec-color-text);
    background: #ffffff;
    border-color: var(--ec-color-border);
}

.property-content {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
    gap: 34px;
    padding: 38px calc(var(--ec-page-gutter) + 56px);
    border-bottom: 1px solid var(--ec-color-border);
}

.property-main {
    display: grid;
    gap: 34px;
    min-width: 0;
}

.property-main h2,
.property-sidebar h2,
.property-similar h2 {
    margin: 0 0 16px;
    color: var(--ec-color-text);
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.property-main p,
.property-contact p {
    max-width: 760px;
    margin: 0;
    color: var(--ec-color-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.property-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.property-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    color: var(--ec-color-text);
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
}

.property-map {
    min-height: 260px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--ec-color-text);
    background:
        linear-gradient(28deg, transparent 48%, #dedfe2 49%, #dedfe2 51%, transparent 52%),
        linear-gradient(152deg, transparent 46%, #e2e3e5 47%, #e2e3e5 49%, transparent 50%),
        #f3f3f4;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.property-map span {
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font-size: 0.88rem;
    font-weight: 800;
}

.property-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
    min-width: 0;
}

.property-voice,
.property-contact {
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.property-voice {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.property-voice h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.property-voice button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--ec-color-brand);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.property-voice div {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
}

.property-voice span {
    width: 2px;
    height: 14px;
    background: #c7ccd3;
}

.property-voice span:nth-child(2),
.property-voice span:nth-child(5) {
    height: 21px;
}

.property-voice small {
    color: var(--ec-color-text);
    font-size: 0.86rem;
    font-weight: 800;
}

.property-contact p {
    margin-bottom: 18px;
}

.property-seller-details {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.property-seller-details div {
    padding: 12px;
    background: #f7f7f8;
    border: 1px solid #eeeeef;
    border-radius: 5px;
}

.property-seller-details dt {
    margin-bottom: 4px;
    color: var(--ec-color-muted);
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 700;
}

.property-seller-details dd {
    margin: 0;
    color: var(--ec-color-text);
    font-size: 0.94rem;
    line-height: 1.35;
    font-weight: 800;
}

.property-seller-details a {
    color: inherit;
    text-decoration: none;
}

.property-contact form {
    display: grid;
    gap: 9px;
}

.property-contact label {
    color: var(--ec-color-text);
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 800;
}

.property-contact input,
.property-contact textarea {
    width: 100%;
    min-width: 0;
    padding: 12px;
    color: var(--ec-color-text);
    background: #ffffff;
    border: 1px solid var(--ec-color-border);
    border-radius: 5px;
    font: inherit;
    font-size: 0.92rem;
}

.property-contact textarea {
    resize: vertical;
}

.property-contact button {
    margin-top: 8px;
}

.property-similar {
    width: 100%;
    margin-left: 0;
    padding: 34px calc(var(--ec-page-gutter) + 56px) 0;
}

.property-similar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.property-similar__header h2 {
    margin: 0;
}

.property-similar__header a {
    color: var(--ec-color-text);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.property-actions button:focus-visible,
.property-contact button:focus-visible,
.property-contact input:focus-visible,
.property-contact textarea:focus-visible,
.property-seller-details a:focus-visible,
.property-voice button:focus-visible,
.property-similar__header a:focus-visible {
    outline: 3px solid var(--ec-color-focus);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .property-hero {
        grid-template-columns: 1fr;
        padding: 96px 38px 42px;
    }

    .property-content {
        grid-template-columns: 1fr;
        padding: 34px 38px;
    }

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

    .property-similar {
        padding: 34px 38px 0;
    }
}

@media (max-width: 820px) {
    .property-hero {
        min-height: auto;
        margin-left: 0;
        padding: 48px 20px 34px;
    }
}

@media (max-width: 640px) {
    .property-page {
        padding-bottom: 44px;
    }

    .property-hero {
        padding: 34px 20px;
    }

    .property-facts,
    .property-detail-grid,
    .property-feature-list,
    .property-content,
    .property-similar .homes-grid {
        grid-template-columns: 1fr;
    }

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

    .property-gallery img {
        min-height: 128px;
    }

    .property-gallery__main {
        grid-column: 1 / -1;
        aspect-ratio: 1.35 / 1;
    }

    .property-hero__summary h1 {
        font-size: clamp(2.2rem, 9.5vw, 2.8rem);
    }

    .property-actions,
    .property-actions button,
    .property-contact button {
        width: 100%;
    }

    .property-content {
        padding: 30px 20px;
    }

    .property-voice {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .property-voice small {
        grid-column: 2;
    }

    .property-similar {
        padding: 30px 20px 0;
    }

    .property-similar__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

.hero-search__field button i,
.hero-card__voice button i,
.property-card__voice i,
.map-preview__draw i,
.benefit-block i.benefit-block__icon,
.how-step i.how-step__icon,
.lifestyle-card i.lifestyle-card__icon,
.newsletter-section i.newsletter-section__fa-icon,
.site-footer i.site-footer__icon {
    display: grid;
    place-items: center;
    color: currentColor;
    line-height: 1;
}

.hero-search__field button i {
    font-size: 1.15rem;
}

.hero-card__favorite i {
    color: inherit;
    font-size: 1.08rem;
    line-height: 1;
}

.hero-card__voice button i,
.property-card__voice i {
    font-size: 0.72rem;
}

.property-card__favorite i {
    font-size: 1.02rem;
    line-height: 1;
}

.property-card__voice i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #ffffff;
    background: var(--ec-color-brand);
    border-radius: 50%;
}

.benefit-block i.benefit-block__icon,
.how-step i.how-step__icon,
.lifestyle-card i.lifestyle-card__icon {
    font-size: 1.45rem;
}

.newsletter-section i.newsletter-section__fa-icon {
    width: 44px;
    height: 34px;
    flex: 0 0 44px;
    font-size: 1.55rem;
}

.site-footer i.site-footer__icon {
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
}

i.benefit-block__icon::before,
i.benefit-block__icon::after,
i.how-step__icon::before,
i.how-step__icon::after,
i.lifestyle-card__icon::before,
i.lifestyle-card__icon::after,
.hero-search__field button i::after,
.property-card__voice i::after {
    position: static;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.app-badge > i:first-child {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--ec-color-brand);
    background: #ffffff;
    border-radius: 50%;
    font-size: 0.76rem;
}

.site-footer__social i {
    display: block;
    line-height: 1;
}
