:root {
            --black: #111216;
            --black-2: #191b20;
            --white: #ffffff;
            --bg: #f4f3ef;
            --text: #17181c;
            --muted: #74767d;
            --line: #dededb;
            --purple: #625df0;
            --purple-dark: #504bd2;
            --purple-light: #ebeaff;
            --lime: #d9f26a;
            --orange: #ffb66b;
            --blue: #8dc9ff;
            --pink: #f0a4cf;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--text);
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font: inherit;
        }

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

        /* ==========================================
           HEADER
        ========================================== */

        .q-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(244, 243, 239, .9);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(17, 18, 22, .07);
        }

        .q-header-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .q-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            font-size: 21px;
            font-weight: 850;
            letter-spacing: -.05em;
        }

        .q-logo-mark {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            background: var(--bs-primary);
            color: #fff;
            font-size: 16px;
        }

        .q-nav {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .q-nav-link {
            padding: 9px 12px;
            border-radius: 9px;
            color: #64666c;
            font-size: 13px;
            font-weight: 650;
        }

        .q-nav-link:hover {
            background: #e9e8e4;
            color: var(--text);
        }

        .q-nav-button {
            margin-left: 8px;
            padding: 11px 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 11px;
            background: var(--black);
            color: #fff;
            font-size: 13px;
            font-weight: 750;
        }

        .q-nav-button:hover {
            background: #2a2c31;
            color: #fff;
        }

        /* ==========================================
           HERO
        ========================================== */

        .q-hero {
            padding: 96px 0 90px;
        }

        .q-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
            gap: 70px;
            align-items: center;
        }

        .q-hero-content {
            min-width: 0;
        }

        .q-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            color: var(--purple-dark);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .q-eyebrow-line {
            width: 28px;
            height: 2px;
            background: var(--purple);
        }

        /*
         * SEO H1:
         * основной ключевой запрос находится непосредственно
         * в H1 и не разрывается визуальным <br>.
         */

        .q-hero h1 {
            max-width: 790px;
            margin: 0;
            font-size: clamp(44px, 6vw, 76px);
            line-height: 1;
            letter-spacing: -.065em;
            font-weight: 850;
        }

        .q-hero h1 strong {
            color: var(--purple);
            font-weight: inherit;
        }

        .q-hero-lead {
            max-width: 650px;
            margin: 27px 0 31px;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.65;
        }

        .q-search {
            width: min(100%, 660px);
            min-height: 64px;
            padding: 7px 8px 7px 19px;
            display: flex;
            align-items: center;
            gap: 11px;
            background: #fff;
            border: 1px solid #deddd9;
            border-radius: 16px;
            box-shadow: 0 16px 42px rgba(20, 21, 25, .07);
        }

        .q-search i {
            flex-shrink: 0;
            color: #888a91;
            font-size: 19px;
        }

        .q-search input {
            min-width: 0;
            flex: 1;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--text);
            font-size: 14px;
        }

        .q-search input::placeholder {
            color: #999ba1;
        }

        .q-search button {
            width: 49px;
            height: 49px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 12px;
            background: var(--black);
            color: #fff;
        }

        .q-hero-note {
            margin-top: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #92949a;
            font-size: 12px;
        }

        .q-hero-note i {
            color: #4baf80;
        }

        /* Hero visual */

        .q-hero-art {
            min-width: 0;
            position: relative;
        }

        .q-art-card {
    position: relative;
    min-height: 500px;
    padding: 24px;
    overflow: hidden;
    border-radius: 31px;
    background: var(--black);
}

.q-art-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -150px;
    top: -150px;
    border-radius: 50%;
    background: var(--purple);
}

.q-art-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: var(--lime);
}

.q-art-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 452px;
    padding: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
}

        .q-art-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .q-art-label {
            color: #a7a9b0;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .13em;
        }

        .q-art-counter {
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,.08);
            color: #c6c8ce;
            font-size: 10px;
        }

        .q-art-center {
            padding: 30px 0;
        }

        .q-art-big {
            margin: 0;
            color: #fff;
            font-size: clamp(35px, 4vw, 51px);
            line-height: .98;
            letter-spacing: -.06em;
            font-weight: 850;
        }

        .q-art-big span {
            color: var(--lime);
        }

        .q-art-description {
            max-width: 340px;
            margin: 18px 0 0;
            color: #999ca5;
            font-size: 13px;
            line-height: 1.6;
        }

        .q-art-bottom {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 9px;
        }

        .q-art-chip {
            min-width: 0;
            padding: 14px;
            border-radius: 12px;
            background: rgba(255,255,255,.075);
        }

        .q-art-chip-icon {
            margin-bottom: 12px;
            color: #fff;
            font-size: 17px;
        }

        .q-art-chip-title {
            color: #c4c6cc;
            font-size: 10px;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        /* ==========================================
           SECTION 2 — VALUE
        ========================================== */

        .q-value {
            padding: 25px 0 110px;
        }

        .q-value-intro {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: 80px;
            align-items: end;
            margin-bottom: 42px;
        }

        .q-value-kicker {
            margin-bottom: 13px;
            color: var(--purple);
            font-size: 11px;
            font-weight: 850;
            letter-spacing: .13em;
            text-transform: uppercase;
        }

        .q-value-title {
            max-width: 620px;
            margin: 0;
            font-size: clamp(34px, 4.5vw, 55px);
            line-height: 1.02;
            letter-spacing: -.06em;
            font-weight: 850;
        }

        .q-value-description {
            max-width: 520px;
            margin: 0;
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .q-value-grid {
            display: grid;
            grid-template-columns: 1.35fr .82fr .82fr;
            gap: 13px;
        }

        .q-value-card {
            min-width: 0;
            min-height: 265px;
            padding: 27px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 22px;
            overflow: hidden;
        }

        .q-value-card-main {
            background: var(--purple);
            color: #fff;
        }

        .q-value-card-light {
            background: #fff;
            border: 1px solid var(--line);
        }

        .q-value-card-dark {
            background: var(--black);
            color: #fff;
        }

        .q-value-icon {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            font-size: 19px;
        }

        .q-value-card-main .q-value-icon {
            background: rgba(255,255,255,.15);
        }

        .q-value-card-light .q-value-icon {
            background: var(--purple-light);
            color: var(--purple);
        }

        .q-value-card-dark .q-value-icon {
            background: rgba(255,255,255,.1);
        }

        .q-value-title-card {
            margin: 25px 0 8px;
            font-size: 21px;
            line-height: 1.15;
            letter-spacing: -.035em;
            font-weight: 800;
        }

        .q-value-text-card {
            max-width: 390px;
            margin: 0;
            color: #71737a;
            font-size: 13px;
            line-height: 1.6;
        }

        .q-value-card-main .q-value-text-card {
            color: rgba(255,255,255,.76);
        }

        .q-value-card-dark .q-value-text-card {
            color: #999ca5;
        }

        .q-value-arrow {
            align-self: flex-end;
            font-size: 25px;
        }

        /* ==========================================
           SECTION 3 — CATALOG
        ========================================== */

        .q-catalog {
            padding: 105px 0 115px;
            background: var(--black);
            color: #fff;
        }

        .q-catalog-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 46px;
        }

        .q-catalog-kicker {
            margin-bottom: 13px;
            color: var(--lime);
            font-size: 11px;
            font-weight: 850;
            letter-spacing: .13em;
            text-transform: uppercase;
        }

        .q-catalog-title {
            max-width: 720px;
            margin: 0;
            font-size: clamp(38px, 5vw, 62px);
            line-height: .98;
            letter-spacing: -.065em;
            font-weight: 850;
        }

        .q-catalog-description {
            max-width: 390px;
            margin: 0;
            color: #92959e;
            font-size: 14px;
            line-height: 1.65;
        }

        .q-category-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 10px;
        }

        .q-category {
            min-width: 0;
            min-height: 177px;
            padding: 19px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            border: 1px solid #2c2f36;
            border-radius: 16px;
            background: #1a1c21;
            transition: transform .2s ease, background .2s ease;
        }

        .q-category:hover {
            transform: translateY(-4px);
            background: #22252c;
        }

        .q-category:nth-child(5n + 1) .q-category-icon {
            background: var(--lime);
            color: var(--black);
        }

        .q-category:nth-child(5n + 2) .q-category-icon {
            background: var(--orange);
            color: var(--black);
        }

        .q-category:nth-child(5n + 3) .q-category-icon {
            background: var(--blue);
            color: var(--black);
        }

        .q-category:nth-child(5n + 4) .q-category-icon {
            background: var(--pink);
            color: var(--black);
        }

        .q-category:nth-child(5n + 5) .q-category-icon {
            background: var(--purple);
            color: #fff;
        }

        .q-category-icon {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            font-size: 16px;
        }

        .q-category-title {
            max-width: 190px;
            margin: 18px 0 0;
            overflow-wrap: anywhere;
            font-size: 14px;
            line-height: 1.3;
            letter-spacing: -.015em;
            font-weight: 730;
        }

        .q-category-number {
            position: absolute;
            right: 14px;
            bottom: 12px;
            color: #30333a;
            font-size: 26px;
            line-height: 1;
            font-weight: 850;
            letter-spacing: -.06em;
        }

        /* ==========================================
           SECTION 4 — WHY
        ========================================== */

        .q-why {
            padding: 115px 0;
        }

        .q-why-grid {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: 90px;
            align-items: start;
        }

        .q-why-title {
            max-width: 530px;
            margin: 0;
            font-size: clamp(36px, 4.5vw, 55px);
            line-height: 1;
            letter-spacing: -.06em;
            font-weight: 850;
        }

        .q-why-text {
            max-width: 500px;
            margin: 20px 0 0;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
        }

        .q-why-list {
            border-top: 1px solid var(--line);
        }

        .q-why-item {
            padding: 25px 0;
            display: grid;
            grid-template-columns: 45px 1fr;
            gap: 20px;
            border-bottom: 1px solid var(--line);
        }

        .q-why-number {
            color: var(--purple);
            font-size: 11px;
            font-weight: 850;
            letter-spacing: .08em;
        }

        .q-why-item h3 {
            margin: 0 0 7px;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: -.025em;
        }

        .q-why-item p {
            max-width: 500px;
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.6;
        }

        /* ==========================================
           FAQ
        ========================================== */

        .q-faq {
            padding: 105px 0;
            background: #fff;
        }

        .q-faq-grid {
            display: grid;
            grid-template-columns: .7fr 1.3fr;
            gap: 90px;
        }

        .q-faq-title {
            margin: 0;
            font-size: clamp(37px, 4.5vw, 55px);
            line-height: 1;
            letter-spacing: -.06em;
            font-weight: 850;
        }

        .q-faq-description {
            max-width: 350px;
            margin: 17px 0 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .q-faq-list {
            border-top: 1px solid var(--line);
        }

        .q-faq-item {
            border-bottom: 1px solid var(--line);
        }

        .q-faq-button {
            width: 100%;
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            border: 0;
            background: transparent;
            color: var(--text);
            text-align: left;
            font-size: 15px;
            font-weight: 750;
        }

        .q-faq-button i {
            flex-shrink: 0;
            color: #888a90;
        }

        .q-faq-answer {
            padding: 0 50px 23px 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.7;
        }

        /* ==========================================
           CTA
        ========================================== */

        .q-cta {
            padding: 80px 0;
        }

        .q-cta-box {
            position: relative;
            overflow: hidden;
            padding: 70px;
            border-radius: 28px;
            background: var(--lime);
            color: var(--black);
        }

        .q-cta-box::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            right: -170px;
            top: -260px;
            border-radius: 50%;
            background: rgba(98,93,240,.2);
        }

        .q-cta-box::after {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            right: 180px;
            bottom: -210px;
            border-radius: 50%;
            background: rgba(255,255,255,.28);
        }

        .q-cta-content {
            position: relative;
            z-index: 2;
            max-width: 760px;
        }

        .q-cta-title {
            margin: 0;
            font-size: clamp(38px, 5vw, 61px);
            line-height: .98;
            letter-spacing: -.065em;
            font-weight: 850;
        }

        .q-cta-text {
            max-width: 570px;
            margin: 18px 0 28px;
            color: rgba(17,18,22,.62);
            font-size: 15px;
            line-height: 1.65;
        }

        .q-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 18px;
            border-radius: 11px;
            background: var(--black);
            color: #fff;
            font-size: 13px;
            font-weight: 750;
        }

        .q-cta-button:hover {
            background: #292b30;
            color: #fff;
        }

        /* ==========================================
           FOOTER
        ========================================== */


.q-footer{
    padding:65px 0 28px;
    background:var(--black);
    color:#fff
}

        .q-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr);
    gap: 80px;
    padding-bottom: 48px;
}

        .q-footer-description {
            max-width: 300px;
            margin: 15px 0 0;
            color: #85878d;
            font-size: 12px;
            line-height: 1.65;
        }

        .q-footer-heading {
            margin: 0 0 14px;
            font-size: 11px;
            font-weight: 850;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .q-footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .q-footer-link {
            color: #777980;
            font-size: 12px;
        }

        .q-footer-link:hover {
            color: var(--text);
        }

        .q-footer-bottom {
            padding-top: 23px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-top: 1px solid var(--line);
            color: #999ba0;
            font-size: 10px;
        }

        /* ==========================================
           RESPONSIVE
        ========================================== */

        @media (max-width: 1100px) {
            .q-hero-grid {
                grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
                gap: 45px;
            }

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

            .q-value-intro {
                gap: 45px;
            }

            .q-footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .8fr);
}
        }

        @media (max-width: 900px) {
            .q-nav-link {
                display: none;
            }

            .q-hero {
                padding: 65px 0 75px;
            }

            .q-hero-grid {
                grid-template-columns: 1fr;
            }

            .q-hero-content {
                max-width: 760px;
            }

            .q-hero-art {
                max-width: 700px;
            }

            .q-value-intro,
            .q-why-grid,
            .q-faq-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .q-value-grid {
                grid-template-columns: 1fr 1fr;
            }

            .q-value-card-main {
                grid-column: span 2;
            }

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

            .q-catalog-head {
                display: block;
            }

            .q-catalog-description {
                margin-top: 18px;
            }

            .q-footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .q-container {
                width: min(100% - 28px, 1240px);
            }

            .q-header-inner {
                min-height: 68px;
            }

            .q-nav-button {
                width: 42px;
                height: 42px;
                padding: 0;
                justify-content: center;
            }

            .q-nav-button span {
                display: none;
            }

            .q-hero {
                padding: 50px 0 65px;
            }

            .q-hero h1 {
                font-size: 45px;
            }

            .q-hero-lead {
                font-size: 15px;
            }

            .q-search {
                min-height: 58px;
                padding-left: 15px;
            }

            .q-search button {
                width: 44px;
                height: 44px;
            }

            .q-art-card {
                min-height: 430px;
                padding: 14px;
                border-radius: 22px;
            }

            .q-art-inner {
                min-height: 400px;
                padding: 19px;
            }

            .q-art-bottom {
                grid-template-columns: 1fr;
            }

            .q-art-chip {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 11px;
            }

            .q-art-chip-icon {
                margin: 0;
            }

            .q-value {
                padding-bottom: 75px;
            }

            .q-value-grid {
                grid-template-columns: 1fr;
            }

            .q-value-card-main {
                grid-column: auto;
            }

            .q-value-card {
                min-height: 220px;
            }

            .q-catalog {
                padding: 75px 0;
            }

            .q-category-grid {
                grid-template-columns: 1fr 1fr;
            }

            .q-category {
                min-height: 150px;
                padding: 16px;
            }

            .q-category-title {
                font-size: 13px;
            }

            .q-why,
            .q-faq {
                padding: 75px 0;
            }

            .q-cta {
                padding: 55px 0;
            }

            .q-cta-box {
                padding: 40px 25px;
                border-radius: 22px;
            }

            .q-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .q-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* ==========================================
   CONTACT PAGE
========================================== */

.q-contact {
    padding: 90px 0 110px;
}

.q-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
    gap: 80px;
    align-items: start;
}

.q-contact-intro {
    min-width: 0;
    padding-top: 8px;
}

.q-contact-title {
    max-width: 650px;
    margin: 0;
    font-size: clamp(44px, 5.7vw, 72px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 850;
}

.q-contact-lead {
    max-width: 570px;
    margin: 27px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.q-contact-text {
    max-width: 570px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.q-contact-text p {
    margin: 0 0 14px;
}

.q-contact-text p:last-child {
    margin-bottom: 0;
}

.q-contact-note {
    max-width: 470px;
    margin-top: 38px;
    padding-top: 22px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.q-contact-note-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--purple-light);
    color: var(--purple);
}

.q-contact-card {
    min-width: 0;
    padding: 31px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(20, 21, 25, .07);
}

.q-contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.q-contact-field {
    display: flex;
    flex-direction: column;
}

.q-contact-field label {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
}

.q-contact-field input,
.q-contact-field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #deddd9;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    line-height: 1.45;
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.q-contact-field input {
    min-height: 50px;
}

.q-contact-field textarea {
    min-height: 185px;
    resize: vertical;
}

.q-contact-field input::placeholder,
.q-contact-field textarea::placeholder {
    color: #999ba1;
}

.q-contact-field input:focus,
.q-contact-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(98, 93, 240, .11);
}

.q-contact-field input.is-invalid,
.q-contact-field textarea.is-invalid {
    border-color: #d96b6b;
}

.q-contact-field input.is-invalid:focus,
.q-contact-field textarea.is-invalid:focus {
    border-color: #d96b6b;
    box-shadow: 0 0 0 3px rgba(217, 107, 107, .11);
}

.q-contact-error {
    margin-top: 7px;
    color: #bd4d4d;
    font-size: 11px;
    line-height: 1.45;
}

.q-contact-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.q-contact-privacy input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 2px 0 0;
    accent-color: var(--purple);
}

.q-contact-privacy input.is-invalid {
    outline: 1px solid #d96b6b;
    outline-offset: 1px;
}

.q-contact-privacy label {
    cursor: pointer;
}

.q-contact-privacy a {
    color: var(--purple-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.q-contact-privacy a:hover {
    color: var(--purple);
}

.q-contact-privacy-error {
    margin-top: -14px;
}

.q-contact-button {
    min-height: 50px;
    padding: 12px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 11px;
    background: var(--black);
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition:
        background .18s ease,
        transform .18s ease;
}

.q-contact-button:hover {
    background: #2a2c31;
    color: #fff;
    transform: translateY(-1px);
}

.q-contact-button:active {
    transform: translateY(0);
}

.q-contact-alert {
    margin-bottom: 23px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
}

.q-contact-alert i {
    flex-shrink: 0;
    margin-top: 1px;
}

.q-contact-alert-success {
    background: var(--purple-light);
    border: 1px solid rgba(98, 93, 240, .16);
    color: var(--text);
}

.q-contact-alert-success i {
    color: var(--purple);
}

.q-contact-alert-error {
    background: #fff4f4;
    border: 1px solid rgba(189, 77, 77, .16);
    color: #8f4141;
}

.q-contact-alert-error i {
    color: #bd4d4d;
}

.q-contact-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================
   CONTACT PAGE — RESPONSIVE
========================================== */

@media (max-width: 900px) {
    .q-contact {
        padding: 65px 0 80px;
    }

    .q-contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .q-contact-intro {
        max-width: 760px;
    }

    .q-contact-card {
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .q-contact {
        padding: 50px 0 65px;
    }

    .q-contact-title {
        font-size: 45px;
    }

    .q-contact-lead {
        margin-top: 20px;
        font-size: 15px;
    }

    .q-contact-card {
        padding: 22px;
        border-radius: 18px;
    }

    .q-contact-form {
        gap: 18px;
    }

    .q-contact-field textarea {
        min-height: 160px;
    }
}