:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --dark: #1e293b;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
	display: flex;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: #f97316;
    color: white;
}




.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.logo span {
    color: var(--primary);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.header-phone svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.header-phone-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--success);
    border-radius: 50%;
    text-decoration: none;
}

.header-phone-mobile svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

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

.header-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    color: var(--gray-700);
}

.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, #dbeafe 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    opacity: 0.08;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--gray-700);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--success);
}

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

.hero-cta-text {
    margin-top: 24px;
    font-size: 15px;
    color: var(--gray-500);
}

.hero-cta-text strong {
    color: var(--dark);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.hero-stats {
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

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

.hero-stat:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid var(--gray-200);
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.districts {
    padding: 40px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

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

.districts-inner p {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.brands {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.brands-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.brands-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-list {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-400);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.brand-item:hover {
    opacity: 1;
}

.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.service-list li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.service-price {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-price strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
}

.pricing-card.featured .pricing-label {
    background: var(--accent);
    color: var(--dark);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-description {
    color: var(--white);
}

.pricing-card.featured .pricing-from {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .pricing-amount strong {
    color: var(--white);
}

.pricing-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.pricing-from {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.pricing-amount strong {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-amount span {
    font-size: 16px;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.how-it-works {
    background: var(--gray-50);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--gray-300);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.advantages {
    background: var(--white);
}

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

.advantage {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-50);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.advantage:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.advantage h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

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

.reviews {
    background: var(--gray-50);
}

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

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    fill: var(--accent);
}

.review-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.review-date {
    font-size: 14px;
    color: var(--gray-500);
}

.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.seo-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.seo-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content ul {
    list-style: none;
    margin: 20px 0 30px 0;
}

.seo-content ul li {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
}

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-input {
    padding: 18px 24px;
    font-size: 16px;
    margin: 5px;
    margin-bottom: 14px;
    border: none;
    border-radius: 12px;
    width: 280px;
    outline: none;
}

.cta-input::placeholder {
    color: var(--gray-400);
}

.cta .btn-accent {
    padding: 18px 36px;
    font-size: 18px;
	    letter-spacing: 1px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    animation: fadeIn 0.5s ease;
}

.cta-success.show {
    display: flex;
}

.cta-success svg {
    width: 28px;
    height: 28px;
    color: var(--success);
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-input.error {
    border: 2px solid #ef4444;
}

.cta-input.valid {
    border: 2px solid var(--success);
}

.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    color: var(--white);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--gray-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    font-size: 15px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-400);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 30px 30px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #f97316;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f97316;
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

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

    .hero h1 {
        font-size: 42px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

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

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

    .steps::before {
        display: none;
    }

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

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

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

    .section-title {
        font-size: 32px;
    }

    .header-nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-phone-mobile {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brands-inner {
        flex-direction: column;
        text-align: center;
    }

    .brands-list {
        justify-content: center;
    }

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

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

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

    .cta h2 {
        font-size: 32px;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-input {
        width: 100%;
        max-width: 320px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-btn {
        display: flex;
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .seo-section {
        padding: 60px 0;
    }

    .seo-content h2 {
        font-size: 26px;
    }
}


.pricing-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pricing-table-wrapper:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-table-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    padding: 20px 24px 0 24px;
    margin-bottom: 0;
    background: var(--white);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.pricing-table-header {
    display: flex;
    justify-content: space-between;
    background: var(--gray-50);
    padding: 14px 24px;
    border-bottom: 2px solid var(--gray-200);
    font-weight: 700;
    color: var(--dark);
    margin-top: 12px;
}

.pricing-table-header .pricing-table-col:first-child,
.pricing-table-row .pricing-table-col:first-child {
    flex: 1;
    text-align: left;
}

.pricing-table-header .pricing-table-col:last-child,
.pricing-table-row .pricing-table-col:last-child {
    width: 120px;
    text-align: right;
}

.pricing-table-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s ease;
}

.pricing-table-row:hover {
    background: var(--gray-50);
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-col {
    color: var(--gray-700);
}

.pricing-table-col:first-child {
    font-weight: 500;
}

.pricing-table-col:last-child {
    font-weight: 600;
    color: var(--primary);
}

.pricing-note {
    text-align: center;
    padding: 20px;
    margin-top: 10px;
    background: var(--gray-50);
    border-radius: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-note p {
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-table-title {
        font-size: 20px;
        padding: 16px 20px 0 20px;
    }
    
    .pricing-table-header,
    .pricing-table-row {
        padding: 12px 16px;
    }
    
    .pricing-table-header .pricing-table-col:last-child,
    .pricing-table-row .pricing-table-col:last-child {
        width: 90px;
        font-size: 14px;
    }
    
    .pricing-table-col:first-child {
        font-size: 14px;
    }
}


.sltop__form_wrapper input, .sltop__form_wrapper select, .sltop__form_wrapper textarea{
	    border-radius: 5px;
}
/*Бегущая строка*/
 .free-master-ribbon {
        background: linear-gradient(115deg, #FFD700 0%, #FFCC00 100%);
        width: 100%;

        margin: 0 auto;
        box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 200, 0.7);
        overflow: hidden;
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-top-color: rgba(255, 245, 140, 0.9);
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }

    .free-master-ribbon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .free-master-marquee {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        padding: 18px 0;
        background: transparent;
    }

    .free-master-track {
        display: inline-block;
        white-space: nowrap;
        animation: freeMasterScroll 22s linear infinite;
        font-size: clamp(1.3rem, 5vw, 2.3rem);
        font-weight: 800;
        letter-spacing: 0.02em;
        color: #000000;
        text-shadow: 0 1px 0 rgba(255, 245, 100, 0.6);
        text-transform: uppercase;
        font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
        will-change: transform;
    }

    .free-master-track span {
        display: inline-block;
        padding: 0 70px;
        font-weight: 900;
        color: #111;
        background: transparent;
        letter-spacing: 1px;
    }

    @keyframes freeMasterScroll {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Адаптив */
    @media (max-width: 640px) {
        .free-master-marquee {
            padding: 12px 0;
        }
        .free-master-track span {
            padding: 0 40px;
        }
       
    }

    @media (max-width: 480px) {
        .free-master-track {
            font-size: 1.15rem;
            font-weight: 800;
        }
        .free-master-track span {
            padding: 0 28px;
        }
      
    }

    @media (min-width: 1600px) {
        .free-master-ribbon {
            #max-width: 1600px;
        }
        .free-master-track {
            font-size: 2rem;
        }
        .free-master-track span {
            padding: 0 90px;
        }
    }
	/*конец бегущей строки*/
	
	
	    /* Полноценная секция */
    .callback-section {
        width: 100%;

        padding: 2rem 0;
        background: linear-gradient(135deg, #f8faff 0%, #f0f4fe 100%);
        border-top: 1px solid rgba(0, 102, 179, 0.1);
        border-bottom: 1px solid rgba(0, 102, 179, 0.1);
        box-sizing: border-box;
    }
    
    .callback-section__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Заголовок и описание */
    .callback-section__title {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: #1e2a3e;
        margin: 0 0 1rem 0;
        letter-spacing: -0.3px;
    }
    
    .callback-section__description {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        font-size: 1.1rem;
        line-height: 1.5;
        color: #4a5568;
        margin: 0 0 1.8rem 0;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Кнопка-ссылка (основной элемент) */
    .callback-section__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background: linear-gradient(135deg, #0066B3 0%, #004C8C 100%);
        border-radius: 80px;
        padding: 18px 40px;
        text-decoration: none;
        box-shadow: 0 10px 25px -5px rgba(0, 102, 179, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
        box-sizing: border-box;
        min-width: 280px;
    }
    
    .callback-section__button:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #0077CC 0%, #005A9E 100%);
        box-shadow: 0 20px 30px -8px rgba(0, 102, 179, 0.4);
    }
    
    /* Иконка телефона */
    .callback-section__button-icon {
        font-size: 2.2rem;
        background: #ffffff;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #0066B3;
        flex-shrink: 0;
        transition: transform 0.2s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
    
    .callback-section__button:hover .callback-section__button-icon {
        transform: scale(1.02);
    }
    
    /* Текст внутри кнопки */
    .callback-section__button-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: white;
        text-align: left;
    }
    
    .callback-section__button-label {
        font-size: 0.85rem;
        font-weight: 500;
        opacity: 0.9;
        letter-spacing: 0.5px;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        margin-bottom: 4px;
    }
    
    .callback-section__button-number {
        font-size: 1.6rem;
        font-weight: 800;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    /* Маленький текст-подсказка */
    .callback-section__hint {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        font-size: 0.85rem;
        color: #718096;
        margin: 1.5rem 0 0 0;
        opacity: 0.8;
    }
    
    /* ===== ПЛАНШЕТЫ (768px - 1024px) ===== */
    @media (max-width: 1024px) {
        .callback-section {
            margin: 2rem 0;
            padding: 1.8rem 0;
        }
        
        .callback-section__title {
            font-size: 1.8rem;
        }
        
        .callback-section__description {
            font-size: 1rem;
            padding: 0 10px;
        }
        
        .callback-section__button {
            padding: 15px 35px;
            gap: 18px;
        }
        
        .callback-section__button-icon {
            width: 50px;
            height: 50px;
            font-size: 2rem;
        }
        
        .callback-section__button-number {
            font-size: 1.45rem;
        }
    }
    
    /* ===== МОБИЛЬНАЯ ВЕРСИЯ (до 768px) ===== */
    @media (max-width: 768px) {
        .callback-section {
            margin: 1.5rem 0;
            padding: 1.5rem 0;
        }
        
        .callback-section__title {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }
        
        .callback-section__description {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            padding: 0 5px;
        }
        
        .callback-section__button {
            padding: 12px 24px;
            gap: 14px;
            min-width: auto;
            width: auto;
            max-width: 100%;
        }
        
        .callback-section__button-icon {
            width: 44px;
            height: 44px;
            font-size: 1.7rem;
        }
        
        .callback-section__button-label {
            font-size: 0.75rem;
        }
        
        .callback-section__button-number {
            font-size: 1.2rem;
        }
        
        .callback-section__hint {
            font-size: 0.75rem;
            margin-top: 1.2rem;
        }
    }
    
    /* ===== ОЧЕНЬ МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 480px) ===== */
    @media (max-width: 480px) {
        .callback-section {
            margin: 1rem 0;
            padding: 1.2rem 0;
        }
        
        .callback-section__title {
            font-size: 1.3rem;
        }
        
        .callback-section__description {
            font-size: 0.85rem;
        }
        
        .callback-section__button {
            padding: 10px 18px;
            gap: 12px;
            width: 100%;
        }
        
        .callback-section__button-icon {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
        }
        
        .callback-section__button-label {
            font-size: 0.7rem;
        }
        
        .callback-section__button-number {
            font-size: 1rem;
            font-weight: 800;
        }
        
        .callback-section__hint {
            font-size: 0.7rem;
        }
    }