:root {
    --color-text: #1a1a1a;
    --color-text-muted: #4d4d4d;
    --color-surface: #f7f7f8;
    --color-brand: #ff671f;
    --color-brand-hover: #e55a18;
    --color-on-brand: #ffffff;
    --color-hero-bg: #4e0052;
    --color-hero-accent: #ff0db6;
    --color-hero-on-light: #212121;
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --container-max: 1200px;
    --section-pad-y: 32px;
    --section-pad-x: 20px;
    --card-radius: 16px;
    --card-border: #e8e8ea
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-surface);
    -webkit-font-smoothing: antialiased
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 100;
    padding: .75rem 1rem;
    background: var(--color-brand);
    color: var(--color-on-brand);
    text-decoration: none;
    border-radius: 4px
}

.skip-link:focus {
    left: 1rem;
    top: 1rem
}

.sticky-altyapi {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    box-shadow: 0 -4px 24px rgb(0 0 0 / .08);
    transition: transform 0.25s ease, visibility 0.25s ease
}

.sticky-altyapi.is-suppressed {
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none
}

.sticky-altyapi__inner {
    max-width: var(--container-max);
    margin-inline: auto
}

.sticky-altyapi__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid #fff0;
    background: var(--color-hero-bg);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.15s ease
}

.sticky-altyapi__btn:hover {
    background: #3d0040
}

.sticky-altyapi__btn:focus-visible {
    outline: 2px solid var(--color-hero-bg);
    outline-offset: 3px
}

.sticky-altyapi__btn:active {
    transform: scale(.99)
}

@media (max-width:1023px) {
    body.has-sticky-altyapi-padding {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px))
    }
}

@media (min-width:1024px) {
    .sticky-altyapi {
        display: none
    }
}

@media (prefers-reduced-motion:reduce) {
    .sticky-altyapi {
        transition: none
    }
}

.hero-banner {
    background: var(--color-hero-bg);
    border-radius: 0 0 24px 24px;
    overflow: hidden
}

.hero-banner__layout {
    display: flex;
    flex-direction: column
}

.hero-banner__media-wrap {
    position: relative;
    flex-shrink: 0;
    height: 487px
}

.hero-banner__media-wrap picture {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 24px 24px;
    vertical-align: middle
}

.hero-banner__scrim {
    position: absolute;
    inset: 0;
    border-radius: 0 0 24px 24px;
    background: rgb(0 0 0 / .2);
    pointer-events: none
}

.hero-banner__gradient {
    display: none
}

.hero-banner__copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 16px 16px 24px;
    max-width: 100%
}

.hero-banner__stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.hero-banner__title {
    margin: 0 !important;
    font-size: 1.625rem !important;
    font-weight: 700 !important;
    line-height: 2rem !important;
    letter-spacing: 0 !important;
    color: #fff !important;
    text-decoration: underline !important;
    text-decoration-color: #fff !important;
    text-decoration-thickness: max(2px, 0.07em) !important;
    text-underline-offset: .5rem !important
}

.hero-banner__subtitle {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    letter-spacing: 0;
    color: var(--color-hero-accent)
}

.hero-banner__lead {
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: 0;
    color: #fff
}

.hero-banner__fn {
    font-size: .5625rem;
    line-height: 1.375rem;
    vertical-align: super
}

.hero-banner__promo {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    padding: 16px;
    border-radius: 30px;
    border: 1px solid var(--color-hero-accent);
    background: #fff
}

.hero-banner__promo-code {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.hero-banner__promo-action {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.375rem;
    color: var(--color-hero-bg);
    cursor: pointer
}

.hero-banner__promo-action:hover {
    opacity: .88
}

.hero-banner__promo-action:focus-visible {
    outline: 2px solid var(--color-hero-accent);
    outline-offset: 2px;
    border-radius: 4px
}

.hero-banner__promo-action.is-copied {
    color: #15803d
}

.hero-banner__promo-action.is-copied:hover {
    opacity: 1
}

.hero-banner__copy-icon {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.hero-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%
}

.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease
}

.hero-banner__btn--fill {
    display: none;
    background: #fff;
    color: var(--color-hero-bg);
    border: 1px solid #fff0
}

.hero-banner__btn--fill:hover {
    background: #f5f5f5
}

.hero-banner__btn--outline {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #fff;
    color: #fff;
    background: #fff0
}

.hero-banner__btn--outline:hover {
    background: rgb(255 255 255 / .08)
}

.hero-banner__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.hero-banner__btn:active {
    transform: scale(.99)
}

.turknet-fark {
    background: #fff
}

.turknet-fark__shell {
    display: flex;
    flex-direction: column;
    max-width: 1288px;
    margin-inline: auto
}

.turknet-fark__media-wrap {
    padding: 32px 16px 0
}

.turknet-fark__media {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 390 / 250
}

.turknet-fark__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle
}

.turknet-fark__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 16px 24px;
    min-width: 0
}

.turknet-fark__stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.turknet-fark__header {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.turknet-fark__title {
    margin: 0 !important;
    font-size: 1.375rem !important;
    font-weight: 600 !important;
    line-height: 1.875rem !important;
    letter-spacing: 0 !important;
    color: var(--color-hero-bg) !important
}

.turknet-fark__intro {
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.turknet-fark__intro-strong {
    font-weight: 700
}

.turknet-fark__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.turknet-fark__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0
}

.turknet-fark__dot {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    display: block
}

.turknet-fark__item-text {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.turknet-fark__fn {
    font-size: .5625rem;
    line-height: 1.375rem;
    vertical-align: super
}

.turknet-fark__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    box-sizing: border-box;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid var(--color-hero-bg);
    background: #fff0;
    color: var(--color-hero-bg);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    text-decoration: none;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease
}

.turknet-fark__cta:hover {
    background: rgb(78 0 82 / .06)
}

.turknet-fark__cta:focus-visible {
    outline: 2px solid var(--color-hero-bg);
    outline-offset: 3px
}

.turknet-fark__cta:active {
    transform: scale(.99)
}

@media (min-width:1024px) {
    .turknet-fark {
        padding: 64px 76px 32px
    }

    .turknet-fark__shell {
        flex-direction: row;
        align-items: center;
        gap: 32px
    }

    .turknet-fark__media-wrap {
        flex: 1 1 50%;
        padding: 0;
        min-width: 0
    }

    .turknet-fark__media {
        aspect-ratio: 630 / 420
    }

    .turknet-fark__copy {
        flex: 1 1 50%;
        padding: 32px;
        gap: 32px
    }

    .turknet-fark__cta {
        align-self: flex-start;
        width: auto;
        max-width: none
    }
}

.yormayan-internet {
    background: #fff
}

.yormayan-internet__shell {
    display: flex;
    flex-direction: column;
    max-width: 1288px;
    margin-inline: auto
}

.yormayan-internet__media-wrap {
    padding: 32px 16px 0
}

.yormayan-internet__media {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 390 / 250
}

.yormayan-internet__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle
}

.yormayan-internet__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 16px 24px;
    min-width: 0
}

.yormayan-internet__stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.yormayan-internet__header {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.yormayan-internet__title {
    margin: 0 !important;
    font-size: 1.375rem !important;
    font-weight: 600 !important;
    line-height: 1.875rem !important;
    letter-spacing: 0 !important;
    color: var(--color-hero-bg) !important
}

.yormayan-internet__intro {
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.yormayan-internet__intro-strong {
    font-weight: 700
}

.yormayan-internet__line {
    display: inline
}

.yormayan-internet__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.yormayan-internet__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0
}

.yormayan-internet__dot {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    display: block
}

.yormayan-internet__item-text {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.yormayan-internet__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid var(--color-hero-bg);
    background: #fff0;
    color: var(--color-hero-bg);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    text-decoration: none;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease
}

.yormayan-internet__cta:hover {
    background: rgb(78 0 82 / .06)
}

.yormayan-internet__cta:focus-visible {
    outline: 2px solid var(--color-hero-bg);
    outline-offset: 3px
}

.yormayan-internet__cta:active {
    transform: scale(.99)
}

@media (min-width:1024px) {
    .yormayan-internet {
        padding: 32px 76px
    }

    .yormayan-internet__shell {
        flex-direction: row-reverse;
        align-items: center;
        gap: 32px
    }

    .yormayan-internet__media-wrap {
        flex: 1 1 50%;
        padding: 0;
        min-width: 0
    }

    .yormayan-internet__media {
        aspect-ratio: 630 / 420
    }

    .yormayan-internet__copy {
        flex: 1 1 50%;
        padding: 32px;
        gap: 56px
    }

    .yormayan-internet__line {
        display: block
    }

    .yormayan-internet__cta {
        align-self: flex-start;
        width: auto
    }
}

.yeni-ev-internet {
    background: #fff
}

.yeni-ev-internet__shell {
    display: flex;
    flex-direction: column;
    max-width: 1288px;
    margin-inline: auto
}

.yeni-ev-internet__media-wrap {
    padding: 32px 16px 0
}

.yeni-ev-internet__media {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 390 / 250
}

.yeni-ev-internet__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle
}

.yeni-ev-internet__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 16px 24px;
    min-width: 0
}

.yeni-ev-internet__stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.yeni-ev-internet__title {
    margin: 0 !important;
    font-size: 1.375rem !important;
    font-weight: 600 !important;
    line-height: 1.875rem !important;
    letter-spacing: 0 !important;
    color: var(--color-hero-bg) !important
}

.yeni-ev-internet__intro,
.yeni-ev-internet__outro {
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.yeni-ev-internet__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.yeni-ev-internet__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0
}

.yeni-ev-internet__dot {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    display: block
}

.yeni-ev-internet__item-text {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.yeni-ev-internet__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%
}

.yeni-ev-internet__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease
}

.yeni-ev-internet__btn--primary {
    display: none;
    background: var(--color-hero-bg);
    border: 1px solid var(--color-hero-bg);
    color: #fff
}

.yeni-ev-internet__btn--primary:hover {
    background: #3d0040;
    border-color: #3d0040
}

.yeni-ev-internet__btn--outline {
    width: 100%;
    background: #fff0;
    border: 1px solid var(--color-hero-bg);
    color: var(--color-hero-bg)
}

.yeni-ev-internet__btn--outline:hover {
    background: rgb(78 0 82 / .06)
}

.yeni-ev-internet__btn:focus-visible {
    outline: 2px solid var(--color-hero-bg);
    outline-offset: 3px
}

.yeni-ev-internet__btn:active {
    transform: scale(.99)
}

@media (min-width:1024px) {
    .yeni-ev-internet {
        padding: 32px 76px 64px
    }

    .yeni-ev-internet__shell {
        flex-direction: row;
        align-items: center;
        gap: 32px
    }

    .yeni-ev-internet__media-wrap {
        flex: 1 1 50%;
        padding: 0;
        min-width: 0
    }

    .yeni-ev-internet__media {
        aspect-ratio: 630 / 420
    }

    .yeni-ev-internet__copy {
        flex: 1 1 50%;
        padding: 32px;
        gap: 56px
    }

    .yeni-ev-internet__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        width: auto
    }

    .yeni-ev-internet__btn--primary {
        display: inline-flex
    }

    .yeni-ev-internet__btn--outline {
        width: auto
    }
}

.new-home {
    padding: var(--section-pad-y) var(--section-pad-x) 48px
}

.new-home__container {
    max-width: var(--container-max);
    margin-inline: auto
}

.new-home__header {
    max-width: 42rem
}

.new-home__title {
    margin: 0;
    font-size: clamp(1.5rem, 4.8vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -.02em
}

.new-home__lead {
    margin: 12px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted)
}

.new-home__grid {
    display: grid;
    gap: 16px;
    margin-top: 24px
}

.new-home-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 20px
}

.new-home-card__title {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.35
}

.new-home-card__price {
    margin: 8px 0 0;
    color: var(--color-brand);
    font-size: 1.375rem;
    font-weight: 700
}

.new-home-card__text {
    margin: 10px 0 0;
    color: var(--color-text-muted);
    line-height: 1.55
}

.new-home-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 16px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease
}

.new-home-card__cta:hover {
    background: var(--color-brand);
    color: #fff
}

.new-home-card__cta:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px
}

.cta {
    padding: 24px 16px;
    background: var(--color-on-brand)
}

.cta__card {
    max-width: 1288px;
    margin-inline: auto;
    border-radius: 32px;
    border: 1px solid #eee;
    background: #eee;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cta__inner {
    width: 100%;
    max-width: 848px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.cta__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%
}

.cta__title {
    margin: 0 !important;
    font-size: 1.375rem !important;
    font-weight: 600 !important;
    line-height: 1.875rem !important;
    letter-spacing: 0 !important;
    color: var(--color-hero-bg) !important
}

.cta__body {
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--color-hero-on-light)
}

.cta__line {
    display: inline
}

.cta__fn {
    font-size: .5625rem;
    line-height: 1.375rem;
    vertical-align: super
}

.cta__price {
    font-weight: 700
}

.cta__actions {
    display: flex;
    padding-top: 16px;
    justify-content: center;
    width: 100%
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 40px;
    background: var(--color-hero-bg);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.15s ease
}

.cta__btn:hover {
    background: #3d0040
}

.cta__btn:focus-visible {
    outline: 2px solid var(--color-hero-bg);
    outline-offset: 3px
}

.cta__btn:active {
    transform: scale(.99)
}

@media (max-width:1023px) {
    .cta__actions {
        display: none
    }
}

.new-home-hurry {
    padding: 0 var(--section-pad-x) 56px
}

.new-home-hurry__container {
    max-width: var(--container-max);
    margin-inline: auto;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: #fff;
    padding: 24px 20px;
    display: grid;
    gap: 24px
}

.new-home-hurry__eyebrow {
    margin: 0;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-brand)
}

.new-home-hurry__title {
    margin: 10px 0 0;
    font-size: clamp(1.35rem, 4.2vw, 2rem);
    line-height: 1.2;
    letter-spacing: -.02em
}

.new-home-hurry__text {
    margin: 12px 0 0;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 44rem
}

.new-home-hurry__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--color-brand);
    color: var(--color-on-brand);
    text-decoration: none;
    font-weight: 700
}

.new-home-hurry__button:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px
}

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

.timer-card {
    border-radius: 14px;
    background: #fff6f1;
    border: 1px solid #ffd8c1;
    padding: 14px 10px;
    text-align: center
}

.timer-card__value {
    display: block;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1;
    font-weight: 700;
    color: var(--color-brand)
}

.timer-card__label {
    display: block;
    margin-top: 6px;
    font-size: .875rem;
    color: var(--color-text-muted)
}

.new-home-with-internet {
    padding: 0 var(--section-pad-x) 56px
}

.new-home-with-internet__container {
    max-width: var(--container-max);
    margin-inline: auto;
    display: grid;
    gap: 24px
}

.new-home-with-internet__media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    vertical-align: middle
}

.new-home-with-internet__eyebrow {
    margin: 0;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-brand)
}

.new-home-with-internet__title {
    margin: 10px 0 0;
    font-size: clamp(1.35rem, 4.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: -.02em
}

.new-home-with-internet__text {
    margin: 12px 0 0;
    line-height: 1.6;
    color: var(--color-text-muted)
}

.new-home-with-internet__list {
    margin: 16px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--color-text)
}

.new-home-with-internet__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--color-brand);
    color: var(--color-on-brand);
    text-decoration: none;
    font-weight: 700
}

.new-home-with-internet__button:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px
}

.faq {
    background: #fafafa
}

.faq__inner {
    box-sizing: border-box;
    max-width: 848px;
    margin-inline: auto;
    padding: 24px 16px 40px
}

.faq__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 16px 8px;
    text-align: center
}

.faq__title {
    margin: 0 !important;
    font-size: 1.375rem !important;
    font-weight: 600 !important;
    line-height: 1.875rem !important;
    letter-spacing: 0 !important;
    color: var(--color-hero-bg) !important
}

.faq__lede {
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: #9e9e9e
}

.faq__list {
    width: 100%
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    background: #fff0
}

.faq-item:last-child {
    border-bottom: none
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    cursor: pointer;
    padding: 16px 0;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.375rem;
    color: var(--color-hero-bg)
}

.faq-item__summary::-webkit-details-marker {
    display: none
}

.faq-item__summary::after {
    content: "";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%234e0052' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
    transition: transform 0.2s ease
}

.faq-item[open] .faq-item__summary::after {
    transform: rotate(180deg)
}

.faq-item__q {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left
}

.faq-item__body {
    padding: 0 0 16px
}

.faq-item__body p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.55;
    color: var(--color-text-muted)
}

.faq-item__body a {
    color: var(--color-hero-bg);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px
}

.faq-item__body a:hover {
    opacity: .88
}

.important-info {
    background: #fff;
    padding: 16px
}

.important-info__inner {
    max-width: 1288px;
    margin-inline: auto
}

.important-info__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.important-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: #9e9e9e
}

.important-info__index {
    flex-shrink: 0
}

.important-info__text {
    margin: 0
}

@media (min-width:768px) {
    :root {
        --section-pad-y: 48px;
        --section-pad-x: 32px
    }

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

    .new-home-hurry {
        padding-bottom: 64px
    }

    .new-home-hurry__container {
        padding: 32px
    }

    .new-home-hurry__timer {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px
    }

    .new-home-with-internet {
        padding-bottom: 64px
    }

    .faq__inner {
        padding: 24px var(--section-pad-x) 48px
    }

    .important-info {
        padding: 24px var(--section-pad-x)
    }
}

@media (min-width:1024px) {
    :root {
        --section-pad-y: 64px;
        --section-pad-x: 40px
    }

    .hero-banner {
        border-radius: 0
    }

    .hero-banner__layout {
        position: relative;
        min-height: 650px
    }

    .hero-banner__media-wrap {
        position: absolute;
        inset: 0;
        height: auto;
        min-height: 650px
    }

    .hero-banner__img {
        border-radius: 0
    }

    .hero-banner__scrim {
        display: none
    }

    .hero-banner__gradient {
        display: block;
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(to left, #fff0 0%, rgb(78 0 82 / .19) 36.302%, rgb(78 0 82 / .87) 73.542%, var(--color-hero-bg) 100%)
    }

    .hero-banner__copy {
        position: absolute;
        left: calc(76px + max(0px, (100% - 1440px) / 2));
        top: calc(50% + 23px);
        transform: translateY(-50%);
        width: min(506px, calc(100% - 152px - max(0px, (100% - 1440px))));
        padding: 0;
        gap: 32px;
        z-index: 1
    }

    .hero-banner__title {
        font-size: 2.125rem !important;
        line-height: 2.5rem !important;
        text-decoration: none !important
    }

    .hero-banner__subtitle {
        font-size: 1.625rem;
        line-height: 2rem
    }

    .hero-banner__promo {
        display: flex
    }

    .hero-banner__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        width: auto
    }

    .hero-banner__btn--fill {
        display: inline-flex
    }

    .hero-banner__btn--outline {
        width: auto;
        max-width: none;
        margin-inline: 0
    }

    .new-home__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        margin-top: 28px
    }

    .cta {
        padding: 32px 76px
    }

    .cta__card {
        min-height: 300px;
        padding: 32px
    }

    .cta__line {
        display: block
    }

    .new-home-hurry {
        padding-bottom: 80px
    }

    .new-home-hurry__container {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: center;
        gap: 32px;
        padding: 40px
    }

    .timer-card {
        padding: 18px 12px
    }

    .new-home-with-internet {
        padding-bottom: 80px
    }

    .new-home-with-internet__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 32px
    }

    .faq__inner {
        padding: 32px 16px 88px
    }

    .important-info {
        padding: 32px 76px
    }
}