/* CSS Variables */
:root {
    --primary-color: #ff5b74;    /* Bright pinkish-red */
    --secondary-color: #60b8c3;  /* Teal */
    --accent-color: #60b8c3;     /* Teal accent */
    --dark-green: #2d5016;       /* Dark green accent */
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 0.875rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1rem, 2.5vw, 1.5rem); }
h2 { font-size: clamp(0.875rem, 2vw, 1.25rem); }
h3 { font-size: clamp(0.8rem, 1.5vw, 1rem); }
h4 { font-size: clamp(0.75rem, 1.25vw, 0.875rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 300;
    font-family: 'Arista 2.0 Alternate Light', 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.nav-link .link-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    color: #2c3e50;
}

/* If no .link-text, apply to nav-link directly */
.nav-link:not(:has(.link-text)) {
    z-index: 2;
}

.nav-link .link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5b74 0%, #60b8c3 100%);
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback underline if no .link-underline element */
.nav-link:not(:has(.link-underline))::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5b74 0%, #60b8c3 100%);
    border-radius: 3px 3px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 91, 116, 0.05) 0%, rgba(96, 184, 195, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #ff5b74;
}

.nav-link:hover .link-text {
    color: #ff5b74 !important;
}

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

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

.nav-link:active {
    transform: translateY(0);
}

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

.nav-link.active,
.nav-link.active .link-text {
    color: #ff5b74 !important;
    font-weight: 600;
}

/* Modern Action Links (Admin Login, Customer Portal) */
.nav-action-link {
    position: relative;
    padding: 0.6rem 1rem !important;
    font-weight: 500;
    font-size: 0.8rem;
    color: #495057 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}

.nav-action-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

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

.nav-action-link:hover {
    color: #ff5b74 !important;
    background: rgba(255, 91, 116, 0.08);
    transform: translateY(-2px);
}

.nav-action-link:hover::before {
    left: 100%;
}

.nav-action-link:hover i {
    transform: scale(1.1);
}

/* Modern Primary Button (Book Demo) */
.nav-btn-primary {
    background: linear-gradient(135deg, #ff5b74 0%, #ff7a8f 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

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

.nav-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 91, 116, 0.4);
    background: linear-gradient(135deg, #ff4a63 0%, #ff6a7f 100%);
}

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

.nav-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.nav-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.3);
}

.nav-btn-primary i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

.nav-btn-primary:hover i {
    transform: scale(1.1) rotate(5deg);
}

.nav-btn-primary span,
.nav-btn-primary {
    position: relative;
    z-index: 1;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1000;
}

/* Hide mobile controls on desktop */
.nav-menu .nav-controls {
    display: none;
}

.nav-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 91, 116, 0.1);
    border: 1px solid rgba(255, 91, 116, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 500;
}

.nav-toggle-btn:hover {
    background: rgba(255, 91, 116, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.3);
}

.nav-toggle-btn i {
    font-size: 0.875rem;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: var(--transition);
}

/* Hero Section - Dark Theme with Attractive Gradient */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 25%, #1e1b3a 50%, #1a2b3d 75%, #0f1a2e 100%),
        radial-gradient(ellipse at top left, rgba(255, 91, 116, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(96, 184, 195, 0.3) 0%, transparent 50%);
    overflow: hidden;
    padding-top: 70px;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 91, 116, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 184, 195, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 91, 116, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(96, 184, 195, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(255, 91, 116, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 10% 60%, rgba(96, 184, 195, 0.25) 0%, transparent 70%);
    opacity: 1;
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 91, 116, 0.05) 30%, transparent 60%, rgba(96, 184, 195, 0.05) 80%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    opacity: 0.6;
    animation: shimmer 15s linear infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.9;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

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

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.hero-title .text-primary,
.hero-title .gradient-text {
    font-family: 'Arista 2.0 Alternate Light', 'Poppins', sans-serif !important;
    font-weight: 300 !important;
    color: #ff5b74 !important;
    background: linear-gradient(135deg, #ff5b74 0%, #ff7a8f 50%, #60b8c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color); /* Fallback for older browsers */
}

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

.hero-slogan {
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.hero-slogan::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s forwards;
    transform-origin: left;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
    font-weight: 400;
}

.hero-trust {
    margin-top: 2rem;
}

.hero-trust small {
    color: rgba(255, 255, 255, 0.6) !important;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: #FF6B81;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 107, 129, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons .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 ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 129, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #ff5a6f;
}

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

.hero-buttons .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 129, 0.4);
}

.hero-buttons .btn-secondary,
.hero-buttons .btn-outline {
    background: #3A3053;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(58, 48, 83, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: none;
}

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

.hero-buttons .btn-secondary:hover,
.hero-buttons .btn-outline:hover {
    transform: translateY(-2px);
    background: #4a3d66;
    box-shadow: 0 6px 25px rgba(58, 48, 83, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-secondary:hover::before,
.hero-buttons .btn-outline:hover::before {
    left: 100%;
}

.hero-buttons .btn-secondary:active,
.hero-buttons .btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(58, 48, 83, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    z-index: 2;
    overflow: visible;
}

/* Floating Cards - Simple Glass Morphism Product Cards */
.floating-cards {
    position: relative;
    width: 480px;
    height: 380px;
    overflow: visible;
}

/* Product Cards - Translucent Glass Morphism */
.card-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    width: 180px;
    min-width: 160px;
    z-index: 2;
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 91, 116, 0.6), rgba(96, 184, 195, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 91, 116, 0.4);
    box-shadow: 0 12px 48px rgba(255, 91, 116, 0.3), 0 4px 16px rgba(96, 184, 195, 0.2);
    z-index: 10;
    transform: translateY(-8px) scale(1.05);
}

.card-1:hover {
    transform: translateY(-8px) scale(1.05) rotate(-2deg);
}

.card-2:hover {
    transform: translateY(-8px) scale(1.05) rotate(1deg);
}

.card-3:hover {
    transform: translateY(-8px) scale(1.05) rotate(-1.5deg);
}

.card-4:hover {
    transform: translateY(-8px) scale(1.05) rotate(2deg);
}

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

/* Card Icons - Top of Card */
.card-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.card-icons i {
    font-size: 1.4rem;
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-item:hover .card-icons i {
    transform: scale(1.1) rotate(5deg);
    color: rgba(255, 255, 255, 1);
}

/* Card Content - Title and Subtitle */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.card-content h6 {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.card-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* Legacy support for old structure */
.card-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card-item:hover .card-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(255, 91, 116, 0.3));
}

.card-item span {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Scattered Card Positions - Dynamic Overlapping Layout */
.card-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
    z-index: 4;
    transform: rotate(-2deg);
}

.card-2 {
    top: 30%;
    right: 20%;
    left: auto;
    animation-delay: 1.5s;
    z-index: 2;
    transform: rotate(1deg);
}

.card-3 {
    bottom: 20%;
    left: 25%;
    top: auto;
    animation-delay: 3s;
    z-index: 3;
    transform: rotate(-1.5deg);
}

.card-4 {
    bottom: 15%;
    right: 15%;
    left: auto;
    top: auto;
    animation-delay: 4.5s;
    z-index: 1;
    transform: rotate(2deg);
}


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

/* Background Network Icons - Circular Glass Morphism */
.network-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    z-index: 1;
    transition: all 0.3s ease;
    animation: pulseIcon 4s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.network-icon:hover {
    background: linear-gradient(135deg, rgba(255, 91, 116, 0.3), rgba(96, 184, 195, 0.3));
    border-color: rgba(255, 91, 116, 0.6);
    transform: scale(1.2);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 91, 116, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Position Background Icons - Around Cards Container */
.network-icon.icon-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.network-icon.icon-2 {
    top: 20%;
    right: 0%;
    animation-delay: 0.5s;
}

.network-icon.icon-3 {
    top: 50%;
    right: 0%;
    animation-delay: 1s;
}

.network-icon.icon-4 {
    top: 75%;
    right: 5%;
    animation-delay: 1.5s;
}

.network-icon.icon-5 {
    top: 20%;
    left: 0%;
    animation-delay: 2s;
}

.network-icon.icon-6 {
    top: 75%;
    left: 5%;
    animation-delay: 2.5s;
}

.network-icon.icon-7 {
    top: 50%;
    left: 0%;
    animation-delay: 3s;
}

.network-icon.icon-8 {
    top: 5%;
    left: 5%;
    animation-delay: 3.5s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 91, 116, 0.15), rgba(96, 184, 195, 0.15));
    opacity: 0.6;
    animation: pulse 6s ease-in-out infinite;
    filter: blur(60px);
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 3%;
    animation-delay: 2s;
}

.bg-shape-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1) translate(0, 0); 
        opacity: 0.4; 
    }
    50% { 
        transform: scale(1.3) translate(30px, -30px); 
        opacity: 0.7; 
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 91, 116, 0.8) 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s forwards;
}

.section-title {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title .logo-text {
    font-family: 'Arista 2.0 Alternate Light', 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    background: 
        linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 25%, #1e1b3a 50%, #1a2b3d 75%, #0f1a2e 100%),
        radial-gradient(ellipse at top left, rgba(255, 91, 116, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(96, 184, 195, 0.3) 0%, transparent 50%);
    overflow: hidden;
}

/* Network Pattern Background for Services */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 91, 116, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 184, 195, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 91, 116, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(96, 184, 195, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(255, 91, 116, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 10% 60%, rgba(96, 184, 195, 0.25) 0%, transparent 70%);
    opacity: 1;
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 91, 116, 0.05) 30%, transparent 60%, rgba(96, 184, 195, 0.05) 80%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    opacity: 0.6;
    animation: shimmer 15s linear infinite;
    z-index: 1;
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

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

.services .section-header {
    position: relative;
    z-index: 2;
}

.services .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    animation: fadeInUp 0.6s ease-out;
}

/* Staggered animation for service cards */
.service-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

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

.service-card {
    background: linear-gradient(180deg, rgba(60, 61, 82, 0.85), rgba(60, 61, 82, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.3) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(60, 61, 82, 0.3);
    background: linear-gradient(180deg, rgba(60, 61, 82, 0.9), rgba(60, 61, 82, 1));
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 2s linear infinite;
}

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

.service-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(60, 61, 82, 0.3);
    background: linear-gradient(180deg, 
        rgba(60, 61, 82, 0.9) 0%, 
        rgba(60, 61, 82, 0.98) 100%);
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 16px rgba(0, 0, 0, 0.4),
            0 3px 6px rgba(0, 0, 0, 0.3);
    }
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.service-icon i {
    font-size: 1.75rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-logo {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: brightness(1.1);
}

.service-card:hover .service-logo {
    transform: scale(1.1);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.service-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #ffffff;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.75rem;
    font-weight: 400;
}

.service-features {
    margin-bottom: 1rem;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.service-features .feature-item i {
    color: #ffffff;
    font-size: 0.65rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.1));
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-features .feature-item i {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.15));
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-features .feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover .service-features .feature-item span {
    color: #ffffff;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.service-actions .btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.service-actions .btn i {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.service-actions .btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.service-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.service-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.service-actions .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.service-actions .btn-primary:hover i {
    transform: translateX(3px) scale(1.1);
}

.service-actions .btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2);
}

.service-actions .btn-primary i,
.service-actions .btn-primary {
    position: relative;
    z-index: 2;
}

/* Enhanced Focus States for Accessibility */
.service-card:focus-within {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 4px;
}

.service-actions .btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Smooth Scroll Enhancement */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Section Fade In on Scroll */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    animation: sectionFadeIn 0.8s ease-out;
}

/* Improved Card Loading State */
.service-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.service-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 91, 116, 0.3);
    border-top-color: rgba(255, 91, 116, 0.8);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Mobile Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: translateY(-8px) scale(1.01);
    }
    
    .service-actions .btn-primary:active {
        transform: scale(0.98);
    }
}

/* Performance Optimization - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-icon,
    .service-actions .btn {
        animation: none !important;
        transition: none !important;
    }
    
    .services-grid {
        animation: none !important;
    }
    
    .service-card {
        animation: none !important;
    }
}

/* Product Pages */
.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 25%, #1e1b3a 50%, #1a2b3d 75%, #0f1a2e 100%),
        radial-gradient(ellipse at top left, rgba(255, 91, 116, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(96, 184, 195, 0.3) 0%, transparent 50%);
    overflow: hidden;
    padding-top: 70px;
    color: #ffffff;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 91, 116, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 184, 195, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 91, 116, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(96, 184, 195, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(255, 91, 116, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 10% 60%, rgba(96, 184, 195, 0.25) 0%, transparent 70%);
    opacity: 1;
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.product-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 91, 116, 0.05) 30%, transparent 60%, rgba(96, 184, 195, 0.05) 80%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    opacity: 0.6;
    animation: shimmer 15s linear infinite;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-hero .hero-content {
    z-index: 2;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.badge-logo {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5b74;
}

.product-hero .stat-number {
    color: #ff5b74;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-hero .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 0.875rem;
}

.product-mockup {
    position: relative;
    text-align: center;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Product Hero Visual - Single Card with Network Icons */
.product-hero .hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.product-hero .floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.product-hero .card-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 280px;
    min-width: 280px;
}

.product-hero .card-item:hover {
    z-index: 10;
    transform: translate(-50%, -60%) scale(1.05);
}

/* Product Card Specific Positioning - Upper Right */
.product-hero .dmedics-card,
.product-hero .dcard-card,
.product-hero .dsuite-card,
.product-hero .d360-card {
    top: 20%;
    right: 15%;
    left: auto;
    transform: translate(0, 0);
}

.product-hero .dmedics-card:hover,
.product-hero .dcard-card:hover,
.product-hero .dsuite-card:hover,
.product-hero .d360-card:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Product Hero Text Styles */
.product-hero .hero-text {
    position: relative;
    z-index: 2;
}

.product-hero .hero-title {
    color: #ffffff;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.product-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    font-weight: 400;
}

.product-hero .hero-actions .btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-hero .hero-actions .btn-primary {
    background: #FF6B81;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 107, 129, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-hero .hero-actions .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 ease;
}

.product-hero .hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 129, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #ff5a6f;
}

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

.product-hero .hero-actions .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 129, 0.4);
}

.product-hero .hero-actions .btn-outline {
    background: #3A3053;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(58, 48, 83, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: none;
}

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

.product-hero .hero-actions .btn-outline:hover {
    transform: translateY(-2px);
    background: #4a3d66;
    box-shadow: 0 6px 25px rgba(58, 48, 83, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.product-hero .hero-actions .btn-outline:hover::before {
    left: 100%;
}

.product-hero .hero-actions .btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(58, 48, 83, 0.4);
}

.product-features {
    padding: 6rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.product-pricing {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-200);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff5b74, #ff8a9b);
    color: var(--white);
    padding: 0.5rem 1.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(255, 91, 116, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulseBadge 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulseBadge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 6px 20px rgba(255, 91, 116, 0.5),
            0 3px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 
            0 8px 25px rgba(255, 91, 116, 0.6),
            0 4px 10px rgba(0, 0, 0, 0.25);
    }
}

.pricing-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    color: var(--primary-color);
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.price {
    margin: 0.75rem 0;
    padding: 0.75rem 0;
    border-top: 2px solid rgba(255, 91, 116, 0.1);
    border-bottom: 2px solid rgba(255, 91, 116, 0.1);
    position: relative;
    z-index: 2;
}

.price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 91, 116, 0.3) 50%, 
        transparent 100%);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .price::before {
    opacity: 1;
}

.currency {
    font-size: 1.1rem;
    color: var(--gray-600);
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff5b74, #ff8a9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0 0.25rem;
    letter-spacing: -0.05em;
    transition: transform 0.3s ease;
}

.pricing-card:hover .amount {
    transform: scale(1.1);
}

.period {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.pricing-features .feature,
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover .pricing-features .feature,
.pricing-card:hover .pricing-features li {
    color: var(--gray-900);
    transform: translateX(5px);
}

.pricing-features .feature i,
.pricing-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 91, 116, 0.15), 
        rgba(96, 184, 195, 0.15));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 91, 116, 0.2);
}

.pricing-card:hover .pricing-features .feature i,
.pricing-card:hover .pricing-features li i {
    background: linear-gradient(135deg, 
        rgba(255, 91, 116, 0.25), 
        rgba(96, 184, 195, 0.25));
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 91, 116, 0.4);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.2);
}

.product-cta {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(255, 91, 116, 0.08);
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem 0;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 2px 2px 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 91, 116, 0.08), rgba(96, 184, 195, 0.08));
    color: var(--primary-color);
    transform: translateX(4px);
    padding-left: 1.25rem;
}

.dropdown-item:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.dropdown-item.active {
    background: linear-gradient(90deg, rgba(255, 91, 116, 0.12), rgba(96, 184, 195, 0.12));
    color: var(--primary-color);
    font-weight: 600;
    padding-left: 1.25rem;
}

.dropdown-item.active::before {
    transform: translateY(-50%) scaleX(1);
}

/* Sticky CTA Header */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.4rem 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--gray-800);
}

.sticky-cta-actions {
    display: flex;
    gap: 0.6rem;
}

/* Animated Gradient Background */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 91, 116, 0.04), rgba(96, 184, 195, 0.04));
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 40%;
    height: 150%;
    background: linear-gradient(135deg, rgba(96, 184, 195, 0.03), rgba(255, 91, 116, 0.03));
    border-radius: 50%;
    animation: float 30s ease-in-out infinite reverse;
    z-index: 1;
}

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

/* Section Separators */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    margin: 4rem 0;
}

.section-separator.wave {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    border-radius: 1px;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

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

.feature-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list .feature-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.feature-list .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-list .feature-icon i {
    color: var(--white);
    font-size: 1rem;
}

.feature-list .feature-text h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-list .feature-text p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--gray-900);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.dashboard-dots span:nth-child(1) { background: #ff5f56; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #27ca3f; }

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.dashboard-card {
    background: var(--gray-800);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.card-chart {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    height: 60px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: growUp 2s ease-out;
}

.chart-bar:nth-child(1) { background: linear-gradient(to top, var(--primary-color), var(--secondary-color)); }
.chart-bar:nth-child(2) { background: linear-gradient(to top, var(--secondary-color), var(--primary-color)); }
.chart-bar:nth-child(3) { background: linear-gradient(to top, var(--primary-color), var(--secondary-color)); }
.chart-bar:nth-child(4) { background: linear-gradient(to top, var(--secondary-color), var(--primary-color)); }

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

.card-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
    position: relative;
    background: 
        linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 25%, #1e1b3a 50%, #1a2b3d 75%, #0f1a2e 100%),
        radial-gradient(ellipse at top left, rgba(255, 91, 116, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(96, 184, 195, 0.3) 0%, transparent 50%);
    overflow: hidden;
    color: var(--white);
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 91, 116, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 184, 195, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 91, 116, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(96, 184, 195, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(255, 91, 116, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 10% 60%, rgba(96, 184, 195, 0.25) 0%, transparent 70%);
    opacity: 1;
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.statistics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 91, 116, 0.05) 30%, transparent 60%, rgba(96, 184, 195, 0.05) 80%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    opacity: 0.6;
    animation: shimmer 15s linear infinite;
    z-index: 1;
}

.statistics .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-description {
    font-size: 0.8rem;
    opacity: 0.9;
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    position: relative;
    background: 
        linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 25%, #1e1b3a 50%, #1a2b3d 75%, #0f1a2e 100%),
        radial-gradient(ellipse at top left, rgba(255, 91, 116, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(96, 184, 195, 0.3) 0%, transparent 50%);
    overflow: hidden;
}

/* Network Pattern Background for Pricing */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 91, 116, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 184, 195, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 91, 116, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(96, 184, 195, 0.3) 0%, transparent 60%);
    opacity: 1;
    animation: pulseGlow 10s ease-in-out infinite;
    z-index: 1;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 91, 116, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 30% 40%, rgba(96, 184, 195, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 50% 60%, rgba(255, 91, 116, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(96, 184, 195, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 90% 70%, rgba(255, 91, 116, 0.5) 2px, transparent 2px);
    background-size: 
        200px 200px,
        250px 250px,
        180px 180px,
        220px 220px,
        240px 240px;
    background-position:
        0 0,
        50px 50px,
        100px 100px,
        150px 150px,
        200px 200px;
    opacity: 0.4;
    z-index: 1;
    animation: networkPulse 8s ease-in-out infinite;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing .section-header {
    position: relative;
    z-index: 2;
}

.pricing .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2.5rem auto 0;
    position: relative;
    z-index: 2;
}

/* Staggered animation for pricing cards */
.pricing-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,1));
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(255, 91, 116, 0.15);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(255, 91, 116, 0.8) 0%, 
        rgba(96, 184, 195, 0.8) 50%, 
        rgba(255, 91, 116, 0.8) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 91, 116, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 12px 48px rgba(255, 91, 116, 0.3),
        0 0 60px rgba(96, 184, 195, 0.25);
}

.pricing-card:hover::before {
    opacity: 1;
    animation: shimmer 2s linear infinite;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid rgba(255, 91, 116, 0.6);
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 247, 248, 0.98) 100%);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 91, 116, 0.4),
        0 10px 40px rgba(255, 91, 116, 0.3),
        0 0 50px rgba(255, 91, 116, 0.2);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 91, 116, 0.5),
        0 12px 48px rgba(255, 91, 116, 0.4),
        0 0 60px rgba(255, 91, 116, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    color: var(--primary-color);
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.price {
    margin: 0.75rem 0;
    padding: 0.75rem 0;
    border-top: 2px solid rgba(255, 91, 116, 0.1);
    border-bottom: 2px solid rgba(255, 91, 116, 0.1);
    position: relative;
    z-index: 2;
}

.price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 91, 116, 0.3) 50%, 
        transparent 100%);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .price::before {
    opacity: 1;
}

.currency {
    font-size: 1.1rem;
    color: var(--gray-600);
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff5b74, #ff8a9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0 0.25rem;
    letter-spacing: -0.05em;
    transition: transform 0.3s ease;
}

.pricing-card:hover .amount {
    transform: scale(1.1);
}

.period {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.pricing-features .feature,
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover .pricing-features .feature,
.pricing-card:hover .pricing-features li {
    color: var(--gray-900);
    transform: translateX(5px);
}

.pricing-features .feature i,
.pricing-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 91, 116, 0.15), 
        rgba(96, 184, 195, 0.15));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 91, 116, 0.2);
}

.pricing-card:hover .pricing-features .feature i,
.pricing-card:hover .pricing-features li i {
    background: linear-gradient(135deg, 
        rgba(255, 91, 116, 0.25), 
        rgba(96, 184, 195, 0.25));
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 91, 116, 0.4);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.2);
}

.pricing-features .feature span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.75rem;
}

.pricing-action {
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    z-index: 2;
}

.pricing-action .btn {
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.pricing-action .btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 91, 116, 0.3);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.15);
}

.pricing-action .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 91, 116, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.pricing-action .btn-outline:hover {
    background: rgba(255, 91, 116, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(255, 91, 116, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-action .btn-outline:hover::before {
    left: 100%;
}

.pricing-action .btn-primary {
    background: linear-gradient(135deg, #ff5b74 0%, #ff8a9b 50%, #ff5b74 100%);
    background-size: 200% 100%;
    color: var(--white);
    border: none;
    box-shadow: 
        0 6px 20px rgba(255, 91, 116, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.pricing-action .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.pricing-action .btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255, 91, 116, 0.5),
        0 5px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.pricing-action .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.pricing-action .btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 
        0 4px 15px rgba(255, 91, 116, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.pricing-action .btn i {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.pricing-action .btn:hover i {
    transform: translateX(3px) scale(1.1);
}

.pricing-action .btn-primary,
.pricing-action .btn-outline {
    position: relative;
    z-index: 2;
}

/* Team Illustration */
.team-illustration {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
}

.team-member {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    animation: bounce 3s ease-in-out infinite;
}

.member-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.member-2 {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.member-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 91, 116, 0.15), 0 0 0 1px rgba(96, 184, 195, 0.1);
}

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

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    color: var(--primary-color);
}

.footer-logo .logo-subtitle {
    color: var(--gray-400);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

.footer-bottom .logo-text {
    font-family: 'Arista 2.0 Alternate Light', 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo-img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.loading-logo-text .logo-text {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Arista 2.0 Alternate Light', 'Poppins', sans-serif;
    color: white;
    letter-spacing: 0.5px;
}

.loading-logo-text .logo-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading-spinner {
    margin: 1rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dark Mode Styles */
[data-theme="dark"] {
    --gray-50: #1a1a1a;
    --gray-100: #2d2d2d;
    --gray-200: #404040;
    --gray-300: #525252;
    --gray-400: #666666;
    --gray-500: #808080;
    --gray-600: #999999;
    --gray-700: #b3b3b3;
    --gray-800: #cccccc;
    --gray-900: #e6e6e6;
    --white: #0d0d0d;
    --black: #ffffff;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .section-title {
    color: var(--gray-900);
}

[data-theme="dark"] .section-subtitle {
    color: var(--gray-600);
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .nav-toggle-btn {
    background: rgba(255, 91, 116, 0.2);
    border-color: rgba(255, 91, 116, 0.4);
    color: var(--gray-900);
}

[data-theme="dark"] .nav-toggle-btn:hover {
    background: rgba(255, 91, 116, 0.3);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 91, 116, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-visual {
        order: -1;
        padding: 0;
    }
    
    .floating-cards {
        width: 100%;
        max-width: 400px;
        height: 360px;
        margin: 0 auto;
    }
    
    .card-item {
        padding: 18px 16px;
        width: 160px;
        min-width: 160px;
    }
    
    .card-1 {
        top: 6%;
        left: 6%;
    }
    
    .card-2 {
        top: 28%;
        right: 18%;
    }
    
    .card-3 {
        bottom: 18%;
        left: 22%;
    }
    
    .card-4 {
        bottom: 12%;
        right: 12%;
    }
    
    .card-icons {
        gap: 7px;
        margin-bottom: 10px;
    }
    
    .card-icons i {
        font-size: 1.3rem;
        width: 30px;
        height: 30px;
    }
    
    .card-content h6 {
        font-size: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .card-logo {
        width: 56px;
        height: 56px;
    }
    
    .features-grid,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        gap: 0.5rem;
    }
    
    .nav-logo a {
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 42px;
        height: 42px;
    }
    
    .logo-text-container {
        gap: 0.15rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        font-size: 0.8rem;
        border-radius: 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }
    
    .nav-link .link-text {
        width: auto;
    }
    
    .nav-link .link-underline {
        height: 3px;
        left: 0;
        bottom: 0;
    }
    
    .nav-action-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-btn-primary {
        width: 100%;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-slogan {
        font-size: clamp(0.75rem, 2vw, 1rem);
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
    
    .floating-cards {
        width: 100%;
        max-width: 320px;
        height: 320px;
    }
    
    .card-item {
        padding: 16px 14px;
        width: 140px;
        min-width: 140px;
    }
    
    .card-1 {
        top: 5%;
        left: 5%;
        transform: rotate(-1deg);
    }
    
    .card-2 {
        top: 25%;
        right: 5%;
        transform: rotate(0.5deg);
    }
    
    .card-3 {
        bottom: 15%;
        left: 15%;
        transform: rotate(-1deg);
    }
    
    .card-4 {
        bottom: 10%;
        right: 5%;
        transform: rotate(1deg);
    }
    
    .card-icons {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .card-icons i {
        font-size: 1.2rem;
        width: 28px;
        height: 28px;
    }
    
    .card-content h6 {
        font-size: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
    }
    
    .network-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .card-logo {
        width: 48px;
        height: 48px;
        padding: 0.5rem;
    }
    
    .card-item span {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-controls {
        display: none;
    }
    
    /* Add controls to mobile menu */
    .nav-menu .nav-controls {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-200);
    }
    
    .nav-menu .nav-toggle-btn {
        width: 100%;
        justify-content: center;
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    /* Hide desktop controls on mobile */
    .nav-container > .nav-controls {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .hero-slogan {
        font-size: clamp(0.75rem, 2vw, 1rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    /* Product Hero Responsive */
    .product-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-hero .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .product-hero .card-item {
        width: 240px;
        min-width: 240px;
    }
    
    .product-hero .dmedics-card,
    .product-hero .dcard-card,
    .product-hero .dsuite-card,
    .product-hero .d360-card {
        top: 15%;
        right: 10%;
    }
    
    .product-hero .hero-title {
        font-size: clamp(1.1rem, 3vw, 1.75rem);
    }
    
    .product-hero .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cards {
        width: 100%;
        max-width: 320px;
        height: 320px;
        gap: 0.6rem;
        padding: 0.5rem;
    }
    
    .card-item {
        padding: 1.5rem 1rem;
    }
    
    .card-item i {
        font-size: 1.25rem;
    }
    
    .card-logo {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .card-item span {
        font-size: 0.8rem;
    }
    
    .service-logo {
        width: 3rem;
        height: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .floating-cards {
        width: 100%;
        max-width: 280px;
        height: 280px;
        gap: 0.6rem;
        padding: 0.5rem;
    }
    
    .card-item {
        padding: 1.25rem 0.75rem;
    }
    
    .card-item i {
        font-size: 1.125rem;
    }
    
    .card-logo {
        width: 3rem;
        height: 3rem;
    }
    
    .card-item span {
        font-size: 0.8rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #ff5b74;
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
} 