:root {
    --bg: #0f1724;
    --card: #0b1220;
    --accent: #f6a6c3;
    --accent-2: #9ad3ff;
    --muted: #9aa5b1;
    --glass: rgba(255, 255, 255, 0.06);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, #071024 0%, #081226 45%, #071226 100%);
    color: #e6eef6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10202f;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.brand h1 {
    margin: 0;
    font-size: 18px
}

.brand p {
    margin: 0;
    font-size: 12px;
    color: var(--muted)
}

.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden
}

.kicker {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px
}

h2 {
    font-family: 'Playfair Display', serif;
    margin: 12px 0 8px;
    font-size: 32px
}

p.lead {
    color: var(--muted);
    margin: 0 0 18px
}

.hero-cta {
    display: flex;
    gap: 12px
}

.btn {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    color: #06202b;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(246, 166, 195, 0.12);
    transition: transform .28s ease, box-shadow .28s ease
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(154, 211, 255, 0.12)
}

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
}

.model-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

section {
    margin-bottom: 38px
}

.card {
    background: var(--card);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 6px 20px rgba(3, 6, 12, 0.6)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.become h3 {
    font-size: 22px;
    margin: 0 0 8px
}

.become p {
    margin: 0;
    color: var(--muted)
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

label {
    font-size: 13px;
    color: var(--muted)
}

input[type=text],
input[type=tel] {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: transparent;
    color: inherit;
    outline: none
}

input:focus {
    box-shadow: 0 6px 20px rgba(154, 211, 255, 0.06);
    border-color: rgba(154, 211, 255, 0.14)
}

.hint {
    font-size: 12px;
    color: var(--muted)
}

.success {
    background: linear-gradient(90deg, #9df0d3, #9ad3ff);
    color: #082029;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700
}

footer {
    display: flex;
    justify-content: right;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--muted);
    font-size: 14px
}

@media (max-width:880px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 220px
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start
    }
}

.floaty {
    position: absolute;
    filter: blur(18px);
    opacity: 0.9;
    transform: translateY(0);
    animation: float 8s ease-in-out infinite
}

.floaty--a {
    width: 260px;
    height: 260px;
    right: -60px;
    top: -40px;
    background: radial-gradient(circle at 30% 30%, rgba(246, 166, 195, 0.28), rgba(246, 166, 195, 0.08));
}

.floaty--b {
    width: 200px;
    height: 200px;
    left: -70px;
    bottom: -50px;
    background: radial-gradient(circle at 70% 70%, rgba(154, 211, 255, 0.16), rgba(154, 211, 255, 0.04));
    animation-duration: 10s
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-12px) rotate(3deg)
    }

    100% {
        transform: translateY(0) rotate(0deg)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(8px);
    animation: reveal .9s ease forwards
}

.fade-in.delay {
    animation-delay: .18s
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: none
    }
}

.pill {
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: #e6eef6;
    border: 1px solid
}

.phone-row {
    display: flex;
    gap: 8px
}

.phone-row input[type=tel] {
    flex: 1
}

.slider_image {
    min-width: 170px;
    height: 250px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: .5s ease
}

.slider_image:hover {
    transform: scale(1.05)
}

#slider {
    overflow-x: hidden;
    display: flex;
    justify-content: center
}

#slider li,
#slider ul {
    list-style: none
}

.slider {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100vw;
    padding: 0;
    transition: .5s ease
}

.image {
    margin: 20px 20px 0 0;
    width: 250px;
    border-radius: 20px
}

.feedback>div {
    display: flex
}

.main-logo {
    width: 350px;
    border-radius: 50%;
    opacity: 0.8
}
