/* Base Reset & Variables */
:root {
    --bg-color: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #c8c8c8;

    /* Fox Brand Colors */
    --primary: #ff6600;
    --primary-dark: #cc5200;
    --primary-light: #ff8533;

    /* Gradients */
    --gradient-fox: linear-gradient(135deg, #ff6600 0%, #ff9e00 100%);
    --gradient-dark: linear-gradient(to bottom, transparent, #000000);

    /* Spacing & Layout */
    --container-width: 1240px;
    --header-height: 80px;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-fox);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Buttons — Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    font-size: 1.15rem;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-fox);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 102, 0, 0.45);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 102, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.15),
        0 0 30px rgba(255, 102, 0, 0.06);
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.3);
}

.btn-sm {
    padding: 11px 26px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 20px 52px;
    font-size: 1.3rem;
}

/* Header — Premium */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.92) 0%, rgba(15, 10, 5, 0.92) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 102, 0, 0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 38px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4),
        0 0 40px rgba(255, 102, 0, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-fox);
    transition: width 0.35s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
}

/* Hero Section — Premium */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(1.1);
}

/* Overlay with intense orange glow */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 25%, rgba(255, 102, 0, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.06) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 92%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    padding: 12px 26px;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.25);
    border-radius: 50px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(8px);
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e00 50%, #ffba44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 780px;
    margin: 0 auto 44px;
    line-height: 1.75;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 102, 0, 0.4);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 1.5s;
    animation-duration: 9s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 6s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(4) {
    left: 85%;
    top: 55%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 75%;
    animation-delay: 4s;
    animation-duration: 8s;
    width: 3px;
    height: 3px;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-40px) translateX(15px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0.8;
    }
}

/* Trust Badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 50px;
    padding: 24px 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 1s both;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.06), transparent);
    animation: trustShimmer 5s ease-in-out infinite 2s;
}

@keyframes trustShimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-trust:hover {
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 102, 0, 0.06);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.2));
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255, 102, 0, 0.25), transparent);
}

/* Stats Section */
.stats {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-fox);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.section {
    padding: 100px 0;
}

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

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
}

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

.service-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 102, 0, 0.12),
        0 0 120px rgba(255, 102, 0, 0.06);
}

/* Gradient tint overlay */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Pulsing glow */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(255, 158, 0, 0.05) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after {
    opacity: 1;
    animation: modularPulse 3s ease-in-out infinite;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA Section — Premium Contact */
.cta-section {
    padding: 80px 0 120px;
}

.cta-box {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 50%, #111 100%);
    border: 1px solid rgba(255, 102, 0, 0.12);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease;
}

.cta-box:hover {
    border-color: rgba(255, 102, 0, 0.25);
}

/* Dual glow effects */
.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
}

.cta-glow--left {
    top: -40%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 65%);
}

.cta-glow--right {
    bottom: -40%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 158, 0, 0.08) 0%, transparent 65%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content .section-tag {
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 550px;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Instagram Button */
.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 44px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.25);
    margin-top: 16px;
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-instagram:hover::before {
    left: 100%;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.4);
}

.btn-instagram svg {
    flex-shrink: 0;
}

.cta-note {
    display: block;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 10px;
    max-width: 300px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* VSL Section — Premium */
.vsl-section {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 30%, #0c0c0c 50%, #0a0a0a 70%, #050505 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Left glow orb */
.vsl-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.06) 0%, rgba(255, 158, 0, 0.02) 40%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    animation: vslOrbPulse 6s ease-in-out infinite;
}

/* Right glow orb */
.vsl-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: vslOrbPulse 6s ease-in-out infinite 3s;
}

@keyframes vslOrbPulse {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.15);
    }
}

.vsl-grid {
    display: grid;
    grid-template-columns: 30fr 70fr;
    gap: 60px;
    align-items: center;
}

.vsl-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.8rem;
    line-height: 1.15;
}

.vsl-text .section-title .text-gradient {
    background: linear-gradient(135deg, var(--primary), #ff9e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vsl-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vsl-text p strong {
    color: var(--primary);
    font-weight: 700;
}

/* Feature Badges */
.vsl-features {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.vsl-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 102, 0, 0.06);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ddd;
    transition: all 0.3s ease;
}

.vsl-feature:hover {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.vsl-feature-icon {
    font-size: 1.1rem;
}

/* Video Container — Enlarged */
.vsl-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 62%;
    background: linear-gradient(145deg, #0d0d0d 0%, #131313 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 102, 0, 0.06);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vsl-video-container:hover {
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 102, 0, 0.12),
        0 0 120px rgba(255, 102, 0, 0.06);
    transform: scale(1.015);
}

/* Shimmer sweep on video */
.vsl-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.04), transparent);
    z-index: 3;
    pointer-events: none;
    animation: videoShimmer 6s ease-in-out infinite 1s;
}

@keyframes videoShimmer {
    0% {
        left: -100%;
    }

    40% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Orange tint overlay on hover */
.vsl-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(255, 102, 0, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
    border-radius: 20px;
}

.vsl-video-container:hover::after {
    opacity: 1;
}

/* Glow behind video */
.vsl-video-glow {
    position: absolute;
    top: -30%;
    right: -25%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, rgba(255, 158, 0, 0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: modularPulse 4s ease-in-out infinite;
}

.vsl-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
}


/* Marketplace Ticker */
.marketplace-ticker {
    padding: 30px 0;
    background: #262626;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.ticker-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* Pause loop on hover */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-track img {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.ticker-track img:hover {
    opacity: 1;
    transform: scale(1.12);
    filter: brightness(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

/* Specialists Section — Modernized */
.specialists-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
    position: relative;
    overflow: hidden;
}

.specialists-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.specialists-title {
    font-size: 3.2rem;
    line-height: 1.12;
}

/* Carousel Wrapper — Full Width on Top */
.specialists-carousel-wrapper {
    width: 100%;
    margin-bottom: 60px;
}

.specialists-carousel-wrapper .carousel {
    width: 100%;
    margin-left: 0;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #151515;
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 102, 0, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

/* Bottom Grid: Stats Left + Tools Right */
.specialists-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.specialists-left .impact-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-secondary);
}

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

/* Differentials Block — Premium */
.diff-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.3;
}

.diff-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.04) 0%, rgba(17, 17, 17, 0.6) 100%);
    border: 1px solid rgba(255, 102, 0, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 0 14px 14px 0;
    transition: all 0.4s ease;
}

.diff-item:hover {
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.12) 0%, rgba(17, 17, 17, 0.9) 100%);
    border-color: rgba(255, 102, 0, 0.3);
    border-left-color: #ff9e00;
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 102, 0, 0.08),
        0 0 80px rgba(255, 102, 0, 0.04);
}

.diff-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.diff-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.specialists-list {
    list-style: none;
    margin-bottom: 30px;
}

.specialists-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ddd;
}

.specialists-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-top: 3px;
}

.tool-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tool-info strong {
    color: #fff;
    font-size: 1.15rem;
}

.tool-name {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.tool-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* Carousel Styles */

.carousel-track-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Interactive Effect */
.carousel:hover .carousel-slide img {
    transform: scale(1.03);
    /* Subtle zoom when user interacts with carousel */
}

.carousel:hover {
    box-shadow: 0 35px 70px rgba(255, 102, 0, 0.2),
        0 0 60px rgba(255, 102, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.4);
    transform: scale(1.01);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 102, 0, 0.2);
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.carousel-button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-button--left {
    left: 20px;
}

.carousel-button--right {
    right: 20px;
}

/* ============================================
   Digital Operations — Beyond Marketplaces
   ============================================ */
.digital-ops {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background particles effect */
.digital-ops::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 158, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 102, 0, 0.02) 0%, transparent 40%);
    animation: floatGlow 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-3%, -3%) rotate(2deg);
    }
}

.digital-ops-header {
    margin-bottom: 70px;
}

.digital-ops-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e00 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digital-ops-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.digital-ops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ops-card {
    position: relative;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    padding: 55px 32px 60px;
    min-height: 320px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    text-align: center;

    /* Scroll Reveal */
    opacity: 0;
    transform: translateY(50px);
}

.ops-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover glow effect behind the card */
.ops-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(255, 158, 0, 0.05) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ops-card:hover .ops-card-glow {
    opacity: 1;
    animation: modularPulse 3s ease-in-out infinite;
}

/* Top accent bar for ops-card */
.ops-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9e00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.ops-card:hover::before {
    transform: scaleX(1);
}

.ops-card:hover {
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 102, 0, 0.12),
        0 0 120px rgba(255, 102, 0, 0.06);
}

.ops-card.visible:hover {
    transform: translateY(-10px);
}

.ops-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 158, 0, 0.08) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 102, 0, 0.15);
}

.ops-card:hover .ops-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e00 100%);
    color: #000;
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.ops-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.ops-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Staggered reveal */
.ops-card:nth-child(1) {
    transition-delay: 0s;
}

.ops-card:nth-child(2) {
    transition-delay: 0.1s;
}

.ops-card:nth-child(3) {
    transition-delay: 0.2s;
}

.ops-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .digital-ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .digital-ops-title {
        font-size: 2.4rem;
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .digital-ops-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .digital-ops-title {
        font-size: 2rem;
    }

    .ops-card {
        padding: 35px 25px;
    }
}

/* ============================================
   Detailed Services Grid — Premium 3x2 Layout
   ============================================ */
.detailed-services {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

/* Decorative background glow */
.detailed-services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.detail-card {
    background: linear-gradient(145deg, #0d0d0d 0%, #111 100%);
    padding: 55px 35px 60px;
    border-radius: 20px;
    min-height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;

    /* Scroll Reveal Initial State */
    opacity: 0;
    transform: translateY(60px);
}

/* Top gradient accent on hover */
.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9e00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.detail-card:hover::before {
    transform: scaleX(1);
}

/* Scroll Reveal Visible State */
.detail-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-card:hover {
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 102, 0, 0.12),
        0 0 120px rgba(255, 102, 0, 0.06);
    transform: translateY(-10px);
}

.detail-card.visible:hover {
    transform: translateY(-10px);
}

/* Glow after-element for detail-card */
.detail-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(255, 158, 0, 0.05) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.detail-card:hover::after {
    opacity: 1;
    animation: modularPulse 3s ease-in-out infinite;
}

/* Card Number */
.card-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #ff9e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

/* Decorative Line */
.card-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin-bottom: 24px;
    transition: width 0.4s ease;
}

.detail-card:hover .card-line {
    width: 80px;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.detail-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Staggered reveal animation delays */
.detail-card:nth-child(1) {
    transition-delay: 0s;
}

.detail-card:nth-child(2) {
    transition-delay: 0.1s;
}

.detail-card:nth-child(3) {
    transition-delay: 0.2s;
}

.detail-card:nth-child(4) {
    transition-delay: 0.3s;
}

.detail-card:nth-child(5) {
    transition-delay: 0.4s;
}

.detail-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================
   Modular Products — Independent Solutions
   ============================================ */
.modular-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.modular-section::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.modular-header {
    margin-bottom: 70px;
}

.modular-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.modular-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.modular-card {
    background: linear-gradient(145deg, #0d0d0d 0%, #111 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Top accent bar */
.modular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9e00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.modular-card:hover::before {
    transform: scaleX(1);
}

.modular-card:hover {
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 102, 0, 0.12),
        0 0 120px rgba(255, 102, 0, 0.06);
}

/* Glow effect behind card */
.modular-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(255, 158, 0, 0.05) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.modular-card:hover .modular-card-glow {
    opacity: 1;
    animation: modularPulse 3s ease-in-out infinite;
}

@keyframes modularPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

/* Image area */
.modular-card-images {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Orange tint overlay on hover */
.modular-card-images::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 102, 0, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.modular-card:hover .modular-card-images::after {
    opacity: 1;
}

.modular-img-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.modular-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.6s ease;
}

.modular-img.active {
    opacity: 1;
}

.modular-card:hover .modular-img.active {
    transform: scale(1.05);
}

/* Content area */
.modular-card-content {
    padding: 36px 34px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.modular-card-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.modular-card:hover .modular-card-content h3 {
    color: var(--primary);
}

.modular-card-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature list */
.modular-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.modular-features li {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.modular-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* CTA Button */
.btn-modular {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
}

.btn-modular:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9e00 100%);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

/* Staggered scroll reveal */
.modular-card:nth-child(1) {
    transition-delay: 0s;
}

.modular-card:nth-child(2) {
    transition-delay: 0.1s;
}

.modular-card:nth-child(3) {
    transition-delay: 0.2s;
}

.modular-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modular-title {
        font-size: 2.4rem;
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* === Typography === */
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }

    /* === Header / Nav === */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        transition: left 0.3s;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .header .btn {
        display: none;
    }

    /* === Hero === */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        font-size: 2.4rem;
        white-space: normal;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        padding: 8px 16px;
        letter-spacing: 1.5px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: row;
        gap: 16px;
        padding: 16px 20px;
        margin-top: 35px;
        width: 100%;
        justify-content: center;
    }

    .trust-number {
        font-size: 1.1rem;
    }

    .trust-label {
        font-size: 0.6rem;
    }

    .trust-divider {
        height: 28px;
    }

    .hero-particles {
        display: none;
    }

    /* === Stats === */
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* === VSL Section === */
    .vsl-section {
        padding: 80px 0;
    }

    .vsl-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .vsl-text .section-title {
        text-align: center;
        font-size: 2rem;
    }

    .vsl-text p {
        font-size: 1rem;
    }

    .play-button {
        width: 65px;
        height: 65px;
    }

    /* === Specialists Section === */
    .specialists-section {
        padding: 80px 0;
    }

    .specialists-title {
        font-size: 2rem;
    }

    .specialists-carousel-wrapper .carousel {
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
    }

    .carousel-button--left {
        left: 10px;
    }

    .carousel-button--right {
        right: 10px;
    }

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

    /* === Differentials === */
    .diff-heading {
        font-size: 1.3rem;
        text-align: center;
    }

    .diff-item {
        padding: 14px 16px;
    }

    .diff-item strong {
        font-size: 1rem;
    }

    .diff-item p {
        font-size: 0.85rem;
    }

    /* === Tools List === */
    .specialists-list li {
        font-size: 0.95rem;
    }

    /* === Digital Ops === */
    .digital-ops {
        padding: 80px 0;
    }

    .digital-ops-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .digital-ops-title {
        font-size: 2rem;
    }

    .digital-ops-subtitle {
        font-size: 1rem;
    }

    .ops-card {
        padding: 35px 25px;
        min-height: auto;
    }

    .ops-icon {
        width: 60px;
        height: 60px;
    }

    .ops-card h3 {
        font-size: 1.25rem;
    }

    /* === Detailed Services === */
    .detailed-services {
        padding: 80px 0;
    }

    .detailed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .card-number {
        font-size: 2rem;
    }

    .detail-card h3 {
        font-size: 1.15rem;
    }

    /* === CTA Section === */
    .cta-section {
        padding: 60px 0 80px;
    }

    .cta-box {
        padding: 50px 24px;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn-whatsapp {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }

    .cta-note {
        font-size: 0.75rem;
    }

    /* === Footer === */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    /* === Modular Products === */
    .modular-section {
        padding: 80px 0;
    }

    .modular-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modular-title {
        font-size: 2rem;
    }

    .modular-subtitle {
        font-size: 1rem;
    }

    .modular-card-content {
        padding: 24px 20px 28px;
    }

    .modular-card-content h3 {
        font-size: 1.2rem;
    }

    .btn-modular {
        width: 100%;
    }

    /* === Marketplace Ticker === */
    .marketplace-ticker {
        padding: 20px 0;
    }

    .ticker-track img {
        height: 30px;
    }

    .ticker-track {
        gap: 40px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-trust {
        gap: 10px;
        padding: 14px 14px;
    }

    .trust-number {
        font-size: 0.95rem;
    }

    .trust-label {
        font-size: 0.5rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .specialists-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   Universal Scroll Reveal
   ============================================ */
.sr {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sr-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sr-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sr-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sr.visible,
.sr-left.visible,
.sr-right.visible,
.sr-scale.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for grouped elements */
.sr-delay-1 {
    transition-delay: 0.1s;
}

.sr-delay-2 {
    transition-delay: 0.2s;
}

.sr-delay-3 {
    transition-delay: 0.3s;
}

.sr-delay-4 {
    transition-delay: 0.4s;
}

.sr-delay-5 {
    transition-delay: 0.5s;
}