:root {
    --chaw-brand: #ff3e0c;
    --chaw-brand-dark: #d94d22;
    --chaw-ink: #1f2937;
    --chaw-muted: #6f7a89;
    --chaw-line: #e4e8ed;
    --chaw-soft: #f7f8fa;
    --chaw-card: #ffffff;
    --chaw-radius: 16px;
    --chaw-radius-btn: 11px;
    --chaw-shadow: 0 10px 28px rgba(28, 35, 48, .07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.chaw-body {
    margin: 0;
    background: #fff;
    color: var(--chaw-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.chaw-body a {
    color: inherit;
}

.chaw-topbar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 28px;
    border-bottom: 1px solid var(--chaw-line);
    background: #fff;
}

.chaw-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.chaw-brand img {
    display: block;
    width: auto;
    max-width: 165px;
    max-height: 42px;
}

.chaw-back {
    color: #667180 !important;
    font-size: 13px;
    text-decoration: none !important;
}

.chaw-back:hover {
    color: var(--chaw-brand) !important;
}

.chaw-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.chaw-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--chaw-brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.chaw-alert {
    width: min(1120px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 13px 15px;
    border: 1px solid var(--chaw-line);
    border-radius: var(--chaw-radius-btn);
    font-size: 13px;
}

.chaw-alert--success {
    border-color: #bfe4ca;
    background: #f1fbf4;
    color: #267348;
}

.chaw-hero {
    padding: 82px 0 68px;
    overflow: hidden;
    border-bottom: 1px solid #edf0f3;
    background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.chaw-hero__inner {
    text-align: center;
}

.chaw-hero h1 {
    max-width: 880px;
    margin: 0 auto;
    color: var(--chaw-ink);
    font-size: clamp(42px, 6vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
}

.chaw-hero p {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--chaw-muted);
    font-size: 17px;
    line-height: 1.65;
}

.chaw-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.chaw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--chaw-radius-btn);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition:
        transform .12s ease,
        background .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
}

.chaw-btn:hover {
    transform: translateY(-1px);
}

.chaw-btn--primary {
    border-color: var(--chaw-brand);
    background: var(--chaw-brand);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(239, 90, 40, .24);
}

.chaw-btn--primary:hover {
    background: var(--chaw-brand-dark);
}

.chaw-btn--secondary {
    border-color: #dfe3e8;
    background: #fff;
    color: var(--chaw-ink) !important;
}

.chaw-btn--secondary:hover {
    border-color: #ffb7a2;
}

.chaw-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.chaw-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 10px;
    border: 1px solid #e4e7eb;
    border-radius: 9px;
    background: #fff;
    color: #717a88;
    font-size: 11px;
    font-weight: 600;
}

.chaw-showcase {
    position: relative;
    width: min(980px, 100%);
    min-height: 450px;
    margin: 48px auto 0;
}

.chaw-browser {
    position: absolute;
    inset: 0 86px 0 0;
    overflow: hidden;
    border: 1px solid #e0e4e9;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(31, 41, 55, .12);
    text-align: left;
}

.chaw-browser__top {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    border-bottom: 1px solid #edf0f3;
    background: #fafbfc;
}

.chaw-browser__top > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d6dbe1;
}

.chaw-browser__top > div {
    width: 50%;
    margin-left: 8px;
    padding: 5px 9px;
    border-radius: 7px;
    background: #f0f2f5;
    color: #8d96a3;
    font-size: 8px;
}

.chaw-browser__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 54px;
    padding: 0 22px;
    border-bottom: 1px solid #eef1f4;
    color: #69727f;
    font-size: 9px;
}

.chaw-browser__nav b {
    margin-right: auto;
    color: var(--chaw-brand);
    font-size: 11px;
    letter-spacing: .04em;
}

.chaw-browser__hero {
    display: flex;
    align-items: flex-end;
    min-height: 270px;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .72)),
        radial-gradient(circle at 70% 30%, #dfe8e1 0 10%, transparent 11%),
        linear-gradient(135deg, #edf2ef 0%, #f8f4ef 48%, #d9e3df 100%);
}

.chaw-browser__hero > div {
    width: min(370px, 70%);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 14px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 10px 30px rgba(25, 35, 45, .08);
}

.chaw-browser__hero small,
.chaw-browser__hero strong {
    display: block;
}

.chaw-browser__hero small {
    color: var(--chaw-brand);
    font-size: 10px;
}

.chaw-browser__hero strong {
    margin-top: 6px;
    color: #2f3845;
    font-size: 18px;
}

.chaw-browser__search {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 8px;
    padding: 14px 18px;
    background: #fff;
}

.chaw-browser__search span,
.chaw-browser__search b {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid #e4e8ed;
    border-radius: 8px;
    color: #89929e;
    font-size: 8px;
}

.chaw-browser__search b {
    border-color: var(--chaw-brand);
    background: var(--chaw-brand);
    color: #fff;
}

.chaw-phone {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 240px;
    min-height: 410px;
    padding: 26px 14px 18px;
    border: 8px solid #22252a;
    border-radius: 34px;
    background: #f6f8f8;
    box-shadow: 0 25px 55px rgba(25, 32, 43, .20);
    text-align: left;
}

.chaw-phone__notch {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 70px;
    height: 16px;
    border-radius: 12px;
    background: #22252a;
    transform: translateX(-50%);
}

.chaw-phone__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    margin: -4px -14px 18px;
    padding: 16px 16px 0;
    border-bottom: 1px solid #e4e8eb;
    background: #fff;
    color: #586271;
}

.chaw-phone__head b {
    color: var(--chaw-brand);
    font-size: 10px;
}

.chaw-phone__card {
    display: grid;
    gap: 9px;
    padding: 13px;
    border: 1px solid #e4e8ed;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(28, 35, 48, .05);
}

.chaw-phone__card span,
.chaw-phone__card strong {
    min-height: 36px;
    padding: 10px;
    border: 1px solid #e7eaee;
    border-radius: 8px;
    color: #929aa5;
    font-size: 9px;
}

.chaw-phone__card strong {
    border-color: var(--chaw-brand);
    background: var(--chaw-brand);
    color: #fff;
    text-align: center;
}

.chaw-phone__copy {
    margin-top: 18px;
    padding: 0 8px;
    color: #667180;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.chaw-deadline {
    display: block;
    margin-top: 24px;
    color: #9aa2ae;
    font-size: 10px;
}

.chaw-section {
    padding: 42px 0;
    background: #fff;
}

.chaw-section--soft {
    border-top: 1px solid #edf0f3;
    border-bottom: 1px solid #edf0f3;
    background: var(--chaw-soft);
}

.chaw-section--city {
    background: #fff;
}

.chaw-section--cta {
    padding-top: 20px;
    padding-bottom: 72px;
}

.chaw-heading {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.chaw-heading h2 {
    margin: 0;
    color: var(--chaw-ink);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.chaw-heading p {
    margin: 11px auto 0;
    color: var(--chaw-muted);
    font-size: 14px;
    line-height: 1.65;
}

.chaw-grid {
    display: grid;
    gap: 16px;
}

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

.chaw-card {
    padding: 25px;
    border: 1px solid var(--chaw-line);
    border-radius: var(--chaw-radius);
    background: #fff;
    box-shadow: var(--chaw-shadow);
    text-align: center;
}

.chaw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: #fff0eb;
    color: #5f6978;
}

.chaw-icon svg {
    width: 24px;
    height: 24px;
}

.chaw-card h3 {
    margin: 0;
    color: var(--chaw-ink);
    font-size: 18px;
}

.chaw-card p {
    margin: 9px 0 0;
    color: var(--chaw-muted);
    font-size: 13px;
    line-height: 1.55;
}

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

.chaw-feature-grid article {
    min-height: 155px;
    padding: 21px;
    border: 1px solid var(--chaw-line);
    border-radius: var(--chaw-radius);
    background: #fff;
}

.chaw-feature-grid strong,
.chaw-feature-grid span {
    display: block;
}

.chaw-feature-grid strong {
    color: var(--chaw-ink);
    font-size: 15px;
}

.chaw-feature-grid span {
    margin-top: 8px;
    color: var(--chaw-muted);
    font-size: 12px;
    line-height: 1.55;
}

.chaw-included-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.chaw-included-grid article {
    padding: 22px;
    border: 1px solid var(--chaw-line);
    border-radius: var(--chaw-radius);
    background: #fff;
    box-shadow: var(--chaw-shadow);
}

.chaw-included-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    border-radius: 9px;
    background: #fff0eb;
    color: var(--chaw-brand);
    font-size: 10px;
    font-weight: 800;
}

.chaw-included-grid h3 {
    margin: 16px 0 0;
    font-size: 17px;
}

.chaw-included-grid p {
    margin: 8px 0 0;
    color: var(--chaw-muted);
    font-size: 12px;
    line-height: 1.55;
}

.chaw-city-card {
    padding: 48px 36px;
    border: 1px solid #ffd1c4;
    border-radius: var(--chaw-radius);
    background: #fff4f0;
    text-align: center;
}

.chaw-city-card h2 {
    max-width: 760px;
    margin: 0 auto;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.chaw-city-card p {
    max-width: 760px;
    margin: 13px auto 0;
    color: #687382;
    font-size: 14px;
    line-height: 1.65;
}

.chaw-city-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.chaw-city-points span {
    min-height: 31px;
    padding: 8px 10px;
    border: 1px solid #ffc6b5;
    border-radius: 9px;
    background: #fff;
    color: #6c7582;
    font-size: 11px;
    font-weight: 600;
}

.chaw-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.chaw-process article {
    padding: 22px;
    border: 1px solid var(--chaw-line);
    border-radius: var(--chaw-radius);
    background: #fff;
}

.chaw-process article > span {
    color: var(--chaw-brand);
    font-size: 10px;
    font-weight: 800;
}

.chaw-process h3 {
    margin: 12px 0 0;
    font-size: 16px;
}

.chaw-process p {
    margin: 7px 0 0;
    color: var(--chaw-muted);
    font-size: 12px;
    line-height: 1.55;
}

.chaw-final {
    padding: 50px 28px;
    border-radius: var(--chaw-radius);
    background: #202020;
    color: #fff;
    text-align: center;
}

.chaw-final .chaw-eyebrow {
    color: #ff8c6f;
}

.chaw-final h2 {
    max-width: 760px;
    margin: 0 auto;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.chaw-final p {
    max-width: 650px;
    margin: 12px auto 22px;
    color: #c7cbd1;
    font-size: 14px;
    line-height: 1.6;
}

.chaw-footer {
    padding: 22px 0 32px;
    background: #fff;
}

.chaw-footer .chaw-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid #edf0f3;
    color: #8b94a0;
    font-size: 12px;
}

.chaw-footer a {
    color: #606b79 !important;
    text-decoration: none !important;
}

.chaw-modal[hidden] {
    display: none !important;
}

.chaw-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .16s ease,
        visibility .16s ease;
}

.chaw-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.chaw-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 24, 33, .60);
    backdrop-filter: blur(3px);
}

.chaw-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 28px;
    border: 1px solid var(--chaw-line);
    border-radius: var(--chaw-radius);
    background: #fff;
    box-shadow: 0 28px 80px rgba(14, 20, 30, .25);
    transform: translateY(10px);
    transition: transform .16s ease;
}

.chaw-modal.is-open .chaw-modal__dialog {
    transform: none;
}

.chaw-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #e4e8ed;
    border-radius: 10px;
    background: #fff;
    color: #667180;
    cursor: pointer;
}

.chaw-modal__close svg {
    width: 18px;
    height: 18px;
}

.chaw-modal__head {
    padding-right: 46px;
}

.chaw-modal__head h2 {
    margin: 0;
    font-size: 27px;
    letter-spacing: -.03em;
}

.chaw-modal__head p {
    margin: 8px 0 0;
    color: var(--chaw-muted);
    font-size: 13px;
    line-height: 1.5;
}

.chaw-form-errors {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid #f3c7bc;
    border-radius: 11px;
    background: #fff5f2;
    color: #a83d28;
    font-size: 12px;
}

.chaw-form-errors strong {
    display: block;
}

.chaw-form-errors ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.chaw-form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

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

.chaw-form label {
    display: block;
    margin: 0;
    color: #566174;
    font-size: 12px;
    font-weight: 700;
}

.chaw-form label > span {
    display: block;
    margin-bottom: 6px;
}

.chaw-form input,
.chaw-form select,
.chaw-form textarea {
    width: 100%;
    border: 1px solid #d9dee6;
    border-radius: 11px;
    background: #fff;
    color: var(--chaw-ink);
    font: inherit;
    font-size: 14px;
    outline: 0;
    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.chaw-form input,
.chaw-form select {
    height: 46px;
    padding: 0 13px;
}

.chaw-form textarea {
    padding: 12px 13px;
    resize: vertical;
}

.chaw-form input:focus,
.chaw-form select:focus,
.chaw-form textarea:focus {
    border-color: #aeb8c5;
    box-shadow: 0 0 0 2px rgba(255, 62, 12, .08);
}

.chaw-form__full {
    grid-column: 1 / -1;
}

.chaw-captcha {
    padding: 12px 13px;
    border: 1px solid #e5e8ed;
    border-radius: 11px;
    background: #fafbfc;
}

.chaw-captcha input {
    margin-top: 0;
    background: #fff;
}

.chaw-form__submit {
    width: 100%;
}

.chaw-form__privacy {
    display: block;
    color: #929aa7;
    font-size: 10.5px;
    line-height: 1.45;
    text-align: center;
}

.chaw-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 980px) {
    .chaw-grid--3,
    .chaw-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .chaw-included-grid,
    .chaw-process {
        grid-template-columns: 1fr 1fr;
    }

    .chaw-showcase {
        min-height: 390px;
    }

    .chaw-browser {
        right: 70px;
    }

    .chaw-phone {
        width: 205px;
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .chaw-topbar {
        min-height: 62px;
        padding: 0 14px;
    }

    .chaw-brand img {
        max-width: 138px;
        max-height: 34px;
    }

    .chaw-back {
        font-size: 11px;
    }

    .chaw-hero {
        padding: 58px 0 46px;
    }

    .chaw-hero h1 {
        font-size: 40px;
    }

    .chaw-hero p {
        font-size: 14px;
    }

    .chaw-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .chaw-actions .chaw-btn {
        width: 100%;
    }

    .chaw-showcase {
        min-height: 355px;
        margin-top: 34px;
    }

    .chaw-browser {
        inset: 0 28px 0 0;
        border-radius: 15px;
    }

    .chaw-browser__nav {
        gap: 9px;
        height: 46px;
        padding: 0 10px;
        font-size: 6.5px;
    }

    .chaw-browser__hero {
        min-height: 205px;
        padding: 16px;
    }

    .chaw-browser__hero > div {
        width: 76%;
        padding: 13px;
    }

    .chaw-browser__hero strong {
        font-size: 13px;
    }

    .chaw-browser__search {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }

    .chaw-browser__search span:nth-child(3) {
        display: none;
    }

    .chaw-phone {
        right: -8px;
        bottom: -8px;
        width: 138px;
        min-height: 270px;
        padding: 22px 9px 12px;
        border-width: 5px;
        border-radius: 25px;
    }

    .chaw-phone__notch {
        width: 46px;
        height: 11px;
    }

    .chaw-phone__head {
        min-height: 48px;
        margin: -3px -9px 12px;
        padding: 12px 10px 0;
    }

    .chaw-phone__head b {
        font-size: 7px;
    }

    .chaw-phone__card {
        gap: 6px;
        padding: 8px;
    }

    .chaw-phone__card span,
    .chaw-phone__card strong {
        min-height: 28px;
        padding: 7px;
        font-size: 7px;
    }

    .chaw-phone__copy {
        margin-top: 10px;
        font-size: 7.5px;
    }

    .chaw-section {
        padding: 52px 0;
    }

    .chaw-heading h2,
    .chaw-city-card h2,
    .chaw-final h2 {
        font-size: 28px;
    }

    .chaw-grid--3,
    .chaw-feature-grid,
    .chaw-included-grid,
    .chaw-process {
        grid-template-columns: 1fr;
    }

    .chaw-card {
        text-align: left;
    }

    .chaw-city-card {
        padding: 34px 18px;
    }

    .chaw-final {
        padding: 38px 18px;
    }

    .chaw-footer .chaw-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .chaw-modal {
        padding: 10px;
    }

    .chaw-modal__dialog {
        max-height: calc(100vh - 20px);
        padding: 20px;
        border-radius: 14px;
    }

    .chaw-modal__head h2 {
        font-size: 24px;
    }

    .chaw-form-grid {
        grid-template-columns: 1fr;
    }
}
