   /* ============================================
           CSS RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: #1E293B;
            background: #FFFFFF;
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ============================================
           SCROLLBAR CUSTOM
           ============================================ */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #F8FAFC;
        }
        ::-webkit-scrollbar-thumb {
            background: #0F172A;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #F59E0B;
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #0F172A;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #64748B;
            max-width: 640px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 700;
            color: #F59E0B;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 3px;
            background: #F59E0B;
            border-radius: 2px;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: #F59E0B;
            color: #0F172A;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover {
            background: #D97706;
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(245, 158, 11, 0.5);
            outline-offset: 3px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: transparent;
            color: #FFFFFF;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #FFFFFF;
            transform: translateY(-2px);
        }

        .btn-secondary:focus-visible {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 3px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: transparent;
            color: #0F172A;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid #0F172A;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .btn-outline:hover {
            background: #0F172A;
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.3);
        }

        .btn-outline:focus-visible {
            outline: 3px solid rgba(15, 23, 42, 0.5);
            outline-offset: 3px;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.25rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.75rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            z-index: 1001;
        }

        .nav-logo-icon {
            width: 44px;
            height: 44px;
            background: #F59E0B;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #0F172A;
        }

        .nav-logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 0.02em;
        }

        .nav-logo-text span {
            color: #F59E0B;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #F59E0B;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #FFFFFF;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.6rem 1.5rem;
            background: #F59E0B;
            color: #0F172A;
            font-weight: 700;
            font-size: 0.875rem;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: #D97706;
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }

        /* Mobile menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 5px;
        }

        .mobile-toggle span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: #FFFFFF;
            border-radius: 2px;
            transition: all 0.3s;
            transform-origin: center;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .mobile-menu.active {
            display: flex;
            opacity: 1;
        }

        .mobile-menu a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: #F59E0B;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/hero.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%);
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .hero-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(245, 158, 11, 0.3);
            border-radius: 50%;
            animation: float-particle 15s infinite ease-in-out;
        }

        @keyframes float-particle {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            50% { transform: translate(100px, -200px) scale(1.5); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 1.5rem;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 50px;
            color: #F59E0B;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: clamp(2.25rem, 5.5vw, 4.5rem);
            font-weight: 800;
            color: #FFFFFF;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .hero-title .highlight {
            color: #F59E0B;
            position: relative;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #F59E0B;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.25rem;
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: bounce-scroll 2s infinite;
        }

        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(245, 158, 11, 0.8), transparent);
        }

        @keyframes bounce-scroll {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            padding: 6rem 0;
            background: #FFFFFF;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            position: relative;
            padding: 2rem;
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #F59E0B;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FEF3C7, #FDE68A);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            transition: all 0.4s;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #F59E0B, #D97706);
            transform: scale(1.1) rotate(5deg);
        }

        .service-card:hover .service-icon svg {
            stroke: #FFFFFF;
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: #64748B;
            line-height: 1.6;
        }

        .service-arrow {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.25rem;
            color: #F59E0B;
            font-size: 0.875rem;
            font-weight: 600;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.4s;
        }

        .service-card:hover .service-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* ============================================
           ADVANTAGES SECTION
           ============================================ */
        .advantages {
            padding: 6rem 0;
            background: #F8FAFC;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .advantage-card {
            display: flex;
            gap: 1.25rem;
            padding: 2rem;
            background: #FFFFFF;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }

        .advantage-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
            border-color: rgba(245, 158, 11, 0.2);
        }

        .advantage-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #0F172A, #1E293B);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advantage-icon svg {
            width: 28px;
            height: 28px;
            stroke: #F59E0B;
        }

        .advantage-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 0.5rem;
        }

        .advantage-content p {
            font-size: 0.9rem;
            color: #64748B;
            line-height: 1.6;
        }

        /* ============================================
           STATISTICS SECTION
           ============================================ */
        .statistics {
            padding: 5rem 0;
            background: #0F172A;
            position: relative;
            overflow: hidden;
        }

        .statistics::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .stat-number {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: #F59E0B;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .stat-divider {
            width: 40px;
            height: 3px;
            background: #F59E0B;
            margin: 0.75rem auto 0;
            border-radius: 2px;
            opacity: 0.5;
        }

        /* ============================================
           PROJECTS SECTION
           ============================================ */
        .projects {
            padding: 6rem 0;
            background: #FFFFFF;
        }

        .projects-swiper {
            padding: 0 0 3rem 0;
        }

        .project-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 420px;
            cursor: pointer;
            group: true;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card:hover img {
            transform: scale(1.08);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 2rem 2rem;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
            transition: all 0.4s;
        }

        .project-category {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(245, 158, 11, 0.9);
            color: #0F172A;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .project-overlay h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.5rem;
        }

        .project-overlay p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        /* Swiper custom navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: #FFFFFF;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 18px;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #F59E0B;
            color: #0F172A;
        }

        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.4);
            opacity: 1;
            width: 10px;
            height: 10px;
            transition: all 0.3s;
        }

        .swiper-pagination-bullet-active {
            background: #F59E0B;
            width: 30px;
            border-radius: 5px;
        }

        /* ============================================
           TIMELINE / STEPS SECTION
           ============================================ */
        .steps {
            padding: 6rem 0;
            background: #F8FAFC;
        }

        .steps-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .steps-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #F59E0B, rgba(245, 158, 11, 0.2));
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .step-item {
            position: relative;
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
        }

        .step-item:last-child {
            margin-bottom: 0;
        }

        .step-item:nth-child(odd) {
            flex-direction: row;
        }

        .step-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-content {
            width: calc(50% - 40px);
            padding: 2rem;
            background: #FFFFFF;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
        }

        .step-content:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
        }

        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: #F59E0B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            color: #0F172A;
            z-index: 2;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
        }

        .step-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 0.5rem;
        }

        .step-content p {
            font-size: 0.9rem;
            color: #64748B;
            line-height: 1.6;
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about {
            padding: 6rem 0;
            background: #FFFFFF;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: #0F172A;
            margin-bottom: 1.5rem;
            line-height: 1.15;
        }

        .about-content p {
            font-size: 1rem;
            color: #64748B;
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: #F8FAFC;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .about-feature:hover {
            background: #FEF3C7;
        }

        .about-feature-icon {
            width: 36px;
            height: 36px;
            background: #0F172A;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon svg {
            width: 18px;
            height: 18px;
            stroke: #F59E0B;
        }

        .about-feature span {
            font-size: 0.9rem;
            font-weight: 600;
            color: #0F172A;
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            transition: transform 0.6s;
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-image-badge {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            padding: 1.25rem 1.5rem;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .about-image-badge-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #F59E0B;
            line-height: 1;
        }

        .about-image-badge-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.4;
        }

        /* ============================================
           REVIEWS SECTION
           ============================================ */
        .reviews {
            padding: 6rem 0;
            background: #F8FAFC;
        }

        .reviews-swiper {
            padding: 0 0 3rem 0;
        }

        .review-card {
            background: #FFFFFF;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #E2E8F0;
            transition: all 0.4s;
            height: 100%;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
        }

        .review-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.25rem;
        }

        .review-stars svg {
            width: 20px;
            height: 20px;
            fill: #F59E0B;
        }

        .review-text {
            font-size: 1rem;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #F59E0B;
        }

        .review-author-name {
            font-size: 1rem;
            font-weight: 700;
            color: #0F172A;
        }

        .review-author-role {
            font-size: 0.85rem;
            color: #64748B;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq {
            padding: 6rem 0;
            background: #FFFFFF;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #E2E8F0;
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: rgba(245, 158, 11, 0.3);
        }

        .faq-item.active {
            border-color: #F59E0B;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.1);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            background: #FFFFFF;
            border: none;
            width: 100%;
            text-align: left;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #0F172A;
            transition: all 0.3s;
            gap: 1rem;
        }

        .faq-question:hover {
            background: #F8FAFC;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            background: #F8FAFC;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }

        .faq-item.active .faq-icon {
            background: #F59E0B;
            transform: rotate(180deg);
        }

        .faq-icon svg {
            width: 16px;
            height: 16px;
            stroke: #0F172A;
            transition: stroke 0.3s;
        }

        .faq-item.active .faq-icon svg {
            stroke: #0F172A;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.5rem;
            font-size: 0.95rem;
            color: #64748B;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* ============================================
           CONTACT FORM SECTION
           ============================================ */
        .contact-form {
            padding: 6rem 0;
            background: #0F172A;
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .contact-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .contact-form-content h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 1rem;
        }

        .contact-form-content p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            background: rgba(245, 158, 11, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-info-icon svg {
            width: 22px;
            height: 22px;
            stroke: #F59E0B;
        }

        .contact-info-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info-text strong {
            display: block;
            color: #FFFFFF;
            font-weight: 600;
            margin-bottom: 0.15rem;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .form-group label .required {
            color: #F59E0B;
        }

        .form-input {
            width: 100%;
            padding: 0.875rem 1.25rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: #FFFFFF;
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
            outline: none;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .form-input:focus {
            border-color: #F59E0B;
            background: rgba(245, 158, 11, 0.08);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
        }

        .form-input.error {
            border-color: #EF4444;
            background: rgba(239, 68, 68, 0.08);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
        }

        .form-error {
            font-size: 0.8rem;
            color: #EF4444;
            margin-top: 0.4rem;
            display: none;
        }

        .form-error.visible {
            display: block;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: #F59E0B;
            color: #0F172A;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-submit:hover {
            background: #D97706;
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .form-success.visible {
            display: block;
        }

        .form-success svg {
            width: 60px;
            height: 60px;
            stroke: #22C55E;
            margin-bottom: 1rem;
        }

        .form-success h3 {
            font-size: 1.25rem;
            color: #FFFFFF;
            margin-bottom: 0.5rem;
        }

        .form-success p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        /* ============================================
           CONTACTS SECTION
           ============================================ */
        .contacts {
            padding: 6rem 0 0;
            background: #FFFFFF;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            padding: 2rem;
            background: #F8FAFC;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
        }

        .contact-card-icon {
            width: 60px;
            height: 60px;
            background: #0F172A;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
        }

        .contact-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: #F59E0B;
        }

        .contact-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 0.5rem;
        }

        .contact-card p {
            font-size: 0.9rem;
            color: #64748B;
            line-height: 1.5;
        }

        .contact-card a {
            color: #F59E0B;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-card a:hover {
            color: #D97706;
        }

        .contacts-map {
            border-radius: 24px 24px 0 0;
            overflow: hidden;
            height: 400px;
        }

        .contacts-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 4rem 0 2rem;
            background: #0F172A;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            margin-top: 1rem;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1.25rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.6rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .footer-col ul li a:hover {
            color: #F59E0B;
            padding-left: 4px;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: #F59E0B;
            transform: translateY(-2px);
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
            fill: rgba(255, 255, 255, 0.7);
            transition: fill 0.3s;
        }

        .footer-social a:hover svg {
            fill: #0F172A;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #F59E0B;
        }

        /* ============================================
           BACK TO TOP
           ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: #0F172A;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s;
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: #F59E0B;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }

        .back-to-top svg {
            width: 22px;
            height: 22px;
            stroke: #FFFFFF;
            transition: stroke 0.3s;
        }

        .back-to-top:hover svg {
            stroke: #0F172A;
        }

        /* ============================================
           LOADING ANIMATION
           ============================================ */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0F172A;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1.5rem;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFFFFF;
        }

        .loader-logo span {
            color: #F59E0B;
        }

        .loader-bar {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .loader-bar-inner {
            width: 0%;
            height: 100%;
            background: #F59E0B;
            border-radius: 2px;
            animation: loader-progress 1.5s ease-in-out forwards;
        }

        @keyframes loader-progress {
            0% { width: 0%; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        /* ============================================
           RESPONSIVE BREAKPOINTS
           ============================================ */
        @media (max-width: 1280px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .about-image {
                order: -1;
            }
            .about-image img {
                height: 350px;
            }
            .contact-form-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .contacts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-timeline::before {
                left: 25px;
            }
            .step-item,
            .step-item:nth-child(odd),
            .step-item:nth-child(even) {
                flex-direction: row !important;
                padding-left: 70px;
            }
            .step-content {
                width: 100%;
            }
            .step-number {
                left: 25px;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .hero-stats {
                gap: 2rem;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .contacts-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .project-card {
                height: 350px;
            }
            .form-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
            }
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.75rem;
            }
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .text-accent {
            color: #F59E0B;
        }

        .bg-primary {
            background: #0F172A;
        }

        /* Focus visible for accessibility */
        *:focus-visible {
            outline: 3px solid #F59E0B;
            outline-offset: 2px;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }