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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 20%, #6d28d9 40%, #4c1d95 60%, #312e81 80%, #1e40af 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 46, 175, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(76, 29, 149, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 60% 30%, rgba(30, 64, 175, 0.2) 0%, transparent 55%);
    z-index: -1;
    animation: bubbleFloat 25s ease-in-out infinite;
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-15px) rotate(0.5deg) scale(1.05); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-25px) rotate(-0.5deg) scale(1.1); 
        opacity: 1;
    }
    75% { 
        transform: translateY(-10px) rotate(0.3deg) scale(1.02); 
        opacity: 0.85;
    }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Override section title color for dark sections */
.services .section-title {
    color: white;
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(139, 92, 246, 0.3) 30%, rgba(76, 29, 149, 0.2) 60%, rgba(30, 27, 75, 0.1) 80%, transparent 90%);
    backdrop-filter: blur(8px);
    box-shadow: 
        inset 0 0 60px rgba(255, 255, 255, 0.3),
        0 0 100px rgba(255, 255, 255, 0.2),
        0 0 140px rgba(139, 92, 246, 0.2),
        0 0 180px rgba(76, 29, 149, 0.1);
}

.bubble-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: floatBubble1 15s ease-in-out infinite;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation: floatBubble2 18s ease-in-out infinite;
}

.bubble-3 {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 5%;
    animation: floatBubble3 20s ease-in-out infinite;
}

.bubble-4 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 20%;
    animation: floatBubble4 12s ease-in-out infinite;
}

.bubble-5 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 50%;
    animation: floatBubble5 16s ease-in-out infinite;
}

.bubble-6 {
    width: 160px;
    height: 160px;
    top: 80%;
    right: 5%;
    animation: floatBubble6 14s ease-in-out infinite;
}

@keyframes floatBubble1 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.4); 
        opacity: 0.1;
    }
    10% { 
        transform: translateY(80vh) translateX(10px) scale(0.6); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(60vh) translateX(-5px) scale(0.8); 
        opacity: 0.5;
    }
    45% { 
        transform: translateY(40vh) translateX(15px) scale(1.0); 
        opacity: 0.7;
    }
    70% { 
        transform: translateY(10vh) translateX(-10px) scale(1.2); 
        opacity: 0.8;
    }
    85% { 
        transform: translateY(-5vh) translateX(5px) scale(1.4); 
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-15vh) translateX(0px) scale(1.6); 
        opacity: 0;
    }
}

@keyframes floatBubble2 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.3); 
        opacity: 0.1;
    }
    12% { 
        transform: translateY(80vh) translateX(-15px) scale(0.5); 
        opacity: 0.3;
    }
    30% { 
        transform: translateY(60vh) translateX(20px) scale(0.7); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(35vh) translateX(-8px) scale(0.9); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(5vh) translateX(12px) scale(1.1); 
        opacity: 0.8;
    }
    90% { 
        transform: translateY(-5vh) translateX(-5px) scale(1.3); 
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-15vh) translateX(0px) scale(1.5); 
        opacity: 0;
    }
}

@keyframes floatBubble3 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.2); 
        opacity: 0.1;
    }
    15% { 
        transform: translateY(80vh) translateX(30px) scale(0.4); 
        opacity: 0.3;
    }
    35% { 
        transform: translateY(55vh) translateX(-20px) scale(0.6); 
        opacity: 0.5;
    }
    60% { 
        transform: translateY(25vh) translateX(10px) scale(0.9); 
        opacity: 0.7;
    }
    80% { 
        transform: translateY(5vh) translateX(-25px) scale(1.2); 
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-10vh) translateX(0px) scale(1.6); 
        opacity: 0;
    }
}

@keyframes floatBubble4 {
    0% { 
        transform: translateY(120vh) translateX(0px) scale(0.4); 
        opacity: 0;
    }
    12% { 
        transform: translateY(100vh) translateX(-20px) scale(0.5); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(40vh) translateX(15px) scale(0.9); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(10vh) translateX(-10px) scale(1.1); 
        opacity: 0.6;
    }
    90% { 
        transform: translateY(-5vh) translateX(5px) scale(1.3); 
        opacity: 0.3;
    }
    100% { 
        transform: translateY(-15vh) translateX(0px) scale(1.5); 
        opacity: 0;
    }
}

@keyframes floatBubble5 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.2); 
        opacity: 0;
    }
    30% { 
        transform: translateY(70vh) translateX(20px) scale(0.5); 
        opacity: 0.2;
    }
    60% { 
        transform: translateY(35vh) translateX(-15px) scale(0.8); 
        opacity: 0.4;
    }
    80% { 
        transform: translateY(5vh) translateX(25px) scale(1.0); 
        opacity: 0.6;
    }
    95% { 
        transform: translateY(-8vh) translateX(-5px) scale(1.2); 
        opacity: 0.2;
    }
    100% { 
        transform: translateY(-18vh) translateX(0px) scale(1.4); 
        opacity: 0;
    }
}

@keyframes floatBubble6 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.3); 
        opacity: 0;
    }
    35% { 
        transform: translateY(65vh) translateX(-25px) scale(0.6); 
        opacity: 0.2;
    }
    65% { 
        transform: translateY(30vh) translateX(15px) scale(0.9); 
        opacity: 0.4;
    }
    85% { 
        transform: translateY(0vh) translateX(-10px) scale(1.1); 
        opacity: 0.5;
    }
    100% { 
        transform: translateY(-20vh) translateX(0px) scale(1.3); 
        opacity: 0;
    }
}

.hero-logo {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 20px;
}

.logo-image {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6)) 
            drop-shadow(0 0 80px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.logo-image:hover {
    filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.7)) 
            drop-shadow(0 0 100px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(139, 92, 246, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes glow {
    from { text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(139, 92, 246, 0.4); }
    to { text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(139, 92, 246, 0.6); }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.4), 0 0 50px rgba(139, 92, 246, 0.3);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.6), 0 0 50px rgba(139, 92, 246, 0.4);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.5);
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    color: #a855f7;
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

/* Mission Section */
.mission {
    padding: 120px 0 100px 0;
    background: transparent;
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.mission.animate {
    opacity: 1;
    transform: translateY(0);
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    white-space: nowrap;
}

.mission-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.5;
    opacity: 0.9;
}

.mission-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-box {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3a3a3a;
}

.placeholder-text {
    color: #888;
    font-size: 1.1rem;
    text-align: center;
    font-style: italic;
}

/* Highlight Section */
.highlight {
    padding: 100px 0 120px 0;
    background: transparent;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
    overflow: visible;
}

.highlight.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: start;
    min-height: 600px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-left {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.demo-video-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 700px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: auto;
    overflow: visible;
    position: relative;
}

.demo-video-header {
    margin-bottom: 1rem;
}

.demo-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.demo-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.demo-brand {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.demo-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.demo-description {
    color: #1a1a1a;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.demo-video-container {
    position: relative;
    border-radius: 8px;
    aspect-ratio: 16 / 7;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    background: white;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.demo-video-container:hover {
    transform: scale(1.02);
}


.demo-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
    min-height: 60px;
    display: flex;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

.demo-summary p {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.highlight-right {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.highlight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 140px;
    flex: 1;
}

.highlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.highlight-card:hover .card-icon {
    background: #8b5cf6;
    color: white;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.card-content p {
    color: #4a5568;
    line-height: 1.3;
    font-size: 0.95rem;
    margin: 0;
}


/* Services Section */
.services {
    padding: 100px 0;
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.services.animate {
    opacity: 1;
    transform: translateY(0);
}

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

/* 新的紧凑服务样式 */
.service-item {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    min-height: 350px;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 150px !important;
    height: 150px !important;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon img {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    color: #1a1a1a;
    line-height: 1.4;
    word-wrap: break-word;
}

.service-info p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

.service-visual {
    margin-top: 1.5rem;
}

/* Code Snippet Visual */
.code-snippet {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid #3a3a3a;
}

.code-line {
    color: #7877c6;
    margin-bottom: 0.25rem;
}

.code-line:last-child {
    margin-bottom: 0;
}

/* Analytics Dashboard Visual */
.analytics-dashboard {
    display: flex;
    gap: 1rem;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    color: #7877c6;
    font-size: 1.2rem;
    font-weight: 600;
}

/* PR Network Visual */
.pr-network {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
    position: relative;
}

.network-node {
    background: #3a3a3a;
    color: #888;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.network-node.active {
    background: #7877c6;
    color: white;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 2px;
    background: #3a3a3a;
    z-index: -1;
}

/* Brand Metrics Visual */
.brand-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.brand-circle {
    width: 8px;
    height: 8px;
    background: #7877c6;
    border-radius: 50%;
}

/* GTM Process Section */
.gtm-process {
    padding: 100px 0;
    background: transparent;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.gtm-process.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
}

.step-number {
    background: #667eea;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step:hover .step-number {
    box-shadow: 0 0 20px rgba(120, 119, 198, 0.5);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
    text-shadow: none;
}

.step-content p {
    opacity: 0.8;
    font-size: 0.95rem;
    color: #4a5568;
    text-shadow: none;
}

/* Client Positioning Section */
.client-positioning {
    padding: 100px 0;
    background: transparent;
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.client-positioning.animate {
    opacity: 1;
    transform: translateY(0);
}

.positioning-content {
    max-width: 1400px;
    margin: 0 auto;
}

.positioning-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 900px;
}

.brand-label {
    color: #7877c6;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.positioning-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.positioning-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.3;
    max-width: 700px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.industry-item {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(45, 55, 72, 0.6) 100%);
    padding: 2rem;
    border-radius: 12px;
    font-weight: 500;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 20px rgba(120, 119, 198, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.15) 0%, rgba(120, 119, 198, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.industry-item:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 119, 198, 0.5);
    box-shadow: 0 15px 40px rgba(120, 119, 198, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.positioning-note {
    font-style: italic;
    color: #b0b0b0;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 16px;
    z-index: -1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 
        0 0 0 3px rgba(139, 92, 246, 0.2),
        0 6px 20px rgba(139, 92, 246, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border: none;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}

/* Footer */
.footer {
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1800px;
    }
    
    .services-compact {
        max-width: 1200px;
        gap: 1.5rem;
    }
}

/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-compact {
        max-width: 1000px;
        gap: 1.5rem;
    }
    
    .highlight-layout {
        gap: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet screens (481px to 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .highlight-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        min-height: 350px;
    }
    
    .service-icon {
        width: 160px !important;
        height: 160px !important;
        margin: 0 auto;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .positioning-title {
        font-size: 2.8rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
}

/* Mobile screens (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .mission-title {
        font-size: 2rem;
        white-space: normal;
    }
    
    .mission-text p {
        font-size: 1.1rem;
    }
    
    .highlight-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .demo-video-container {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .demo-video-container {
        aspect-ratio: 16 / 9;
    }
    
    .services-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        min-height: 350px;
    }
    
    .service-icon {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-item {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .positioning-header {
        text-align: center;
    }
    
    .positioning-title {
        font-size: 2.2rem;
    }
    
    .positioning-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .contact-form .btn-primary {
        padding: 16px;
        font-size: 1rem;
    }
    
    .analytics-dashboard {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pr-network {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .connection-line {
        display: none;
    }
}


