/* ===========================
   GrowZen - Custom Styles
   =========================== */

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

:root {
    --emerald: #10b981;
    --emerald-light: #34d399;
    --emerald-dark: #059669;
    --dark-bg: #050505;
    --dark-card: #0a0a0a;
    --slate-border: #1e293b;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --gradient-start: #ffffff;
    --gradient-end: #9ca3af;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: 
        radial-gradient(ellipse 800px 600px at 50% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.02) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.02) 0px, transparent 50%),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.005) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.005) 41px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.005) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.005) 41px
        ),
        #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   Liquid Cursor Effect - ASMR Style
   ============================================ */
#liquid-blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
}

.liquid-cursor-blob {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
}

.bg-dark {
    background-color: var(--dark-bg);
}

/* === Typography === */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Logo Styles === */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: none; /* Hidden since logo image already contains text */
}

.mobile-logo-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

.text-emerald {
    color: var(--emerald);
}

/* === Glassmorphism === */
.glass-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(16, 185, 129, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(16, 185, 129, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ensure navbar stays on top of hero */
    z-index: 100;
    position: relative;
    /* Make navbar transparent overlay on hero */
    box-shadow: none;
}


.glass-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile: Black background on scroll */
@media (max-width: 768px) {
    .glass-header.scrolled {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
}

.glass-modal {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--slate-border);
    border-radius: 32px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* === Header & Navigation === */
.nav-link {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15), transparent);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover {
    color: var(--emerald);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link-mobile {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-align: center;
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.nav-link-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--emerald);
    background: rgba(16, 185, 129, 0.05);
}

.nav-link-mobile:hover::before {
    opacity: 1;
}

.nav-link-mobile:active {
    transform: scale(0.98);
}

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-btn:hover::before {
    opacity: 0.15;
}

.mobile-menu-btn.active {
    /* Keep same styling as normal state */
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.hamburger-icon span {
    width: 100%;
    height: 2.5px;
    background: var(--emerald);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn.active .hamburger-icon span {
    /* Keep emerald color even when active */
    background: var(--emerald);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay - Not Needed (menu is the overlay) */
.mobile-menu-overlay {
    display: none;
}

/* Full Screen Glass Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-menu-logo {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
}

.mobile-menu-cta {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* === Buttons === */
.btn-primary {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.btn-secondary {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--emerald);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* Mobile: Full width buttons */
@media (max-width: 639px) {
    .hero-section .btn-primary,
    .hero-section .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

/* === Badge === */
.badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    padding: 0;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 90vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    min-height: 140px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        min-height: 110px;
        margin-bottom: 1rem;
    }
}

/* Typewriter Effect */
#typewriter-text {
    display: inline-block;
    position: relative;
}

#typewriter-text::after {
    content: '|';
    display: inline-block;
    margin-left: 4px;
    animation: blink 1s infinite;
    color: var(--emerald);
}

/* Mobile: Force each word on new line */
@media (max-width: 768px) {
    #typewriter-text {
        display: block;
        word-spacing: 100vw;
        line-height: 1.2;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.stat-card {
    padding: 1.25rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--emerald);
    font-size: 1.5rem;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === Section Styling === */
.section-padding {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.8;
}

.bg-gradient-dark {
    background: transparent;
}

/* === Service Cards === */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--emerald);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #d1d5db;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-link {
    color: var(--emerald);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--emerald-light);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* === Why Choose Us Section === */
.why-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.why-card:hover {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(20, 20, 20, 0.8) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(16, 185, 129, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.why-icon i {
    font-size: 2rem;
    color: var(--emerald);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-icon i {
    transform: scale(1.2);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.why-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile View for Why Choose Us - Carousel */
@media (max-width: 767px) {
    #why-choose-us .grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1rem !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 2rem 0;
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    #why-choose-us .grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .why-card {
        flex: 0 0 70%;
        min-width: 70%;
        padding: 1.5rem 1rem;
        scroll-snap-align: center;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        transform: scale(0.3);
        opacity: 0.3;
    }

    .why-card.center-card {
        transform: scale(1);
        opacity: 1;
        z-index: 10;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .why-icon i {
        font-size: 1.5rem;
    }

    .why-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .why-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Add padding to first and last card for centering */
    .why-card:first-child {
        margin-left: 1rem;
    }

    .why-card:last-child {
        margin-right: 1rem;
    }
}

/* === Modern Timeline Process Section === */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Line - Desktop Only */
@media (min-width: 768px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, transparent, var(--emerald), transparent);
        transform: translateX(-50%);
    }
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

/* Mobile: Stack vertically */
@media (max-width: 767px) {
    .timeline-item {
        flex-direction: column;
        margin-bottom: 2rem;
    }
}

/* Desktop: Alternate sides */
@media (min-width: 768px) {
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: right;
    }
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile: Horizontal marker */
@media (max-width: 767px) {
    .timeline-marker {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
    }
}

.timeline-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--emerald);
    border-radius: 50%;
    border: 4px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    position: relative;
    z-index: 2;
}

/* Mobile: Hide dot */
@media (max-width: 767px) {
    .timeline-dot {
        display: none;
    }
}

.timeline-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem !important;
}

/* Mobile: Column layout */
@media (max-width: 767px) {
    .timeline-content {
        flex-direction: column;
        text-align: left;
    }
}

/* Desktop: Row layout for even items */
@media (min-width: 768px) {
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: row-reverse;
    }
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon {
    transform: scale(1.1) rotate(-5deg);
}

.timeline-icon i {
    font-size: 1.75rem;
    color: var(--emerald);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon i {
    transform: scale(1.05);
}

.timeline-text {
    flex: 1;
}

.timeline-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Desktop: Justify based on side */
@media (min-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-features {
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) .timeline-features {
        justify-content: flex-end;
    }
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--emerald);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--emerald);
    transform: translateY(-2px);
}

/* === Audit CTA Section - Redesigned === */
.audit-feature-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.audit-feature-card:hover {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(20, 20, 20, 0.8) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(16, 185, 129, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.audit-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.audit-feature-icon i {
    font-size: 1.5rem;
    color: var(--emerald);
    transition: all 0.3s ease;
}

.audit-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.audit-feature-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.4;
}

/* CTA Box */
.audit-cta-box {
    padding: 3rem;
    background: rgba(15, 15, 15, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.audit-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.audit-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.audit-stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 600;
}

.audit-cta-main {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-trust {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.audit-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.audit-trust-item i {
    font-size: 1.125rem;
}

/* Mobile Responsive */
@media (max-width: 1023px) {
    .audit-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .audit-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 640px) {
    .audit-trust {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .audit-trust-item {
        justify-content: center;
        font-size: 0.75rem;
    }

    .audit-trust-item i {
        font-size: 0.875rem;
    }
}

/* Mobile: 2 columns for audit feature cards */
@media (max-width: 767px) {
    #audit .grid.grid-cols-1.md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .audit-feature-card {
        padding: 1.25rem 1rem;
    }

    .audit-feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 0.75rem;
    }

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

    .audit-feature-title {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }

    .audit-feature-desc {
        font-size: 0.8rem;
    }
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald-dark) 0%, var(--emerald) 100%);
    border-radius: 50px;
    animation: fillProgress 1.5s ease-out;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
}

/* === Case Study Cards - Redesigned === */
.case-study-card {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.case-study-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.case-study-icon i {
    font-size: 1.25rem;
    color: var(--emerald);
}

.case-study-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.case-study-industry {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-duration {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
}

.case-study-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

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

.metric-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.metric {
    text-align: center;
}

.case-study-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-study-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.highlight-item i {
    color: var(--emerald);
    font-size: 0.875rem;
}

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

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
    color: var(--emerald);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.15));
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.case-study-link {
    color: var(--emerald);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: auto;
}

.case-study-link i {
    transition: transform 0.3s ease;
}

.case-study-link:hover {
    color: var(--emerald-light);
}

.case-study-link:hover i {
    transform: translateX(5px);
}

/* Mobile: Case Studies Carousel */
@media (max-width: 767px) {
    #case-studies .grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1.5rem !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #case-studies .grid::-webkit-scrollbar {
        display: none;
    }

    .case-study-card {
        flex: 0 0 98%;
        min-width: 98%;
        max-width: 98%;
        scroll-snap-align: center;
    }

    .case-study-card:first-child {
        margin-left: 1%;
    }

    .case-study-card:last-child {
        margin-right: 1%;
    }
}

/* === Testimonials Section - Marquee === */
.testimonials-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.testimonials-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: marqueeLeft 40s linear infinite;
    width: fit-content;
    padding: 0 1.5rem;
}

.testimonials-marquee[data-direction="right"] .testimonials-track {
    animation: marqueeRight 40s linear infinite;
}

/* Pause on hover */
.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

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

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

/* Testimonial Marquee Cards */
.testimonial-marquee-card {
    min-width: 400px;
    max-width: 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.testimonial-marquee-card:hover {
    border-color: var(--emerald);
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(16, 185, 129, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-rating {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    min-height: 80px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.5);
    flex-shrink: 0;
}

.author-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex-grow: 1;
}

.author-name-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-company-small {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-marquee-card {
        min-width: 320px;
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        min-height: 90px;
    }
    
    .testimonials-track {
        animation-duration: 30s;
    }
}

/* === Final CTA Section === */
/* === Final CTA Section === */
#final-cta {
    position: relative;
}

.cta-gradient-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.final-cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-card {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--emerald) 50%, transparent 100%);
    opacity: 0.3;
}

/* Top Stats Row */
.cta-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.cta-stat-mini {
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-stat-mini:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
}

.cta-stat-mini-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.cta-stat-mini-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main Content Center */
.cta-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* CTA Buttons */
.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.cta-buttons-wrapper .btn-large {
    width: 100%;
    max-width: 320px;
}

/* Trust Line */
.cta-trust-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-trust-line span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-trust-line i {
    color: var(--emerald);
    font-size: 0.875rem;
}

.cta-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Mobile: Keep trust line items in one line */
@media (max-width: 767px) {
    .cta-trust-line {
        flex-wrap: nowrap;
        gap: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Mobile: Keep stats in one line */
@media (max-width: 639px) {
    .cta-stats-row {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .cta-stat-mini {
        padding: 0.75rem 1rem;
    }

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

    .cta-stat-mini-label {
        font-size: 0.65rem;
    }
}

/* Tablet */
@media (min-width: 640px) {
    .cta-buttons-wrapper {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons-wrapper .btn-large {
        width: auto;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .final-cta-card {
        padding: 4rem 3rem;
    }

    .cta-heading {
        font-size: 3.5rem;
    }

    .cta-description {
        font-size: 1.25rem;
    }

    .cta-stats-row {
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .cta-stat-mini {
        padding: 1rem 2rem;
    }

    .cta-stat-mini-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .cta-stat-mini-label {
        font-size: 0.8rem;
    }

    .cta-gradient-accent {
        width: 900px;
        height: 900px;
    }
}

@media (min-width: 1024px) {
    .cta-heading {
        font-size: 4rem;
    }
}

/* Old styles for backward compatibility */
.trust-item {
    text-align: center;
}

/* === Footer === */
footer {
    background: #000000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
}

footer.glass-card {
    background: #000000;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

/* Override glass-card hover for footer */
footer.glass-card:hover {
    transform: none;
    border: none;
    box-shadow: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--emerald);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-link {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: none;
}

.footer-link:hover {
    color: #9ca3af;
}

/* Override bottom bar links hover */
footer a.text-gray-500:hover {
    color: #6b7280 !important;
}

/* Override button hover effects in footer */
footer .btn-primary:hover,
footer .btn-secondary:hover {
    transform: none;
}

/* Override any transition classes in footer */
footer .transition-colors {
    transition: none;
}

/* Mobile Footer - 2 Column Layout */
@media (max-width: 767px) {
    footer .container {
        padding-top: 3rem !important;
        padding-bottom: 2rem !important;
    }

    footer .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 1.5rem !important;
    }

    /* Company Info - Column 1 */
    footer .grid > div:nth-child(1) {
        grid-column: 1;
    }

    footer .grid > div:nth-child(1) .logo-wrapper {
        margin-bottom: 0.75rem;
    }

    footer .grid > div:nth-child(1) p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    footer .grid > div:nth-child(1) .flex {
        gap: 0.05rem;
        margin-top: 0.75rem !important;
    }

    footer .grid > div:nth-child(1) .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    /* Services - Hide on mobile */
    footer .grid > div:nth-child(2) {
        display: none !important;
    }

    /* Company - Hide on mobile */
    footer .grid > div:nth-child(3) {
        display: none !important;
    }

    /* Contact - Column 2 */
    footer .grid > div:nth-child(4) {
        grid-column: 2;
    }

    footer .grid > div:nth-child(4) h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    footer .grid > div:nth-child(4) ul {
        gap: 1rem !important;
    }

    footer .grid > div:nth-child(4) li {
        font-size: 0.75rem;
    }

    footer .grid > div:nth-child(4) li i {
        font-size: 0.875rem;
    }

    /* Hide address on mobile */
    footer .grid > div:nth-child(4) li:nth-child(3) {
        display: none;
    }

    footer .grid > div:nth-child(4) .btn-primary {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        margin-top: 1.25rem;
    }

    /* Bottom Bar */
    footer .border-t {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        gap: 0.5rem;
    }

    footer .border-t p {
        font-size: 0.7rem;
    }

    footer .border-t .flex {
        gap: 0.2rem;
        margin-top: 0.5rem !important;
    }

    footer .border-t a {
        font-size: 0.7rem;
    }
}

/* === Modal Styles === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-container {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--slate-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

/* === Progress Bar === */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald-dark) 0%, var(--emerald) 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
    width: 0%;
}

/* === Step Indicators === */
.step-indicators {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.step-indicator {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: #9ca3af;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.step-indicator.active .step-number {
    background: var(--emerald);
    border-color: var(--emerald);
    color: #ffffff;
}

.step-indicator.active .step-label {
    color: var(--emerald);
}

.step-indicator.completed .step-number {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--emerald);
    color: var(--emerald);
}

/* === Form Styles === */
.multi-step-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeSlideIn 0.5s ease;
}

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

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

.form-label {
    display: block;
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--slate-border);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Select dropdown styling */
select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2310b981' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

select.form-input option {
    background: #0a0a0a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.08);
    box-shadow: none;
}

.form-input::placeholder {
    color: #6b7280;
}

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

/* === Checkbox & Radio Styles === */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(16, 185, 129, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--emerald);
    cursor: pointer;
}

.checkbox-label span {
    color: #d1d5db;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.radio-label {
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-card {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid var(--slate-border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #d1d5db;
}

.radio-label input[type="radio"]:checked + .radio-card {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--emerald);
}

.radio-card:hover {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.1);
}

/* === Form Navigation === */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-border);
}

.form-navigation button {
    flex: 1;
}

/* === Success Modal === */
.success-icon {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* === Animations === */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .glass-modal {
        padding: 2rem 1.5rem;
    }
    
    .step-indicators {
        gap: 0.5rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .audit-cta-box,
    .final-cta {
        padding: 2rem 1.5rem;
    }
    
    .radio-group {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-navigation {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* === Technology Partners Section === */
.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .tech-logos-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .tech-logos-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }
}

.tech-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 100px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
    .tech-logo-card {
        padding: 1.5rem 1rem;
        gap: 0.65rem;
        min-height: 115px;
    }
}

@media (min-width: 1024px) {
    .tech-logo-card {
        padding: 1.5rem 1rem;
        gap: 0.75rem;
        min-height: 120px;
    }
}

.tech-logo-card i {
    font-size: 2rem;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-logo-card svg {
    width: 2rem;
    height: 2rem;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-logo-card span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
}

@media (min-width: 640px) {
    .tech-logo-card i {
        font-size: 2.5rem;
    }
    
    .tech-logo-card svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .tech-logo-card span {
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .tech-logo-card i {
        font-size: 2.5rem;
    }
    
    .tech-logo-card svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .tech-logo-card span {
        font-size: 0.8rem;
    }
}

.tech-logo-card:hover {
    transform: translateY(-5px);
}

.tech-logo-card:hover i,
.tech-logo-card:hover svg {
    color: var(--emerald);
    transform: scale(1.1);
}

.tech-logo-card:hover span {
    color: #ffffff;
}

/* Specific icon adjustments */
.woo-icon,
.analytics-icon,
.tech-icon {
    margin: 0.25rem 0;
}

/* === Scrollbar Styling === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--emerald);
}

/* === Selection Styling === */
::selection {
    background: var(--emerald);
    color: #ffffff;
}

::-moz-selection {
    background: var(--emerald);
    color: #ffffff;
}

/* === Smooth Scroll === */
html {
    scroll-behavior: smooth;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* === About Hero Section === */
.about-hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
}

.about-hero-section::before,
.about-hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.about-hero-section::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
    top: -200px;
    left: -200px;
    animation: floatBlob1 20s ease-in-out infinite;
}

.about-hero-section::after {
    display: none;
}

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

@keyframes floatBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-80px, -60px) scale(1.15);
    }
    66% {
        transform: translate(60px, -80px) scale(0.85);
    }
}

.about-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.about-hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
    top: -10%;
    left: 10%;
    animation: floatBlob3 18s ease-in-out infinite;
}

.about-hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.15) 50%, transparent 100%);
    top: 5%;
    right: 15%;
    animation: floatBlob4 22s ease-in-out infinite;
}

.about-hero-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
    top: 50%;
    right: 15%;
    animation: floatBlob5 20s ease-in-out infinite;
}

@keyframes floatBlob3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(80px, -60px) scale(1.2) rotate(90deg);
    }
    50% {
        transform: translate(-40px, 80px) scale(0.8) rotate(180deg);
    }
    75% {
        transform: translate(60px, 40px) scale(1.1) rotate(270deg);
    }
}

@keyframes floatBlob4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-100px, 70px) scale(1.3) rotate(120deg);
    }
    66% {
        transform: translate(70px, -50px) scale(0.7) rotate(240deg);
    }
}

@keyframes floatBlob5 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(-60px, -80px) scale(1.15) rotate(72deg);
    }
    40% {
        transform: translate(80px, 60px) scale(0.9) rotate(144deg);
    }
    60% {
        transform: translate(-50px, 90px) scale(1.25) rotate(216deg);
    }
    80% {
        transform: translate(70px, -40px) scale(0.85) rotate(288deg);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 3rem;
}

.about-revenue-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--emerald);
    border-radius: 50px;
    color: var(--emerald);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

/* === The Narrative Section === */
#about-narrative {
    padding-top: 8rem !important;
    margin-top: 0;
}

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

.narrative-text {
    max-width: 600px;
}

.narrative-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
}

.narrative-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.narrative-block:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(10px);
}

.narrative-icon {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.narrative-icon i {
    font-size: 1.5rem;
    color: #ef4444;
}

.narrative-icon.solution {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.narrative-icon.solution i {
    color: var(--emerald);
}

.narrative-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.narrative-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #9ca3af;
}

.narrative-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.narrative-cta p {
    font-size: 1.25rem;
    margin: 0;
}

.narrative-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.narrative-visual-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.narrative-visual-card svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.2));
}

/* === Bento Grid === */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bento-box {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.bento-box:hover {
    background: rgba(20, 20, 20, 0.95);
    border-color: rgba(16, 185, 129, 0.8);
    transform: none !important;
    box-shadow: none !important;
}

.bento-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.bento-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.bento-icon i {
    font-size: 2rem;
    color: var(--emerald);
}

.bento-box:hover .bento-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.bento-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.bento-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #d1d5db;
    font-size: 0.95rem;
}

.bento-features i {
    color: var(--emerald);
    font-size: 0.875rem;
}

/* === Stats Counter Section === */
.stats-counter-wrapper {
    /* Outer box removed - no background, border, or padding */
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-counter-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-counter-card:hover {
    transform: translateY(-10px);
}

.stat-counter-icon {
    display: none;
}

.stat-counter-prefix {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    margin-right: 0.25rem;
}

.stat-counter-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-counter-suffix {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-counter-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
}

.stat-counter-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-top: 1rem;
}

/* === About Final CTA === */
.about-final-cta {
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    opacity: 0.5;
}

.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-cta-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.about-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-cta-trust i {
    color: var(--emerald);
}

/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
    .narrative-grid {
        gap: 3rem;
    }

    .bento-grid {
        gap: 1.25rem;
    }

    .bento-box {
        padding: 2rem;
    }

    .stats-counter-grid {
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 0;
        margin-top: -80px;
        padding-top: 80px;
        min-height: 70vh;
        height: 70vh;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    }

    .about-hero-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
        pointer-events: none;
        z-index: 1;
    }

    .about-hero-blob-1 {
        top: -15% !important;
        left: 5% !important;
    }

    .about-hero-blob-2 {
        top: -10% !important;
        right: 10% !important;
        bottom: auto !important;
        left: auto !important;
    }

    .about-hero-blob-3 {
        display: none;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-revenue-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .narrative-visual {
        order: -1;
    }

    .narrative-visual-card {
        max-width: 300px;
    }

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

    .narrative-block {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

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

    .bento-box {
        padding: 1.5rem;
    }

    .bento-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }

    .bento-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .bento-icon i {
        font-size: 1.5rem;
    }

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

    .bento-description {
        font-size: 0.95rem;
    }

    .stats-counter-wrapper {
        /* Outer box removed */
    }

    .stats-counter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-counter-card {
        padding: 2rem 1.5rem;
    }

    .stat-counter-prefix {
        font-size: 3rem;
    }

    .stat-counter-number {
        font-size: 3rem;
    }

    .stat-counter-suffix {
        font-size: 3rem;
    }

    .stat-counter-label {
        font-size: 1.1rem;
    }

    .about-final-cta {
        padding: 3rem 1.5rem;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-description {
        font-size: 1.1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .about-cta-buttons .btn-large {
        width: 100%;
    }

    .about-cta-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding-top: 1.5rem;
    }

    .about-cta-trust span {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        background: rgba(16, 185, 129, 0.05);
        border: 1px solid rgba(16, 185, 129, 0.2);
        border-radius: 12px;
        text-align: center;
        font-size: 0.75rem;
        transition: all 0.3s ease;
    }

    .about-cta-trust span:hover {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.4);
        transform: translateY(-2px);
    }

    .about-cta-trust i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .about-cta-trust .cta-divider {
        display: none !important;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* === Services Hero Section === */
.services-hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.services-hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.services-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    line-height: 1.6;
    color: #9ca3af;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* === Three Pillars Section === */
.phase-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.phase-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.phase-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.phase-section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 500px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.service-detail-card:nth-child(1),
.service-detail-card:nth-child(2) {
    grid-column: span 3;
}

.service-detail-card:nth-child(3),
.service-detail-card:nth-child(4),
.service-detail-card:nth-child(5) {
    grid-column: span 2;
}

.service-detail-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-detail-icon i {
    font-size: 2rem;
    color: var(--emerald);
}

.service-detail-card:hover .service-detail-icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-detail-link:hover {
    color: var(--emerald-light);
    gap: 0.75rem;
}

.service-detail-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-detail-link:hover i {
    transform: translateX(4px);
}

/* === Comparison Section === */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-feature-card {
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-feature-card:hover {
    transform: translateY(-5px);
}

.comparison-feature-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.comparison-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-feature-icon i {
    font-size: 1.5rem;
    color: var(--emerald);
}

.comparison-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.comparison-feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.comparison-feature-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-status-item.them {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-status-item.them span {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
}

.comparison-status-item.them i {
    font-size: 1.25rem;
    color: #ef4444;
    opacity: 0.5;
}

.comparison-status-item.us {
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.comparison-status-item.us span {
    color: var(--emerald);
    font-size: 0.95rem;
    font-weight: 700;
}

.comparison-status-item.us i {
    font-size: 1.25rem;
    color: var(--emerald);
}

.comparison-value-text {
    font-size: 0.9rem !important;
    color: #9ca3af !important;
    font-weight: 500 !important;
}

.comparison-value-highlight {
    font-size: 1.1rem !important;
    color: var(--emerald) !important;
    font-weight: 700 !important;
}

/* === Services CTA Section === */
.services-cta-section {
    padding: 8rem 0;
    position: relative;
}

.services-cta-wrapper {
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.services-cta-content {
    position: relative;
    z-index: 2;
}

.services-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-cta-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services-cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-cta-trust i {
    color: var(--emerald);
}

/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-col {
        padding: 1.25rem 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .services-hero-section {
        padding: 0;
        margin-top: -80px;
        padding-top: 80px;
        min-height: 50vh;
        height: 50vh;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .service-detail-card:nth-child(1),
    .service-detail-card:nth-child(2),
    .service-detail-card:nth-child(3),
    .service-detail-card:nth-child(4),
    .service-detail-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .service-detail-icon {
        width: 56px;
        height: 56px;
    }

    .service-detail-icon i {
        font-size: 1.75rem;
    }

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

    .service-detail-description {
        font-size: 0.95rem;
    }

    .comparison-cards-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1.5rem !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .comparison-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .comparison-feature-card {
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
        padding: 2rem 1.5rem;
    }

    .comparison-feature-card:first-child {
        margin-left: 7.5%;
    }

    .comparison-feature-card:last-child {
        margin-right: 7.5%;
    }

    .comparison-feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .comparison-feature-icon {
        width: 48px;
        height: 48px;
    }

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

    .comparison-feature-title {
        font-size: 1.25rem;
    }

    .comparison-feature-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .comparison-status-item {
        padding: 0.875rem 1rem;
    }

    .services-cta-wrapper {
        padding: 3rem 1.5rem;
    }

    .services-cta-title {
        font-size: 2rem;
    }

    .services-cta-description {
        font-size: 1.1rem;
    }

    .services-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .services-cta-buttons .btn-large {
        width: 100%;
    }

    .services-cta-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding-top: 1.5rem;
    }

    .services-cta-trust span {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        background: rgba(16, 185, 129, 0.05);
        border: 1px solid rgba(16, 185, 129, 0.2);
        border-radius: 12px;
        text-align: center;
        font-size: 0.75rem;
        transition: all 0.3s ease;
    }

    .services-cta-trust span:hover {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.4);
        transform: translateY(-2px);
    }

    .services-cta-trust i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .services-cta-trust .cta-divider {
        display: none !important;
    }
}

/* ============================================
   CASE STUDIES PAGE STYLES
   ============================================ */

/* === Case Studies Hero Section === */
.case-studies-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.case-studies-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.case-studies-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #9ca3af;
}

/* === Case Studies List === */
.case-studies-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.case-study-full-card {
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.case-study-full-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-study-full-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
}

.case-study-image {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--emerald);
    opacity: 0.6;
}

.case-study-image-placeholder i {
    font-size: 4rem;
}

.case-study-image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.case-study-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

.case-study-full-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.case-study-challenge {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    text-align: center;
}

.challenge-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.challenge-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
}

/* === Stats Boxes === */
.case-study-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.stat-box {
    padding: 1rem 0.5rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-full-link {
    color: var(--emerald);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
    align-self: center;
}

.case-study-full-link i {
    transition: transform 0.3s ease;
}

.case-study-full-link:hover {
    color: var(--emerald-light);
}

.case-study-full-link:hover i {
    transform: translateX(5px);
}


/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
    .case-studies-list {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .case-studies-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

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

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

    .case-studies-list {
        gap: 2rem;
    }

    .case-study-full-card {
        border-radius: 16px;
    }

    .case-study-image {
        min-height: 200px;
        padding: 1.5rem;
    }

    .case-study-image-placeholder i {
        font-size: 3rem;
    }

    .case-study-content {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .case-study-full-title {
        font-size: 1.5rem;
    }

    .case-study-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        background: transparent;
        border: none;
        padding: 0;
    }

    .stat-box {
        padding: 1rem 0.5rem;
        background: rgba(16, 185, 129, 0.05);
        border: 1px solid rgba(16, 185, 129, 0.2);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .stat-box:hover {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.4);
        transform: translateY(-2px);
    }

    .stat-label {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .stat-value {
        font-size: 1.5rem;
        margin-top: 0;
    }

}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* === Contact Hero Section === */
.contact-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #9ca3af;
}

/* === Contact Split Grid === */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* === Contact Info Side === */
.contact-info-side {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    padding: 3rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: var(--emerald);
}

.contact-info-details {
    flex: 1;
}

.contact-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: var(--emerald);
}

.contact-boxes-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-career-box {
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #d1d5db;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-career-box:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.contact-career-box i {
    font-size: 1.5rem;
    color: var(--emerald);
}

.contact-career-box span {
    color: #ffffff;
    font-weight: 600;
}

/* === Contact Form Side === */
.contact-form-side {
    position: relative;
}

.contact-form-card {
    padding: 3rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    padding: 0.875rem 1.25rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--emerald);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: #6b7280;
}

.form-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2310b981' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

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

/* === Success Message === */
.contact-success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 0.5s ease;
}

.contact-success-message .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.contact-success-message .success-icon i {
    font-size: 2.5rem;
    color: var(--emerald);
}

.contact-success-message h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-success-message p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

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

/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-side {
        position: static;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

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

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
    }

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

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

    .contact-submit-btn {
        width: 100%;
    }

    .contact-boxes-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .contact-career-box {
        padding: 1.25rem 1rem;
        font-size: 0.875rem;
    }

    .contact-career-box i {
        font-size: 1.25rem;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* === FAQ Hero Section === */
.faq-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.faq-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.faq-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #9ca3af;
}

/* === FAQ Container === */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* === FAQ Item === */
.faq-item {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--emerald);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0;
}

/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
    .faq-container {
        gap: 1.25rem;
    }

    .faq-question {
        padding: 1.75rem 2rem;
    }

    .faq-question-text {
        font-size: 1.125rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 2rem 1.75rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .faq-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

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

    .faq-hero-subtitle {
        font-size: 1.1rem;
    }

    .faq-container {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        gap: 1rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* === Blog Hero Section === */
.blog-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #9ca3af;
}

/* === Blog Grid === */
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* === Blog Card === */
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(16, 185, 129, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    opacity: 0.3;
}

.blog-image-placeholder i {
    font-size: 4rem;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.blog-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    width: fit-content;
}

.blog-card-title {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--emerald);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
    flex: 1;
}

.blog-read-more {
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--emerald-light);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
    .blog-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blog-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

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

    .blog-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .blog-card-image {
        height: 180px;
    }

    .blog-image-placeholder i {
        font-size: 3rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   Blog Post Page Styles
   ============================================ */

.blog-post-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    margin-top: -80px;
    padding-top: 80px;
}

.blog-post-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--emerald);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-back-link:hover {
    color: var(--emerald-light);
    transform: translateX(-5px);
}

.blog-post-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #9ca3af;
    font-size: 0.95rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: var(--emerald);
}

.blog-post-content-section {
    padding: 4rem 0 6rem;
}

.blog-post-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #d1d5db;
    font-weight: 400;
}

.blog-post-body {
    color: #d1d5db;
    line-height: 1.8;
}

.blog-post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-body ul li,
.blog-post-body ol li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.blog-post-body ul li::marker {
    color: var(--emerald);
}

.blog-post-body strong {
    color: #ffffff;
    font-weight: 600;
}

.blog-post-cta-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.blog-post-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 0;
    border: none;
    padding: 0;
}

.blog-post-cta-box p {
    margin-bottom: 1.5rem;
}

.blog-post-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.result-card {
    text-align: center;
    padding: 2rem;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.95rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.blog-related-section {
    padding: 4rem 0;
    background: rgba(10, 10, 10, 0.5);
}

.blog-related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-related-card {
    display: block;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.blog-related-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.blog-related-card:hover h3 {
    color: var(--emerald);
}

@media (max-width: 768px) {
    .blog-post-hero {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .blog-post-lead {
        font-size: 1.125rem;
    }
    
    .blog-post-body h2 {
        font-size: 1.75rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.25rem;
    }
    
    .blog-post-results-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Process Page Styles
   ============================================ */

/* Process Hero Section */
.process-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.process-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.process-hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Process Steps Section */
.process-steps-section {
    position: relative;
    padding: 6rem 0;
}

/* Vertical Connecting Line */
.process-connector-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(-50%);
    z-index: 0;
}

.process-connector-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--emerald), var(--emerald-light));
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

/* Process Step */
.process-step {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    margin-bottom: 8rem;
    z-index: 1;
}

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

/* Large Background Number */
.process-step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.08);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* Process Step Content */
.process-step-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Alternate left/right positioning */
.process-step:nth-child(odd) .process-step-content {
    margin-left: auto;
    margin-right: 10%;
}

.process-step:nth-child(even) .process-step-content {
    margin-left: 10%;
    margin-right: auto;
}

/* Process Step Card */
.process-step-card {
    padding: 3rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.process-step-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.process-step-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.process-step-subtitle {
    font-size: 1.25rem;
    color: var(--emerald);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.process-step-description {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Process Step Features */
.process-step-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.process-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.process-feature-item i {
    color: var(--emerald);
    font-size: 1rem;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .process-hero-section {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

    .process-hero-title {
        font-size: 2.5rem;
    }

    .process-hero-subtitle {
        font-size: 1.1rem;
    }

    .process-steps-section {
        padding: 4rem 0;
    }

    .process-connector-line {
        left: 2rem;
    }

    .process-step {
        min-height: auto;
        margin-bottom: 4rem;
        padding-left: 4rem;
    }

    .process-step-number {
        left: 1rem;
        font-size: 8rem;
        transform: translateY(-50%);
    }

    .process-step-content {
        max-width: 100%;
        margin: 0 !important;
    }

    .process-step:nth-child(odd) .process-step-content,
    .process-step:nth-child(even) .process-step-content {
        margin-left: 0;
        margin-right: 0;
    }

    .process-step-card {
        padding: 2rem 1.5rem;
    }

    .process-step-title {
        font-size: 1.75rem;
    }

    .process-step-subtitle {
        font-size: 1.1rem;
    }

    .process-step-description {
        font-size: 1rem;
    }

    .process-step-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .process-step-number {
        font-size: 15rem;
    }

    .process-step-content {
        max-width: 500px;
    }

    .process-step:nth-child(odd) .process-step-content {
        margin-right: 5%;
    }

    .process-step:nth-child(even) .process-step-content {
        margin-left: 5%;
    }
}

/* ============================================
   Shopify Development Page Styles
   ============================================ */

/* Shopify Development Hero Section */
.shopify-dev-hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

/* Liquid Blob Effects */
.shopify-dev-hero-section::before,
.shopify-dev-hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.shopify-dev-hero-section::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
    top: -200px;
    left: -200px;
    animation: floatBlob1 20s ease-in-out infinite;
}

.shopify-dev-hero-section::after {
    display: none;
}

.shopify-dev-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.shopify-dev-hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
    top: -10%;
    left: 10%;
    animation: floatBlob3 18s ease-in-out infinite;
}

.shopify-dev-hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.15) 50%, transparent 100%);
    top: 20%;
    right: 15%;
    animation: floatBlob4 22s ease-in-out infinite;
}

.shopify-dev-hero-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
    bottom: 10%;
    left: 5%;
    animation: floatBlob5 25s ease-in-out infinite;
}

.shopify-dev-hero-content {
    position: relative;
    z-index: 2;
}

.shopify-dev-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.shopify-dev-hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* ============================================
   Redesigned Hero Section V2 - Creative
   ============================================ */

.shopify-dev-hero-section-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: visible;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    /* Extend to top of page - cover navbar area */
    margin-top: -80px;
    padding-top: calc(8rem + 80px);
    z-index: 1;
}

/* Make hero background extend behind navbar */
.shopify-dev-hero-section-v2::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: calc(100% + 80px);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    z-index: -1;
}

/* Animated Grid Background - Hidden */
.hero-bg-grid {
    display: none;
}

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

/* Floating Particles */
.hero-floating-particles {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: calc(100% + 80px);
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--emerald);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--emerald);
}

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

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 85%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 20%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Container inside hero - allow overflow for floating elements */
.shopify-dev-hero-section-v2 .container {
    overflow: visible !important;
    position: relative;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: visible;
    width: 100%;
}

/* Case Study Hero - Center content vertically */
#case-study-hero .hero-content-wrapper {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Case Study Hero Content Styling */
.case-study-hero-content {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-top: -150px;
    padding-right: 0 !important;
}

.case-study-subtitle {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    max-width: 800px;
    margin: 0 auto !important;
}

#case-study-hero .hero-stats-inline {
    justify-content: center;
    margin-top: 2rem;
}

#case-study-hero .scroll-indicator-v2 {
    margin-top: 70px;
    position: relative;
    z-index: 10;
}

/* Mobile View - 60% screen height */
@media (max-width: 768px) {
    #case-study-hero.shopify-dev-hero-section-v2 {
        min-height: 60vh;
    }
    
    #case-study-hero .hero-content-wrapper {
        min-height: 60vh;
    }
    
    .case-study-hero-content {
        max-width: 100%;
        margin-top: 0;
    }
    
    #case-study-hero .scroll-indicator-v2 {
        margin-top: 2rem;
    }
}

/* Text Content */
.hero-text-content {
    padding-right: 2rem;
    margin-top: -5rem;
}

/* Visual Content - also move up on desktop */
.hero-visual-content {
    margin-top: -5rem;
}

.hero-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald-light);
    position: relative;
    z-index: 2;
}

.hero-badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

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

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.05);
    border-radius: 16px;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Desktop - Keep buttons in same line with 100% width */
@media (min-width: 1025px) {
    .hero-cta-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        flex: 1;
        width: 100%;
        min-width: 0;
    }
}

.hero-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-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.5s;
}

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

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

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

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-btn-primary:hover .btn-glow {
    opacity: 1;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
}

.trust-badge-item i {
    color: var(--emerald);
}

/* Visual Content - Store Mockup */
.hero-visual-content {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.hero-store-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 2;
    max-height: 400px;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

/* Desktop only - Fixed 500px height, 600px max-width */
@media (min-width: 1025px) {
    .hero-store-mockup {
        height: 500px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        margin-top: -8rem;
    }
    
    .store-card-3d {
        height: 500px;
        max-width: 600px;
        width: 100%;
    }
    
    .store-card-inner {
        height: 500px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .browser-header {
        padding: 1rem 1.5rem;
        flex-shrink: 0;
    }
    
    .store-preview-content {
        flex: 1;
        min-height: 0;
        height: auto;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .preview-hero-banner {
        height: 100px;
        margin-bottom: 1rem;
        flex-shrink: 0;
    }
    
    .preview-products {
        flex: 1;
        gap: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
    }
    
    .preview-product-card {
        width: 100%;
        height: 100%;
        min-height: 80px;
    }
    
    .browser-dots {
        gap: 0.5rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .browser-url {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .success-popup {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* 3D Store Card */
.store-card-3d {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

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

.store-card-inner {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

.store-card-inner:hover {
    transform: rotateY(5deg) rotateX(-5deg);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Browser Header */
.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 30, 30, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.browser-url i {
    color: var(--emerald);
    font-size: 0.75rem;
}

/* Store Preview Content */
.store-preview-content {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    min-height: 400px;
    position: relative;
}

.preview-hero-banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

.preview-product-card {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    animation: shimmer 2s ease-in-out infinite;
}

.preview-product-card:nth-child(2) {
    animation-delay: 0.5s;
}

.preview-product-card:nth-child(3) {
    animation-delay: 1s;
}

.preview-product-card:nth-child(4) {
    animation-delay: 1.5s;
}

/* Success Popup */
.success-popup {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: popupSlide 3s ease-in-out infinite;
}

@keyframes popupSlide {
    0%, 100% {
        transform: translateX(150%);
        opacity: 0;
    }
    20%, 80% {
        transform: translateX(0);
        opacity: 1;
    }
}

.success-popup i {
    color: var(--emerald-light);
    font-size: 1.25rem;
}

.success-popup span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Floating Feature Cards */
.floating-feature-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 20;
    opacity: 1;
    visibility: visible;
}

.floating-feature-card i {
    color: var(--emerald);
}

.feature-card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    z-index: 20;
}

.feature-card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1.5s;
    z-index: 20;
}

.feature-card-3 {
    bottom: 15%;
    left: -2%;
    animation-delay: 3s;
    z-index: 20;
}

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

/* Decorative Circles */
.hero-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.1);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    visibility: visible;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Scroll Indicator */
.scroll-indicator-v2 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator-v2:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator-v2:hover .scroll-mouse {
    border-color: var(--emerald);
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 14px;
    position: relative;
}

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

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.scroll-indicator-v2 span {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    /* Improve touch target sizes */
    .hero-btn-primary,
    .hero-btn-secondary {
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Smooth scrolling on mobile */
    .shopify-dev-hero-section-v2 {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Disable hover effects on touch devices */
    .store-card-inner:hover {
        transform: none;
    }
    
    .hero-btn-primary:hover,
    .hero-btn-secondary:hover {
        transform: none;
    }
    
    /* Active states for touch feedback */
    .hero-btn-primary:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .hero-btn-secondary:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Reduce animations for better mobile performance */
    .hero-badge-glow {
        animation: none;
    }
    
    .gradient-text-animated {
        background-size: 100% 100%;
        animation: none;
        background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Optimize grid animation for mobile */
    .hero-bg-grid {
        animation-duration: 30s;
    }
    
    /* Better spacing for mobile */
    .hero-content-wrapper {
        padding: 0;
    }
    
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Very small screens additional optimizations */
@media (max-width: 480px) {
    /* Further reduce complex animations */
    .store-card-3d {
        animation: none;
    }
    
    .preview-hero-banner {
        animation-duration: 3s;
    }
    
    .preview-product-card {
        animation-duration: 3s;
    }
    
    /* Optimize button sizes for small screens */
    .hero-btn-primary span,
    .hero-btn-secondary span {
        font-size: 0.9rem;
    }
    
    .hero-btn-primary i,
    .hero-btn-secondary i {
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 4rem;
    }
    
    .hero-content-wrapper {
        gap: 3rem;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-text-content {
        padding-right: 2rem;
        text-align: left;
        margin-top: -3rem;
    }
    
    .hero-visual-content {
        margin-top: -3rem;
    }
}

/* Mobile - Stack layout, no negative margin */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text-content {
        padding-right: 0;
        text-align: center;
        order: 1;
        margin-top: 0 !important;
    }
    
    .hero-visual-content {
        order: 2;
        margin-top: 0 !important;
        display: none !important;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badge-wrapper {
        justify-content: center;
    }
    
    .hero-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Desktop override - keep buttons in same line */
    @media (min-width: 1025px) {
        .hero-cta-buttons {
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            justify-content: flex-start !important;
        }
    }
    
    .hero-trust-badges {
        justify-content: center !important;
    }
    
    .hero-stats-inline {
        justify-content: center;
    }
    
    .store-card-3d {
        max-width: 500px;
    }
    
    .floating-feature-card {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    /* Choose Your Path - Carousel */
    .shopify-choice-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        padding-bottom: 1rem !important;
    }
    
    .shopify-choice-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .shopify-choice-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        scroll-snap-align: center !important;
    }
    
    /* Complete Package - Carousel */
    .shopify-benefits-main-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
        padding-bottom: 1rem !important;
    }
    
    .shopify-benefits-main-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .shopify-benefit-card-large {
        flex: 0 0 90% !important;
        min-width: 90% !important;
        scroll-snap-align: center !important;
    }
    
    /* How It Works - Carousel */
    .shopify-process-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 1.25rem !important;
        padding-bottom: 1rem !important;
    }
    
    .shopify-process-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .shopify-process-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        scroll-snap-align: center !important;
    }
    
    /* Complete Store Launch - Carousel */
    .shopify-included-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        padding-bottom: 1rem !important;
    }
    
    .shopify-included-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .shopify-included-item {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        scroll-snap-align: center !important;
    }
    
    /* Complete Store Launch - Show description on mobile */
    .shopify-included-item p {
        display: block !important;
        font-size: 0.9rem !important;
        color: #9ca3af !important;
        line-height: 1.6 !important;
        margin-top: 0.75rem !important;
        opacity: 1 !important;
    }
    
    /* Choose Your Path - Icon left, heading below on next line, align left */
    .choice-card-collapsible {
        cursor: default !important;
    }
    
    .choice-card-collapsible .choice-card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 1rem !important;
    }
    
    .choice-card-collapsible .choice-card-header .shopify-choice-icon {
        margin-bottom: 0 !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .choice-card-collapsible .choice-card-header h3 {
        margin: 0 !important;
        text-align: left !important;
        width: 100% !important;
    }
    
    .choice-card-collapsible .choice-body {
        display: block !important;
        max-height: none !important;
        padding-top: 1.5rem !important;
        margin-top: 1rem !important;
        opacity: 1 !important;
    }
    
    .choice-card-collapsible .choice-card-arrow {
        display: none !important;
    }
    
    .choice-card-collapsible.active {
        cursor: default !important;
    }
    
    .choice-card-collapsible.active .choice-card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .choice-card-collapsible.active .choice-card-header .shopify-choice-icon {
        margin-bottom: 0 !important;
        margin-right: 0 !important;
        width: auto !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }
    
    .choice-card-collapsible.active .choice-card-header h3 {
        text-align: left !important;
        width: 100% !important;
    }
    
    /* Remove hover lift effect on all carousel cards */
    .shopify-choice-card:hover,
    .shopify-benefit-card-large:hover,
    .shopify-process-card:hover,
    .shopify-included-item:hover {
        transform: none !important;
    }
    
    .shopify-choice-card:hover,
    .shopify-benefit-card-large:hover,
    .shopify-process-card:hover,
    .shopify-included-item:hover {
        border-color: rgba(16, 185, 129, 0.2) !important;
    }
    
    /* Complete Package Extras - 2 Rows */
    .shopify-benefits-extras {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
        overflow-x: visible !important;
        flex-wrap: wrap !important;
    }
    
    .shopify-benefit-extra-item {
        flex: none !important;
        min-width: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .shopify-dev-hero-section-v2 {
        padding: 5rem 0 2rem;
        min-height: auto;
        /* Use custom viewport height on mobile to account for address bar */
        min-height: calc(var(--vh, 1vh) * 100);
        /* Maintain top extension on mobile */
        margin-top: -80px;
        padding-top: calc(5rem + 80px);
    }
    
    .hero-bg-grid {
        margin-top: -80px;
        height: calc(100% + 80px);
    }
    
    .hero-floating-particles {
        top: -80px;
        height: calc(100% + 80px);
    }
}
    
    .hero-content-wrapper {
        gap: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-stats-inline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero-stat-item {
        flex: 1;
        min-width: calc(33.333% - 1rem);
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .trust-badge-item {
        font-size: 0.85rem;
    }
    
    /* Store Mockup Mobile */
    .store-card-3d {
        max-width: 100%;
    }
    
    .store-card-inner {
        border-radius: 16px;
    }
    
    .browser-header {
        padding: 0.75rem 1rem;
    }
    
    .browser-dots {
        gap: 0.35rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .browser-url {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .store-preview-content {
        padding: 1.25rem;
        min-height: 300px;
    }
    
    .preview-hero-banner {
        height: 80px;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .preview-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .preview-product-card {
        border-radius: 6px;
    }
    
    /* Hide floating cards on mobile */
    .floating-feature-card {
        display: none;
    }
    
    /* Hide decorative circles on mobile */
    .hero-deco-circle {
        display: none;
    }
    
    /* Success popup mobile */
    .success-popup {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .success-popup i {
        font-size: 1rem;
    }
    
    .success-popup span {
        font-size: 0.85rem;
    }
    
    /* Scroll indicator mobile */
    .scroll-indicator-v2 {
        bottom: 1rem;
        -webkit-tap-highlight-color: transparent;
    }
    
    .scroll-indicator-v2:hover {
        transform: translateX(-50%);
    }
    
    .scroll-indicator-v2:active {
        transform: translateX(-50%) scale(0.95);
    }
    
    .scroll-mouse {
        width: 24px;
        height: 40px;
    }
    
    .scroll-indicator-v2 span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .shopify-dev-hero-section-v2 {
        padding: 4rem 0 2rem;
        /* Maintain top extension on small mobile */
        margin-top: -80px;
        padding-top: calc(4rem + 80px);
    }
    
    .hero-visual-content {
        display: none !important;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-badge i {
        font-size: 0.9rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats-inline {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .hero-stat-item {
        min-width: 100%;
        padding: 0.5rem 0;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-trust-badges {
        margin-top: 1rem;
    }
    
    .trust-badge-item {
        font-size: 0.8rem;
    }
    
    /* Store preview very small screens */
    .store-preview-content {
        padding: 1rem;
        min-height: 250px;
    }
    
    .preview-hero-banner {
        height: 60px;
    }
    
    .preview-products {
        gap: 0.5rem;
    }
    
    .success-popup {
        padding: 0.6rem 0.85rem;
        font-size: 0.8rem;
    }
    
    /* Hide background effects on very small screens */
    .hero-bg-grid {
        opacity: 0.1;
    }
    
    .particle {
        display: none;
    }
}

/* Why Your Store Matters Section */
.why-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-store-content {
    text-align: left;
}

.why-store-text {
    font-size: 1.5rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.why-store-text-secondary {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Why Store Points */
.why-store-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-store-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-store-point:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
    transform: translateX(5px);
}

.why-store-point-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.why-store-point-icon i {
    font-size: 1.5rem;
    color: var(--emerald);
}

.why-store-point h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.why-store-point p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Why Store Visual */
.why-store-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-store-visual-card {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.why-store-visual-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-store-visual-card svg {
    width: 100%;
    height: auto;
}

/* Shopify Bento Grid */
.shopify-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shopify-bento-box {
    padding: 3rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.shopify-bento-box:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shopify-bento-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.shopify-bento-box:hover .shopify-bento-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
}

.shopify-bento-icon i {
    font-size: 1.75rem;
    color: var(--emerald);
}

.shopify-bento-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.shopify-bento-description {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.shopify-bento-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shopify-bento-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.shopify-bento-features li i {
    color: var(--emerald);
    font-size: 0.875rem;
}

/* E-commerce Growth Section */
.ecommerce-growth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ecommerce-growth-content {
    text-align: left;
}

.ecommerce-growth-text {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ecommerce-growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ecommerce-growth-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ecommerce-growth-stat:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ecommerce-growth-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ecommerce-growth-stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.ecommerce-growth-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    color: #d1d5db;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ecommerce-growth-benefit:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.ecommerce-growth-benefit i {
    color: var(--emerald);
    font-size: 1.1rem;
}

/* E-commerce Growth Visual */
.ecommerce-growth-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-stats-visual {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
}

.growth-line-chart {
    width: 100%;
    height: auto;
    max-height: 450px;
    min-height: 400px;
}

/* Complete Shopify Store Launch Section */
.shopify-theme-content {
    text-align: left;
}

.shopify-theme-content.text-center {
    text-align: center;
}

/* Launch Tags */
.shopify-launch-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.launch-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: var(--emerald);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.launch-tag:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* What's Included Grid */
.shopify-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Challenge Cards Grid - 4 columns on desktop */
.challenge-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .challenge-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .challenge-cards-grid {
        grid-template-columns: 1fr;
    }
}

.shopify-included-item {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.shopify-included-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    transition: width 0.4s ease;
}

.shopify-included-item:hover::after {
    width: 80%;
}

.shopify-included-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.shopify-included-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.shopify-included-item:hover .shopify-included-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.shopify-included-icon i {
    font-size: 1.75rem;
    color: var(--emerald);
}

.shopify-included-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.shopify-included-item p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.service-link-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.shopify-included-item {
    display: flex;
    flex-direction: column;
}

.shopify-included-item:hover .service-link-text {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.shopify-included-item:hover .service-link-text i {
    transform: translateX(3px);
}

.service-link-text i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.service-link-text span {
    display: inline-block;
}

.mobile-break {
    display: none;
}

/* Choose Your Path Section */
.shopify-choice-subsection {
    text-align: center;
}

.shopify-choice-header-box {
    width: 100%;
    margin: 0 auto 2rem;
    padding: 3rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.shopify-choice-header-box:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.shopify-choice-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.shopify-choice-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.shopify-choice-header-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.shopify-choice-header-text {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.shopify-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.shopify-choice-card {
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s ease;
}

.shopify-choice-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.shopify-choice-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.shopify-choice-icon i {
    font-size: 1.75rem;
    color: var(--emerald);
}

.shopify-choice-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.shopify-choice-card > p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.shopify-choice-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shopify-choice-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.shopify-choice-features li i {
    color: var(--emerald);
    font-size: 0.875rem;
}

/* Desktop: Show choice-body always, hide arrow */
@media (min-width: 768px) {
    .choice-card-header {
        display: block;
        position: relative;
    }

    .choice-card-header .shopify-choice-icon {
        margin-bottom: 1.5rem;
        display: flex;
    }

    .choice-card-header h3 {
        margin-bottom: 1rem;
    }

    .choice-card-arrow {
        display: none !important;
    }

    .choice-body {
        max-height: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        display: block !important;
    }

    .choice-card-collapsible {
        cursor: default;
    }

    .choice-card-collapsible.active .choice-body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* Everything You Need to Start Selling Section */
.shopify-benefits-header {
    margin-bottom: 3rem;
}

.shopify-benefits-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

/* Center Before/After cards on desktop and tablet only */
@media (min-width: 768px) {
    #before-after .shopify-benefits-main-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center Bulk Editing & Platforms cards on desktop and tablet only */
    #bulk-editing .shopify-benefits-main-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Reduce size of "Bulk" and "Platforms" numbers in bulk-editing section */
    #bulk-editing .shopify-benefit-number {
        font-size: 2rem;
    }
}

.shopify-benefit-card-large {
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.shopify-benefit-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shopify-benefit-card-large:hover::before {
    opacity: 1;
}

.shopify-benefit-card-large:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.shopify-benefit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.shopify-benefit-icon-large {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 18px;
    transition: all 0.4s ease;
}

.shopify-benefit-card-large:hover .shopify-benefit-icon-large {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.shopify-benefit-icon-large i {
    font-size: 2rem;
    color: var(--emerald);
}

.shopify-benefit-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.4;
}

.shopify-benefit-card-large h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.shopify-benefit-card-large p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.shopify-benefit-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.benefit-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.benefit-feature-tag:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.benefit-feature-tag i {
    color: var(--emerald);
    font-size: 0.75rem;
}

/* Additional Features Row */
.shopify-benefits-extras {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    max-width: 100%;
}

.shopify-benefits-extras::-webkit-scrollbar {
    display: none;
}

.shopify-benefit-extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    flex: 1;
    min-width: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

.shopify-benefit-extra-item:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-3px);
}

.shopify-benefit-extra-item i {
    font-size: 1.75rem;
    color: var(--emerald);
    margin-bottom: 0.25rem;
}

.shopify-benefit-extra-item span {
    font-size: 0.85rem;
    color: #d1d5db;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    line-height: 1.3;
}

/* Simple 4-Step Process Section */
.shopify-process-header {
    margin-bottom: 3rem;
}

.shopify-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.shopify-process-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.shopify-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.shopify-process-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shopify-process-card-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.5;
}

.shopify-process-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.shopify-process-card:hover .shopify-process-card-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.shopify-process-card-icon i {
    font-size: 1.75rem;
    color: var(--emerald);
}

.shopify-process-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.shopify-process-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Shopify Theme Features */
.shopify-theme-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.shopify-theme-feature-item {
    text-align: left;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.shopify-theme-feature-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.shopify-theme-feature-item i {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.shopify-theme-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.shopify-theme-feature-item p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Shopify FAQ Section */
.shopify-faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shopify-faq-item {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.shopify-faq-item:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(20, 20, 20, 0.8);
}

.shopify-faq-item.active {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.05);
}

.shopify-faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.shopify-faq-question:hover {
    color: var(--emerald);
}

.shopify-faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.shopify-faq-question i {
    color: var(--emerald);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.shopify-faq-item.active .shopify-faq-question i {
    transform: rotate(180deg);
}

.shopify-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.shopify-faq-item.active .shopify-faq-answer {
    max-height: 500px;
}

.shopify-faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
}

.shopify-faq-answer-inner p {
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .shopify-dev-hero-section {
        min-height: 70vh;
        height: 70vh;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    }

    .shopify-dev-hero-section::before {
        top: -15%;
        left: -15%;
    }

    .shopify-dev-hero-blob-1 {
        top: -15% !important;
        left: 5% !important;
    }

    .shopify-dev-hero-blob-2 {
        top: -10% !important;
        right: 10% !important;
        bottom: auto !important;
    }

    .shopify-dev-hero-blob-3 {
        display: none;
    }

    .shopify-dev-hero-title {
        font-size: 2.5rem;
    }

    .shopify-dev-hero-subtitle {
        font-size: 1.1rem;
    }

    .why-store-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-store-content {
        text-align: left;
    }

    .why-store-content .section-title {
        text-align: left;
    }

    .why-store-text {
        font-size: 1.25rem;
        text-align: left;
    }

    .why-store-text-secondary {
        font-size: 1rem;
    }

    .why-store-points {
        gap: 1.25rem;
    }

    .why-store-point {
        padding: 1.25rem;
    }

    .why-store-point-icon {
        width: 45px;
        height: 45px;
    }

    .why-store-point-icon i {
        font-size: 1.25rem;
    }

    .why-store-point h3 {
        font-size: 1.1rem;
    }

    .why-store-point p {
        font-size: 0.9rem;
    }

    .why-store-visual-card {
        max-width: 100%;
        padding: 1.5rem;
    }

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

    .shopify-bento-box {
        padding: 2rem 1.5rem;
    }

    .shopify-bento-title {
        font-size: 1.5rem;
    }

    .ecommerce-growth-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ecommerce-growth-content {
        text-align: center;
    }

    .ecommerce-growth-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

    .ecommerce-growth-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .growth-stats-visual {
        max-width: 100%;
        padding: 1.5rem;
    }

    .growth-line-chart {
        max-height: 350px;
        min-height: 300px;
    }

    .shopify-theme-content {
        text-align: left;
    }

    .shopify-theme-content .section-title {
        text-align: left;
    }

    .shopify-theme-content .section-subtitle {
        text-align: left;
    }

    .shopify-launch-tags {
        gap: 0.5rem;
    }

    .launch-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .shopify-included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .shopify-included-item {
        padding: 1.5rem;
    }

    .shopify-theme-content {
        text-align: center !important;
    }

    .shopify-theme-content .section-title {
        text-align: center !important;
    }

    .shopify-theme-content .section-subtitle {
        text-align: center !important;
    }

    .shopify-included-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .shopify-included-icon i {
        font-size: 1.5rem;
    }

    .shopify-included-item h3 {
        font-size: 1.1rem;
    }

    .mobile-break {
        display: inline;
    }

    .shopify-included-item p {
        font-size: 0.9rem;
        display: none;
    }
    
    .service-link-text {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .shopify-choice-header-box {
        padding: 2rem 1.5rem;
    }

    .shopify-choice-header-title {
        font-size: 1.5rem;
    }

    .shopify-choice-header-text {
        font-size: 1rem;
    }

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

    .shopify-choice-card {
        padding: 2rem 1.5rem;
    }

    /* Collapsible Cards for Mobile */
    .choice-card-collapsible {
        cursor: pointer;
    }

    .choice-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        position: relative;
    }

    /* Collapsed state: icon and heading side by side */
    .choice-card-header .shopify-choice-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }

    .choice-card-header .shopify-choice-icon i {
        font-size: 1.5rem;
    }

    .choice-card-header h3 {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
    }

    .choice-card-arrow {
        color: var(--emerald);
        font-size: 1rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    /* Active (opened) state: icon on top, heading below */
    .choice-card-collapsible.active .choice-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .choice-card-collapsible.active .choice-card-header .shopify-choice-icon {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
    }

    .choice-card-collapsible.active .choice-card-header .shopify-choice-icon i {
        font-size: 1.75rem;
    }

    .choice-card-collapsible.active .choice-card-header h3 {
        margin-bottom: 0;
        width: 100%;
    }

    .choice-card-collapsible.active .choice-card-arrow {
        position: absolute;
        top: 0;
        right: 0;
        transform: rotate(180deg);
    }

    .choice-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        padding: 0;
        margin: 0;
    }

    .choice-card-collapsible.active .choice-body {
        max-height: 1000px;
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .shopify-benefits-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shopify-benefit-card-large {
        padding: 2rem 1.5rem;
    }

    .shopify-benefit-icon-large {
        width: 60px;
        height: 60px;
    }

    .shopify-benefit-icon-large i {
        font-size: 1.5rem;
    }

    .shopify-benefit-number {
        font-size: 3rem;
    }

    .shopify-benefit-card-large h3 {
        font-size: 1.5rem;
    }

    .benefit-feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .shopify-benefits-extras {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
        padding: 0 !important;
        overflow-x: visible !important;
        flex-wrap: wrap !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .shopify-benefit-extra-item {
        flex: none !important;
        min-width: auto !important;
        width: 100% !important;
        flex-shrink: 0;
        padding: 1rem 0.5rem;
    }

    .shopify-benefit-extra-item i {
        font-size: 1.5rem;
    }

    .shopify-benefit-extra-item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .shopify-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .shopify-process-card {
        padding: 1.5rem;
    }

    .shopify-process-card-number {
        font-size: 2.5rem;
    }

    .shopify-process-card-icon {
        width: 50px;
        height: 50px;
    }

    .shopify-process-card-icon i {
        font-size: 1.5rem;
    }

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

    .shopify-process-card p {
        font-size: 0.9rem;
    }

    .shopify-theme-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shopify-theme-feature-item {
        text-align: left;
    }

    .shopify-faq-question {
        padding: 1.25rem 1.5rem;
    }

    .shopify-faq-question h3 {
        font-size: 1.1rem;
    }

    .shopify-faq-answer-inner {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .shopify-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shopify-theme-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Migration Services Hero Mockup ===== */
.migration-mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
}

.migration-platform {
    flex: 1;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.migration-platform-old {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.migration-platform-new {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.platform-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.platform-dots {
    display: flex;
    gap: 0.5rem;
}

.platform-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.platform-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-content {
    flex: 1;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.platform-data-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInData 0.6s ease-out forwards;
    position: relative;
}

.migration-platform-old .platform-data-item {
    animation: fadeOutData 0.6s ease-out forwards;
    animation-delay: 0.5s;
}

.migration-platform-new .platform-data-item.received {
    animation: slideInData 0.6s ease-out forwards;
}

.platform-data-item i:first-child {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.migration-platform-old .platform-data-item i:first-child {
    color: rgba(239, 68, 68, 0.7);
}

.migration-platform-new .platform-data-item i:first-child {
    color: rgba(16, 185, 129, 0.7);
}

.platform-data-item span {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.check-icon {
    font-size: 1rem !important;
    color: #10b981 !important;
    animation: checkPop 0.4s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes slideInData {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutData {
    to {
        opacity: 0.3;
        transform: translateX(-10px);
    }
}

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

/* Migration Transfer Animation */
.migration-transfer {
    position: relative;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.transfer-arrow {
    font-size: 2rem;
    color: #10b981;
    animation: pulseArrow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

@keyframes pulseArrow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(5px) scale(1.1);
        opacity: 0.8;
    }
}

.transfer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.particle-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: particleFlow 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes particleFlow {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(0);
    }
}

.transfer-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 3px;
    animation: progressFill 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}

.progress-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Hide on mobile */
@media (max-width: 768px) {
    .migration-mockup-container {
        display: none;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .migration-mockup-container {
        max-width: 500px;
        height: 400px;
        gap: 1rem;
        padding: 1rem;
    }
    
    .platform-content {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .platform-data-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .transfer-arrow {
        font-size: 1.5rem;
    }
}

/* ===== Headless Commerce Speed Mockup ===== */
.headless-speed-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.speedometer-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.speedometer-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #10b981 0%, #10b981 85%, rgba(16, 185, 129, 0.2) 85%, rgba(16, 185, 129, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.speedometer-inner {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(16, 185, 129, 0.3);
}

.speed-value {
    font-size: 3rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.speed-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.speedometer-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 45%;
    background: #10b981;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-45deg);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: needleSweep 2s ease-in-out infinite;
}

@keyframes needleSweep {
    0%, 100% { transform: translateX(-50%) rotate(-45deg); }
    50% { transform: translateX(-50%) rotate(45deg); }
}

.lightning-bolt {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 3rem;
    color: #10b981;
    animation: lightningPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.8));
}

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

.speed-stats {
    display: flex;
    gap: 1.5rem;
}

.speed-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    min-width: 80px;
}

.speed-stat-item i {
    font-size: 1.5rem;
    color: #10b981;
}

.speed-stat-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== PWA Phone Mockup ===== */
.pwa-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 2.5rem;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #0a0a0a;
    border-radius: 0 0 1rem 1rem;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.pwa-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pwa-url-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.pwa-content {
    padding: 1rem;
    height: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pwa-banner {
    height: 120px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 1rem;
}

.pwa-products {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pwa-product {
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-to-home-popup {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
    animation: popupBounce 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes popupBounce {
    0%, 90%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    95% { transform: translateX(-50%) translateY(-10px); opacity: 0.9; }
}

.pwa-features {
    display: flex;
    gap: 1rem;
}

.pwa-feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    font-size: 0.8rem;
    color: #10b981;
}

/* ===== SEO Search Results Mockup ===== */
.seo-search-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.google-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.search-bar i {
    color: rgba(255, 255, 255, 0.5);
}

.search-results {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.search-result-item.featured {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.result-rank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0a0a0a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.result-content {
    flex: 1;
}

.result-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.result-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.result-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.seo-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.seo-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

/* ===== SEO Ranking Mockup (for seo-growth.php) ===== */
.seo-ranking-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.seo-search-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.seo-search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.seo-search-bar i {
    color: var(--emerald);
    font-size: 1rem;
}

.seo-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    overflow-y: auto;
}

.seo-result-item {
    position: relative;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.seo-result-item.rank-1 {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.1);
    animation: rankPulse 2s ease-in-out infinite;
}

.seo-result-item.rank-2,
.seo-result-item.rank-3 {
    opacity: 0.7;
}

.seo-result-item:hover {
    border-color: rgba(16, 185, 129, 0.6);
}

.seo-result-item .result-url {
    font-size: 0.75rem;
    color: var(--emerald);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.seo-result-item .result-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.375rem;
}

.seo-result-item .result-snippet {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.seo-result-item .rank-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 50%;
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.seo-result-item.rank-1 .rank-badge {
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes rankPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.8); transform: scale(1.1); }
}

.seo-metrics {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.seo-metric {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    min-width: 140px;
    flex-shrink: 0;
}

.seo-metric i {
    color: var(--emerald);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seo-metric-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.seo-metric span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.2;
}

.seo-metric small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* ===== Speed Gauge Mockup ===== */
.speed-gauge-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gauge-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.gauge-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(from 0deg, #10b981 0%, #10b981 95%, rgba(16, 185, 129, 0.2) 95%, rgba(16, 185, 129, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.gauge-bg {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: #0a0a0a;
    border: 3px solid rgba(16, 185, 129, 0.3);
}

.gauge-fill {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 5%, rgba(16, 185, 129, 0.1) 5%, rgba(16, 185, 129, 0.1) 95%);
}

.gauge-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.gauge-score {
    font-size: 3.5rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    animation: scorePulse 2s ease-in-out infinite;
}

@keyframes scorePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gauge-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.gauge-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 40%;
    background: #10b981;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-40deg);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    z-index: 3;
    animation: gaugeSweep 3s ease-in-out infinite;
}

@keyframes gaugeSweep {
    0%, 100% { transform: translateX(-50%) rotate(-40deg); }
    50% { transform: translateX(-50%) rotate(40deg); }
}

.speed-metrics {
    display: flex;
    gap: 1.5rem;
}

.speed-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    min-width: 90px;
}

.speed-metric i {
    font-size: 1.5rem;
    color: #10b981;
}

.speed-metric span {
    font-size: 1.5rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.speed-metric small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Conversion Split Screen Mockup ===== */
.conversion-split-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.split-screen-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.split-side {
    flex: 1;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.before-side {
    border-color: rgba(239, 68, 68, 0.3);
}

.after-side {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.side-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.side-icon.bad {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.side-icon.good {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.side-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.conversion-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.funnel-step {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-side .funnel-step {
    border-color: rgba(239, 68, 68, 0.3);
}

.after-side .funnel-step {
    border-color: rgba(16, 185, 129, 0.3);
}

.funnel-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.before-side .funnel-number {
    color: #ef4444;
}

.after-side .funnel-number {
    color: #10b981;
}

.funnel-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.funnel-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid rgba(255, 255, 255, 0.2);
}

.before-side .funnel-arrow {
    border-top-color: rgba(239, 68, 68, 0.3);
}

.after-side .funnel-arrow {
    border-top-color: rgba(16, 185, 129, 0.3);
}

.conversion-rate {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 120px;
}

.conversion-rate.bad {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.conversion-rate.good {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.5);
}

.conversion-rate span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.conversion-rate.bad span {
    color: #ef4444;
}

.conversion-rate.good span {
    color: #10b981;
}

.conversion-rate small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.split-divider {
    font-size: 2rem;
    color: #10b981;
    animation: dividerPulse 2s ease-in-out infinite;
}

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

.conversion-gain {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* ===== ROAS Display Mockup ===== */
.roas-display-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
}

.roas-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.roas-value-display {
    text-align: center;
    padding: 2rem 0;
}

.roas-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    animation: roasPulse 2s ease-in-out infinite;
}

@keyframes roasPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.roas-x {
    font-size: 3rem;
    vertical-align: top;
}

.roas-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.roas-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roas-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roas-platform {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.roas-platform i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.roas-platform span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.roas-score {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
}

.roas-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 100px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #fbbf24, #fcd34d);
    border-radius: 0.5rem 0.5rem 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--height, 100%); }
}

/* ===== Automation Node Graph Mockup ===== */
.automation-node-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.node-graph-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
}

.node-hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
    z-index: 2;
    border: 3px solid rgba(16, 185, 129, 0.5);
}

.node-hub-center i {
    font-size: 2.5rem;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.node-hub-center span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a0a0a;
    text-transform: uppercase;
}

.node-satellite {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid #10b981;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.node-satellite i {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.node-satellite span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.node-email {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-shipping {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.node-accounting {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-crm {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
}

.data-packet {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
    z-index: 3;
    animation: packetFlow 3s ease-in-out infinite;
}

.packet-1 {
    top: 30%;
    left: 50%;
    animation-delay: 0s;
}

.packet-2 {
    top: 50%;
    right: 20%;
    animation-delay: 0.75s;
}

.packet-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 1.5s;
}

.packet-4 {
    top: 50%;
    left: 20%;
    animation-delay: 2.25s;
}

@keyframes packetFlow {
    0%, 100% { opacity: 0; transform: scale(0); }
    10%, 90% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.automation-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.automation-status i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Product Listing Transformation Mockup ===== */
.listing-transformation-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transformation-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transformation-side {
    flex: 1;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.excel-side {
    border-color: rgba(239, 68, 68, 0.3);
}

.store-side {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.side-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-header i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.excel-side .side-header i {
    color: #ef4444;
}

.store-side .side-header i {
    color: #10b981;
}

.side-header span {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.excel-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.excel-row {
    display: flex;
    gap: 0.5rem;
}

.excel-cell {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.product-listings {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.listing-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
}

.listing-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.listing-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.listing-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.listing-price {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.listing-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: auto;
}

.transformation-arrow {
    position: relative;
    font-size: 2rem;
    color: #10b981;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.8; }
}

.arrow-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.arrow-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: particleMove 2s ease-in-out infinite;
}

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

.arrow-particles .particle:nth-child(2) {
    top: 50%;
    left: 0;
    animation-delay: 0.5s;
}

.arrow-particles .particle:nth-child(3) {
    top: 80%;
    left: 0;
    animation-delay: 1s;
}

@keyframes particleMove {
    0% { left: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.transformation-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.trans-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

/* ===== Photo Editing Before/After Mockup ===== */
.photo-editing-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.photo-comparison-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.photo-side {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.photo-frame {
    flex: 1;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.before-photo .photo-frame {
    border-color: rgba(239, 68, 68, 0.3);
}

.after-photo .photo-frame {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.photo-image {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.photo-image.raw {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: rgba(255, 255, 255, 0.3);
}

.photo-image.edited {
    background: linear-gradient(135deg, #f7fafc, #ffffff);
    color: #10b981;
}

.photo-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.photo-overlay i {
    font-size: 1rem;
}

.photo-overlay {
    color: rgba(255, 255, 255, 0.9);
}

.photo-overlay.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
}

.photo-overlay i {
    color: #ef4444;
}

.photo-overlay.success i {
    color: #10b981;
}

.photo-divider {
    font-size: 2rem;
    color: #10b981;
    animation: dividerPulse 2s ease-in-out infinite;
}

.editing-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.edit-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

/* ===== Security Shield Mockup ===== */
.security-shield-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.shield-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border: 3px solid #10b981;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.3), inset 0 0 60px rgba(16, 185, 129, 0.1);
    animation: shieldPulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes shieldPulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(16, 185, 129, 0.3), inset 0 0 60px rgba(16, 185, 129, 0.1);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(16, 185, 129, 0.5), inset 0 0 80px rgba(16, 185, 129, 0.2);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.shield-icon {
    font-size: 5rem;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    z-index: 2;
}

.attack-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
    animation: attackBounce 2s ease-in-out infinite;
}

@keyframes attackBounce {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    50% {
        transform: translate(var(--target-x), var(--target-y)) scale(1.2);
        opacity: 1;
    }
    70% {
        transform: translate(calc(var(--target-x) * 1.5), calc(var(--target-y) * 1.5)) scale(0.5);
        opacity: 0.3;
    }
    100% {
        transform: translate(calc(var(--target-x) * 2), calc(var(--target-y) * 2)) scale(0);
        opacity: 0;
    }
}

.particle-1 {
    --target-x: 80px;
    --target-y: -60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    --target-x: -80px;
    --target-y: -40px;
    top: 30%;
    right: 10%;
    animation-delay: 0.7s;
}

.particle-3 {
    --target-x: 60px;
    --target-y: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: 1.4s;
}

.particle-4 {
    --target-x: -70px;
    --target-y: 70px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2.1s;
}

.security-status {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.security-status i {
    animation: statusPulse 2s ease-in-out infinite;
}

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

.security-metrics {
    display: flex;
    gap: 1.5rem;
}

.security-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    min-width: 100px;
}

.security-metric i {
    font-size: 1.5rem;
    color: #10b981;
}

.security-metric span {
    font-size: 1.2rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.security-metric small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Support Dashboard Mockup ===== */
.support-dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Support Dashboard Screen (for support-maintenance.php) */
.dashboard-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald);
}

.status-dot-live {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
    animation: livePulse 2s ease-in-out infinite;
}

.chart-area {
    flex: 1;
    position: relative;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
    border-radius: 2px;
    animation: chartFlow 3s ease-in-out infinite;
}

.chart-line.line-1 {
    bottom: 30%;
    animation-delay: 0s;
}

.chart-line.line-2 {
    bottom: 50%;
    animation-delay: 0.5s;
    opacity: 0.7;
}

.chart-line.line-3 {
    bottom: 70%;
    animation-delay: 1s;
    opacity: 0.5;
}

@keyframes chartFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.metrics-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.metric-box {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alert-popup {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 2rem;
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 600;
    animation: alertFloat 3s ease-in-out infinite;
}

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

.dashboard-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.dashboard-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #10b981;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
}

.dashboard-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.metric-icon {
    font-size: 2rem;
    color: #10b981;
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.monitoring-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
}

.pulse-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    border: 3px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10b981;
    z-index: 10;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        0 0 40px rgba(16, 185, 129, 0.4),
        inset 0 0 20px rgba(16, 185, 129, 0.2);
    animation: eyePulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes eyePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 20px rgba(16, 185, 129, 0.6),
            0 0 40px rgba(16, 185, 129, 0.4),
            inset 0 0 20px rgba(16, 185, 129, 0.2);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 30px rgba(16, 185, 129, 0.8),
            0 0 60px rgba(16, 185, 129, 0.6),
            inset 0 0 30px rgba(16, 185, 129, 0.3);
    }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: pulseRing 2s ease-out infinite;
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

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

/* ===== Maintenance Version Counter Mockup ===== */
.maintenance-version-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.version-display-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-gear {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 3rem;
    color: #10b981;
    opacity: 0.3;
    animation: gearRotate 8s linear infinite;
    z-index: 1;
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.version-display {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.version-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Sora', monospace;
    color: #10b981;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    animation: versionPulse 2s ease-in-out infinite;
}

@keyframes versionPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.version-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.version-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.version-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.version-step.completed {
    opacity: 1;
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.step-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: 900;
    font-size: 0.9rem;
    transform: scale(0);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.version-step.completed .step-check {
    transform: scale(1);
}

.version-step span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.maintenance-stats {
    display: flex;
    gap: 1.5rem;
}

.maintenance-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    min-width: 100px;
}

.maintenance-stat i {
    font-size: 1.5rem;
    color: #10b981;
}

.maintenance-stat span {
    font-size: 1.2rem;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.maintenance-stat small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hide all service-specific mockups on mobile */
@media (max-width: 768px) {
    .headless-speed-mockup,
    .pwa-phone-mockup,
    .seo-search-mockup,
    .seo-ranking-mockup,
    .speed-gauge-mockup,
    .conversion-split-mockup,
    .roas-display-mockup,
    .automation-node-mockup,
    .listing-transformation-mockup,
    .photo-editing-mockup,
    .security-shield-mockup,
    .support-dashboard-mockup,
    .maintenance-version-mockup,
    .storefront-dev-mockup,
    .roas-dashboard-mockup,
    .automation-flow-mockup,
    .conversion-funnel-mockup {
        display: none;
    }
}

/* Tablet adjustments for all service mockups */
@media (min-width: 768px) and (max-width: 1024px) {
    .headless-speed-mockup,
    .pwa-phone-mockup,
    .seo-search-mockup,
    .seo-ranking-mockup,
    .speed-gauge-mockup,
    .conversion-split-mockup,
    .roas-display-mockup,
    .automation-node-mockup,
    .listing-transformation-mockup,
    .photo-editing-mockup,
    .security-shield-mockup,
    .support-dashboard-mockup,
    .maintenance-version-mockup,
    .storefront-dev-mockup,
    .roas-dashboard-mockup,
    .automation-flow-mockup,
    .conversion-funnel-mockup {
        max-width: 500px;
        height: 400px;
    }
    
    .shield-core {
        width: 200px;
        height: 240px;
    }
    
    .shield-icon {
        font-size: 4rem;
    }
    
    .version-number {
        font-size: 3rem;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .dashboard-metric {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .speedometer-container,
    .gauge-container {
        width: 250px;
        height: 250px;
    }
    
    .speed-value,
    .gauge-score {
        font-size: 2.5rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .roas-number {
        font-size: 4rem;
    }
    
    .node-hub-center {
        width: 100px;
        height: 100px;
    }
    
    .node-hub-center i {
        font-size: 2rem;
    }
    
    .node-satellite {
        width: 70px;
        height: 70px;
    }
    
    .storefront-dev-mockup,
    .roas-dashboard-mockup,
    .automation-flow-mockup,
    .conversion-funnel-mockup {
        max-width: 500px;
        height: 400px;
    }
}

/* ===== Storefront Development Mockup ===== */
.storefront-dev-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.storefront-container {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.storefront-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.storefront-dots {
    display: flex;
    gap: 0.5rem;
}

.storefront-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.storefront-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.storefront-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.storefront-hero {
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.storefront-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    flex: 1;
}

.storefront-product {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    min-height: 80px;
}

.storefront-conversion {
    display: flex;
    justify-content: center;
    align-items: center;
}

.conversion-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 2rem;
    color: var(--emerald);
    font-size: 0.875rem;
    font-weight: 600;
}

.storefront-stats {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.storefront-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.storefront-stat i {
    color: var(--emerald);
    font-size: 1.25rem;
}

.storefront-stat span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald);
}

.storefront-stat small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ROAS Dashboard Mockup ===== */
.roas-dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roas-dashboard-container {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.roas-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.roas-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.roas-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.roas-metric-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roas-metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roas-metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
}

.roas-metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.roas-metric-change.positive {
    color: var(--emerald);
}

.roas-metric-change.neutral {
    color: rgba(255, 255, 255, 0.6);
}

.roas-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--emerald), var(--emerald-light));
    border-radius: 0.25rem 0.25rem 0 0;
    min-height: 20px;
    animation: chartGrow 1.5s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height, 100%); }
}

/* ===== Automation Flow Mockup ===== */
.automation-flow-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.automation-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.automation-node {
    width: 120px;
    height: 120px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--emerald);
    font-size: 2rem;
    position: relative;
    animation: nodePulse 2s ease-in-out infinite;
}

.automation-node.node-start {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.automation-node.node-process {
    border-color: rgba(16, 185, 129, 0.4);
    animation-delay: 0.5s;
}

.automation-node.node-end {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    animation-delay: 1s;
}

.automation-node span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.automation-arrow {
    color: var(--emerald);
    font-size: 1.5rem;
    animation: arrowFlow 1.5s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

@keyframes arrowFlow {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}

.automation-stats {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.automation-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.automation-stat i {
    color: var(--emerald);
    font-size: 1.25rem;
}

.automation-stat span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald);
}

.automation-stat small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Conversion Funnel Mockup ===== */
.conversion-funnel-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.funnel-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
}

.funnel-stage {
    width: 100%;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}

.funnel-stage:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.funnel-stage.stage-1 {
    width: 100%;
}

.funnel-stage.stage-2 {
    width: 80%;
}

.funnel-stage.stage-3 {
    width: 60%;
}

.funnel-stage.stage-4 {
    width: 40%;
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(16, 185, 129, 0.1);
}

.stage-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald);
}

.stage-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stage-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    border-radius: 0 0 0.5rem 0.5rem;
    animation: barFill 1s ease-out;
}

@keyframes barFill {
    from { width: 0; }
    to { width: var(--width, 100%); }
}

.conversion-badge {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 1rem;
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
}

.funnel-arrow {
    color: var(--emerald);
    font-size: 1.25rem;
    opacity: 0.6;
}

.funnel-improvement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
}

.improvement-arrow {
    color: var(--emerald);
    font-size: 1.5rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

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

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

.improvement-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.improvement-text strong {
    font-size: 1.25rem;
    color: var(--emerald);
    font-weight: 700;
}

/* Before/After Image Comparison Slider */
.before-after-slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.comparison-slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--bg-secondary);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.comparison-slider:active {
    cursor: grabbing;
}

.comparison-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-image-container.before-container {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.comparison-image-container.after-container {
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.1s ease-out;
}

.comparison-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-img {
    object-position: center;
}

.after-img {
    object-position: center;
}

.comparison-label-badge {
    position: absolute;
    top: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 30;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.before-badge {
    left: 1.5rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.after-badge {
    right: 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--emerald);
}

.comparison-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--emerald);
    transform: translateX(-50%);
    z-index: 20;
    cursor: grab;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.comparison-slider-handle:active {
    cursor: grabbing;
}

.slider-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

.slider-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--emerald);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.25rem;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.slider-handle-circle i {
    animation: sliderPulse 2s ease-in-out infinite;
}

@keyframes sliderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile adjustments for comparison slider */
@media (max-width: 768px) {
    .comparison-slider {
        padding-bottom: 100%; /* Square on mobile */
    }
    
    .comparison-label-badge {
        top: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .before-badge {
        left: 1rem;
    }
    
    .after-badge {
        right: 1rem;
    }
    
    .slider-handle-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ============================================
   Legal Pages Styling
   ============================================ */

/* Legal Hero Section */
.legal-hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    padding: 6rem 0 4rem;
    position: relative;
}

.legal-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    font-weight: 400;
}

@media (max-width: 768px) {
    .legal-hero-section {
        min-height: 30vh;
        padding: 4rem 0 2rem;
    }
    
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-hero-subtitle {
        font-size: 1rem;
    }
}

/* Legal Content Section */
.legal-content-section {
    padding: 4rem 0 6rem;
    position: relative;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    position: relative;
}

.legal-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald) 0%, transparent 100%);
}

.legal-subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--emerald-light);
}

.legal-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1.25rem;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
}

.legal-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: 600;
}

.legal-list ol {
    list-style: decimal;
    padding-left: 1.75rem;
    margin: 1.5rem 0;
}

.legal-list ol li {
    padding-left: 0.5rem;
}

.legal-list ol li::before {
    display: none;
}

.legal-link {
    color: var(--emerald);
    text-decoration: none;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--emerald-light);
    border-bottom-color: var(--emerald);
}

.legal-contact-info {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.legal-contact-info p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.legal-contact-info p:last-child {
    margin-bottom: 0;
}

    .legal-contact-info strong {
        color: #ffffff;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .legal-content-section {
        padding: 2rem 0 4rem;
    }
    
    .legal-content-wrapper {
        padding: 0 1rem;
    }
    
    .legal-section-title {
        font-size: 1.75rem;
    }
    
    .legal-subsection-title {
        font-size: 1.25rem;
    }
    
    .legal-text,
    .legal-list li {
        font-size: 1rem;
    }
}

/* ============================================
   404 Error Page Styling
   ============================================ */

.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.error-404-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 8rem;
    position: relative;
    z-index: 2;
}

.error-404-number {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.error-number {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 50%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: block;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 2;
}

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

.error-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.error-404-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.error-404-description {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-404-quick-links {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-links-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.quick-link-item i {
    font-size: 1.5rem;
    color: var(--emerald);
    transition: all 0.3s ease;
}

.quick-link-item span {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(25, 25, 25, 0.8);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.quick-link-item:hover i {
    color: var(--emerald-light);
    transform: scale(1.1);
}

.quick-link-item:hover span {
    color: #ffffff;
}

/* Animated Background Particles */
.error-404-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.error-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--emerald);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 8s ease-in-out infinite;
}

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

.error-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.error-particle:nth-child(3) {
    top: 40%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.error-particle:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.error-particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 13s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .error-404-section {
        min-height: 80vh;
        padding: 4rem 0 2rem;
    }
    
    .error-number {
        font-size: 8rem;
    }
    
    .error-glow {
        width: 300px;
        height: 300px;
    }
    
    .error-404-title {
        font-size: 2rem;
    }
    
    .error-404-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .error-404-actions .btn-primary,
    .error-404-actions .btn-secondary {
        width: 100%;
        max-width: 100%;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .quick-link-item {
        padding: 1.25rem 0.75rem;
    }
    
    .quick-link-item i {
        font-size: 1.25rem;
    }
    
    .quick-link-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-404-title {
        font-size: 1.75rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 1.5rem;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(16, 185, 129, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                visibility 0.4s ease;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-policy-link {
    color: var(--emerald);
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--emerald-light);
    text-decoration: none;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 100%);
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.25rem;
        display: block !important;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .cookie-consent-text {
        min-width: 100%;
        width: 100%;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-accept-btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }
    
    .cookie-policy-link {
        text-align: center;
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.875rem;
    }
}

/* ============================================
   Careers Page Styling
   ============================================ */

/* Careers Hero Visual */
.careers-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.careers-visual-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.careers-visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.careers-visual-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: var(--emerald);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.careers-visual-text {
    flex: 1;
}

.careers-visual-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.careers-visual-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Careers Roles Grid */
.careers-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.careers-role-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.careers-role-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.5);
}

.careers-role-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.careers-role-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: var(--emerald);
    font-size: 1.25rem;
}

.careers-role-badge {
    padding: 0.375rem 0.875rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.careers-role-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.careers-role-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    flex: 1;
}

.careers-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.careers-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #d1d5db;
    font-weight: 500;
}

.careers-role-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.careers-role-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 100%);
}

.careers-role-btn i {
    transition: transform 0.3s ease;
}

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

/* Hiring Process Timeline */
.hiring-process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hiring-process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.hiring-process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
}

.hiring-step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--emerald);
    opacity: 0.5;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.hiring-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    color: var(--emerald);
    font-size: 1.75rem;
}

.hiring-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hiring-step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
}

/* Careers CTA Card */
.careers-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
}

.careers-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.careers-cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    color: var(--emerald);
    font-size: 2rem;
}

.careers-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.careers-cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.careers-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 1024px) {
    .careers-roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hiring-process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Careers Hero Mobile Height */
    #careers-hero.shopify-dev-hero-section-v2 {
        min-height: 60vh;
    }
    
    #careers-hero .hero-content-wrapper {
        min-height: 60vh;
    }
    
    .careers-hero-visual {
        max-width: 100%;
    }
    
    .careers-visual-card {
        padding: 1.25rem;
    }
    
    .careers-visual-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .careers-visual-number {
        font-size: 1.5rem;
    }
    
    /* Careers Carousels - Mobile Only */
    #why-join .shopify-bento-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }
    
    #why-join .shopify-bento-grid::-webkit-scrollbar {
        display: none;
    }
    
    #why-join .shopify-bento-box {
        min-width: 80%;
        max-width: 80%;
        width: 80%;
        scroll-snap-align: start;
        flex-shrink: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    #why-join .shopify-bento-title,
    #why-join .shopify-bento-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .careers-roles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .careers-roles-grid::-webkit-scrollbar {
        display: none;
    }
    
    .careers-role-card {
        min-width: 80%;
        max-width: 80%;
        width: 80%;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .careers-role-title,
    .careers-role-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hiring-process-timeline {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .hiring-process-timeline::-webkit-scrollbar {
        display: none;
    }
    
    .hiring-process-step {
        min-width: 80%;
        max-width: 80%;
        width: 80%;
        scroll-snap-align: start;
        flex-shrink: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hiring-step-title,
    .hiring-step-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .careers-cta-card {
        padding: 3rem 2rem;
    }
    
    .careers-cta-title {
        font-size: 2rem;
    }
    
    .careers-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .careers-cta-buttons .btn-primary,
    .careers-cta-buttons .btn-secondary {
        width: 100%;
    }
    
    /* Disable hover effects on mobile */
    .careers-role-card:hover {
        transform: none;
    }
    
    .hiring-process-step:hover {
        transform: none;
    }
    
    .shopify-bento-box:hover {
        transform: none;
    }
}


