
        /* =========================
           RESET & BASE
        ========================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --black: #070707;
            --black-light: #0e0d12;
            --dark: #15121c;
            --purple: #7c3aed;
            --purple-light: #a855f7;
            --purple-dark: #4c1d95;
            --white: #ffffff;
            --gray: #a1a1aa;
            --border: rgba(168, 85, 247, 0.18);
            --container: 1240px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        button {
            font: inherit;
        }

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


        /* =========================
           BUTTONS
        ========================= */

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: 0.3s ease;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .btn-primary {
            background: linear-gradient(
                135deg,
                var(--purple),
                var(--purple-light)
            );
            color: var(--white);
            box-shadow: 0 10px 35px rgba(124, 58, 237, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 45px rgba(124, 58, 237, 0.5);
        }

        .btn-outline {
            border-color: var(--border);
            background: rgba(255, 255, 255, 0.03);
            color: var(--white);
        }

        .btn-outline:hover {
            background: rgba(124, 58, 237, 0.12);
            border-color: var(--purple-light);
        }


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

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;

            background: rgba(7, 7, 7, 0.88);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .logo {
            display: inline-flex;
            flex-direction: column;
            line-height: 1;
            min-width: max-content;
        }

        .logo-main {
            font-size: 25px;
            font-weight: 700;
            letter-spacing: 0.08em;
        }

        .logo-main span {
            color: var(--purple-light);
        }

        .logo-sub {
            margin-top: 6px;
            font-size: 8px;
            color: var(--gray);
            letter-spacing: 0.35em;
            text-transform: uppercase;
        }


        /* Navigation */

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

        .nav a {
            color: var(--gray);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: var(--white);
        }


        /* Header Actions */

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-actions .btn {
            padding: 11px 16px;
            font-size: 13px;
        }


        /* City Selector */

        .city-selector {
            position: relative;
        }

        .city-button {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--white);
            padding: 10px 14px;
            border-radius: 999px;
            cursor: pointer;
            font-size: 13px;
        }

        .city-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;

            width: 190px;
            padding: 10px;

            background: #111016;
            border: 1px solid var(--border);
            border-radius: 16px;

            opacity: 0;
            visibility: hidden;
            transform: translateY(-5px);
            transition: 0.25s ease;
        }

        .city-selector:hover .city-dropdown,
        .city-selector:focus-within .city-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .city-dropdown a {
            display: block;
            padding: 10px 12px;
            border-radius: 10px;
            color: var(--gray);
            font-size: 14px;
            transition: 0.2s;
        }

        .city-dropdown a:hover,
        .city-dropdown a.active {
            color: var(--white);
            background: rgba(124, 58, 237, 0.15);
        }





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

        .hero {
            position: relative;
            min-height: 100vh;

            display: flex;
            align-items: center;

            padding: 150px 0 90px;

            background:
                radial-gradient(
                    circle at 80% 30%,
                    rgba(124, 58, 237, 0.22),
                    transparent 30%
                ),
                radial-gradient(
                    circle at 20% 80%,
                    rgba(76, 29, 149, 0.18),
                    transparent 30%
                );
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;

            background-image:
                linear-gradient(
                    rgba(255,255,255,0.025) 1px,
                    transparent 1px
                ),
                linear-gradient(
                    90deg,
                    rgba(255,255,255,0.025) 1px,
                    transparent 1px
                );

            background-size: 60px 60px;
            mask-image: linear-gradient(
                to bottom,
                black,
                transparent
            );

            pointer-events: none;
        }

        .hero-content {
            position: relative;
            max-width: 850px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            margin-bottom: 25px;

            color: var(--purple-light);
            font-size: 13px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .hero-label::before {
            content: "";
            width: 35px;
            height: 1px;
            background: var(--purple-light);
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 105px);
            line-height: 0.98;
            letter-spacing: -0.055em;
            margin-bottom: 30px;
            max-width: 950px;
        }

        .hero h1 span {
            background: linear-gradient(
                135deg,
                #ffffff,
                var(--purple-light)
            );

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text {
            max-width: 590px;
            color: var(--gray);
            font-size: 18px;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-city {
            margin-top: 70px;

            color: var(--gray);
            font-size: 13px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .hero-city strong {
            color: var(--white);
            font-weight: 500;
        }


        /* =========================
           MODELS
        ========================= */

        .models {
            padding: 110px 0;
            background:
                linear-gradient(
                    180deg,
                    var(--black),
                    var(--black-light)
                );
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 30px;
            margin-bottom: 50px;
        }

        .section-label {
            color: var(--purple-light);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 12px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 65px);
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .section-description {
            max-width: 380px;
            color: var(--gray);
            font-size: 15px;
        }


        /* Models Grid */

        .models-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .model-card {
            position: relative;
            overflow: hidden;

            background: #0d0c10;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;

            transition: transform 0.35s ease,
                        border-color 0.35s ease;
        }

        .model-card:hover {
            transform: translateY(-6px);
            border-color: rgba(168, 85, 247, 0.45);
        }

        .model-image {
            position: relative;
            height: 400px;
            overflow: hidden;
            background: #18151f;
        }

        .model-image::after {
            content: "";
            position: absolute;
            inset: 0;

            background: linear-gradient(
                to top,
                rgba(0,0,0,0.7),
                transparent 45%
            );

            pointer-events: none;
        }

        .model-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;

            transition: transform 0.5s ease;
        }

        .model-card:hover .model-image img {
            transform: scale(1.05);
        }

        .model-content {
            padding: 20px;
        }

        .model-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 8px;
        }

        .model-name {
            font-size: 22px;
            font-weight: 600;
        }

        .model-age {
            color: var(--purple-light);
            font-size: 13px;
        }

        .model-city {
            color: var(--gray);
            font-size: 13px;
            margin-bottom: 18px;
        }

        .model-links {
            display: flex;
            gap: 8px;
        }

        .model-links a {
            flex: 1;
            text-align: center;

            padding: 10px;
            border-radius: 10px;

            font-size: 12px;
            font-weight: 600;

            transition: 0.25s ease;
        }

        .model-profile {
            margin-bottom: 8px;

            width: 100%;
            text-align: center;

            padding: 11px;
            border-radius: 10px;

            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);

            color: var(--white);
            font-size: 12px;

            transition: 0.25s;
        }

        .model-profile:hover {
            background: rgba(124, 58, 237, 0.15);
        }

        .telegram-link {
            background: rgba(124, 58, 237, 0.18);
            color: var(--purple-light);
        }

        .whatsapp-link {
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
        }

        .model-links a:hover {
            transform: translateY(-2px);
        }


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

        .footer {
            padding: 70px 0 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: #050505;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 50px;
            padding-bottom: 60px;
        }

        .footer-text {
            max-width: 360px;
            margin-top: 20px;
            color: var(--gray);
            font-size: 14px;
        }

        .footer-title {
            margin-bottom: 20px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--gray);
        }

        .footer-menu {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-menu a {
            font-size: 14px;
            color: var(--white);
            transition: 0.25s;
        }

        .footer-menu a:hover {
            color: var(--purple-light);
        }

        .footer-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        .footer-bottom {
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);

            display: flex;
            justify-content: space-between;
            gap: 20px;

            color: #6b6b73;
            font-size: 12px;
        }





/* Mobile Menu */




        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 12px;
            cursor: pointer;
            color: var(--white);
        }















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

        @media (max-width: 1100px) {

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

            .nav {
                gap: 18px;
            }

            .header-actions .btn {
                display: none;
            }

        }


        @media (max-width: 850px) {

            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav {
                position: absolute;
                top: 82px;
                left: 20px;
                right: 20px;

                display: none;
                flex-direction: column;
                align-items: stretch;

                padding: 20px;

                background: #100e15;
                border: 1px solid var(--border);
                border-radius: 18px;
            }

            .nav.active {
                display: flex;
            }

            .nav a {
                padding: 12px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

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

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

        }


        @media (max-width: 600px) {

            .container {
                width: min(calc(100% - 28px), var(--container));
            }

            .header-inner {
                min-height: 72px;
                gap: 10px;
            }

            .logo-main {
                font-size: 20px;
            }

            .logo-sub {
                font-size: 7px;
            }

            .city-button {
                padding: 8px 10px;
                font-size: 11px;
            }

            .menu-toggle {
                width: 40px;
                height: 40px;
            }

            .nav {
                top: 72px;
                left: 14px;
                right: 14px;
            }

            .hero {
                padding-top: 130px;
                min-height: 90vh;
            }

            .hero h1 {
                font-size: clamp(46px, 14vw, 72px);
            }

            .hero-text {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-city {
                margin-top: 45px;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .models {
                padding: 80px 0;
            }

            .models-grid {
                grid-template-columns: 1fr;
            }

            .model-image {
                height: 400px;
            }

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

            .footer-bottom {
                flex-direction: column;
            }

        }




/* =========================
MODEL SELECTION CTA
========================== */

.selection-cta {
padding: 80px 0;
background: var(--black-light);
}

.selection-box {
position: relative;


display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;

padding: 60px;

overflow: hidden;

background:
    radial-gradient(
        circle at 85% 50%,
        rgba(124, 58, 237, 0.25),
        transparent 35%
    ),
    #111016;

border: 1px solid var(--border);
border-radius: 28px;


}

.selection-box::before {
content: "";
position: absolute;


width: 300px;
height: 300px;

top: -150px;
right: -80px;

border-radius: 50%;

border: 1px solid rgba(168, 85, 247, 0.2);


}

.selection-content {
position: relative;
max-width: 700px;
}

.selection-title {
margin-bottom: 20px;


font-size: clamp(35px, 5vw, 62px);
line-height: 1;
letter-spacing: -0.04em;


}

.selection-content p {
max-width: 600px;
color: var(--gray);
font-size: 16px;
}

.selection-action {
position: relative;
flex-shrink: 0;
}

/* =========================
SERVICES
========================== */

.services {
padding: 110px 0;
background: var(--black);
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}

.service-card {
min-height: 360px;


display: flex;
flex-direction: column;

padding: 32px;

background: #0d0c10;

border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 20px;

transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;


}

.service-card:hover {
transform: translateY(-5px);
border-color: rgba(168, 85, 247, 0.4);


background:
    linear-gradient(
        180deg,
        rgba(124, 58, 237, 0.09),
        #0d0c10
    );


}

.service-number {
margin-bottom: auto;


color: var(--purple-light);

font-size: 12px;
letter-spacing: 0.15em;


}

.service-card h3 {
margin-bottom: 14px;


font-size: 25px;
line-height: 1.15;
font-weight: 500;


}

.service-card p {
margin-bottom: 28px;


color: var(--gray);
font-size: 14px;


}

.service-link {
display: inline-flex;
align-items: center;


width: max-content;

color: var(--white);

font-size: 13px;
font-weight: 600;

transition: 0.25s ease;


}

.service-link:hover {
color: var(--purple-light);
}

/* =========================
PROCESS
========================== */

.process {
padding: 110px 0;


background:
    radial-gradient(
        circle at 50% 100%,
        rgba(76, 29, 149, 0.15),
        transparent 40%
    ),
    var(--black-light);


}

.process-steps {
display: grid;


grid-template-columns:
    1fr
    auto
    1fr
    auto
    1fr
    auto
    1fr;

align-items: stretch;

margin-top: 60px;


}

.process-step {
padding: 30px;


min-height: 260px;

background: rgba(255, 255, 255, 0.025);

border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 18px;


}

.process-number {
display: block;


margin-bottom: 50px;

color: var(--purple-light);

font-size: 12px;
letter-spacing: 0.18em;


}

.process-step h3 {
margin-bottom: 12px;


font-size: 22px;
font-weight: 500;


}

.process-step p {
color: var(--gray);
font-size: 14px;
}

.process-arrow {
display: flex;
align-items: center;
justify-content: center;


width: 45px;

color: var(--purple-light);

font-size: 22px;


}

.process-action {
display: flex;
justify-content: center;


margin-top: 50px;


}

/* =========================
ABOUT
========================== */

.about {
padding: 120px 0;
background: var(--black);
}

.about-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 100px;
}

.about-intro {
position: sticky;
top: 130px;
align-self: start;
}

.about-intro h2 {
font-size: clamp(42px, 5vw, 70px);
line-height: 0.98;
letter-spacing: -0.05em;
}

.about-content {
max-width: 650px;
}

.about-content p {
margin-bottom: 24px;


color: var(--gray);

font-size: 16px;
line-height: 1.8;


}

.about-content .about-lead {
color: var(--white);


font-size: 23px;
line-height: 1.5;


}

.about-values {
margin-top: 60px;


border-top: 1px solid rgba(255, 255, 255, 0.08);


}

.about-value {
display: grid;
grid-template-columns: 60px 1fr;


gap: 15px;

padding: 28px 0;

border-bottom: 1px solid rgba(255, 255, 255, 0.08);


}

.about-value > span {
color: var(--purple-light);


font-size: 12px;
letter-spacing: 0.15em;


}

.about-value h3 {
margin-bottom: 8px;


font-size: 21px;
font-weight: 500;


}

.about-value p {
grid-column: 2;


margin: 0;

font-size: 14px;


}

/* =========================
SEO CONTENT
========================== */

.seo-content {
padding: 100px 0;


background:
    linear-gradient(
        180deg,
        var(--black-light),
        #070707
    );


}

.seo-box {
padding: 60px;


background: #0d0c10;

border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 28px;


}

.seo-header {
max-width: 800px;


padding-bottom: 40px;

border-bottom: 1px solid rgba(255, 255, 255, 0.07);


}

.seo-header h2 {
margin-bottom: 15px;


font-size: clamp(36px, 5vw, 60px);
line-height: 1;
letter-spacing: -0.04em;


}

.seo-header p {
color: var(--gray);
}

/* SEO Typography */

.seo-text {
position: relative;


margin-top: 45px;

color: var(--gray);

transition: max-height 0.7s ease;


}

.seo-text.collapsed {
max-height: 430px;
overflow: hidden;
}

.seo-text.collapsed::after {
content: "";


position: absolute;

left: 0;
right: 0;
bottom: 0;

height: 150px;

background:
    linear-gradient(
        to bottom,
        rgba(13, 12, 16, 0),
        #0d0c10
    );

pointer-events: none;


}

.seo-text.expanded {
max-height: none;
}

/* Headings */

.seo-text h2,
.seo-text h3,
.seo-text h4,
.seo-text h5,
.seo-text h6 {
color: var(--white);


font-weight: 500;
line-height: 1.2;


}

.seo-text h2 {
margin: 45px 0 20px;


font-size: 38px;


}

.seo-text h3 {
margin: 38px 0 18px;


font-size: 30px;


}

.seo-text h4 {
margin: 32px 0 16px;


font-size: 25px;


}

.seo-text h5 {
margin: 28px 0 14px;


font-size: 20px;


}

.seo-text h6 {
margin: 24px 0 12px;


font-size: 16px;
letter-spacing: 0.08em;
text-transform: uppercase;


}

/* Paragraphs */

.seo-text p {
margin-bottom: 22px;


font-size: 16px;
line-height: 1.8;


}

.seo-text strong {
color: var(--white);
}

/* Lists */

.seo-text ul,
.seo-text ol {
margin:
0
0
25px
22px;


padding-left: 20px;


}

.seo-text li {
margin-bottom: 10px;


padding-left: 8px;

line-height: 1.7;


}

.seo-text li::marker {
color: var(--purple-light);
}

/* Quote */

.seo-text blockquote {
margin: 35px 0;


padding: 25px 30px;

color: var(--white);

font-size: 20px;
line-height: 1.5;

border-left: 3px solid var(--purple-light);

background:
    rgba(124, 58, 237, 0.08);

border-radius: 0 14px 14px 0;


}

/* Links */

.seo-text a {
color: var(--purple-light);
text-decoration: underline;
text-underline-offset: 4px;
}

/* Tables */

.table-wrapper {
width: 100%;


overflow-x: auto;

margin: 25px 0 35px;

border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 14px;


}

.seo-text table {
width: 100%;


min-width: 600px;

border-collapse: collapse;


}

.seo-text th,
.seo-text td {
padding: 18px;


text-align: left;

border-bottom:
    1px solid rgba(255, 255, 255, 0.07);


}

.seo-text th {
color: var(--white);


background:
    rgba(124, 58, 237, 0.08);

font-size: 13px;
font-weight: 600;


}

.seo-text td {
color: var(--gray);


font-size: 14px;


}

/* SEO Toggle */

.seo-action {
display: flex;
justify-content: center;


margin-top: 25px;


}

.seo-toggle {
padding: 13px 25px;


border: 1px solid var(--border);
border-radius: 999px;

background:
    rgba(124, 58, 237, 0.08);

color: var(--white);

cursor: pointer;

font-size: 13px;
font-weight: 600;

transition: 0.25s ease;


}

.seo-toggle:hover {
background:
rgba(124, 58, 237, 0.2);


border-color:
    var(--purple-light);


}

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

@media (max-width: 1100px) {


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

.process-steps {
    grid-template-columns:
        1fr
        auto
        1fr;

    gap: 15px;
}

.process-arrow:nth-of-type(3) {
    display: none;
}

.about-grid {
    gap: 60px;
}


}

@media (max-width: 850px) {


.selection-box {
    flex-direction: column;
    align-items: flex-start;

    padding: 45px;
}

.process-steps {
    grid-template-columns: 1fr;
}

.process-arrow {
    width: 100%;
    height: 40px;

    transform: rotate(90deg);
}

.about-grid {
    grid-template-columns: 1fr;
}

.about-intro {
    position: static;
}

.seo-box {
    padding: 40px;
}


}

@media (max-width: 600px) {


.selection-cta,
.services,
.process,
.about,
.seo-content {
    padding: 75px 0;
}

.selection-box {
    padding: 30px;
    border-radius: 20px;
}

.selection-action {
    width: 100%;
}

.selection-action .btn {
    width: 100%;
}

.services-grid {
    grid-template-columns: 1fr;
}

.service-card {
    min-height: 310px;
}

.process-step {
    min-height: auto;
}

.about-content .about-lead {
    font-size: 19px;
}

.about-value {
    grid-template-columns: 45px 1fr;
}

.seo-box {
    padding: 25px 20px;
    border-radius: 20px;
}

.seo-text {
    margin-top: 30px;
}

.seo-text.collapsed {
    max-height: 350px;
}

.seo-text h2 {
    font-size: 30px;
}

.seo-text h3 {
    font-size: 25px;
}

.seo-text h4 {
    font-size: 21px;
}

.seo-text p {
    font-size: 15px;
}

.seo-text blockquote {
    padding: 20px;

    font-size: 17px;
}


}




/* =========================
   CONTACTS PAGE
========================== */

.contacts-page {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 160px 0 100px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(124, 58, 237, 0.2),
            transparent 35%
        ),
        var(--black);
}

.contacts-box {
    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 80px;

    padding: 70px;

    background: #0d0c10;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 30px;
}

.contacts-content h1 {
    max-width: 700px;

    margin-bottom: 25px;

    font-size: clamp(48px, 6vw, 85px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.contacts-content p {
    max-width: 650px;

    margin-bottom: 20px;

    color: var(--gray);

    font-size: 17px;
    line-height: 1.8;
}

.contacts-note {
    font-size: 14px !important;
    color: var(--purple-light) !important;
}

.contacts-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 24px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.025);

    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(168, 85, 247, 0.5);

    background:
        rgba(124, 58, 237, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(124, 58, 237, 0.18);

    color: var(--purple-light);

    font-size: 13px;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info strong {
    font-size: 18px;
}

.contact-info small {
    color: var(--gray);
}

.contact-arrow {
    margin-left: auto;

    color: var(--purple-light);

    font-size: 22px;
}


/* =========================
   REVIEWS
========================== */

.reviews-page {
    padding: 150px 0 110px;
    background: var(--black);
}

.reviews-header {
    max-width: 750px;

    margin-bottom: 60px;
}

.reviews-header h1 {
    margin-bottom: 20px;

    font-size: clamp(48px, 7vw, 85px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.reviews-header p {
    color: var(--gray);
    font-size: 17px;
}

.reviews-grid {
    display: grid;

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

    gap: 18px;
}

.review-card {
    display: flex;
    flex-direction: column;

    min-height: 270px;

    padding: 28px;

    background: #0d0c10;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 20px;
}

.review-rating {
    margin-bottom: 25px;

    color: var(--purple-light);

    letter-spacing: 0.12em;
}

.review-card > p {
    margin-bottom: auto;

    color: var(--gray);

    font-size: 15px;
    line-height: 1.75;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 30px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.review-author strong {
    font-size: 14px;
}

.review-author span {
    color: var(--gray);
    font-size: 12px;
}


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

.faq-page {
    padding: 150px 0 110px;
    background: var(--black-light);
}

.faq-header {
    max-width: 800px;

    margin-bottom: 60px;
}

.faq-header h1 {
    margin-bottom: 20px;

    font-size: clamp(48px, 7vw, 85px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.faq-header p {
    color: var(--gray);
    font-size: 17px;
}

.faq-list {
    max-width: 950px;
}

.faq-item {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 25px 0;

    list-style: none;

    cursor: pointer;

    color: var(--white);

    font-size: 19px;
    font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    border:
        1px solid rgba(168, 85, 247, 0.4);

    color: var(--purple-light);

    transition: 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);

    background:
        rgba(124, 58, 237, 0.15);
}

.faq-answer {
    max-width: 750px;

    padding:
        0
        55px
        25px
        0;
}

.faq-answer p {
    color: var(--gray);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   ABOUT PAGE
========================== */

.about-page {
    padding: 150px 0 110px;
    background: var(--black);
}

.about-page-hero {
    max-width: 1050px;

    margin-bottom: 100px;
}

.about-page-hero h1 {
    margin-bottom: 30px;

    font-size: clamp(52px, 7vw, 105px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-page-lead {
    max-width: 800px;

    color: var(--gray);

    font-size: 20px;
    line-height: 1.7;
}

.about-page-grid {
    display: grid;

    grid-template-columns:
        280px minmax(0, 1fr);

    gap: 100px;
}

.about-page-sidebar {
    align-self: start;

    position: sticky;
    top: 130px;
}

.about-stat {
    padding: 25px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.about-stat strong {
    display: block;

    margin-bottom: 5px;

    color: var(--purple-light);

    font-size: 35px;
}

.about-stat span {
    color: var(--gray);
    font-size: 13px;
}

.about-page-content {
    max-width: 800px;
}

.about-page-content h2 {
    margin:
        0
        0
        22px;

    color: var(--white);

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.about-page-content h2:not(:first-child) {
    margin-top: 70px;
}

.about-page-content p {
    margin-bottom: 22px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.9;
}

.about-page-content blockquote {
    margin: 55px 0;

    padding: 30px;

    color: var(--white);

    font-size: 23px;
    line-height: 1.5;

    border-left:
        3px solid var(--purple-light);

    background:
        rgba(124, 58, 237, 0.08);
}

.about-principles {
    margin-top: 45px;
}

.about-principle {
    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.about-principle:last-child {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.about-principle > span {
    color: var(--purple-light);

    font-size: 12px;
    letter-spacing: 0.12em;
}

.about-principle h3 {
    margin-bottom: 8px;

    font-size: 21px;
}

.about-principle p {
    margin: 0;

    font-size: 14px;
}

.about-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 80px;

    padding: 40px;

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.18),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid var(--border);

    border-radius: 22px;
}

.about-page-cta span {
    color: var(--purple-light);

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-page-cta h3 {
    margin-top: 8px;
    font-size: 25px;
}


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

@media (max-width: 1000px) {

    .contacts-box {
        grid-template-columns: 1fr;
    }

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

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-page-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;
    }

}


@media (max-width: 650px) {

    .contacts-page,
    .reviews-page,
    .faq-page,
    .about-page {
        padding: 120px 0 70px;
    }

    .contacts-box {
        padding: 30px 22px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        font-size: 16px;
    }

    .faq-answer {
        padding-right: 0;
    }

    .about-page-hero {
        margin-bottom: 60px;
    }

    .about-page-sidebar {
        grid-template-columns: 1fr;
    }

    .about-page-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;
    }

    .about-page-cta .btn {
        width: 100%;
    }

}



/* =========================================
   LEGAL PAGES
========================================= */

.legal-page {
    padding: 150px 0 110px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(124, 58, 237, 0.12),
            transparent 25%
        ),
        var(--black);
}

.legal-page-header {
    max-width: 900px;
    margin-bottom: 90px;
}

.legal-page-header h1 {
    margin-bottom: 18px;

    font-size: clamp(50px, 7vw, 95px);
    line-height: 0.98;
    letter-spacing: -0.055em;

    color: var(--white);
}

.legal-updated {
    margin-bottom: 35px;

    color: var(--purple-light);

    font-size: 13px;
    letter-spacing: 0.08em;
}

.legal-intro {
    max-width: 780px;

    color: var(--gray);

    font-size: 19px;
    line-height: 1.8;
}


/* LAYOUT */

.legal-layout {
    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr);

    gap: 100px;
}


/* SIDEBAR */

.legal-sidebar {
    position: sticky;

    top: 130px;

    align-self: start;
}

.legal-sidebar-title {
    display: block;

    margin-bottom: 20px;

    color: var(--white);

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.legal-navigation {
    display: flex;
    flex-direction: column;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.legal-navigation a {
    padding: 13px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    color: var(--gray);

    font-size: 13px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.legal-navigation a:hover {
    padding-left: 8px;

    color: var(--purple-light);
}


/* CONTENT */

.legal-content {
    max-width: 850px;
}

.legal-content section:not(.legal-contact) {
    position: relative;

    margin-bottom: 80px;

    padding-bottom: 80px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.legal-number {
    display: block;

    margin-bottom: 20px;

    color: var(--purple-light);

    font-size: 12px;

    letter-spacing: 0.16em;
}

.legal-content h2 {
    margin-bottom: 24px;

    color: var(--white);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;

    letter-spacing: -0.03em;
}

.legal-content h3 {
    margin:
        40px
        0
        16px;

    color: var(--white);

    font-size: 22px;
}

.legal-content p {
    margin-bottom: 20px;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.9;
}


/* LISTS */

.legal-content ul,
.legal-content ol {
    margin:
        25px
        0
        30px
        0;

    padding: 0;

    list-style: none;
}

.legal-content li {
    position: relative;

    margin-bottom: 14px;

    padding-left: 25px;

    color: var(--gray);

    font-size: 15px;
    line-height: 1.7;
}

.legal-content ul li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--purple-light);
}


/* CONTACT BLOCK */

.legal-contact {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    margin-top: 20px;

    padding: 45px;

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.18),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid rgba(168, 85, 247, 0.2);

    border-radius: 24px;
}

.legal-contact h2 {
    margin:
        8px
        0
        10px;

    font-size: 30px;
}

.legal-contact p {
    margin: 0;
}


/* TABLET */

@media (max-width: 1000px) {

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-navigation {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 30px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .legal-page {
        padding: 120px 0 70px;
    }

    .legal-page-header {
        margin-bottom: 60px;
    }

    .legal-intro {
        font-size: 16px;
    }

    .legal-navigation {
        grid-template-columns: 1fr;
    }

    .legal-content section:not(.legal-contact) {
        margin-bottom: 55px;

        padding-bottom: 55px;
    }

    .legal-content p {
        font-size: 15px;
    }

    .legal-contact {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px;
    }

    .legal-contact .btn {
        width: 100%;
    }

}












/* =========================================
   MODEL PROFILE PAGE
========================================= */

.model-profile-page {
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(124, 58, 237, 0.12),
            transparent 30%
        ),
        #080808;

    color: #f5f5f5;
}


/* =========================================
   PROFILE SECTION
========================================= */

.model-profile {
    padding: 150px 0 120px;
}


/* =========================================
   BREADCRUMBS
========================================= */

.model-breadcrumbs {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 65px;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.model-breadcrumbs a {
    color:
        rgba(255, 255, 255, 0.5);

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.model-breadcrumbs a:hover {
    color: #a855f7;
}


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

.model-profile-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 70px;
}

.model-profile-header h1 {
    margin: 15px 0 0;

    color: #f5f5f5;

    font-size: clamp(60px, 9vw, 130px);

    line-height: 0.9;

    letter-spacing: -0.06em;
}

.model-profile-city {
    display: flex;
    flex-direction: column;

    gap: 8px;

    padding-bottom: 10px;

    text-align: right;
}

.model-profile-city span {
    color:
        rgba(255, 255, 255, 0.4);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.model-profile-city strong {
    color: #c084fc;

    font-size: 18px;

    font-weight: 500;
}


/* =========================================
   MAIN GRID
========================================= */

.model-profile-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);

    gap: 80px;

    align-items: start;
}


/* =========================================
   IMAGE
========================================= */

.model-profile-image {
    position: sticky;

    top: 110px;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #151515;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.model-profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.model-profile-image:hover img {
    transform: scale(1.03);
}


/* =========================================
   CONTENT
========================================= */

.model-profile-info {
    min-width: 0;
}


/* LABEL */

.profile-section-label {
    display: block;

    margin-bottom: 20px;

    color: #a855f7;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.16em;
}


/* DESCRIPTION */

.model-profile-description {
    margin-bottom: 65px;
	margin-top: 35px;
}

.model-profile-description h2 {
    margin:
        0
        0
        30px;

    color: #f5f5f5;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.model-profile-description p {
    max-width: 650px;

    margin-bottom: 18px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   CHARACTERISTICS
========================================= */

.model-characteristics {
    margin-bottom: 45px;
}


/* TABLE */

.model-profile-table {
    width: 100%;

    border-collapse: collapse;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.model-profile-table tr {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.model-profile-table th,
.model-profile-table td {
    padding: 19px 0;
}

.model-profile-table th {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 12px;

    font-weight: 400;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.model-profile-table td {
    color: #f5f5f5;

    font-size: 16px;

    font-weight: 500;

    text-align: right;
}


/* =========================================
   ACTIONS
========================================= */

.model-profile-actions {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.model-profile-actions .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;
}

.model-profile-actions .btn-primary {
    flex: 1;
}

.model-profile-actions .btn-primary span {
    font-size: 18px;

    transition:
        transform 0.25s ease;
}

.model-profile-actions .btn-primary:hover span {
    transform:
        translate(3px, -3px);
}


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

.model-profile-cta {
    padding:
        100px
        0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            180deg,
            #0a0a0a,
            #080808
        );
}

.model-profile-cta-content {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    padding: 60px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(124, 58, 237, 0.18),
            transparent 35%
        ),
        #0d0d0f;

    border:
        1px solid
        rgba(168, 85, 247, 0.18);
}

.model-profile-cta h2 {
    max-width: 650px;

    margin:
        18px
        0
        20px;

    color: #f5f5f5;

    font-size: clamp(34px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.model-profile-cta p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 16px;

    line-height: 1.8;
}

.model-profile-cta .btn {
    flex-shrink: 0;

    white-space: nowrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .model-profile-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .model-profile-image {
        position: relative;

        top: auto;

        height: 100%;
    }

    .model-profile-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .model-profile {
        padding:
            120px
            0
            80px;
    }

    .model-breadcrumbs {
        margin-bottom: 45px;

        font-size: 10px;
    }

    .model-profile-header {
        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 45px;
    }

    .model-profile-city {
        padding: 0;

        text-align: left;
    }

    .model-profile-grid {
        gap: 45px;
    }

    .model-profile-image {
        height: 100%;
    }

    .model-profile-description {
        margin-bottom: 50px;
    }

    .model-profile-description p {
        font-size: 15px;
    }

    .model-profile-actions {
        flex-direction: column;
    }

    .model-profile-actions .btn {
        width: 100%;
    }

    .model-profile-cta {
        padding:
            70px
            0;
    }

    .model-profile-cta-content {
        padding: 30px;
    }

    .model-profile-cta .btn {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .model-profile-image {
        height: 100%;
    }

    .model-profile-header h1 {
        font-size: 58px;
    }

    .model-profile-table th,
    .model-profile-table td {
        padding: 16px 0;
    }

}