/* ==================== CSS VARIABLES ==================== */
        :root {
            --primary: #0EA5E9;
            --primary-dark: #0284C7;
            --primary-light: #38BDF8;
            --secondary: #F59E0B;
            --accent-orange: #F97316;
            --accent-blue: #3B82F6;
            --dark: #0F172A;
            --dark-blue: #1E293B;
            --medium: #334155;
            --light: #F1F5F9;
            --white: #FFFFFF;
            --gray-100: #F8FAFC;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-600: #64748B;
            --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
            --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
            --gradient-warm: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(14, 165, 233, 0.2);
            --shadow-xl: 0 16px 48px rgba(14, 165, 233, 0.25);
            --index: calc(1vw+1vh);
        }

        /* ==================== RESET & BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
            border: none;
            cursor: pointer;
        }

        /* ==================== UTILITY CLASSES ==================== */
        .container {
            max-width: 1860px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 6rem 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-label {
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            font-weight: 400;
        }

        /* ==================== HEADER ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(14, 165, 233, 0.1);
            transition: all 0.3s ease;
            height: 100px;
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            font-size: 2rem;
            filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
        }

        .nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--dark);
            position: relative;
            transition: color 0.3s ease;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--primary);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .phone-link {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .phone-link:hover {
            color: var(--primary-dark);
            transform: scale(1.05);
        }

        .btn {
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            padding-top: 10rem;
            padding-bottom: 8rem;
            background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '❄️';
            position: absolute;
            top: 10%;
            right: 10%;
            font-size: 15rem;
            opacity: 0.05;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-content h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.35rem;
            color: var(--gray-600);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        .hero-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(14, 165, 233, 0.1);
            transform: rotate(-2deg);
            transition: transform 0.5s ease;
        }

        .hero-card:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ==================== STATS BAR ==================== */
        .stats-bar {
            background: var(--gradient-primary);
            padding: 2rem 0;
            margin-top: -2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stats-grid .stat-item {
            text-align: center;
        }

        .stats-grid .stat-number {
            color: var(--white);
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            font-size: 2.8rem;
        }

        .stats-grid .stat-label {
            color: rgba(255, 255, 255, 0.9);
        }

        /* ==================== LOCOMOTIVES SECTION ==================== */
        .locomotives {
            background: var(--white);
        }

        .locomotives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .locomotive-card {
            background-image: var(--light);
            background-size: cover; /* Растягивает изображение на всю карточку */
            background-position: center; /* Центрирует изображение */
            background-repeat: no-repeat;
            border-radius: 24px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
            padding: 2.5rem 2.5rem 0 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 250px;
        }

        /* .locomotive-card:hover {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
            transform: translateY(-10px);
        } */

        .locomotive-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .locomotive-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .locomotive-description {
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: var(--light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .about-description {
            font-size: 1.15rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: var(--white);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-item:hover {
            border-color: var(--primary);
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            color: var(--white);
        }

        .about-visual {
            position: relative;
        }

        .about-image-wrapper {
            background: var(--gradient-primary);
            border-radius: 32px;
            padding: 3rem;
            transform: rotate(3deg);
            transition: transform 0.5s ease;
            height: 720px;
        }

        .about-image-wrapper:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-placeholder {
            background: var(--white);
            border-radius: 24px;
            padding: 4rem;
            text-align: center;
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
            height: 600px;
            background-image: url(img/10.jpg);
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat;
        }

        /* ==================== HOW IT WORKS ==================== */
        .how-it-works {
            background: var(--white);
        }

        .steps-container {
            margin-top: 3rem;
        }

        .step {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: start;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }
        .step:nth-child(5) { animation-delay: 0.5s; }

        .step-number {
            width: 120px;
            height: 120px;
            background: var(--gradient-primary);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--white);
            box-shadow: var(--shadow-lg);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1) rotate(5deg);
        }

        .step-content {
            background: var(--light);
            padding: 2.5rem;
            border-radius: 24px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .step:hover .step-content {
            box-shadow: var(--shadow-xl);
            transform: translateY(-5px);
        }

        .step-label {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .step-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .step-description {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ==================== ADVANTAGES SECTION ==================== */
        .advantages {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .advantage-card {
            text-align: center;
        }

        .advantage-icon-wrapper {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 3rem;
            transition: all 0.4s ease;
        }

        .advantage-card:hover .advantage-icon-wrapper {
            transform: scale(1.15) rotate(10deg);
            background: rgba(255, 255, 255, 0.25);
        }

        .advantage-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .advantage-list {
            list-style: none;
            text-align: left;
        }

        .advantage-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
        }

        .advantage-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: 700;
        }

        /* ==================== PRICING SECTION ==================== */
        .pricing {
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 32px;
            padding: 3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .pricing-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
            transform: translateY(-10px);
        }

        .pricing-card:hover::before {
            transform: scaleX(1);
        }

        .pricing-badge {
            display: inline-block;
            background: var(--gradient-secondary);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .pricing-name {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .pricing-description {
            font-size: 1rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        .pricing-price {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .pricing-period {
            font-size: 1rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .feature-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--gray-600);
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials {
            background: var(--light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 6rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            color: var(--primary);
            opacity: 0.1;
        }

        .testimonial-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray-600);
        }

        /* ==================== CTA BANNER ==================== */
        .cta-banner {
            background: var(--dark);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .cta-banner .btn {
            font-size: 1.2rem;
            padding: 1.2rem 3rem;
        }
        .cta{
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 3rem;
            color: var(--primary);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .cta:hover {
            color: var(--primary-dark);
            transform: scale(1.05);
        }

        /* ==================== FAQ ==================== */
        .faq {
            background: var(--white);
        }

        .faq-list {
            max-width: 900px;
            margin: 3rem auto 0;
        }

        .faq-item {
            background: var(--light);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem;
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        .footer-heading {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-container,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .nav {
                display: none;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .step {
                grid-template-columns: 80px 1fr;
            }

            .step-number {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero {
                padding-top: 8rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .pricing-grid,
            .testimonials-grid,
            .footer-grid,
            .locomotives-grid {
                grid-template-columns: 1fr;
            }

            .cta-banner h2 {
                font-size: 2.5rem;
            }
        }