:root {
            --primary-orange: #ff6b35;
            --primary-dark: #1a1a1a;
            --secondary-dark: #2a2a2a;
            --accent-green: #00d984;
            --text-light: #f5f5f5;
            --text-gray: #a1a1aa;
            --glass-bg: rgba(42, 42, 42, 0.8);
            --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
            --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 20px 40px rgba(255, 107, 53, 0.2);
            --border-glass: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

         /* Header moderna con glassmorphism */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1rem 0;
        }

        .header.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            box-shadow: var(--shadow-glass);
            padding: 0.5rem 0;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* MENÚ DESKTOP - Por defecto visible */
        .nav-menu {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .cta-btn svg {
            width: 20px;
            height: 20px;
        }

        /* HAMBURGER - Por defecto oculto */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
            background: transparent;
            border: none;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-light);
            border-radius: 2px;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--primary-orange);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
            background: var(--primary-orange);
        }

        /* Mobile menu moderno */
        .mobile-menu {
            display: none;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 999;
            padding: 20px 2rem 2rem;
            opacity: 0;
            transform: translateY(-100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

     .mobile-menu a {
            display: block;
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
			 padding: 1.5rem 0;
        }

        .mobile-menu.active a {
            transform: translateX(0);
            opacity: 1;
        }

        .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu a:nth-child(5) { transition-delay: 0.3s; }

        .mobile-menu a:hover {
            color: var(--primary-orange);
          			
        }

        /* Hero section moderna */
          /* Hero Section */
        .hero {
            background-image: url('https://res.cloudinary.com/dliredzt9/image/upload/v1748810646/fondo-roto_tjcetp.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
                    
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 217, 132, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            max-width: 1400px;
			padding:9rem 4rem 9rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            padding: 1rem 2.5rem;
            border: 2px solid var(--border-glass);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 0.8s ease-out 0.2s both;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: all 0.3s ease;
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.02);
        }
		
/* shape-divider */		
		.custom-shape-divider-bottom-1757696437 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1757696437 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1757696437 .shape-fill {
    fill: #191919;
}

        /* Floating elements */
        .floating-element {
            position: absolute;
            border-radius: 20px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            padding: 1.5rem;
            box-shadow: var(--shadow-glass);
            animation: float 3s ease-in-out infinite;
        }

        .floating-element.top-right {
            top: 20px;
            right: 20px;
            animation-delay: 0s;
        }

        .floating-element.bottom-left {
            bottom: 40px;
            left: 20px;
            animation-delay: 1.5s;
        }
		
		
		
/* === Socios Slider === */
.socios-slider {
  overflow: hidden;
  background: #1a1a1a;
  padding: 10px 0;
}

.socios-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 25s linear infinite;
}

.socios-slide {
  flex: 0 0 auto;
  margin: 0 20px; /* ajusta el espacio entre logos */
}

.socios-slide img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

  /* About Me Section CSS */
.about-me-section {
    padding: 8rem 0;
    background: #1a1a1a;
    position: relative;
}

.about-me-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-me-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-me-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-me-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-me-image:hover {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-glass);
}

.about-me-text {
    animation: fadeInUp 0.8s ease-out;
}

.about-me-subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-me-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-title {
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-me-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-me-section {
        padding: 4rem 0;
    }
    
    .about-me-container {
        padding: 0 1rem;
    }
    
    .mission-box {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem;
    }
    
    .mission-box {
        padding: 1rem;
    }
}
		
		/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--primary-dark);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header:hover {
    color: var(--primary-orange);
}

.faq-header.active {
    color: var(--primary-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-header.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 2rem;
}

.faq-content.active {
    padding: 0 2rem 1.5rem 2rem;
}

.faq-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--secondary-dark);
    overflow: hidden;
}

.testimonials-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    animation: slideInfinite 30s linear infinite;
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-orange);
    object-fit: cover;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Animaciones */
@keyframes slideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación del loop */
@keyframes scrollLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

       .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Stats section */
        .stats {
            padding: 8rem 0;
            background: var(--secondary-dark);
            position: relative;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 2.5rem 1.5rem;
            box-shadow: var(--shadow-glass);
            transition: all 0.6s ease-out;
            opacity: 0;
            transform: translateY(50px);
        }

        .stat-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
            display: block;
            min-height: 1.2em;
            position: relative;
            overflow: hidden;
        }

        .stat-number.counting {
            animation: pulse 0.1s ease-in-out;
        }

        .stat-label {
            color: var(--text-gray);
            font-weight: 500;
            font-size: 1.1rem;
        }

        /* Footer moderno */
        .footer {
            background: var(--primary-dark);
            border-top: 1px solid var(--border-glass);
            padding: 2rem 0;
            text-align: center;
        }

        /* Services section */
        .services {
            padding: 4rem 0;
            background: var(--primary-dark);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            padding: 0 2rem;
        }

        .section-subtitle {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
			text-align: center;
			padding-bottom: 2rem;
        }

        .section-description {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 3rem 2rem;
            box-shadow: var(--shadow-glass);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon svg,
        .service-icon img {
            width: 56px;
            height: 56px;
            color: white;
        }

        .service-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .service-description {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: var(--secondary-dark);
            position: relative;
        }

        .cta-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-glass);
            border-radius: 30px;
            padding: 4rem 3rem;
            box-shadow: var(--shadow-glass);
        }

        .cta-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-description {
            color: var(--text-gray);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 217, 132, 0.1);
            color: var(--accent-green);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 217, 132, 0.2);
        }

        .img-galeri {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 100%;
            height: auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 6rem 2rem 4rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .testimonials-slider {
                animation-duration: 20s;
            }

            .testimonial-card {
                flex: 0 0 280px;
                padding: 1.5rem;
                min-height: 250px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .btn-primary, .btn-secondary {
                padding: 0.8rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 5rem 1rem 3rem;
            }

            .section-header {
                padding: 0 1rem;
            }

            .services-grid {
                padding: 0 1rem;
            }

            .stats-grid {
                padding: 0 1rem;
            }

            .faq-container {
                padding: 0 1rem;
            }

            .cta-content {
                padding: 3rem 2rem;
            }
        }
