﻿*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #FF6B00;
            --orange-hover: #E55E00;
            --orange-light: #FFF3E8;
            --dark: #1A1A2E;
            --dark-secondary: #16213E;
            --text-dark: #2D2D3F;
            --text-light: #6B7280;
            --text-white: #FFFFFF;
            --bg-light: #F5F7FA;
            --bg-white: #FFFFFF;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--bg-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER / NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 20px;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(26, 26, 46, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: white;
        }

        .logo-text span {
            color: var(--orange);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-phone {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .nav-phone-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .nav-phone a {
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 15px;
            line-height: 1.15;
        }

        .nav-phone a:hover {
            color: var(--orange);
        }

        .nav-phone svg {
            width: 18px;
            height: 18px;
            fill: var(--orange);
            align-self: center;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            position: relative;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 1001;
        }

        .burger span {
            position: absolute;
            width: 24px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }

        .burger span:nth-child(1) {
            transform: translateY(-6px);
        }

        .burger span:nth-child(3) {
            transform: translateY(6px);
        }

        .burger.active span:nth-child(1) {
            transform: translateY(0) rotate(45deg);
        }

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

        .burger.active span:nth-child(3) {
            transform: translateY(0) rotate(-45deg);
        }

        .burger:focus-visible {
            outline: 2px solid rgba(255,255,255,0.6);
            outline-offset: 4px;
            border-radius: 8px;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--dark);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('/static/landing/img/Argonodugovaya-svarka.jpg') center/cover no-repeat;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(22,33,62,0.8) 50%, rgba(26,26,46,0.7) 100%);
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--orange);
            border-radius: 50%;
            opacity: 0;
            animation: float-up 4s infinite;
        }

        @keyframes float-up {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; transform: translateY(-10vh) scale(1); }
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 60px;
        }

        .hero-content {
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 107, 0, 0.15);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 50px;
            padding: 8px 20px;
            margin-bottom: 25px;
            font-size: 13px;
            color: var(--orange);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero h1 {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 span {
            color: var(--orange);
            position: relative;
        }

        .hero-description {
            font-size: 16px;
            color: #ffffff;
            font-weight: 500;
            margin-bottom: 35px;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .btn-primary {
            background: var(--orange);
            color: white;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
        }

        .btn-primary:hover {
            background: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-outline:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(255,107,0,0.05);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            margin-top: 5px;
            font-weight: 500;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .hero-image-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,107,0,0.3) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: glow-pulse 3s infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 15px 20px;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite;
        }

        .hero-floating-card.card-1 {
            top: 20px;
            right: -20px;
            animation-delay: 0s;
        }

        .hero-floating-card.card-2 {
            bottom: 30px;
            left: -30px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-icon {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .floating-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .floating-text strong {
            display: block;
            font-size: 14px;
            font-family: 'Montserrat', sans-serif;
        }

        .floating-text span {
            font-size: 12px;
            opacity: 0.7;
        }

        /* ===== FEATURE STRIP ===== */
        .feature-strip {
            background: var(--bg-white);
            padding: 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .feature-strip .container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .feature-item {
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid #f0f0f0;
            transition: var(--transition);
            cursor: default;
        }

        .feature-item:last-child {
            border-right: none;
        }

        .feature-item:hover {
            background: var(--orange-light);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--orange-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon {
            background: var(--orange);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--orange);
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon svg {
            fill: white;
        }

        .feature-item h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .feature-item p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 700;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--orange);
        }

        .section-title {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-dark);
            text-transform: uppercase;
        }

        .section-title span {
            color: var(--orange);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .service-card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.08);
        }

        .service-card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(transparent, rgba(0,0,0,0.3));
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .service-card-body p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--orange);
            font-weight: 700;
            font-size: 14px;
            font-family: 'Montserrat', sans-serif;
        }

        .service-card-link:hover {
            gap: 12px;
        }

        .service-card-link svg {
            width: 16px;
            height: 16px;
            fill: var(--orange);
            transition: var(--transition);
        }

        .portfolio-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #FFF7F1 0%, #FFFFFF 100%);
        }

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

        .portfolio-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .portfolio-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .portfolio-card-image {
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }

        .portfolio-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .portfolio-card:hover .portfolio-card-image img {
            transform: scale(1.05);
        }

        .portfolio-card-content {
            padding: 24px;
        }

        .portfolio-card-label {
            display: inline-block;
            margin-bottom: 12px;
            color: var(--orange);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

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

        .portfolio-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-light);
        }

        .portfolio-card-hidden {
            display: none;
        }

        .portfolio-actions {
            display: flex;
            justify-content: center;
            margin-top: 36px;
        }

        .portfolio-load-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 220px;
            padding: 16px 32px;
            border-radius: 8px;
            border: 2px solid rgba(255,107,0,0.24);
            background: white;
            color: var(--orange);
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
        }

        .portfolio-load-more:hover {
            border-color: var(--orange);
            background: rgba(255,107,0,0.06);
            transform: translateY(-2px);
        }

        .portfolio-load-more.is-hidden {
            display: none;
        }

        /* ===== HOW WE WORK ===== */
        .how-we-work {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 12.5%;
            right: 12.5%;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), #FFB366);
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 90px;
            height: 90px;
            background: white;
            border: 3px solid var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
            position: relative;
        }

        .step-card:hover .step-number {
            background: var(--orange);
            transform: scale(1.1);
        }

        .step-number-inner {
            width: 60px;
            height: 60px;
            background: var(--orange-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .step-card:hover .step-number-inner {
            background: rgba(255,255,255,0.2);
        }

        .step-number-inner svg {
            width: 28px;
            height: 28px;
            fill: var(--orange);
            transition: var(--transition);
        }

        .step-card:hover .step-number-inner svg {
            fill: white;
        }

        .step-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .step-card p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== ABOUT / STATS SECTION ===== */
        .about-section {
            padding: 100px 0;
            background: var(--bg-light);
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-stat-card {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--orange);
            transition: var(--transition);
        }

        .about-stat-card:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-hover);
        }

        .about-stat-card .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--orange);
        }

        .about-stat-card .stat-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 5px;
        }

        .about-image-center {
            position: relative;
        }

        .about-image-center img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .about-image-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--orange);
            color: white;
            padding: 20px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255,107,0,0.4);
        }

        .about-image-badge .badge-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 900;
        }

        .about-image-badge .badge-text {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-right h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .about-right p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .about-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .about-features li .check {
            width: 24px;
            height: 24px;
            background: var(--orange-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-features li .check svg {
            width: 14px;
            height: 14px;
            fill: var(--orange);
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #E5E7EB;
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--orange);
        }

        .faq-item.active {
            border-color: var(--orange);
            box-shadow: 0 4px 20px rgba(255,107,0,0.1);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 25px;
            cursor: pointer;
            background: white;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--orange-light);
        }

        .faq-question h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            flex: 1;
            padding-right: 20px;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            background: var(--orange-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .faq-item.active .faq-toggle {
            background: var(--orange);
            transform: rotate(45deg);
        }

        .faq-toggle svg {
            width: 16px;
            height: 16px;
            fill: var(--orange);
            transition: var(--transition);
        }

        .faq-item.active .faq-toggle svg {
            fill: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 25px 20px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ===== CONTACT / CTA SECTION ===== */
        .cta-section {
            padding: 80px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
            color: white;
        }

        .cta-content h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .cta-content h2 span {
            color: var(--orange);
        }

        .cta-content p {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .cta-phone-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .cta-phone-big {
            font-family: 'Montserrat', sans-serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--orange);
            display: block;
            margin-bottom: 0;
            transition: var(--transition);
            line-height: 1.1;
        }

        .cta-phone-big:hover {
            color: #FFB366;
            transform: scale(1.02);
        }

        .cta-contacts-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        .cta-contact-item svg {
            width: 20px;
            height: 20px;
            fill: var(--orange);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #111122;
            padding: 40px 0;
            text-align: center;
        }

        .footer p {
            color: rgba(255,255,255,0.4);
            font-size: 13px;
        }

        .footer a {
            color: var(--orange);
        }

        /* ===== MAX CONTACT ===== */
        .max-contact {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
        }

        .max-contact:hover {
            background: #20BD5A;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37,211,102,0.4);
        }

        .max-contact img {
            width: 22px;
            height: 22px;
            display: block;
            flex-shrink: 0;
        }

        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 18px;
            padding: 14px 28px;
            border-radius: 50px;
            border: 2px solid rgba(255,255,255,0.2);
            transition: var(--transition);
        }

        .phone-link:hover {
            border-color: var(--orange);
            color: var(--orange);
        }

        .phone-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .call-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(11, 13, 31, 0.68);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1200;
        }

        .call-modal.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .call-modal-dialog {
            position: relative;
            width: min(100%, 440px);
            background: white;
            border-radius: 8px;
            padding: 28px 24px 24px;
            box-shadow: 0 24px 60px rgba(0,0,0,0.22);
            transform: translateY(20px) scale(0.98);
            transition: transform 0.3s ease;
        }

        .call-modal.active .call-modal-dialog {
            transform: translateY(0) scale(1);
        }

        .call-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 8px;
            background: rgba(26,26,46,0.06);
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .call-modal-close:hover {
            background: rgba(255,107,0,0.1);
            color: var(--orange);
        }

        .call-modal-close svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .call-modal-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: var(--orange-light);
            color: var(--orange);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .call-modal h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .call-modal p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .call-modal-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .call-number-link {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 18px 20px;
            border-radius: 8px;
            border: 2px solid rgba(255,107,0,0.18);
            background: white;
            transition: var(--transition);
        }

        .call-number-link:hover {
            border-color: var(--orange);
            background: rgba(255,107,0,0.04);
            transform: translateY(-2px);
        }

        .call-number-label {
            font-size: 12px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: var(--orange);
            text-transform: uppercase;
        }

        .call-number-link strong {
            font-size: 24px;
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.2;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 4px 15px rgba(255,107,0,0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,0,0.5);
        }

        .scroll-top svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26,26,46,0.98);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding: 100px 24px 40px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-16px);
            transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .mobile-menu a {
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            font-weight: 600;
            text-align: center;
        }

        .mobile-menu > :not(.mobile-close) {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .mobile-menu.active > :not(.mobile-close) {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active > :not(.mobile-close):nth-child(2) { transition-delay: 0.05s; }
        .mobile-menu.active > :not(.mobile-close):nth-child(3) { transition-delay: 0.09s; }
        .mobile-menu.active > :not(.mobile-close):nth-child(4) { transition-delay: 0.13s; }
        .mobile-menu.active > :not(.mobile-close):nth-child(5) { transition-delay: 0.17s; }
        .mobile-menu.active > :not(.mobile-close):nth-child(6) { transition-delay: 0.21s; }
        .mobile-menu.active > :not(.mobile-close):nth-child(7) { transition-delay: 0.25s; }
        .mobile-menu.active > :not(.mobile-close):nth-child(8) { transition-delay: 0.29s; }

        .mobile-menu a:hover {
            color: var(--orange);
        }

        .mobile-close {
            display: none;
        }

        .mobile-close svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image {
                display: none;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-description {
                margin: 0 auto 35px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .feature-strip .container {
                grid-template-columns: repeat(3, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .steps-grid::before {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-image-center {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0;
            }

            .nav-links, .nav-phone {
                display: none;
            }

            .navbar .container {
                display: grid;
                grid-template-columns: 36px minmax(0, 1fr) 36px;
                align-items: center;
                height: 64px;
                padding: 0 14px;
                width: 100%;
                max-width: none;
            }

            .logo {
                grid-column: 2;
                justify-self: center;
                gap: 8px;
                max-width: calc(100vw - 110px);
            }

            .logo-icon {
                width: 34px;
                height: 34px;
            }

            .logo-icon svg {
                width: 20px;
                height: 20px;
            }

            .logo-text {
                font-size: 16px;
            }

            .burger {
                display: flex;
                grid-column: 3;
                justify-self: end;
                position: relative;
                right: auto;
                top: auto;
                transform: none;
            }

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

            .hero .container {
                padding-top: 88px;
                padding-bottom: 40px;
                gap: 34px;
            }

            .hero-badge {
                margin-bottom: 18px;
            }

            .hero-description {
                font-size: 15px;
                line-height: 1.75;
                margin-bottom: 24px;
            }

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

            .feature-strip {
                margin-top: -24px;
            }

            .feature-item {
                padding: 22px 14px;
            }

            .feature-item h4 {
                font-size: 12px;
            }

            .feature-item p {
                font-size: 11px;
            }

            .feature-item:nth-child(2n) {
                border-right: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .service-card-image {
                height: 210px;
            }

            .service-card-body {
                padding: 20px;
            }

            .service-card-body h3 {
                font-size: 17px;
            }

            .service-card-body p {
                font-size: 13px;
            }

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

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 28px;
            }

            .cta-content h2 {
                font-size: 26px;
            }

            .cta-phone-big {
                font-size: 26px;
            }

            .hero-floating-card {
                display: none;
            }

            .mobile-menu {
                padding: 96px 20px 28px;
                gap: 22px;
            }

            .mobile-menu a {
                font-size: 18px;
            }

            .phone-link {
                width: min(100%, 320px);
                justify-content: center;
                text-align: center;
                padding: 14px 16px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }

            .navbar .container {
                padding: 0 12px;
                grid-template-columns: 32px minmax(0, 1fr) 32px;
                height: 60px;
            }

            .logo {
                max-width: calc(100vw - 92px);
            }

            .logo-icon {
                width: 32px;
                height: 32px;
            }

            .logo-text {
                font-size: 15px;
            }

            .burger {
                width: 32px;
                height: 32px;
                padding: 0;
            }

            .burger span {
                width: 20px;
            }

            .feature-strip .container {
                grid-template-columns: 1fr;
            }

            .feature-item {
                border-right: none;
                border-bottom: 1px solid #f0f0f0;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                margin-bottom: 28px;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 15px 18px;
                font-size: 13px;
            }

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

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

            .hero-stats {
                gap: 16px;
            }

            .hero-stat-number {
                font-size: 34px;
            }

            .services {
                padding: 78px 0;
            }

            .service-card-image {
                height: 190px;
            }

            .call-modal {
                padding: 16px;
                align-items: flex-end;
            }

            .call-modal-dialog {
                width: 100%;
                padding: 24px 18px 18px;
                border-radius: 8px 8px 0 0;
            }

            .call-modal h3 {
                font-size: 22px;
            }

            .call-modal p {
                font-size: 14px;
            }

            .call-number-link {
                padding: 16px;
            }

            .call-number-link strong {
                font-size: 20px;
            }
        }
