:root {
    --midnight: #000000;
    --navy-deep: #000000;
    --coral: #6100ff;
    --coral-light: #7a1fff;
    --peach: #9d4eff;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --alabaster: #F8FAFC;
    --glass: rgba(255, 255, 255, 0.05);

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;

    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
}

#navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.nav-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
    left: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 180px;
    width: auto;
    transition: all 0.3s var(--ease-smooth);
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 10px rgba(97, 0, 255, 0.5));
    transform: scale(1.02);
}

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

.slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.case-study-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.slide-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slide-title-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.services-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.9) 0%, rgba(147, 51, 234, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 
        0 4px 20px rgba(97, 0, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.know-more-btn:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 1) 0%, rgba(168, 85, 247, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(97, 0, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.know-more-btn i {
    transition: transform 0.3s var(--ease-smooth);
}

.know-more-btn:hover i {
    transform: translateX(5px);
}

.service-know-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.8) 0%, rgba(147, 51, 234, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 2px 10px rgba(97, 0, 255, 0.3);
}

.service-know-more:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 1) 0%, rgba(168, 85, 247, 1) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(97, 0, 255, 0.4);
}

.service-know-more i {
    font-size: 0.75rem;
    transition: transform 0.3s var(--ease-smooth);
}

.service-know-more:hover i {
    transform: translateX(3px);
}

.nav-glass-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.nav-contact-btn {
    flex-shrink: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.nav-contact-btn .cta-button {
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.9) 0%, rgba(147, 51, 234, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(97, 0, 255, 0.4),
        0 0 40px rgba(97, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.75rem;
}

.nav-contact-btn .cta-button:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 1) 0%, rgba(168, 85, 247, 1) 100%);
    box-shadow: 
        0 6px 30px rgba(97, 0, 255, 0.6),
        0 0 60px rgba(147, 51, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-mobile-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .nav-glass-container,
    .nav-contact-btn {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
        position: absolute;
        right: 0;
    }

    .nav-layout {
        justify-content: center;
    }

    .nav-logo {
        display: flex !important;
        position: absolute;
        left: 0;
    }

    .nav-logo-img {
        height: 180px;
    }
}

.nav-link-modern {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    white-space: nowrap;
}

.nav-link-modern:hover {
    color: white;
}

.nav-link-modern.active {
    color: white;
    background: rgba(97, 0, 255, 0.2);
    border-radius: 50px;
}

.nav-contact-link {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-contact-link:hover {
    background: transparent !important;
    color: white !important;
}

.nav-contact-link.active {
    background: rgba(97, 0, 255, 0.2) !important;
    color: white !important;
}

.mobile-menu-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    z-index: 100;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.custom-cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6100ff;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
    will-change: transform;
    box-shadow: 0 0 20px rgba(97, 0, 255, 0.8);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(97, 0, 255, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
    will-change: transform;
    background: rgba(97, 0, 255, 0.1);
}

@media (max-width: 1024px) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(2);
}

#navbar {
    background: transparent;
}

/* #navbar.scrolled {
    background: rgba(15, 23, 42, 0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
} */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--coral), var(--peach));
    transition: width 0.3s var(--ease-smooth);
}

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

.cta-button {
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    background: transparent;
    border: 1px solid rgba(97, 0, 255, 0.3);
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
    display: inline-block;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    z-index: 0;
    border-radius: 2rem;
}

.cta-button:hover .cta-gradient {
    opacity: 1;
}

.cta-button:hover {
    border-color: transparent;
    transform: translateY(-2px);
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-smooth);
    z-index: 40;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
}

.mobile-link {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-smooth);
}

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

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.5s; }

.mobile-link.cta {
    background: linear-gradient(135deg, var(--coral), var(--peach));
    padding: 1rem 2rem;
    border-radius: 2rem;
}

.mobile-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s var(--ease-smooth);
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
}

.mobile-menu.active .mobile-close-btn {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.3s;
}

.mobile-close-btn:hover {
    background: rgba(97, 0, 255, 0.2);
    border-color: rgba(97, 0, 255, 0.3);
}

.mobile-close-btn span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.mobile-close-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-close-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

.hero-section {
    position: relative;
    background: var(--midnight);
    min-height: 100vh;
}

.hero-bg-new {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(97, 0, 255, 0.08), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(157, 78, 255, 0.06), transparent 40%);
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: heroFloat 25s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6100ff, #9d4eff);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7a1fff, #6100ff);
    bottom: -10%;
    right: 10%;
    animation-delay: 8s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #9d4eff, #7a1fff);
    top: 40%;
    right: 30%;
    animation-delay: 16s;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -60px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge-container {
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(97, 0, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    animation: badgeFadeIn 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #6100ff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px #6100ff;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-title-line {
        opacity: 0;
        animation: titleSlideIn 0.8s ease-out forwards;
    }
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-gradient-text {
    display: inline-block;
    background: linear-gradient(115deg, #f3e8ff 0%, #d8b4fe 25%, #c084fc 50%, #a855f7 75%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 60px rgba(124, 58, 237, 0.4));
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle-new {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    animation: subtitleFadeIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: ctaFadeIn 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #6100ff, #7a1fff);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(97, 0, 255, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(97, 0, 255, 0.5);
}

.btn-shine {
    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.6s ease;
}

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

.btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(97, 0, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(97, 0, 255, 0.1);
    border-color: rgba(97, 0, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
    animation: statsFadeIn 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-stat-number2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-stat-number::after {
    content: '+';
    color: #6100ff;
    margin-left: 2px;
}

.hero-stat-number2::after {
    content: '%';
    color: #6100ff;
    margin-left: 2px;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: visualFadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes visualFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lottie-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 20px 60px rgba(97, 0, 255, 0.3));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(97, 0, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: cardFloat 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 50%;
    left: -10%;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(97, 0, 255, 0.1);
    border-radius: 12px;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.floating-card-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.floating-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.scroll-indicator-new {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(97, 0, 255, 0.5), transparent);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(97, 0, 255, 0.15), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(157, 78, 255, 0.1), transparent 50%);
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--peach), var(--coral-light));
    bottom: 20%;
    right: 15%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--coral-light), var(--coral));
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.glass-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--coral), var(--peach), var(--coral-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    background: transparent;
    border: 1px solid var(--coral);
    color: white;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.25s var(--ease-smooth);
    will-change: transform, box-shadow;
}

.button-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    opacity: 0;
    transition: opacity 0.25s var(--ease-smooth);
    z-index: 0;
}

.primary-button:hover .button-gradient {
    opacity: 1;
}

.primary-button:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(97, 0, 255, 0.3);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-light);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s var(--ease-smooth);
    animation: cardFloat 6s ease-in-out infinite;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.05);
}

.card-1 {
    top: 10%;
    left: 10%;
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    width: 160px;
    height: 160px;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-label {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    text-align: center;
}

.central-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(97, 0, 255, 0.2), transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--coral);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.section-spacing {
    /* padding: 8rem 0; */
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 4rem 0;
    }
}

.section-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(97, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(97, 0, 255, 0.3), transparent);
}

#about, #services, #work, #testimonials {
    border-top: 1px solid rgba(97, 0, 255, 0.08);
    margin-top: 2rem;
    padding-top: 5rem;
}

@media (max-width: 768px) {
    #about, #services, #work, #testimonials {
        margin-top: 1rem;
        padding-top: 3rem;
    }
}

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s var(--ease-smooth);
    will-change: transform, background, border-color;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-6px);
    border-color: rgba(97, 0, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.1), rgba(157, 78, 255, 0.1));
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--slate-light);
    line-height: 1.6;
}

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

.service-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s var(--ease-smooth);
    overflow: hidden;
    cursor: none;
    will-change: transform, border-color, box-shadow;
}

.service-card-modern.magnetic {
    transform-style: preserve-3d;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.1), rgba(157, 78, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    z-index: 1;
}

.service-card-modern:hover .service-gradient {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(97, 0, 255, 0.3);
    box-shadow: 0 20px 60px rgba(97, 0, 255, 0.15);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.25s var(--ease-smooth);
    will-change: transform, background;
}

.service-icon-modern i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: rgba(97, 0, 255, 0.1);
}

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.service-desc-modern {
    font-size: 1rem;
    color: var(--slate-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(97, 0, 255, 0.1);
    color: var(--coral);
    transition: all 0.3s var(--ease-smooth);
}

.service-card-modern:hover .service-arrow {
    background: var(--coral);
    color: white;
    transform: translateX(5px);
}

.case-studies-section {
    position: relative;
}

.case-studies-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(97, 0, 255, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 5rem;
}

.case-studies-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(97, 0, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #6100ff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px #6100ff;
}

.case-studies-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.case-title-line {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.case-title-gradient {
    background: linear-gradient(135deg, #6100ff, #9d4eff, #7a1fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease infinite;
}

.case-studies-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.featured-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(97, 0, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.featured-case-visual {
    position: relative;
    height: 400px;
}

.featured-case-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 16px;
}

.featured-gradient-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(97, 0, 255, 0.3), transparent 70%);
    top: -50px;
    left: -50px;
    filter: blur(60px);
    animation: floatSlow 20s ease-in-out infinite;
}

.featured-gradient-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(157, 78, 255, 0.25), transparent 70%);
    bottom: -50px;
    right: -50px;
    filter: blur(60px);
    animation: floatSlow 15s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.featured-mockup {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mockup-browser {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.featured-case-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.case-tag {
    padding: 0.5rem 1rem;
    background: rgba(97, 0, 255, 0.1);
    border: 1px solid rgba(97, 0, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #9d4eff;
    font-weight: 500;
}

.featured-case-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.featured-case-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.featured-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.featured-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6100ff;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.case-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6100ff, #7a1fff);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(97, 0, 255, 0.3);
    align-self: flex-start;
}

.case-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(97, 0, 255, 0.5);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(97, 0, 255, 0.3);
    box-shadow: 0 20px 60px rgba(97, 0, 255, 0.2);
}

.case-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.1), rgba(157, 78, 255, 0.05));
}

.case-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-card:hover .case-card-overlay {
    opacity: 1;
}

.case-hover-content {
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.case-card:hover .case-hover-content {
    transform: scale(1);
}

.case-card-content {
    padding: 2rem;
}

.case-card-category {
    display: inline-block;
    font-size: 0.75rem;
    color: #9d4eff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.case-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.case-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-card-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6100ff;
}

.case-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.case-study-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 3rem;
    padding: 3rem;
    border: 1px solid rgba(97, 0, 255, 0.1);
    align-items: stretch;
    min-height: 600px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
}

.slide-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
    padding: 1rem;
}

.slide-visual .slide-lottie {
    height: 280px;
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
}

.slide-visual .slide-metrics {
    width: 100%;
    margin-top: 0;
    padding-top: 1rem;
}

.slide-lottie {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(97, 0, 255, 0.3));
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    justify-content: flex-start;
    padding: 0.5rem;
}

.slide-number {
    display: none;
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c4a7ff 0%, #a855f7 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background-color: rgba(97, 0, 255, 0.1);
    border: 1px solid rgba(157, 78, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.5));
}

.slide-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 167, 255, 0.1), rgba(124, 58, 237, 0.05));
    border-radius: 16px;
    z-index: -1;
}

.slide-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    min-height: 2.5rem;
    align-items: flex-start;
}

.slide-tag {
    padding: 0.5rem 1rem;
    background: rgba(97, 0, 255, 0.1);
    border: 1px solid rgba(97, 0, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #9d4eff;
    font-weight: 500;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.slide-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    min-height: 7rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    min-height: 9rem;
    margin-top: auto;
}

.detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9d4eff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(97, 0, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(97, 0, 255, 0.1);
}

.slide-metric {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.metric-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: #9d4eff;
    line-height: 1.2;
}

.metric-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

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

.carousel-nav:hover {
    background: rgba(97, 0, 255, 0.2);
    border-color: rgba(97, 0, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -28px;
}

.carousel-next {
    right: -28px;
}

.carousel-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    /* margin-top: 3rem; */
       margin-bottom: 10rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #6100ff;
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(97, 0, 255, 0.5);
}

.testimonials-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 40s linear infinite;
    will-change: transform;
    cursor: grab !important;
}

.testimonials-track:active {
    cursor: grabbing !important;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card-scroll {
    min-width: 400px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
    pointer-events: auto;
}

.testimonial-card-scroll:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(97, 0, 255, 0.2);
    transform: translateY(-4px);
}

.testimonials-marquee:active .testimonial-card-scroll:hover {
    transform: translateY(0);
}

.testimonial-author-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar-scroll {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar-scroll i {
    font-size: 1.25rem;
    color: white;
}

.author-info-scroll {
    flex: 1;
}

.author-name-scroll {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 0.25rem;
}

.author-title-scroll {
    font-size: 0.875rem;
    color: var(--slate-light);
}

.testimonial-quote-scroll {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-light);
}

@media (max-width: 768px) {
    .testimonial-card-scroll {
        min-width: 300px;
        max-width: 300px;
    }

    .testimonials-track {
        gap: 1rem;
    }
}

.footer-section {
    position: relative;
    background: var(--navy-deep);
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral), var(--peach), transparent);
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-links li {
    color: var(--slate-light);
    font-size: 1rem;
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-link-item {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--slate-light);
    transition: all 0.3s var(--ease-smooth);
}

.footer-link-item:hover {
    color: var(--purple);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--slate-light);
}

.footer-copyright {
    color: var(--slate-light);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle-new {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta-group a {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .hero-visual {
        height: 280px;
    }

    .scroll-indicator-new {
        display: none;
    }

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

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

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-modern {
        padding: 1.5rem;
    }

    .service-title-modern {
        font-size: 1.25rem;
    }

    .service-desc-modern {
        font-size: 0.9rem;
    }

    .featured-case {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .featured-case-visual {
        height: 250px;
    }

    .featured-case-title {
        font-size: 1.75rem;
    }

    .featured-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .metric-divider {
        display: none;
    }

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

    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        min-height: auto;
        border-radius: 16px;
    }

    .slide-visual {
        height: auto;
        min-height: 250px;
        padding: 0.5rem;
    }

    .slide-visual .slide-lottie {
        height: 220px;
        max-width: 100%;
    }

    .slide-number {
        font-size: 2.5rem;
    }

    .slide-title {
        font-size: 1.5rem;
        flex-wrap: wrap;
        min-height: 2rem;
    }

    .slide-title-logo {
        width: 24px;
        height: 24px;
    }

    .slide-desc {
        font-size: 0.9rem;
        min-height: 6rem;
        -webkit-line-clamp: 4;
    }

    .slide-details {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        min-height: auto;
    }

    .detail-heading {
        font-size: 0.8rem;
    }

    .detail-text {
        font-size: 0.85rem;
    }

    .slide-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .slide-metric {
        padding: 0.6rem;
    }

    .metric-num {
        font-size: 1rem;
    }

    .metric-lbl {
        font-size: 0.65rem;
    }

    .carousel-prev,
    .carousel-next {
        display: none;
    }

    .case-studies-title {
        font-size: 2rem;
    }

    .case-title-line {
        font-size: 2rem;
    }

    .case-studies-subtitle {
        font-size: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .value-desc {
        font-size: 0.875rem;
    }

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

    .footer-heading {
        font-size: 1rem;
    }

    .footer-links li,
    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .form-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .nav-logo-img {
        height: 180px;
    }

    .footer-logo-img {
        height: 180px;
    }

    .slide-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .slide-metric {
        padding: 0.5rem;
    }

    .metric-num {
        font-size: 1.1rem;
    }

    .slide-visual .slide-lottie {
        height: 180px;
    }

    .service-know-more {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon i {
        font-size: 1.25rem;
    }

    .footer-link-item {
        font-size: 0.85rem;
    }
}

section {
    scroll-margin-top: 100px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    body {
        cursor: auto !important;
    }

    .custom-cursor,
    .cursor-follower {
        display: none !important;
    }

    .floating-orb {
        animation: none !important;
    }

    .glass-card {
        animation: none !important;
    }

    .scroll-wheel {
        animation: none !important;
    }

    .gradient-text {
        animation: none !important;
    }

    .central-glow {
        animation: none !important;
    }

    .testimonials-track {
        animation: none !important;
    }
}

/* ============================================
   Contact Form Styles
   ============================================ */

.contact-form-container {
    background: linear-gradient(135deg, rgba(97, 0, 255, 0.05) 0%, rgba(157, 78, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(97, 0, 255, 0.2);
    box-shadow: 0 8px 32px rgba(97, 0, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: #F8FAFC;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(97, 0, 255, 0.3);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: #F8FAFC;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #6100ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(97, 0, 255, 0.1);
}

.form-input::placeholder {
    color: #94A3B8;
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-error {
    color: #fca5a5;
    font-size: 0.85rem;
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 6px;
    border-left: 3px solid #ef4444;
}

.form-error.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #6100ff 0%, #9d4eff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 0, 255, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-submit-btn .button-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-submit-btn:hover .button-gradient {
    opacity: 1;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for contact form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }

    .form-submit-btn {
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   MOBILE REDESIGN (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Base font sizing */
    html {
        font-size: 15px;
    }

    /* HEADER / NAVBAR - Mobile */
    #navbar {
        padding: 0.75rem 1rem;
    }

    .nav-layout {
        padding: 0 0.5rem;
    }

    .nav-logo {
        position: relative;
        left: auto;
    }

    .nav-logo-img {
        height: 180px !important;
        width: auto !important;
    }

    .mobile-menu-glass {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .mobile-menu {
        right: 1rem;
        left: 1rem;
        top: 65px;
        padding: 1.25rem;
        border-radius: 12px;
    }

    .mobile-menu-content {
        gap: 1.25rem;
    }

    .mobile-menu-content a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    /* HERO SECTION - Mobile */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero-title-line {
        font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
        text-align: center;
        line-height: 1.2;
    }

    .hero-subtitle-new {
        font-size: 0.9rem;
        text-align: center;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        align-items: stretch;
    }

    .hero-cta-group a {
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .hero-stat {
        text-align: center;
        min-width: 80px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-visual {
        height: 220px;
        order: -1;
        margin-bottom: 1rem;
    }

    .floating-card {
        display: none !important;
    }

    .scroll-indicator-new {
        display: none;
    }

    /* SECTIONS - Mobile */
    #about, #services, #work, #testimonials, #contact {
        margin-top: 0;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .section-spacing {
        padding: 2.5rem 0;
    }

    .section-label {
        font-size: 0.7rem;
        text-align: center;
        display: block;
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.75rem) !important;
        text-align: center;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    /* SERVICES - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .service-card-modern {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .service-icon-modern {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }

    .service-icon-modern i {
        font-size: 1.1rem;
    }

    .service-title-modern {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-desc-modern {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-know-more {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-top: 1rem;
    }

    .services-cta {
        margin-top: 1.5rem;
    }

    .know-more-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* CASE STUDIES CAROUSEL - Mobile */
    .case-study-carousel {
        margin: 0;
        padding: 0 0.5rem;
    }

    .carousel-container {
        border-radius: 1rem;
        overflow: hidden;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        min-height: auto;
        border-radius: 12px;
    }

    .slide-visual {
        height: auto;
        min-height: 180px;
        order: 1;
        padding: 0.5rem;
    }

    .slide-visual .slide-lottie {
        height: 160px;
        max-width: 100%;
    }

    .slide-image {
        padding: 0.5rem;
    }

    .case-study-img {
        border-radius: 8px;
    }

    .slide-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-top: 0.5rem;
        padding: 0.6rem;
    }

    .slide-metric {
        padding: 0.5rem 0.4rem;
        border-radius: 6px;
    }

    .metric-num {
        font-size: 0.85rem;
    }

    .metric-lbl {
        font-size: 0.55rem;
    }

    .slide-content {
        order: 2;
        padding: 0;
    }

    .slide-tags {
        gap: 0.35rem;
        flex-wrap: wrap;
        margin-bottom: 0.75rem;
    }

    .slide-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
    }

    .slide-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        min-height: 1.5rem;
    }

    .slide-title-logo {
        width: 20px;
        height: 20px;
    }

    .slide-desc {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        min-height: 4.5rem;
        -webkit-line-clamp: 3;
    }

    .slide-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        min-height: auto;
    }

    .detail-section {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .detail-heading {
        font-size: 0.7rem;
        margin-bottom: 0.35rem;
    }

    .detail-text {
        font-size: 0.75rem;
        line-height: 1.45;
    }

    .carousel-prev,
    .carousel-next {
        display: none !important;
    }

    .carousel-indicators {
        gap: 0.35rem;
        padding: 0.75rem 0;
        margin-top: 0.5rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }

    .case-studies-title,
    .case-title-line {
        font-size: 1.5rem !important;
    }

    .case-studies-subtitle {
        font-size: 0.85rem;
    }

    /* VALUES/ABOUT - Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .value-card {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
        border-radius: 0.5rem;
    }

    .value-icon i {
        font-size: 1rem;
    }

    .value-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .value-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* TESTIMONIALS - Mobile */
    .testimonials-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-marquee::-webkit-scrollbar {
        display: none;
    }

    .testimonials-track {
        gap: 0.75rem;
        animation: none;
        padding: 0.5rem;
    }

    .testimonial-card-scroll {
        min-width: 260px;
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .author-avatar-scroll {
        width: 36px;
        height: 36px;
    }

    .author-name-scroll {
        font-size: 0.85rem;
    }

    .author-title-scroll {
        font-size: 0.7rem;
    }

    .testimonial-text-scroll {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* CONTACT FORM - Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-container {
        padding: 1rem;
        border-radius: 1rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .form-label {
        font-size: 0.75rem;
        margin-bottom: 0.35rem;
    }

    .form-input {
        padding: 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .form-input::placeholder {
        font-size: 0.8rem;
    }

    .form-submit-btn {
        padding: 0.875rem;
        font-size: 0.85rem;
        width: 100%;
        border-radius: 8px;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info-title {
        font-size: 1.1rem;
    }

    .contact-info-text {
        font-size: 0.8rem;
    }

    /* FOOTER - Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand-section {
        text-align: center;
    }

    .footer-logo-img {
        height: 180px !important;
        width: auto !important;
        margin: 0 auto;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .footer-subtitle {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        align-items: center;
        gap: 0.5rem;
    }

    .footer-link-item {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* SMALL MOBILE (max-width: 374px) */
@media (max-width: 374px) {
    html {
        font-size: 14px;
    }

    .nav-logo-img {
        height: 180px !important;
    }

    .footer-logo-img {
        height: 180px !important;
    }

    .hero-title-line {
        font-size: clamp(1.5rem, 9vw, 1.75rem) !important;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .slide-visual .slide-lottie {
        height: 130px;
    }

    .slide-title {
        font-size: 1rem !important;
    }

    .slide-desc {
        font-size: 0.75rem;
    }

    .metric-num {
        font-size: 0.8rem;
    }

    .metric-lbl {
        font-size: 0.55rem;
    }
}

/* Landscape mode on mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 1.5rem;
    }

    .hero-visual {
        height: 150px;
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: row;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card-modern:hover,
    .value-card:hover,
    .carousel-slide:hover {
        transform: none;
    }

    .nav-link-modern {
        padding: 0.75rem 1.25rem;
    }

    .mobile-menu-content a {
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }
}
