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

:root {
    --bg-dark: #0d0221;
    --bg-purple: #1a0533;
    --accent-gold: #d4a84b;
    --accent-gold-light: #f0d078;
    --accent-gold-dark: #b8922e;
    --text-primary: #f0eaff;
    --text-secondary: #c4b5d9;
    --text-muted: #8a7aa3;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(212, 168, 75, 0.15);
    --gradient-1: #0d0221;
    --gradient-2: #1a0533;
    --gradient-3: #2d1b69;
    --gradient-4: #0d0221;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(45, 27, 105, 0.6), transparent),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212, 168, 75, 0.08), transparent),
        radial-gradient(ellipse 50% 60% at 20% 90%, rgba(90, 40, 160, 0.3), transparent);
    animation: gradientShift 20s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}

@keyframes gradientShift {
    0%,
    100% {
        background:
            radial-gradient(ellipse 80% 60% at 50% -20%, rgba(45, 27, 105, 0.6), transparent),
            radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212, 168, 75, 0.08), transparent),
            radial-gradient(ellipse 50% 60% at 20% 90%, rgba(90, 40, 160, 0.3), transparent);
    }
    25% {
        background:
            radial-gradient(ellipse 80% 60% at 60% -10%, rgba(60, 35, 130, 0.5), transparent),
            radial-gradient(ellipse 60% 50% at 70% 90%, rgba(212, 168, 75, 0.1), transparent),
            radial-gradient(ellipse 50% 60% at 30% 80%, rgba(100, 50, 180, 0.25), transparent);
    }
    50% {
        background:
            radial-gradient(ellipse 80% 60% at 40% -30%, rgba(35, 20, 80, 0.7), transparent),
            radial-gradient(ellipse 60% 50% at 60% 70%, rgba(212, 168, 75, 0.06), transparent),
            radial-gradient(ellipse 50% 60% at 40% 95%, rgba(80, 35, 150, 0.35), transparent);
    }
    75% {
        background:
            radial-gradient(ellipse 80% 60% at 30% -15%, rgba(50, 30, 110, 0.55), transparent),
            radial-gradient(ellipse 60% 50% at 90% 85%, rgba(212, 168, 75, 0.09), transparent),
            radial-gradient(ellipse 50% 60% at 10% 85%, rgba(70, 30, 140, 0.3), transparent);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(13, 2, 33, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 75, 0.1);
    transition: background 0.3s;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

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

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

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

.nav a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--bg-dark);
    box-shadow: 0 4px 25px rgba(212, 168, 75, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 168, 75, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(212, 168, 75, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.2);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 168, 75, 0.3);
    background: rgba(212, 168, 75, 0.05);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__positioning {
    margin-top: 50px;
    padding: 20px 24px;
    border-left: 2px solid var(--accent-gold);
    background: rgba(212, 168, 75, 0.04);
    border-radius: 0 12px 12px 0;
}

.hero__positioning p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.hero__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.hero__photo {
    max-width: 264px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 80px rgba(90, 40, 160, 0.3);
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.hero__about {
    text-align: center;
    max-width: 380px;
}

.hero__about-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
    line-height: 1.4;
}

.hero__about-list {
    list-style: none;
    text-align: left;
}

.hero__about-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.hero__about-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Glow orbs */
.hero__orbs {
    position: absolute;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 168, 75, 0.15);
    top: -100px;
    right: -100px;
    animation: float 12s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(90, 40, 160, 0.2);
    bottom: -50px;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section__label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.section__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAINS (Кому подойдёт) ===== */
.pains {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(212, 168, 75, 0.06);
    border-bottom: 1px solid rgba(212, 168, 75, 0.06);
}

.pains__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.pain-card {
    padding: 28px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: default;
}

.pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 75, 0.3);
    box-shadow: 0 12px 40px rgba(212, 168, 75, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.pain-card__icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
}

.pain-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pain-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== BENEFITS (Что вы получите) ===== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.benefit-card {
    padding: 32px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 75, 0.3);
    box-shadow: 0 12px 40px rgba(212, 168, 75, 0.08);
}

.benefit-card__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 8px;
}

.benefit-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FORMAT ===== */
.format {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(212, 168, 75, 0.06);
    border-bottom: 1px solid rgba(212, 168, 75, 0.06);
}

.format__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.format-card {
    padding: 32px 20px;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.format-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 75, 0.3);
}

.format-card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.format-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.format-card__text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.format__steps {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 32px 36px;
    border-radius: 16px;
    background: rgba(212, 168, 75, 0.04);
    border: 1px solid rgba(212, 168, 75, 0.15);
}

.format__steps-list {
    list-style: none;
    counter-reset: step;
}

.format__steps-list li {
    counter-increment: step;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.5;
}

.format__steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== STATUS REINFORCEMENT ===== */
.status {
    text-align: center;
    padding: 60px 0;
}

.status__block {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 32px;
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 20px;
    background: rgba(212, 168, 75, 0.03);
}

.status__text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

.status__text strong {
    color: var(--accent-gold);
    font-style: normal;
}

/* ===== SERVICES CARDS ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 75, 0.3);
    box-shadow: 0 16px 48px rgba(212, 168, 75, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.service-card__price {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 75, 0.2);
    margin-bottom: 16px;
}

.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__features {
    list-style: none;
    margin-bottom: 24px;
}

.service-card__features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-card__features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.7rem;
}

/* ===== CASE ===== */
.case {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(212, 168, 75, 0.06);
    border-bottom: 1px solid rgba(212, 168, 75, 0.06);
}

.case__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.case__before,
.case__after {
    padding: 36px 32px;
    border-radius: 20px;
}

.case__before {
    background: rgba(255, 70, 70, 0.04);
    border: 1px solid rgba(255, 70, 70, 0.15);
}

.case__after {
    background: rgba(212, 168, 75, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.2);
}

.case__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.case__before .case__label {
    color: #ff6b6b;
}

.case__after .case__label {
    color: var(--accent-gold);
}

.case__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.case__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== REVIEWS ===== */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.review-card {
    padding: 28px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 75, 0.25);
    box-shadow: 0 8px 30px rgba(212, 168, 75, 0.06);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 168, 75, 0.2);
}

.review-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-card__service {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.review-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* ===== CTA SECTION ===== */
.cta {
    text-align: center;
    padding: 100px 0;
}

.cta__block {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(212, 168, 75, 0.15);
    background: radial-gradient(ellipse at center, rgba(212, 168, 75, 0.04), transparent);
}

.cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* ===== FORM ===== */
.form {
    max-width: 480px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 18px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s;
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__input option {
    color: #0088cc;
}
.form__input option:disabled {
    color: #666;
}

.form__btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

.form__social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.form__social a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-primary);
}

.form__social .tg {
    background: #0088cc;
}

.form__social .wa {
    background: #25d366;
}

.form__social .max {
    background: #6c3bd4;
}

.form__social a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ===== FLASH MESSAGES ===== */
.flash {
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.2);
    color: var(--accent-gold-light);
    margin-bottom: 24px;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(212, 168, 75, 0.06);
    text-align: center;
}

.footer__text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social a:hover {
    background: rgba(212, 168, 75, 0.1);
    color: var(--accent-gold);
    border-color: rgba(212, 168, 75, 0.2);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__image {
        order: -1;
    }

    .hero__photo {
        max-width: 216px;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .case__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .format__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 2, 33, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    .nav.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav a {
        font-size: 1.2rem;
    }

    .burger {
        display: flex;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__btns {
        flex-direction: column;
    }

    .hero__btns .btn {
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .cta__block {
        padding: 40px 20px;
    }

    .cta__title {
        font-size: 1.6rem;
    }

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

    .form__social a {
        justify-content: center;
    }

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

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

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

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