:root {
    --bg: #f5f0f3;
    --bg-soft: #f1ebf1;
    --panel: #ffffff;
    --panel-strong: #f4eef4;
    --text: #1f172b;
    --text-soft: #4d4554;
    --primary: #ff3da0;
    --primary-strong: #e92b95;
    --secondary: #f7dfe8;
    --accent: #b178ee;
    --dark: #1f0d2e;
    --purple-deep: #2a0d4f;
    --purple-mid: #4b1d72;
    --purple-soft: #8e2d8d;
    --purple-strong: #4a0c68;
    --shadow: 0 22px 48px rgba(32, 16, 42, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --section-space: 110px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.section-soft {
    background: rgba(255, 255, 255, 0.62);
}

.section-light {
    background: #f7f1f4;
    color: var(--purple-strong);
}

.section-purple {
    background: linear-gradient(90deg, var(--purple-deep) 0%, #4a145d 34%, #5b1a78 62%, #7d2f87 100%);
    color: #fff;
}

.pricing-image-section {
    padding: 0 !important;
    background: transparent;
}

.pricing-image-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.pricing-image {
    display: block;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    height: auto;
    object-fit: cover;
    object-position: center;
}

.section-purple .section-heading h2,
.section-purple .feature-card h3,
.section-purple .step-card h3,
.section-purple .service-card h3,
.section-purple .trainer-body h3,
.section-purple .schedule-copy h3,
.section-purple .contact-list p,
.section-purple .form-label,
.section-purple .section-heading,
.section-purple .section-heading h2,
.section-purple .hero-copy h1,
.section-purple .hero-copy p,
.section-purple .mini-label,
.section-purple .floating-card strong,
.section-purple .floating-card small {
    color: #fff;
}

.section-purple .eyebrow-dark,
.section-purple .section-heading .eyebrow,
.section-purple .step-number,
.section-purple .feature-icon,
.section-purple .service-card .service-icon {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

.section-purple .feature-card,
.section-purple .step-card,
.section-purple .service-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.section-purple .feature-card h3,
.section-purple .step-card h3,
.section-purple .service-card h3,
.section-purple .service-card .card-title,
.section-purple .service-card .service-price,
.section-purple .service-card .service-meta,
.section-purple .feature-card p,
.section-purple .step-card p,
.section-purple .service-card p {
    color: #fff;
}

.section-purple .service-card .service-price {
    color: #ffb4dc;
}

.section-purple .feature-icon,
.section-purple .service-card .service-icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffb4dc;
}

.section-light .section-heading h2,
.section-light .feature-card h3,
.section-light .step-card h3,
.section-light .service-card h3,
.section-light .trainer-body h3,
.section-light .schedule-copy h3,
.section-light .review-card p,
.section-light .contact-list p,
.section-light .form-label,
.section-light .section-heading {
    color: var(--purple-strong);
}

.section-light .eyebrow-dark {
    background: rgba(255, 61, 160, 0.08);
    color: var(--primary-strong);
}

.section-light .feature-card,
.section-light .step-card,
.section-light .service-card,
.section-light .trainer-card,
.section-light .shadow-panel,
.section-light .schedule-card,
.section-light .review-card {
    background: rgba(255,255,255,0.85);
    border-color: rgba(111, 62, 123, 0.08);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

section {
    position: relative;
}

.section {
    padding: var(--section-space) 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 240, 247, 0.7));
}

.container {
    max-width: 1460px;
    padding-left: 32px;
    padding-right: 32px;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(36, 16, 46, 0.68);
    box-shadow: 0 8px 24px rgba(20, 10, 25, 0.12);
}

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

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: #fff;
    font-size: 2.1rem;
    letter-spacing: -0.05em;
    line-height: 1;
    transition: color 0.25s ease;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
    color: var(--primary-strong);
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.12));
}

.navbar-nav {
    gap: 18px;
}

.mobile-menu-close {
    display: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    padding: 10px 12px !important;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    border-radius: 999px;
    padding: 10px 20px !important;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 1);
    color: #fff;
    box-shadow: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 122px;
    padding-bottom: 30px;
    background:
        linear-gradient(90deg, rgba(55, 13, 90, 0.96) 0%, rgba(74, 19, 93, 0.94) 22%, rgba(91, 26, 119, 0.93) 53%, rgba(119, 46, 130, 0.95) 100%),
        radial-gradient(circle at 18% 18%, rgba(255, 166, 219, 0.18), transparent 18%),
        radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.08), transparent 22%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: -8% -8% -10% 38%;
    background-image: url('../img/upscalemedia-transformed 2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.72;
    z-index: 0;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    filter: blur(16px);
    z-index: 0;
    right: -110px;
    bottom: -120px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 24px;
}

.hero-copy {
    max-width: 700px;
    padding-top: 10px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(4px);
}

.eyebrow-brand {
    color: #ffd5ef;
}

.eyebrow-dark {
    background: rgba(239, 92, 163, 0.08);
    color: var(--primary-strong);
}

.hero-copy h1 {
    margin-top: 52px;
    max-width: 700px;
    font-size: clamp(5.1rem, 6.5vw, 10.2rem);
    line-height: 0.83;
    letter-spacing: -0.09em;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 10px 30px rgba(33, 9, 44, 0.12);
}

.hero-copy h1 .hero-accent {
    color: #f9d0ea;
}

.hero-copy p {
    margin-top: 52px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.18rem, 1.8vw, 1.5rem);
    max-width: 640px;
    line-height: 1.45;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin-top: 32px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 18px 34px;
    font-weight: 700;
    border: none;
    transition: all 0.25s ease;
    font-size: clamp(1.15rem, 1.8vw, 2rem);
    line-height: 1.2;
    white-space: nowrap;
    min-height: 76px;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    box-shadow: 0 18px 35px rgba(255, 58, 157, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 22px 40px rgba(255, 58, 157, 0.38);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 1fr));
    gap: 24px 22px;
    margin-top: 42px;
    align-items: start;
    width: 100%;
    max-width: 1020px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 180px;
    min-width: 0;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff4db3;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.35);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-copy {
    color: #fff;
    font-size: clamp(1.06rem, 1.35vw, 1.55rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
    font-weight: 700;
    max-width: 260px;
    min-width: 0;
    word-break: break-word;
}

.benefit-copy span {
    display: block;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    min-height: 700px;
    margin-left: auto;
    opacity: 1;
}

.visual-main {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    padding: 0;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background: transparent;
}

.hero-image {
    width: 100%;
    max-width: 920px;
    height: 100%;
    min-height: 700px;
    object-fit: contain;
    object-position: right center;
    display: block;
    opacity: 1;
    transform: translateX(68px) scale(1.22);
    filter: grayscale(0.08) contrast(1.18) saturate(0.9) drop-shadow(0 40px 34px rgba(23, 8, 28, 0.22));
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 28px rgba(24, 12, 28, 0.12);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.96;
}

.mini-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 700;
}

.floating-card strong {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.2;
}

.floating-card small {
    color: var(--text-soft);
}

.card-one {
    right: 24px;
    bottom: 130px;
}

.card-two {
    left: 14px;
    bottom: 26px;
}

.section-heading {
    margin-bottom: 46px;
    text-align: center;
}

.left-aligned {
    text-align: left;
}

.compact-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--purple-strong);
}

.section-purple .section-heading h2 {
    color: #fff;
}

.feature-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(130, 108, 148, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: 0 18px 32px rgba(31, 22, 28, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.step-card:hover,
.service-card:hover,
.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(31, 22, 28, 0.08);
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 92, 163, 0.12), rgba(177, 140, 228, 0.18));
    color: var(--primary-strong);
    font-size: 2rem;
    margin-bottom: 18px;
}

.feature-card h3,
.step-card h3,
.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p,
.step-card p,
.service-card p,
.review-card p,
.contact-list p {
    color: var(--text-soft);
}

.stats-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(245, 233, 245, 0.9));
    padding: 36px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    text-align: center;
}

.stat-item {
    color: var(--purple-strong);
}

.stat-item .counter {
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--purple-strong);
}

.stat-item p {
    margin: 0;
    color: rgba(74, 12, 104, 0.82);
    letter-spacing: 0.02em;
}

.service-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(130, 108, 148, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 22px 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .service-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    background: linear-gradient(135deg, rgba(239, 92, 163, 0.12), rgba(177, 140, 228, 0.18));
    color: var(--primary-strong);
}

.service-card .card-title {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card .service-price {
    display: block;
    margin-top: 16px;
    color: var(--primary-strong);
    font-size: 1.4rem;
    font-weight: 800;
}

.service-card .service-meta {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.trainer-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(239, 92, 163, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.trainer-photo-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5d9e7, #ebebff);
}

.trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0.08em;
}

.trainer-body {
    padding: 22px 18px 20px;
}

.trainer-body h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.trainer-body p {
    color: var(--text-soft);
    margin: 0;
}

.step-card {
    height: 100%;
    background: rgba(255,255,255,0.76);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid rgba(239, 92, 163, 0.08);
    box-shadow: 0 18px 32px rgba(31, 22, 28, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-strong);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.schedule-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(247, 215, 233, 0.7));
    border: 1px solid rgba(239, 92, 163, 0.1);
    border-radius: var(--radius-xl);
    padding: 38px 36px;
    box-shadow: 0 24px 46px rgba(31,22,28,0.05);
}

.schedule-copy h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 12px;
}

.schedule-copy p {
    margin: 0;
    color: var(--text-soft);
    max-width: 620px;
}

.listok-widget-container {
    width: 100%;
    min-width: 0;
}

.listok-widget-container iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
}

.schedule-full-link {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

#reviewCarousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0 28px;
}

.carousel-inner {
    min-height: 250px;
}

.review-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,240,247,0.8));
    border-radius: var(--radius-xl);
    padding: 38px 32px;
    border: 1px solid rgba(239, 92, 163, 0.08);
    box-shadow: 0 24px 45px rgba(31,22,28,0.04);
    position: relative;
}

.review-card::before {
    content: "“";
    position: absolute;
    left: 22px;
    top: 16px;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(239, 92, 163, 0.2);
    font-weight: 800;
}

.section-purple .review-card p,
.section-purple .review-card h5 {
    color: var(--dark);
}

.review-card p {
    font-size: clamp(1.14rem, 2vw, 1.6rem);
    color: var(--dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

.review-card .review-author,
.review-card h5 {
    margin-top: 18px;
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 700;
}

.review-stars {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: #f7b500;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 46px;
    height: 46px;
    top: calc(50% - 23px);
    opacity: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 12px 24px rgba(31,22,28,0.08);
}

.carousel-control-prev {
    left: 8px;
}

.carousel-control-next {
    right: 8px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0.2);
}

.booking-section {
    padding-bottom: 110px;
}

.shadow-panel {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(239, 92, 163, 0.08);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    box-shadow: 0 24px 50px rgba(31,22,28,0.05);
    height: 100%;
}

.form-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    border: 1px solid rgba(27, 27, 31, 0.08);
    border-radius: 14px;
    min-height: 54px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.85);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: rgba(239, 92, 163, 0.75);
    box-shadow: 0 0 0 0.2rem rgba(239, 92, 163, 0.12);
    background: #fff;
}

.listok-lead-form {
    width: 100%;
    color: var(--dark);
}

.listok-lead-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}

.listok-lead-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
}

.listok-lead-form input,
.listok-lead-form select,
.listok-lead-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid rgba(74, 12, 104, 0.24);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(31, 22, 28, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.listok-lead-form textarea {
    min-height: 110px;
    resize: vertical;
}

.listok-lead-form input:focus,
.listok-lead-form select:focus,
.listok-lead-form textarea:focus {
    outline: 0;
    border-color: rgba(239, 92, 163, 0.9);
    box-shadow: 0 0 0 3px rgba(239, 92, 163, 0.14), inset 0 1px 2px rgba(31, 22, 28, 0.03);
    background: #fff;
}

.listok-lead-form button,
.listok-lead-form input[type="submit"] {
    width: 100%;
    min-height: 54px;
    padding: 12px 20px;
    border: 0;
    border-radius: 14px;
    background: var(--primary-strong);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
}

.small-placeholder {
    height: 260px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.contact-list p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.04rem;
}

.contact-list i {
    color: var(--primary-strong);
    font-size: 1.2rem;
}

.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--purple-deep) 0%, #320d58 100%);
    color: rgba(255,255,255,0.82);
    padding: 52px 0 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1fr 1.3fr;
    gap: 38px;
    align-items: start;
}

.footer-block h3 {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.94);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
}

.footer-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-block li,
.footer-block a,
.footer-copy {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.96rem;
    line-height: 1.6;
}

.footer-block a:hover {
    color: #fff;
}

.footer-copy {
    margin-top: 22px;
}

.footer-form-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trial-input-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
    min-height: 52px;
}

.trial-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 16px;
    outline: none;
    min-width: 0;
}

.trial-input-wrap input::placeholder {
    color: rgba(255,255,255,0.55);
}

.trial-input-wrap button {
    width: 54px;
    height: 52px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.trial-input-wrap button:hover {
    opacity: 0.95;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    background: rgba(239, 92, 163, 0.2);
    transform: translateY(-2px);
}

.footer-requisites {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-requisites h3 {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.requisites-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem;
    line-height: 1.7;
}

.floating-chat {
    position: fixed;
    right: 28px;
    bottom: 18px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0388f, #ff7ab7);
    color: white;
    border-radius: 18px 18px 18px 0;
    padding: 0 0 0 16px;
    box-shadow: 0 15px 30px rgba(240, 56, 143, 0.32);
    z-index: 20;
    overflow: visible;
    cursor: pointer;
    transition: background 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.floating-chat span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.floating-chat button {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 18px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

.floating-chat-toggle {
    cursor: inherit;
    flex-shrink: 0;
    transition: margin-left 0.25s ease;
}

.floating-chat > span {
    display: block;
    max-width: 160px;
    overflow: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-chat-links {
    position: absolute;
    right: 0;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    cursor: default;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-chat-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 8px 18px rgba(31, 23, 43, 0.2);
    font-size: 1.35rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.floating-chat-links a:hover,
.floating-chat-links a:focus-visible {
    color: #fff;
    transform: scale(1.08);
}

.floating-chat-links a:nth-child(2) {
    background: #229ed9;
}

.floating-chat-links .floating-chat-max {
    background: transparent;
    font-size: 1.1rem;
    font-weight: 800;
    overflow: hidden;
    padding: 0;
}

.floating-chat-links .floating-chat-max img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-chat.is-expanded {
    overflow: visible;
    border-radius: 18px;
    padding-left: 0;
}

.floating-chat.is-expanded > span {
    max-width: 0;
    opacity: 0;
    transform: scale(0.7);
}

.floating-chat.is-expanded .floating-chat-toggle {
    margin-left: 0;
}

.floating-chat.is-expanded .floating-chat-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 20px;
    width: min(960px, calc(100% - 32px));
    padding: 16px 18px 16px 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
    transform: translate(-50%, calc(100% + 26px));
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-notice.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.cookie-notice p {
    margin: 0;
    color: #2d2d2d;
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookie-notice a {
    color: var(--primary-strong);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-accept {
    flex: 0 0 auto;
    min-width: 58px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(239, 92, 163, 0.3);
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

body:has(.cookie-notice.is-visible) .floating-chat {
    bottom: 120px;
}

.modal-content {
    border: none;
    border-radius: 24px;
}

.modal-header {
    border: none;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 800;
    color: var(--dark);
}

.modal-body {
    padding-top: 10px;
}

.alert {
    border-radius: 14px;
    border: none;
}

@media (max-width: 991.98px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-metrics {
        justify-content: center;
    }

    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 767.98px) {
    .section {
        padding: 86px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .hero-section {
        padding-top: 110px;
    }

    .hero-inner {
        display: block;
        width: 100%;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .hero-copy h1 {
        margin-top: 36px;
        max-width: 100%;
        font-size: clamp(3.4rem, 15vw, 5.2rem);
        letter-spacing: -0.07em;
    }

    .hero-copy p {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        min-height: 58px;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .schedule-card .btn {
        width: 100%;
        max-width: 100%;
        min-height: 58px;
        padding: 14px 20px;
        font-size: 1rem;
        white-space: normal;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        max-width: 100%;
        margin-top: 34px;
    }

    .benefit-item {
        min-height: 0;
        justify-content: flex-start;
    }

    .benefit-copy {
        font-size: 1rem;
        letter-spacing: 0;
    }

    .visual-main {
        height: 460px;
    }

    .floating-card {
        transform: scale(0.9);
    }

    .card-one {
        right: 8px;
        bottom: 80px;
    }

    .card-two {
        left: 8px;
        bottom: 12px;
    }

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

    .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Старинный классный блок для странных страниц в проекте */
.document-page {
    min-height: 100vh;
    background: #f7f7f7;
    padding: 120px 0 80px;
}

.document-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    padding: 40px 48px;
}

.document-box h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: #111;
}

.document-box .document-meta {
    color: #666;
    margin-bottom: 26px;
}

.document-box p,
.document-box li {
    color: #333;
    line-height: 1.8;
    margin-bottom: 14px;
}

.document-box ul {
    padding-left: 24px;
}

.document-preview {
    width: 100%;
    height: 760px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f4f4f4;
    margin-bottom: 24px;
}

.document-box .back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    #navbar,
    section,
    .site-footer {
        width: 100%;
        max-width: 100%;
    }

    #navbar .nav-shell {
        position: relative;
        min-height: 76px;
    }

    .container,
    .container-fluid {
        width: 100%;
        max-width: 100%;
    }

    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
    }

    #navbar .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        width: auto;
        margin: 0;
        padding: 12px 16px 16px;
        background: rgba(35, 14, 48, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(15, 7, 22, 0.3);
        backdrop-filter: blur(14px);
        z-index: 10;
        transform: translateY(0);
        transition: transform 0.25s ease-out;
    }

    #navbar .navbar-collapse.collapsing {
        opacity: 0;
        visibility: visible;
        transform: translateY(-10px);
        transition: height 0.25s ease, opacity 0.18s ease-in, transform 0.25s ease-in;
    }

    #navbar .navbar-collapse.collapsing.is-closing {
        opacity: 0;
        visibility: visible;
        transform: translateY(-10px);
        transition: height 0.25s ease, opacity 0.25s ease-out, transform 0.25s ease-out;
    }

    #navbar .navbar-collapse.collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.18s ease 0.18s, transform 0.25s ease-out;
    }

    #navbar .mobile-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin: 0 0 10px auto;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 0.95rem;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    #navbar .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: rotate(90deg);
    }

    #navbar .nav-link {
        padding: 12px 10px !important;
        color: #fff;
        font-size: 1.08rem;
        border-radius: 10px;
        transition: color 0.2s ease, background 0.2s ease;
    }

    #navbar .nav-link:hover,
    #navbar .nav-link:focus {
        color: #ffd5ef;
        background: rgba(255, 255, 255, 0.1);
    }

    #hero {
        height: auto;
        min-height: 100svh;
        padding: 100px 16px 64px;
        background-attachment: scroll;
    }

    #hero h1 {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
        line-height: 1.08;
    }

    #hero p {
        max-width: 430px;
        margin-right: auto;
        margin-left: auto;
        font-size: 1.15rem !important;
        line-height: 1.45;
    }

    #hero .btn {
        width: 100%;
        max-width: 320px;
    }

    section:not(#hero) {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    section:not(:first-child)::before {
        height: 30px;
    }

    .bg-light::after,
    .bg-primary::after {
        height: 20px;
        bottom: -20px;
    }

    .card:hover {
        transform: none;
        box-shadow: none;
    }

    .review-card {
        padding: 30px 22px;
        border-left-width: 3px;
    }

    .review-card p {
        font-size: 1.05rem !important;
        line-height: 1.55;
    }

    .site-footer {
        padding-top: 60px;
    }

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

    .footer-block h3 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .footer-block ul {
        gap: 9px;
    }

    .footer-requisites {
        margin-top: 38px;
    }

    .requisites-list {
        display: grid;
        gap: 8px;
    }

    .floating-chat {
        right: 12px;
        bottom: 12px;
        padding-left: 12px;
    }

    .floating-chat > span {
        display: none;
    }

    .floating-chat-links {
        bottom: 60px;
    }

    body:has(.cookie-notice.is-visible) .floating-chat {
        bottom: 118px;
    }

    .cookie-notice {
        align-items: flex-start;
        gap: 10px;
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 14px 12px 14px 16px;
    }

    .cookie-notice p {
        min-width: 0;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .cookie-accept {
        min-width: 54px;
        padding: 7px 10px;
    }

    .document-page {
        padding: 90px 12px 50px;
    }

    .document-box {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .document-box .btn {
        width: 100%;
    }

    .document-preview {
        height: 70vh;
        min-height: 480px;
    }

    .counter {
        font-size: 2rem;
    }
}