:root {
    --bg: #fffaf8;
    --surface: #ffffff;
    --surface-soft: #fff2ee;
    --text: #172033;
    --muted: #617083;
    --ring: #eadedc;
    --brand: #172033;
    --accent: #e96f5f;
    --lavender: #8273c7;
    --shadow: 0 22px 60px rgba(23, 32, 51, .12);
    --shadow-soft: 0 12px 30px rgba(23, 32, 51, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top right, rgba(130, 115, 199, .16), transparent 34rem),
        radial-gradient(circle at 8% 18%, rgba(233, 111, 95, .16), transparent 28rem),
        linear-gradient(180deg, #fffaf8 0%, #fff 44%, #fff8f5 100%);
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100vw - 36px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(234, 222, 220, .72);
    background: rgba(255, 250, 248, .86);
    backdrop-filter: saturate(180%) blur(12px);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}

.brand-logo {
    width: 140px;
    height: auto;
    display: block;
}

.brand picture,
.phone picture {
    display: block;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: #59677a;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 28px rgba(23, 32, 51, .18);
}

.btn-ghost {
    background: rgba(255, 255, 255, .74);
    border-color: var(--ring);
    color: var(--text);
}

.hero {
    padding: 54px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.hero-grid > *,
.split > * {
    min-width: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #7a8798;
    font-size: 13px;
    font-weight: 750;
}

.breadcrumb a {
    text-decoration: none;
}

h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(42px, 8vw, 72px);
    line-height: .98;
    letter-spacing: 0;
}

.lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: #526071;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.trust-row {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.trust-item i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #fff;
    color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.phone-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 500px;
}

.phone-wrap::before {
    content: "";
    position: absolute;
    inset: 8% 2% 6%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 111, 95, .2), rgba(130, 115, 199, .22));
    filter: blur(2px);
}

.phone {
    position: relative;
    width: min(310px, 76vw);
    margin: 0;
    overflow: hidden;
    border: 7px solid #172033;
    border-radius: 42px;
    background: #fff;
    box-shadow: var(--shadow);
}

.phone img {
    display: block;
    width: 100%;
    height: auto;
}

.section {
    padding: 72px 0;
}

.section-white {
    background: #fff;
}

.section-title {
    max-width: 720px;
    margin-bottom: 28px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
}

.section-title p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

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

.card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(234, 222, 220, .92);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
}

.card i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff0ec, #f1eefe);
    color: var(--brand);
    font-size: 22px;
}

.card h3 {
    margin: 16px 0 8px;
    font-size: 20px;
    line-height: 1.2;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

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

.intent-panel {
    display: grid;
    gap: 18px;
}

.intent-panel h2,
.faq h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.08;
}

.intent-panel p,
.faq .section-title p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.68;
}

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

.intent-card {
    padding: 20px;
    border: 1px solid rgba(234, 222, 220, .92);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-soft);
}

.intent-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.intent-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
    line-height: 1.55;
}

.check-list i {
    color: var(--accent);
    font-size: 20px;
    margin-top: 2px;
}

.related {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.related a {
    padding: 10px 13px;
    border: 1px solid var(--ring);
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 20px;
    border: 1px solid rgba(234, 222, 220, .92);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.28;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.cta {
    padding: 76px 0;
    background:
        linear-gradient(135deg, rgba(23, 32, 51, .97), rgba(45, 49, 69, .97)),
        #172033;
    color: #fff;
    text-align: center;
}

.cta h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
}

.cta p {
    max-width: 640px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.62;
}

.cta .hero-actions {
    justify-content: center;
}

.footer {
    padding: 38px 0;
    border-top: 1px solid var(--ring);
    background: #fff;
}

.footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #64748b;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer a {
    text-decoration: none;
}

@media(min-width: 760px) {
    .nav-links {
        display: flex;
    }

    .hero-grid,
    .split {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
    }

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

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

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

    .footer-row {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media(max-width: 759px) {
    .brand-logo {
        width: 118px;
        height: auto;
    }

    .nav {
        min-height: 68px;
        gap: 12px;
    }

    .nav .btn {
        max-width: 150px;
        padding-inline: 12px;
        white-space: nowrap;
    }

    .lead {
        max-width: 100%;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-actions {
        display: grid;
    }

    .phone-wrap {
        min-height: 360px;
    }

    .phone {
        width: min(252px, 70vw);
        border-radius: 36px;
    }

    .section {
        padding: 54px 0;
    }
}
