/* ========================================
   MERCODE Design Studio - Premium Styles
   Apple Liquid Glass Theme
   ======================================== */

/* CSS Variables */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5b4cdb;
    --primary-light: #a29bfe;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --dark-lighter: #1a1a25;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Liquid Glass Variables */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-hover: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(40px) saturate(180%);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   LIQUID GLASS NAVIGATION - Apple Style
   ======================================== */
.navbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0;
    width: auto;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    background: rgba(30, 30, 40, 0.4);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

/* Liquid Glass Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: rgba(30, 30, 45, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-logo:hover {
    background: rgba(40, 40, 55, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
}

.logo-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0px;
}

.logo-dot {
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Nav Links Container with Sliding Indicator */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
    padding: 2px;
}

/* Sliding Liquid Glass Indicator */
.nav-indicator {
    position: absolute;
    height: calc(100% - 4px);
    background: rgba(108, 92, 231, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 20px rgba(108, 92, 231, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    z-index: 0;
    top: 2px;
    pointer-events: none;
    /* Liquid wobble effect */
    animation: liquidSettle 0.3s ease-out;
}

@keyframes liquidSettle {
    0% { transform: scaleX(0.95) scaleY(1.05); }
    50% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(1) scaleY(1); }
}

/* Apply liquid animation when indicator moves */
.nav-indicator.moving {
    animation: liquidMove 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes liquidMove {
    0% { transform: scaleX(1) scaleY(1); }
    25% { transform: scaleX(1.1) scaleY(0.9); }
    50% { transform: scaleX(0.95) scaleY(1.05); }
    75% { transform: scaleX(1.02) scaleY(0.98); }
    100% { transform: scaleX(1) scaleY(1); }
}

/* Liquid Glass Nav Links */
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--white);
    background: transparent;
}

/* Liquid Glass CTA Button - Matching Logo Style */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(30, 30, 45, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta:hover {
    background: rgba(108, 92, 231, 0.25);
    border-color: rgba(108, 92, 231, 0.4);
    transform: scale(1.05);
    box-shadow: 
        0 8px 25px rgba(108, 92, 231, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-cta i {
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(3px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    padding: 15px 20px;
    background: rgba(30, 30, 40, 0.4);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu - Liquid Glass */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-normal);
}

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

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-light);
    transition: color var(--transition-normal);
    padding: 15px 40px;
    border-radius: 20px;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

/* ========================================
   LIQUID GLASS BUTTONS - Global Styles
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

/* Primary Button - Liquid Glass with Gradient Tint */
.btn-primary {
    background: rgba(108, 92, 231, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border: 1px solid rgba(108, 92, 231, 0.4);
    box-shadow: 
        0 8px 32px rgba(108, 92, 231, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

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

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

.btn-primary:hover {
    background: rgba(108, 92, 231, 0.4);
    border-color: rgba(108, 92, 231, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(108, 92, 231, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary i {
    transition: transform var(--transition-normal);
}

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

/* Secondary Button - Liquid Glass Outline */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

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

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(-50px, -30px) scale(1.05); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 120px;
    letter-spacing: 2px;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    /* Allow ghost lines to overflow visibly */
    overflow: visible;
}

.logo-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    /* Ensure overflow visible for pseudo-elements */
    overflow: visible;
}

/* Top outline layer */
.logo-line::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgba(108, 92, 231, 0.6);
    text-stroke: 2px rgba(108, 92, 231, 0.6);
    opacity: 0;
    transform: translateY(0);
    animation: slideOutTop 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
    width: 100%;
    white-space: nowrap;
}

/* Bottom outline layer */
.logo-line::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgba(108, 92, 231, 0.5);
    text-stroke: 2px rgba(108, 92, 231, 0.5);
    opacity: 0;
    transform: translateY(0);
    animation: slideOutBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.8s;
    width: 100%;
    white-space: nowrap;
}

@keyframes slideOutTop {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; }
    100% { opacity: 1; transform: translateY(-100%); }
}

@keyframes slideOutBottom {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; }
    100% { opacity: 1; transform: translateY(100%); }
}

.hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.4s;
}

/* Stats with Liquid Glass */
.stat {
    text-align: center;
    padding: 20px 30px;
    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: 20px;
    transition: all 0.4s ease;
}

.stat:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-number::after {
    content: '+';
    -webkit-text-fill-color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    display: block;
}

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

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

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

/* ========================================
   MARQUEE SECTION - Liquid Glass
   ======================================== */
.marquee-section {
    padding: 30px 0;
    background: rgba(18, 18, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-dot {
    color: var(--primary) !important;
    font-size: 1rem !important;
}

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

/* ========================================
   SECTION STYLES - Liquid Glass Theme
   ======================================== */
section {
    padding: 120px 0;
}

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

/* Liquid Glass Section Tag */
.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(108, 92, 231, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 
        0 4px 15px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.section-tag:hover {
    background: rgba(108, 92, 231, 0.25);
    transform: translateY(-2px);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION - Liquid Glass Cards
   ======================================== */
.services {
    background: var(--dark);
    position: relative;
}

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

/* Services Marquee Container - Liquid Glass */
.services-marquee-container {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--border-radius-lg);
    padding: 80px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.services-marquee-container::before,
.services-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.services-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(18, 18, 26, 1) 0%, rgba(18, 18, 26, 0.8) 30%, transparent 100%);
}

.services-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(18, 18, 26, 1) 0%, rgba(18, 18, 26, 0.8) 30%, transparent 100%);
}

.services-marquee {
    overflow: hidden;
    width: 100%;
}

.services-marquee-track {
    display: flex;
    gap: 40px;
    animation: services-scroll 20s linear infinite;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    perspective: 1000px;
}

.services-marquee-container:hover .services-marquee-track {
    animation-play-state: paused;
}

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

/* Liquid Glass Service Card */
.services-marquee-track .service-card {
    min-width: 380px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}

.services-marquee-track .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-marquee-track .service-card:hover {
    transform: translateY(-12px) scale(1.02) translateZ(0);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 
        0 24px 48px rgba(108, 92, 231, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.services-marquee-track .service-card:hover::before {
    opacity: 0.06;
}

.services-marquee-track .service-card > * {
    position: relative;
    z-index: 1;
}

/* Liquid Glass Service Icon */
.services-marquee-track .service-icon {
    width: 75px;
    height: 75px;
    background: rgba(108, 92, 231, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(108, 92, 231, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.services-marquee-track .service-card:hover .service-icon {
    transform: scale(1.08) rotate(3deg);
    background: rgba(108, 92, 231, 0.35);
    box-shadow: 
        0 12px 32px rgba(108, 92, 231, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.services-marquee-track .service-icon i {
    font-size: 1.9rem;
    color: var(--white);
}

.services-marquee-track .service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    will-change: transform;
}

.services-marquee-track .service-card p {
    color: var(--gray-light);
    line-height: 1.75;
    font-size: 0.98rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

/* ========================================
   PROCESS SECTION - Liquid Glass
   ======================================== */
.process {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% - 160px);
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
    opacity: 0;
    animation: timeline-draw 2s ease forwards;
    animation-delay: 0.5s;
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    opacity: 0;
    animation: dot-travel 3s ease forwards;
    animation-delay: 1s;
}

@keyframes timeline-draw {
    0% { height: 0; opacity: 0; }
    10% { opacity: 1; }
    100% { height: calc(100% - 160px); opacity: 1; }
}

@keyframes dot-travel {
    0% { top: 80px; opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 80px); opacity: 0; }
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* Liquid Glass Step Number */
.step-number {
    width: 90px;
    height: 90px;
    background: rgba(108, 92, 231, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 
        0 8px 32px rgba(108, 92, 231, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.15) rotate(10deg);
    background: rgba(108, 92, 231, 0.5);
    box-shadow: 
        0 15px 50px rgba(108, 92, 231, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Liquid Glass Step Content */
.step-content {
    width: calc(50% - 80px);
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: translateY(-50%);
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
    text-align: right;
}

.process-step:nth-child(odd) .step-content::before {
    right: -30px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
    text-align: left;
}

.process-step:nth-child(even) .step-content::before {
    left: -30px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.step-content:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 
        0 20px 50px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
}

.process-step[data-aos="fade-right"] {
    animation: fadeInRight 0.8s ease forwards;
}

.process-step[data-aos="fade-left"] {
    animation: fadeInLeft 0.8s ease forwards;
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========================================
   PRICING SECTION - Liquid Glass Cards
   ======================================== */
.pricing {
    background: var(--dark);
}

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

/* Liquid Glass Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 
        0 20px 60px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Featured Card - Liquid Glass Enhanced */
.pricing-card.featured {
    border: 1px solid rgba(108, 92, 231, 0.4);
    background: rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateY(-20px);
    z-index: 2;
    box-shadow: 
        0 20px 60px rgba(108, 92, 231, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: visible;
}

.pricing-card.featured:hover {
    transform: translateY(-30px);
    box-shadow: 
        0 30px 80px rgba(108, 92, 231, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Liquid Glass Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--white);
    box-shadow: 
        0 4px 20px rgba(108, 92, 231, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-top: 8px;
}

.plan-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.plan-price .suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-light);
    margin-top: 8px;
}

.plan-for {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-body {
    flex: 1;
    margin-bottom: 30px;
}

.plan-description {
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-light);
}

.plan-features li i {
    color: var(--primary);
    margin-top: 3px;
}

.plan-ideal {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    margin-top: 40px;
    font-size: 0.95rem;
}

/* ========================================
   ABOUT SECTION - Liquid Glass
   ======================================== */
.about {
    background: var(--dark-light);
}

.about-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    max-width: 700px;
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Liquid Glass About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateX(5px);
}

.feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ========================================
   TESTIMONIALS - Liquid Glass Cards
   ======================================== */
.testimonials {
    background: var(--dark);
}

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

/* Liquid Glass Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.stars i {
    margin-right: 3px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Liquid Glass Author Avatar */
.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(108, 92, 231, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.author-avatar i {
    color: var(--white);
}

.author-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========================================
   CONTACT SECTION - Liquid Glass
   ======================================== */
.contact {
    background: var(--dark-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info p {
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

/* Liquid Glass Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateX(10px);
}

/* Liquid Glass Contact Icon */
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 92, 231, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(108, 92, 231, 0.35);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.contact-text span {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
}

.contact-text a,
.contact-text p {
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition-normal);
}

.contact-text a:hover {
    color: var(--primary);
}

/* Liquid Glass Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.5);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(108, 92, 231, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--white);
}

/* Liquid Glass Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: fit-content;
    align-self: center;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group:last-of-type {
    margin-bottom: 30px;
}

.contact-form button[type="submit"] {
    margin-top: 0;
}

/* Liquid Glass Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    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);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-text-fill-color: var(--white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 
        0 0 30px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all var(--transition-normal);
}

.form-group textarea ~ label {
    top: 20px;
    transform: translateY(0);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--dark-light);
    padding: 0 8px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* ========================================
   FOOTER - Minimalist Liquid Glass Theme
   ======================================== */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: var(--white);
}

.footer-brand p {
    color: var(--gray);
    margin-top: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    transition: color var(--transition-normal);
    font-size: 0.9rem;
}

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

.footer-newsletter h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.footer-newsletter p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Minimalist Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 92, 231, 0.4);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    background: rgba(108, 92, 231, 0.3);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: rgba(108, 92, 231, 0.5);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
}

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

.footer-bottom-links a {
    color: var(--gray);
    font-size: 0.8rem;
    transition: color var(--transition-normal);
}

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .step-number {
        left: 40px;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        width: calc(100% - 100px);
        margin-left: auto !important;
        text-align: left !important;
    }
    
    .step-content::before {
        display: none;
    }
    
    .process-step:hover .step-number {
        transform: translateX(-50%) scale(1.1);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-logo {
        margin-bottom: 60px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .hero-ctas {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        padding: 8px 18px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 0.95rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 80px 16px 50px;
    }
    
    .hero-logo {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        margin-bottom: 40px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .logo-line::before,
    .logo-line::after {
        -webkit-text-stroke: 1px rgba(108, 92, 231, 0.5);
        text-stroke: 1px rgba(108, 92, 231, 0.5);
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.7;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat {
        padding: 15px 20px;
        border-radius: 16px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    /* Marquee Mobile */
    .marquee-section {
        padding: 20px 0;
    }
    
    .marquee-content {
        gap: 25px;
    }
    
    .marquee-content span {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Services Marquee Mobile */
    .services-marquee-container {
        padding: 40px 0;
        border-radius: 16px;
    }
    
    .services-marquee-container::before,
    .services-marquee-container::after {
        width: 60px;
    }
    
    .services-marquee-track {
        gap: 16px;
        animation-duration: 25s;
    }
    
    .services-marquee-track .service-card {
        min-width: 260px;
        max-width: 260px;
        padding: 28px;
        border-radius: 16px;
    }
    
    .services-marquee-track .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    
    .services-marquee-track .service-icon i {
        font-size: 1.4rem;
    }
    
    .services-marquee-track .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .services-marquee-track .service-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Process Mobile */
    .process-timeline {
        padding: 30px 0;
    }
    
    .process-timeline::before {
        left: 25px;
        width: 2px;
    }
    
    .process-timeline::after {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .step-number {
        left: 25px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .process-step:hover .step-number {
        transform: translateX(-50%) scale(1.05);
    }
    
    .step-content {
        width: calc(100% - 80px);
        margin-left: auto !important;
        text-align: left !important;
        padding: 22px;
        border-radius: 16px;
    }
    
    .step-content::before {
        display: none;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* Pricing Mobile */
    .pricing-grid {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 24px;
        border-radius: 16px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .plan-price .currency,
    .plan-price .suffix {
        font-size: 1.2rem;
    }
    
    .plan-description {
        font-size: 0.9rem;
    }
    
    .plan-features li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .pricing-note {
        font-size: 0.85rem;
        margin-top: 25px;
    }

    /* About Mobile */
    .about-content {
        max-width: 100%;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0;
    }
    
    .feature {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 28px;
        border-radius: 16px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .stars {
        margin-bottom: 15px;
    }
    
    .stars i {
        font-size: 0.85rem;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
    }
    
    .author-avatar i {
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }

    /* Contact Mobile */
    .contact-grid {
        gap: 40px;
    }
    
    .contact-info .section-title {
        font-size: 1.6rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    
    .contact-details {
        margin-bottom: 25px;
    }
    
    .contact-item {
        padding: 16px;
        gap: 15px;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    .contact-item:hover {
        transform: translateX(5px);
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-text span {
        font-size: 0.8rem;
    }
    
    .contact-text a,
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
        border-radius: 16px;
    }
    
    .form-group {
        margin-bottom: 22px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        left: 16px;
    }
    
    .form-group input:focus ~ label,
    .form-group input:valid ~ label,
    .form-group textarea:focus ~ label,
    .form-group textarea:valid ~ label {
        left: 12px;
        font-size: 0.75rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 100px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand .logo-text {
        font-size: 0.7rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-links ul li {
        margin-bottom: 8px;
    }
    
    .newsletter-form input {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .newsletter-form button {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }

    /* Mobile Menu Improvements */
    .mobile-nav-toggle {
        bottom: 20px;
        padding: 12px 18px;
    }
    
    .hamburger span {
        width: 22px;
    }
    
    .mobile-nav-links a {
        font-size: 1.6rem;
        padding: 12px 30px;
    }
    
    .mobile-nav-links li {
        margin: 18px 0;
    }

    /* Hero Mobile - Boosted orb vibrancy */
    .hero .orb-1 {
        width: 380px;
        height: 380px;
        opacity: 0.75;
        filter: blur(55px);
        top: -80px;
        right: -60px;
    }

    .hero .orb-2 {
        width: 300px;
        height: 300px;
        opacity: 0.7;
        filter: blur(50px);
        bottom: -60px;
        left: -60px;
    }

    .hero .orb-3 {
        width: 250px;
        height: 250px;
        opacity: 0.65;
        filter: blur(45px);
    }

    /* MERCODE logo alignment fix */
    .hero-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 36px;
        padding-bottom: 36px;
        margin-bottom: 30px;
    }

    .logo-line {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        font-size: clamp(1.8rem, 11vw, 2.8rem);
        margin-bottom: 30px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.88rem;
    }
    
    .btn {
        padding: 13px 24px;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Services cards even smaller */
    .services-marquee-track .service-card {
        min-width: 230px;
        max-width: 230px;
        padding: 22px;
    }
    
    .services-marquee-track .service-card h3 {
        font-size: 1.1rem;
    }
    
    .services-marquee-track .service-card p {
        font-size: 0.82rem;
    }
    
    /* Pricing tighter */
    .pricing-card {
        padding: 24px 20px;
    }
    
    .plan-price .amount {
        font-size: 2.2rem;
    }
    
    /* Process tighter */
    .step-number {
        left: 15px;
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .step-content {
        width: calc(100% - 65px);
        padding: 18px;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        font-size: 0.82rem;
    }
    
    /* Contact tighter */
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 22px;
    }
    
    .testimonial-content p {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer {
        padding: 35px 0 90px;
    }
    
    .mobile-nav-links a {
        font-size: 1.4rem;
    }

    /* Even stronger orbs on small screens */
    .hero .orb-1 {
        width: 280px;
        height: 280px;
        opacity: 0.8;
        filter: blur(45px);
        top: -50px;
        right: -40px;
    }

    .hero .orb-2 {
        width: 220px;
        height: 220px;
        opacity: 0.75;
        filter: blur(40px);
    }

    .hero .orb-3 {
        width: 180px;
        height: 180px;
        opacity: 0.7;
        filter: blur(35px);
    }

    .hero-logo {
        padding-top: 28px;
        padding-bottom: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 360px) {
    .hero-logo {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .services-marquee-track .service-card {
        min-width: 200px;
        max-width: 200px;
        padding: 18px;
    }
    
    .plan-price .amount {
        font-size: 1.8rem;
    }
}
