/* ==========================================
   HEXACORE PREMIUM HOME PAGE STYLES
   Ultra Modern & Professional Design
   ========================================== */

:root {
    --primary-blue: #2196F3;
    --primary-blue-dark: #1976D2;
    --dark-navy: #0D1B2A;
    --darker-navy: #070f17;
    --light-gray: #F5F7FA;
    --medium-gray: #6B7280;
    --green-accent: #10B981;
    --purple-accent: #8B5CF6;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    --gradient-orange: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(13, 27, 42, 0.16);
    --shadow-xl: 0 12px 48px rgba(13, 27, 42, 0.2);
    --shadow-2xl: 0 20px 60px rgba(13, 27, 42, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   PREMIUM HERO SECTION
   ========================================== */

.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-navy) 0%, var(--dark-navy) 50%, #1a2942 100%);
    padding: 140px 0 100px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(2px);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-purple);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--gradient-orange);
    bottom: 20%;
    left: 15%;
    animation-delay: 15s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content-wrapper {
    /* No additional styles needed - inherits from grid */
}

.hero-badge-container {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-primary);
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse-glow 2s ease-in-out infinite;
}

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

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(33, 150, 243, 0.1);
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 16px;
    animation: spark 1.5s ease-in-out infinite;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    animation: slide-up 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

.gradient-text {
    background: linear-gradient(135deg, #2196F3 0%, #10B981 50%, #8B5CF6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-text {
    /* Inherits from parent */
}

.cta-icon {
    transition: var(--transition);
}

.primary-cta {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.cta-shimmer {
    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;
}

.primary-cta:hover .cta-shimmer {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.5);
    color: var(--white);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    color: var(--white);
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.feature-badge i {
    color: var(--green-accent);
    font-size: 16px;
}

.hero-visual-container {
    position: relative;
    height: 600px;
}

.floating-dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-2xl);
    animation: float 6s ease-in-out infinite;
}

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

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

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-dots span:nth-child(1) { background: #FF5F56; }
.dashboard-dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-dots span:nth-child(3) { background: #27C93F; }

.dashboard-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-icon.blue { background: var(--gradient-primary); }
.stat-icon.green { background: var(--gradient-secondary); }
.stat-icon.purple { background: var(--gradient-purple); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.performance-chart {
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
}

.floating-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--white);
    transition: var(--transition);
    animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.floating-card:hover {
    transform: scale(1.1);
    background: rgba(33, 150, 243, 0.2);
    border-color: var(--primary-blue);
}

.floating-card i {
    font-size: 28px;
    color: var(--primary-blue);
}

.floating-card span {
    font-size: 13px;
    font-weight: 600;
}

.card-tech-1 {
    top: 80px;
    right: 60px;
    animation-delay: 0s;
}

.card-tech-2 {
    bottom: 120px;
    right: 40px;
    animation-delay: 1.5s;
}

.card-tech-3 {
    top: 50%;
    right: -40px;
    animation-delay: 3s;
}

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

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--primary-blue);
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   PREMIUM BRANDS SECTION
   ========================================== */

.premium-brands {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.brands-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.brands-grid-pattern {
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(13, 27, 42, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(13, 27, 42, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.header-decoration i {
    font-size: 32px;
    color: var(--primary-blue);
}

.brands-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.brands-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.brands-carousel-wrapper {
    margin-bottom: 60px;
}

.brands-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 30px;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: scroll-brands 40s linear infinite;
}

.brands-carousel.reverse .brands-track {
    animation: scroll-brands-reverse 40s linear infinite;
}

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

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

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

.brand-card {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 27, 42, 0.05);
    transition: var(--transition);
}

.brand-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 16px;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.brand-card:hover .brand-glow {
    opacity: 0.2;
}

.brand-card img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.brands-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid rgba(33, 150, 243, 0.1);
}

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

.brands-stats .stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.brands-stats .stat-label {
    font-size: 15px;
    color: var(--medium-gray);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--primary-blue), transparent);
}

/* ==========================================
   SOLUTIONS SHOWCASE
   ========================================== */

.solutions-showcase {
    position: relative;
    padding: 120px 0;
    background: var(--light-gray);
}

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

.solutions-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(33, 150, 243, 0.03) 0%, transparent 70%);
}

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

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(33, 150, 243, 0.1);
    border: 2px solid rgba(33, 150, 243, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-premium {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc-premium {
    font-size: 19px;
    color: var(--medium-gray);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    border: 2px solid rgba(13, 27, 42, 0.1);
    border-radius: 50px;
    color: var(--medium-gray);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button i {
    font-size: 20px;
}

.tab-button:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-button.active {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.solutions-content-wrapper {
    position: relative;
    min-height: 600px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.solution-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.solution-content-grid.reverse {
    direction: rtl;
}

.solution-content-grid.reverse > * {
    direction: ltr;
}

.solution-visual {
    position: relative;
    height: 450px;
}

.visual-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-rack {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rack-unit {
    height: 80px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    border: 2px solid rgba(33, 150, 243, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    animation: rack-pulse 2s ease-in-out infinite;
}

.rack-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.4), transparent);
    animation: rack-scan 3s linear infinite;
}

@keyframes rack-pulse {
    0%, 100% { border-color: rgba(33, 150, 243, 0.2); }
    50% { border-color: rgba(33, 150, 243, 0.6); }
}

@keyframes rack-scan {
    from { left: -100%; }
    to { left: 100%; }
}

.visual-mockup.av {
    /* Inherits from parent */
}

.av-display {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.av-wave {
    width: 80%;
    height: 100px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1000 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q250,0 500,50 T1000,50" fill="none" stroke="rgba(139,92,246,0.5)" stroke-width="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: wave-motion 3s ease-in-out infinite;
}

@keyframes wave-motion {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

.av-controls {
    display: flex;
    gap: 12px;
}

.control-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    animation: control-blink 2s ease-in-out infinite;
}

.control-dot.active {
    background: var(--gradient-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

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

.visual-mockup.uc {
    /* Inherits from parent */
}

.uc-device {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.device-screen {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-indicator {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    animation: call-pulse 1.5s ease-in-out infinite;
}

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

.visual-mockup.advanced {
    /* Inherits from parent */
}

.tech-grid {
    width: 350px;
    height: 350px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-node {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    animation: node-glow 2s ease-in-out infinite;
}

@keyframes node-glow {
    0%, 100% { border-color: rgba(245, 158, 11, 0.3); box-shadow: none; }
    50% { border-color: rgba(245, 158, 11, 0.8); box-shadow: 0 0 30px rgba(245, 158, 11, 0.3); }
}

.tech-connector {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

.solution-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-heading {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-navy);
    letter-spacing: -1px;
    line-height: 1.2;
}

.solution-text {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.solution-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-blue);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.premium-link:hover {
    gap: 16px;
}

.premium-link i {
    transition: var(--transition);
}

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

/* ==========================================
   SERVICES EXCELLENCE SECTION
   ========================================== */

.services-excellence {
    padding: 120px 0;
    background: var(--white);
}

.services-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

.services-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-header {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sidebar-desc {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.services-navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.service-nav-item:hover {
    background: rgba(33, 150, 243, 0.05);
    border-color: rgba(33, 150, 243, 0.2);
    transform: translateX(5px);
}

.service-nav-item.active {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.nav-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-nav-item.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.nav-content {
    flex: 1;
}

.nav-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 4px;
    transition: var(--transition);
}

.service-nav-item.active .nav-content h4 {
    color: var(--white);
}

.nav-content span {
    font-size: 13px;
    color: var(--medium-gray);
    transition: var(--transition);
}

.service-nav-item.active .nav-content span {
    color: rgba(255, 255, 255, 0.8);
}

.nav-arrow {
    color: var(--medium-gray);
    font-size: 16px;
    transition: var(--transition);
}

.service-nav-item.active .nav-arrow {
    color: var(--white);
    transform: translateX(4px);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: var(--dark-navy);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
    color: var(--white);
}

.services-main {
    position: relative;
    min-height: 500px;
}

.service-detail {
    display: none;
    animation: slideInRight 0.5s ease;
}

.service-detail.active {
    display: block;
}

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

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--light-gray);
}

.service-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
    flex-shrink: 0;
}

.service-detail-header > div {
    flex: 1;
}

.service-detail-header > div h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.service-detail-header > div p {
    font-size: 18px;
    color: var(--medium-gray);
}

.service-detail-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-body > p {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    padding: 32px 24px;
    background: var(--light-gray);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.highlight-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.highlight-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2942 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.testimonials-section .section-header-premium {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-label {
    background: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.4);
}

.testimonials-section .section-title-premium {
    color: var(--white);
}

.testimonials-section .section-desc-premium {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-style: italic;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   PREMIUM CTA SECTION
   ========================================== */

.premium-cta {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 50%, #10B981 100%);
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-circle 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.circle-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.2;
    }
}

.cta-content-premium {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon-premium {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(30px);
    animation: glow-pulse 2s ease-in-out infinite;
}

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

.cta-icon-premium i {
    position: relative;
    font-size: 60px;
    color: var(--white);
    animation: icon-bounce 2s ease-in-out infinite;
}

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

.cta-title-premium {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-desc-premium {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-buttons-premium {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-buttons-premium .primary-cta {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-buttons-premium .primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-buttons-premium .secondary-cta {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.cta-buttons-premium .secondary-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 20px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
    .hero-grid {
        gap: 60px;
    }

    .hero-title {
        font-size: 60px;
    }

    .floating-dashboard {
        width: 400px;
    }

    .solution-content-grid {
        gap: 60px;
        padding: 50px;
    }

    .services-layout {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
}

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

    .hero-visual-container {
        height: 500px;
    }

    .hero-title {
        font-size: 52px;
    }

    .brands-title {
        font-size: 42px;
    }

    .section-title-premium {
        font-size: 42px;
    }

    .solution-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-visual {
        height: 350px;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-sidebar {
        position: static;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .cta-title-premium {
        font-size: 42px;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .premium-hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 16px;
    }

    .floating-dashboard {
        width: 100%;
        max-width: 380px;
    }

    .card-tech-1,
    .card-tech-2,
    .card-tech-3 {
        display: none;
    }

    .brands-title {
        font-size: 36px;
    }

    .brands-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .section-title-premium {
        font-size: 36px;
    }

    .solutions-tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
    }

    .solution-content-grid {
        padding: 30px;
    }

    .solution-heading {
        font-size: 32px;
    }

    .sidebar-title {
        font-size: 32px;
    }

    .cta-title-premium {
        font-size: 32px;
    }

    .cta-desc-premium {
        font-size: 18px;
    }

    .cta-buttons-premium {
        flex-direction: column;
    }

    .premium-brands {
        padding: 80px 0;
    }

    .solutions-showcase {
        padding: 80px 0;
    }

    .services-excellence {
        padding: 80px 0;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .premium-cta {
        padding: 100px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .brands-title {
        font-size: 28px;
    }

    .section-title-premium {
        font-size: 28px;
    }

    .solution-heading {
        font-size: 26px;
    }

    .sidebar-title {
        font-size: 26px;
    }

    .cta-title-premium {
        font-size: 26px;
    }

    .brand-card {
        width: 180px;
        height: 100px;
    }

    .floating-dashboard {
        padding: 16px;
    }

    .stat-card {
        padding: 12px;
    }

    .feature-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .premium-hero,
    .premium-cta {
        background: var(--white) !important;
        color: var(--dark-navy) !important;
    }

    .animated-shapes,
    .hero-video-container,
    .cta-bg-animation {
        display: none !important;
    }
}