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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

@keyframes videoFrameSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) translateX(0) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
}

@keyframes card3DRotateIn {
    from {
        opacity: 0;
        transform: translateX(0) translateY(100px) translateZ(-500px) rotateY(90deg) rotateX(20deg) scale(0.5);
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-12deg) translateY(-8px);
    }
}

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

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

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

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Initially hide animated elements */
.animate-on-scroll {
    opacity: 0;
}

/* Smooth transitions for hover effects */
.feature-card,
.feature-card-large,
.platform-card,
.trust-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover,
.feature-card-large:hover,
.platform-card:hover,
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon,
.feature-icon-large,
.platform-icon,
.trust-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon,
.feature-card-large:hover .feature-icon-large,
.platform-card:hover .platform-icon,
.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Logo animation */
.logo-img {
    animation: fadeIn 0.6s ease-out, scaleIn 0.6s ease-out;
}

/* Hero section animations */
.hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    min-height: 140px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
}

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

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 130px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    transition: all 0.3s ease;
    display: block;
    margin: 0;
    transform: scale(1);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #ff6b35;
}

.dark-navbar .mobile-menu-toggle {
    color: #ffffff;
}

.dark-navbar .mobile-menu-toggle:hover {
    color: #ff6b35;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.2s ease;
    margin: 0;
    padding: 0;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    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, height 0.6s;
    z-index: 0;
}

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

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    color: white;
    padding: 40px 0 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

.section-header .section-number {
    display: block;
    margin-bottom: 16px;
}

/* Problem Section */
.problem-section {
    position: relative;
    background: #0a0a0a;
    padding: 80px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.problem-section .stars-background {
    z-index: 0;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 107, 53, 0.08) 30%, 
        rgba(255, 107, 53, 0.03) 60%, 
        transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.problem-gradient-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse 80% 60% at center, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(255, 107, 53, 0.25) 20%, 
        rgba(255, 107, 53, 0.15) 40%, 
        transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: gradientFloat 8s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

.problem-header-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

.problem-title-serif {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 96px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s ease-out 0.2s forwards;
}

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

.problem-subtitle-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-subtitle-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeIn 1s ease-out 0.4s forwards;
}

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

.problem-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 0 80px 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: problemCardSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}

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

.problem-item:hover::before {
    left: 100%;
}

.problem-item[data-delay="0.1s"] {
    animation-delay: 0.1s;
}

.problem-item[data-delay="0.2s"] {
    animation-delay: 0.2s;
}

.problem-item[data-delay="0.3s"] {
    animation-delay: 0.3s;
}

.problem-item[data-delay="0.4s"] {
    animation-delay: 0.4s;
}

@keyframes problemCardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95) rotateX(10deg);
    }
    60% {
        transform: translateY(-5px) scale(1.02) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.problem-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 107, 53, 0.5);
    background: #1f1f1f;
}

.problem-item-highlighted {
    border: 2px solid #ff6b35 !important;
    background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4), 0 10px 40px rgba(255, 107, 53, 0.2);
    animation: highlightedPulse 2s ease-in-out infinite;
}

@keyframes highlightedPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.4), 0 10px 40px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6), 0 15px 50px rgba(255, 107, 53, 0.3);
    }
}

.problem-item-highlighted:hover {
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.6), 0 20px 60px rgba(255, 107, 53, 0.4);
    transform: translateY(-12px) scale(1.05);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    flex-shrink: 0;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.problem-item:nth-child(1) .problem-icon {
    animation-delay: 0s;
}

.problem-item:nth-child(2) .problem-icon {
    animation-delay: 0.5s;
}

.problem-item:nth-child(3) .problem-icon {
    animation-delay: 1s;
}

.problem-item:nth-child(4) .problem-icon {
    animation-delay: 1.5s;
}

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

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff6b35;
    fill: none;
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.problem-item:hover .problem-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.15);
    }
}

.problem-item:hover .problem-icon svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8));
    stroke-width: 2.5;
}

.problem-text {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
    flex: 1;
}

.problem-item:hover .problem-text {
    color: rgba(255, 255, 255, 1);
}

.problem-result {
    position: relative;
    z-index: 1;
    margin: 80px auto 0;
    padding: 80px 48px;
    max-width: 1100px;
    background: linear-gradient(180deg, #000000 0%, #000000 50%, rgba(180, 50, 25, 0.4) 65%, rgba(220, 70, 35, 0.8) 75%, #dc4a28 85%, #e85a2e 100%);
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.problem-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 5% 10%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 12% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 18% 35%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 25% 15%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 30% 45%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 35% 28%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 42% 12%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 48% 55%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 55% 22%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 62% 38%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 68% 8%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 72% 48%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 78% 18%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 82% 32%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 88% 52%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 92% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 15% 60%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 22% 72%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 28% 65%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 33% 78%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 38% 58%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 45% 82%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 52% 68%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 58% 75%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 65% 62%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 72% 88%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 78% 72%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 85% 65%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 92% 80%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 8% 42%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 14% 88%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 20% 95%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 26% 85%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 32% 92%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 40% 88%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 46% 95%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 54% 85%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 60% 92%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 66% 88%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 74% 95%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 80% 85%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 86% 92%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 94% 88%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 10% 52%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 16% 48%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 24% 58%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 30% 52%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 36% 68%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 44% 62%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 50% 72%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 56% 68%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 64% 78%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 70% 75%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 76% 82%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 84% 78%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90% 85%, rgba(255, 255, 255, 0.7), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.6;
    animation: starsMove 20s linear infinite;
}

.problem-result[data-delay="0.5s"] {
    animation-delay: 0.5s;
}

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

.result-header {
    margin-bottom: 60px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.result-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.result-items-wrapper {
    padding: 0;
    position: relative;
    z-index: 3;
    min-height: 400px;
}

.result-items {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    height: 450px;
}

.result-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    color: rgba(255, 255, 255, 1);
    padding: 34px 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 340px;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.result-item[data-index="0"] {
    top: 8%;
    left: 5%;
    transform: translateY(30px) rotate(-5deg);
    animation-delay: 0.2s;
    --final-rotate: -5deg;
    animation: resultCardFloatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards, resultCardFloat 6s ease-in-out 1s infinite;
}

.result-item[data-index="1"] {
    top: 8%;
    right: 5%;
    transform: translateY(30px) rotate(4deg);
    animation-delay: 0.3s;
    --final-rotate: 4deg;
    animation: resultCardFloatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards, resultCardFloat 6s ease-in-out 1.2s infinite;
}

.result-item[data-index="2"] {
    bottom: 8%;
    left: 5%;
    transform: translateY(30px) rotate(-3deg);
    animation-delay: 0.4s;
    --final-rotate: -3deg;
    animation: resultCardFloatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards, resultCardFloat 6s ease-in-out 1.4s infinite;
}

.result-item[data-index="3"] {
    bottom: 8%;
    right: 5%;
    transform: translateY(30px) rotate(4deg);
    animation-delay: 0.5s;
    --final-rotate: 4deg;
    animation: resultCardFloatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards, resultCardFloat 6s ease-in-out 1.6s infinite;
}

@keyframes resultCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--final-rotate, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(calc(var(--final-rotate, 0deg) + 2deg));
    }
}

@keyframes resultCardFloatIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(calc(var(--final-rotate, 0deg) - 5deg)) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(var(--final-rotate, 0deg)) scale(1);
    }
}

.result-item:hover {
    transform: translateY(-12px) rotate(0deg) scale(1.08) !important;
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    z-index: 10;
    animation-play-state: paused;
}

.result-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.result-card-icon svg {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 0.9);
}

.result-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-card-title {
    font-size: 26px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    line-height: 1.2;
}

.result-card-desc {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.result-items.positive .result-icon {
    color: #10b981;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 28px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: #000000;
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.solution-section .stars-background {
    z-index: 0;
}

.solution-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 107, 53, 0.08) 30%, 
        rgba(255, 107, 53, 0.03) 60%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.solution-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center bottom, rgba(255, 107, 53, 0.12) 0%, rgba(180, 70, 35, 0.08) 20%, rgba(40, 30, 25, 0.3) 40%, rgba(20, 15, 12, 0.2) 60%, transparent 85%),
        radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(255, 107, 53, 0.05) 70%, rgba(45, 35, 28, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.solution-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.solution-section .section-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.solution-section .section-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.solution-description {
    font-size: 28px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    text-align: center;
}

/* solution-orange-bg removed; using full-section linear gradient instead */

.solution-content {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.solution-omnichannel {
    position: relative;
    margin-bottom: 60px;
    padding: 20px 0;
    background: #000000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.solution-omnichannel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 107, 53, 0.08) 30%, 
        rgba(255, 107, 53, 0.03) 60%, 
        transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.solution-features {
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    padding: 60px 0;
    background: #000000;
    overflow: hidden;
}

.solution-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: lightPulse 3s ease-in-out infinite;
}

.solution-result {
    margin-bottom: 80px;
}

.solution-subtitle {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-description {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-align: center;
}

.channels-container {
    position: relative;
    width: 100%;
    margin-top: 0;
    min-height: 420px;
    z-index: 2;
}

.channels-container .solution-description {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.channels-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.channels-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 260px;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(15px);
    animation: channelCardFadeIn 0.5s ease-out forwards;
}

.channel-item:hover {
    transform: translateY(-4px);
}

.channel-item:hover i {
    transform: scale(1.1);
    animation-duration: 2s;
}

.channel-item:hover .channel-icon-wrapper i {
    animation-duration: 2s;
}

.channel-item:nth-child(1) {
    animation-delay: 0.1s;
}

.channel-item:nth-child(2) {
    animation-delay: 0.2s;
}

.channel-item:nth-child(3) {
    animation-delay: 0.3s;
}

.channel-item:nth-child(4) {
    animation-delay: 0.4s;
}

.channel-item:nth-child(5) {
    animation-delay: 0.5s;
}

.channel-item:nth-child(6) {
    animation-delay: 0.6s;
}

.channel-item i {
    font-size: 40px;
    color: #ff6b35;
    width: auto;
    text-align: center;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    animation: iconRotateSmooth 8s linear infinite;
}

.channel-item span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.channel-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.channel-icon-wrapper i {
    animation: iconRotateSmooth 8s linear infinite;
}

.channel-icon-overlay {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 18px !important;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 50%;
    padding: 2px;
}

.channel-icon-wrapper .sms-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
}

/* Per-channel colors */
.channel-item[data-channel="1"] i {
    color: #ff6b35; /* Website chat - orange */
}

.channel-item[data-channel="2"] i {
    color: #f97316; /* Email - orange/amber */
}

.channel-item[data-channel="3"] i {
    color: #25D366; /* WhatsApp green */
}

.channel-item[data-channel="4"] i {
    color: #facc15; /* SMS - yellow */
}

.channel-item[data-channel="5"] i {
    color: #1d9bf0; /* Social - blue */
}

.channel-item[data-channel="6"] i {
    color: #a855f7; /* In-app chat - purple */
}

/* Deck Central Icon */
.deck-central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
}

.deck-icon-bg {
    width: 96px;
    height: 96px;
    background: transparent;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 28px rgba(255, 107, 53, 0.45);
    animation: deckIconPulse 3s ease-in-out infinite;
}

.deck-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.02em;
}

@keyframes deckIconPulse {
    0%, 100% {
        transform: scale(1) translateZ(0);
        box-shadow: 0 0 28px rgba(255, 107, 53, 0.45);
    }
    50% {
        transform: scale(1.04) translateZ(0);
        box-shadow: 0 0 40px rgba(255, 140, 90, 0.8);
    }
}

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

/* Connection Lines */
.channels-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.channels-connection-lines path {
    stroke: url(#channelLineGradient);
    stroke-width: 2;
    filter: url(#channelGlow);
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawChannelLine 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards, rayGlow 3.5s ease-in-out infinite;
    opacity: 0.85;
}

.channels-connection-lines path:nth-child(1) { animation-delay: 0.15s, 0.15s; }
.channels-connection-lines path:nth-child(2) { animation-delay: 0.25s, 0.25s; }
.channels-connection-lines path:nth-child(3) { animation-delay: 0.35s, 0.35s; }
.channels-connection-lines path:nth-child(4) { animation-delay: 0.45s, 0.45s; }
.channels-connection-lines path:nth-child(5) { animation-delay: 0.55s, 0.55s; }
.channels-connection-lines path:nth-child(6) { animation-delay: 0.65s, 0.65s; }
.channels-connection-lines path:nth-child(7) { animation-delay: 0.75s, 0.75s; }

@keyframes drawChannelLine {
    from {
        stroke-dashoffset: 1200;
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
}

@keyframes rayGlow {
    0%, 100% {
        stroke-width: 2;
        filter: url(#channelGlow);
    }
    50% {
        stroke-width: 2.8;
        filter: url(#channelGlow);
    }
}

/* Integrations Visualization */
.solution-integrations {
    margin-top: 80px;
    margin-bottom: 80px;
}

.integrations-visualization {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.central-icon-bg {
    width: 120px;
    height: 120px;
    background: #ff6b35;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    animation: centralIconPulse 3s ease-in-out infinite;
}

.central-icon-bg .cube-icon {
    width: 60px;
    height: 60px;
}

@keyframes centralIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    }
}

.integration-icon {
    position: absolute;
    z-index: 5;
    animation: iconFloat 4s ease-in-out infinite;
}

.integration-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.integration-icon-bg:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.integration-icon-bg.bg-red {
    background: #dc2626;
}

.integration-icon-bg.bg-white {
    background: #ffffff;
}

.integration-icon-bg.bg-purple {
    background: #4c1d95;
}

.integration-icon-bg i {
    font-size: 32px;
    color: white;
}

.integration-icon-bg svg {
    width: 40px;
    height: 40px;
}

.integration-icon-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.integration-icon-2 {
    top: 8%;
    right: 8%;
    animation-delay: 0.3s;
}

.integration-icon-3 {
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    animation-delay: 0.6s;
}

.integration-icon-4 {
    bottom: 8%;
    right: 8%;
    animation-delay: 0.9s;
}

.integration-icon-5 {
    bottom: 8%;
    left: 8%;
    animation-delay: 1.2s;
}

.integration-icon-6 {
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

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

.integration-icon-3,
.integration-icon-6 {
    animation-name: iconFloatVertical;
}

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

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

.connection-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
    opacity: 0.7;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.4s; }
.line-3 { animation-delay: 0.6s; }
.line-4 { animation-delay: 0.8s; }
.line-5 { animation-delay: 1s; }
.line-6 { animation-delay: 1.2s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }
}

.features-list.modern-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
    position: relative;
    padding: 0;
    align-items: center;
    z-index: 2;
    background: transparent;
    border-radius: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
}

.modern-cards-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.modern-card {
    position: relative;
    padding: 32px 24px;
    border-radius: 16px;
    min-height: 200px;
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: modernCardFadeIn 0.8s ease-out forwards;
    background: rgba(30, 30, 30, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1;
}

.modern-card.animated {
    animation: modernCardFadeIn 0.8s ease-out forwards, cardFloat 3s ease-in-out 0.8s infinite;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(30, 30, 30, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(255, 107, 53, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}


.card-checkmark {
    display: none;
}

.card-icon-3d {
    font-size: 56px;
    color: #ff6b35;
    margin-top: 20px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
    animation: iconPulse 2.5s ease-in-out infinite;
    line-height: 1;
}

.modern-card:hover .card-icon-3d {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(255, 107, 53, 0.6));
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    max-width: 260px;
    margin-top: 8px;
}

.modern-card[data-card="1"] .card-icon-3d {
    animation-delay: 0s;
}

.modern-card[data-card="2"] .card-icon-3d {
    animation-delay: 0.5s;
}

.modern-card[data-card="3"] .card-icon-3d {
    animation-delay: 1s;
}

.modern-card[data-card="4"] .card-icon-3d {
    animation-delay: 1.5s;
}

.modern-card[data-card="5"] .card-icon-3d {
    animation-delay: 2s;
}

.modern-card[data-card="6"] .card-icon-3d {
    animation-delay: 2.5s;
}

/* Modern Card Colors and Styling - Dark cards with orange accents */
.modern-card[data-card="1"] {
    background: rgba(30, 30, 30, 0.3);
    animation-delay: 0.1s;
}

.modern-card[data-card="2"] {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(255, 140, 90, 0.4) 100%);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation-delay: 0.2s;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.modern-card[data-card="2"] .card-icon-3d {
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.modern-card[data-card="2"]:hover .card-icon-3d {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.modern-card[data-card="2"]:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5) 0%, rgba(255, 140, 90, 0.5) 100%);
    box-shadow: 
        0 20px 50px rgba(255, 107, 53, 0.35),
        0 8px 20px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modern-card[data-card="3"] {
    background: rgba(30, 30, 30, 0.3);
    animation-delay: 0.3s;
}

.modern-card[data-card="4"] {
    background: rgba(30, 30, 30, 0.3);
    animation-delay: 0.4s;
}

.modern-card[data-card="5"] {
    background: rgba(30, 30, 30, 0.3);
    animation-delay: 0.5s;
}

.modern-card[data-card="6"] {
    background: rgba(30, 30, 30, 0.3);
    animation-delay: 0.6s;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #10b981;
    background: #1f1f1f;
    transform: translateX(5px);
}

.check-icon {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card-large {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 28px;
}

.bg-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bg-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-title-large {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description-large {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    z-index: 0;
    animation: industriesGlow 4s ease-in-out infinite;
}

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

.industries-wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.08) 2px,
            rgba(255, 107, 53, 0.08) 4px
        );
    z-index: 0;
}

.industries-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: industriesHeaderFadeIn 0.8s ease-out forwards;
}

@keyframes industriesHeaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industries-title-bar {
    width: 8px;
    height: 120px;
    background: #ff6b35;
    border-radius: 4px;
    animation: industriesBarPulse 2s ease-in-out infinite;
}

@keyframes industriesBarPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

.industries-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.industries-title-orange {
    font-size: 64px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    animation: industriesTitleSlideIn 0.8s ease-out 0.2s both;
}

.industries-title-white {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    animation: industriesTitleSlideIn 0.8s ease-out 0.4s both;
}

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

.industries-content {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.industries-grid-wrapper {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px;
    background: rgba(30, 30, 30, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: industriesGridFadeIn 0.8s ease-out 0.6s forwards;
}

@keyframes industriesGridFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: industryItemFadeIn 0.6s ease-out forwards;
}

.industry-item:nth-child(1) { animation-delay: 0.8s; }
.industry-item:nth-child(2) { animation-delay: 0.9s; }
.industry-item:nth-child(3) { animation-delay: 1.0s; }
.industry-item:nth-child(4) { animation-delay: 1.1s; }
.industry-item:nth-child(5) { animation-delay: 1.2s; }
.industry-item:nth-child(6) { animation-delay: 1.3s; }
.industry-item:nth-child(7) { animation-delay: 1.4s; }
.industry-item:nth-child(8) { animation-delay: 1.5s; }

@keyframes industryItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.industry-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.industry-item:hover .industry-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.6));
}

.industry-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: industryIconFloat 3s ease-in-out infinite;
}

.industry-item:nth-child(1) .industry-icon { animation-delay: 0s; }
.industry-item:nth-child(2) .industry-icon { animation-delay: 0.3s; }
.industry-item:nth-child(3) .industry-icon { animation-delay: 0.6s; }
.industry-item:nth-child(4) .industry-icon { animation-delay: 0.9s; }
.industry-item:nth-child(5) .industry-icon { animation-delay: 1.2s; }
.industry-item:nth-child(6) .industry-icon { animation-delay: 1.5s; }
.industry-item:nth-child(7) .industry-icon { animation-delay: 1.8s; }
.industry-item:nth-child(8) .industry-icon { animation-delay: 2.1s; }

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

.industry-icon i {
    font-size: 48px;
    color: #ff6b35;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
    transition: all 0.4s ease;
}

.industry-item:hover .industry-icon i {
    color: #ff8c5a;
    filter: drop-shadow(0 6px 16px rgba(255, 107, 53, 0.7));
}

.industry-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-text {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.platform-card {
    padding: 40px;
    border-radius: 16px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.platform-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 28px;
}

.platform-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.platform-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}


/* Footer */
.footer {
    background: #000000 !important;
    background-color: #000000 !important;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 600px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.footer-logo .logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    flex-shrink: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    white-space: normal;
    flex-shrink: 1;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-list a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-list a:hover::before {
    width: 20px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-email i {
    font-size: 14px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-email:hover i {
    color: #ff8c5a;
    transform: scale(1.1);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 16px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-link:hover i {
    color: #ff8c5a;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
}

/* Join Our Community Section */
.community-section {
    background: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.community-ring {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 400px;
    height: 400px;
}

.ring-2 {
    width: 600px;
    height: 600px;
}

.ring-3 {
    width: 800px;
    height: 800px;
}

.community-ring::before,
.community-ring::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.6);
    top: -6px;
    left: 50%;
    margin-left: -6px;
    transform-origin: 6px calc(50% + 6px);
    animation: dotMoveRing 4s linear infinite;
}

.ring-1::before {
    animation-duration: 4s;
    animation-delay: 0s;
}

.ring-1::after {
    animation-duration: 4s;
    animation-delay: 2s;
}

.ring-2::before {
    animation-duration: 5s;
    animation-delay: 0.5s;
    animation-direction: reverse;
}

.ring-2::after {
    animation-duration: 5s;
    animation-delay: 3s;
    animation-direction: reverse;
}

.ring-3::before {
    animation-duration: 6s;
    animation-delay: 1s;
}

.ring-3::after {
    animation-duration: 6s;
    animation-delay: 4s;
}

@keyframes dotMoveRing {
    0% {
        transform: rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: rotate(270deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.8;
    }
}

.community-network-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.community-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.community-text {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: communityFadeIn 0.8s ease-out forwards;
}

@keyframes communityFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.community-title-1 {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    margin-bottom: 8px;
}

.community-title-2 {
    font-size: 72px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    margin-bottom: 32px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.community-btn {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.community-btn:hover {
    background: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.community-profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: profileFadeIn 0.6s ease-out forwards;
}

.profile-item[data-profile="1"] { animation-delay: 0.2s; }
.profile-item[data-profile="2"] { animation-delay: 0.3s; }
.profile-item[data-profile="3"] { animation-delay: 0.4s; }
.profile-item[data-profile="4"] { animation-delay: 0.5s; }
.profile-item[data-profile="5"] { animation-delay: 0.6s; }
.profile-item[data-profile="6"] { animation-delay: 0.7s; }
.profile-item[data-profile="7"] { animation-delay: 0.8s; }
.profile-item[data-profile="8"] { animation-delay: 0.9s; }

@keyframes profileFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    padding: 3px;
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 40px;
}

.profile-info {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.profile-item:hover .profile-info {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.profile-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Industries Rotating Section */
.industries-rotating-section {
    background: #0a0a0a;
    padding: 150px 0;
    position: relative;
    overflow: visible;
    min-height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-rotating-section .stars-background {
    z-index: 0;
}

.industries-rotating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 107, 53, 0.08) 30%, 
        rgba(255, 107, 53, 0.03) 60%, 
        transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.industries-rotating-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: visible;
}

.industries-ring {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transform-origin: center center;
}

.industries-ring-1 {
    width: 600px;
    height: 600px;
    animation: industriesRingRotate 60s linear infinite;
}

.industries-ring-2 {
    display: none;
}

.industries-ring-3 {
    display: none;
}

@keyframes industriesRingRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.industry-orb {
    position: absolute;
    top: 50%;
    left: 50%;
css    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 140px;
    opacity: 1 !important;
    z-index: 10;
    visibility: visible !important;
    transform-origin: center center;
    /* Icon rotates around ring, text fixed at 90-degree position */
}

/* Ensure icon is always above text visually - fixed order and z-index */
.industry-orb-icon {
   css order: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.industry-orb-text {
    order: 2;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

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

.industry-orb-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff6b35;
    border: 3px solid rgba(255, 150, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6), 0 0 50px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    /* Icon stays fixed, no rotation */
}

.industry-orb-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.industry-orb-icon i {
    position: relative;
    z-index: 1;
    font-size: 36px;
    color: white;
}

.industry-orb:hover .industry-orb-icon {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 107, 53, 0.8), 0 0 70px rgba(255, 107, 53, 0.4);
}

.industry-orb-text {
    background: rgba(60, 30, 20, 0.9);
    border: 1px solid rgba(255, 150, 80, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    max-width: 140px;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    /* Counter-rotate text to keep it upright and readable */
    transform-origin: center center;
}

/* Text counter-rotated to stay upright and readable as orbs rotate */
.industry-orb[data-industry="1"] .industry-orb-text {
    animation: counterRotateText1 60s linear infinite;
}

.industry-orb[data-industry="2"] .industry-orb-text {
    animation: counterRotateText2 60s linear infinite;
}

.industry-orb[data-industry="3"] .industry-orb-text {
    animation: counterRotateText3 60s linear infinite;
}

.industry-orb[data-industry="4"] .industry-orb-text {
    animation: counterRotateText4 60s linear infinite;
}

.industry-orb[data-industry="5"] .industry-orb-text {
    animation: counterRotateText5 60s linear infinite;
}

.industry-orb[data-industry="6"] .industry-orb-text {
    animation: counterRotateText6 60s linear infinite;
}

.industry-orb[data-industry="7"] .industry-orb-text {
    ancssimation: counterRotateText7 60s linear infinite;
}

.industry-orb[data-industry="8"] .industry-orb-text {
    animation: counterRotateText8 60s linear infinite;
}


/* Text counter-rotates to match ring rotation exactly, keeping text always upright and readable */
@keyframes counterRotateText1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

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

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

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

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

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

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

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

.industry-orb:hover .industry-orb-text {
    border-color: rgba(255, 150, 80, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Position industries around rings */
/* Position industries around rings - 4 industries, one in each quadrant */
/* Counter-rotate to keep orbs upright */
/* Position industries around rings - 2 industries per ring, opposite each other (180 degrees) */
/* Industries rotate with the ring, counter-rotate to keep them upright */
/* Position industries on the rings - one on left (90deg), one on right (-90deg) */
/* Ring 1: All 8 industries evenly spaced (45 degrees apart) */
/* All icons positioned at different angles, but all rotate through 90 degree position */
.industries-ring-1 .industry-orb[data-industry="1"] {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-300px);
    animation: counterRotateOrb1 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="2"] {
    transform: translate(-50%, -50%) rotate(-45deg) translateY(-300px);
    animation: counterRotateOrb2 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="3"] {
    transform: translate(-50%, -50%) rotate(-90deg) translateY(-300px);
    animation: counterRotateOrb3 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="4"] {
    transform: translate(-50%, -50%) rotate(-135deg) translateY(-300px);
    animation: counterRotateOrb4 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="5"] {
    transform: translate(-50%, -50%) rotate(-180deg) translateY(-300px);
    animation: counterRotateOrb5 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="6"] {
    transform: translate(-50%, -50%) rotate(-225deg) translateY(-300px);
    animation: counterRotateOrb6 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="7"] {
    transform: translate(-50%, -50%) rotate(-270deg) translateY(-300px);
    animation: counterRotateOrb7 60s linear infinite;
}

.industries-ring-1 .industry-orb[data-industry="8"] {
    transform: translate(-50%, -50%) rotate(-315deg) translateY(-300px);
    animation: counterRotateOrb8 60s linear infinite;
}

@keyframes counterRotateOrb1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-300px) rotate(-0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-300px) rotate(-360deg);
    }
}

@keyframes counterRotateOrb2 {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg) translateY(-300px) rotate(45deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(315deg) translateY(-300px) rotate(-315deg);
    }
}

@keyframes counterRotateOrb3 {
    0% {
        transform: translate(-50%, -50%) rotate(-90deg) translateY(-300px) rotate(90deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(270deg) translateY(-300px) rotate(-270deg);
    }
}

@keyframes counterRotateOrb4 {
    0% {
        transform: translate(-50%, -50%) rotate(-135deg) translateY(-300px) rotate(135deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(225deg) translateY(-300px) rotate(-225deg);
    }
}

@keyframes counterRotateOrb5 {
    0% {
        transform: translate(-50%, -50%) rotate(-180deg) translateY(-300px) rotate(180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-300px) rotate(-180deg);
    }
}

@keyframes counterRotateOrb6 {
    0% {
        transform: translate(-50%, -50%) rotate(-225deg) translateY(-300px) rotate(225deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(135deg) translateY(-300px) rotate(-135deg);
    }
}

@keyframes counterRotateOrb7 {
    0% {
        transform: translate(-50%, -50%) rotate(-270deg) translateY(-300px) rotate(270deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(90deg) translateY(-300px) rotate(-90deg);
    }
}

@keyframes counterRotateOrb8 {
    0% {
        transform: translate(-50%, -50%) rotate(-315deg) translateY(-300px) rotate(315deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(45deg) translateY(-300px) rotate(-45deg);
    }
}

/* Icons stay fixed, no rotation */

/* Hide all industries from ring 2 - all icons are on ring 1 only */
.industries-ring-2 .industry-orb {
    display: none;
}

/* Hide all industries from ring 3 - all icons are on ring 1 only */
.industries-ring-3 .industry-orb {
    display: none;
}

@keyframes counterRotate1_0 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-300px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(90deg) translateY(-300px) rotate(-90deg);
    }
}

@keyframes counterRotate1_45 {
    0% {
        transform: translate(-50%, -50%) rotate(45deg) translateY(-300px) rotate(-45deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(135deg) translateY(-300px) rotate(-135deg);
    }
}

@keyframes counterRotate1_90 {
    0% {
        transform: translate(-50%, -50%) rotate(90deg) translateY(-300px) rotate(-90deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-300px) rotate(-180deg);
    }
}

@keyframes counterRotate1_135 {
    0% {
        transform: translate(-50%, -50%) rotate(135deg) translateY(-300px) rotate(-135deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(225deg) translateY(-300px) rotate(-225deg);
    }
}

@keyframes counterRotate1_180 {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-300px) rotate(-180deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(270deg) translateY(-300px) rotate(-270deg);
    }
}

@keyframes counterRotate1_225 {
    0% {
        transform: translate(-50%, -50%) rotate(225deg) translateY(-300px) rotate(-225deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(315deg) translateY(-300px) rotate(-315deg);
    }
}

@keyframes counterRotate1_270 {
    0% {
        transform: translate(-50%, -50%) rotate(270deg) translateY(-300px) rotate(-270deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-300px) rotate(-360deg);
    }
}

@keyframes counterRotate1_315 {
    0% {
        transform: translate(-50%, -50%) rotate(315deg) translateY(-300px) rotate(-315deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(405deg) translateY(-300px) rotate(-405deg);
    }
}

@keyframes counterRotate2 {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-375px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-375px) rotate(360deg);
    }
}

@keyframes counterRotate2_90 {
    from {
        transform: translate(-50%, -50%) rotate(90deg) translateY(-375px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(90deg) translateY(-375px) rotate(360deg);
    }
}

@keyframes counterRotate2_180 {
    from {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-375px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-375px) rotate(360deg);
    }
}

@keyframes counterRotate2_270 {
    from {
        transform: translate(-50%, -50%) rotate(270deg) translateY(-375px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(270deg) translateY(-375px) rotate(360deg);
    }
}

@keyframes counterRotate3 {
    from {
        transform: translate(-50%, -50%) translateY(-400px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) translateY(-400px) rotate(-360deg);
    }
}

.industries-rotating-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.industries-rotating-text {
    opacity: 0;
    transform: translateY(30px);
    animation: industriesRotatingFadeIn 0.8s ease-out forwards;
}

@keyframes industriesRotatingFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industries-rotating-title-1 {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    margin-bottom: 8px;
}

.industries-rotating-title-2 {
    font-size: 72px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* Industries Rotating Section Responsive */
@media (max-width: 1024px) {
    .industries-rotating-section {
        padding: 100px 0;
        min-height: 900px;
    }
    
    .industries-ring-1 {
        width: 500px;
        height: 500px;
    }
    
    .industries-ring-1 .industry-orb[data-industry="1"] {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-250px);
        animation: counterRotateOrb1 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="2"] {
        transform: translate(-50%, -50%) rotate(-45deg) translateY(-250px);
        animation: counterRotateOrb2 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="3"] {
        transform: translate(-50%, -50%) rotate(-90deg) translateY(-250px);
        animation: counterRotateOrb3 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="4"] {
        transform: translate(-50%, -50%) rotate(-135deg) translateY(-250px);
        animation: counterRotateOrb4 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="5"] {
        transform: translate(-50%, -50%) rotate(-180deg) translateY(-250px);
        animation: counterRotateOrb5 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="6"] {
        transform: translate(-50%, -50%) rotate(-225deg) translateY(-250px);
        animation: counterRotateOrb6 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="7"] {
        transform: translate(-50%, -50%) rotate(-270deg) translateY(-250px);
        animation: counterRotateOrb7 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="8"] {
        transform: translate(-50%, -50%) rotate(-315deg) translateY(-250px);
        animation: counterRotateOrb8 60s linear infinite;
    }
    
    @keyframes counterRotateOrb1 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-250px) rotate(-0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateY(-250px) rotate(-360deg);
        }
    }
    
    @keyframes counterRotateOrb2 {
        0% {
            transform: translate(-50%, -50%) rotate(-45deg) translateY(-250px) rotate(45deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(315deg) translateY(-250px) rotate(-315deg);
        }
    }
    
    @keyframes counterRotateOrb3 {
        0% {
            transform: translate(-50%, -50%) rotate(-90deg) translateY(-250px) rotate(90deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(270deg) translateY(-250px) rotate(-270deg);
        }
    }
    
    @keyframes counterRotateOrb4 {
        0% {
            transform: translate(-50%, -50%) rotate(-135deg) translateY(-250px) rotate(135deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(225deg) translateY(-250px) rotate(-225deg);
        }
    }
    
    @keyframes counterRotateOrb5 {
        0% {
            transform: translate(-50%, -50%) rotate(-180deg) translateY(-250px) rotate(180deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-250px) rotate(-180deg);
        }
    }
    
    @keyframes counterRotateOrb6 {
        0% {
            transform: translate(-50%, -50%) rotate(-225deg) translateY(-250px) rotate(225deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(135deg) translateY(-250px) rotate(-135deg);
        }
    }
    
    @keyframes counterRotateOrb7 {
        0% {
            transform: translate(-50%, -50%) rotate(-270deg) translateY(-250px) rotate(270deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-250px) rotate(-90deg);
        }
    }
    
    @keyframes counterRotateOrb8 {
        0% {
            transform: translate(-50%, -50%) rotate(-315deg) translateY(-250px) rotate(315deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(45deg) translateY(-250px) rotate(-45deg);
        }
    }
    
    @keyframes counterRotateOrb {
        0% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-250px) rotate(-0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-250px) rotate(-360deg);
        }
    }
    
    @keyframes counterRotate1_0 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-250px) rotate(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-250px) rotate(-90deg);
        }
    }
    
    @keyframes counterRotate1_45 {
        0% {
            transform: translate(-50%, -50%) rotate(45deg) translateY(-250px) rotate(-45deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(135deg) translateY(-250px) rotate(-135deg);
        }
    }
    
    @keyframes counterRotate1_90 {
        0% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-250px) rotate(-90deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-250px) rotate(-180deg);
        }
    }
    
    @keyframes counterRotate1_135 {
        0% {
            transform: translate(-50%, -50%) rotate(135deg) translateY(-250px) rotate(-135deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(225deg) translateY(-250px) rotate(-225deg);
        }
    }
    
    @keyframes counterRotate1_180 {
        0% {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-250px) rotate(-180deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(270deg) translateY(-250px) rotate(-270deg);
        }
    }
    
    @keyframes counterRotate1_225 {
        0% {
            transform: translate(-50%, -50%) rotate(225deg) translateY(-250px) rotate(-225deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(315deg) translateY(-250px) rotate(-315deg);
        }
    }
    
    @keyframes counterRotate1_270 {
        0% {
            transform: translate(-50%, -50%) rotate(270deg) translateY(-250px) rotate(-270deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateY(-250px) rotate(-360deg);
        }
    }
    
    @keyframes counterRotate1_315 {
        0% {
            transform: translate(-50%, -50%) rotate(315deg) translateY(-250px) rotate(-315deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(405deg) translateY(-250px) rotate(-405deg);
        }
    }
    
    .industry-orb {
        width: 120px;
        gap: 12px;
    }
    
    .industry-orb-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    
    .industry-orb-text {
        font-size: 11px;
        max-width: 120px;
        min-width: 100px;
        padding: 10px 14px;
    }
    
    .industries-rotating-title-1 {
        font-size: 40px;
    }
    
    .industries-rotating-title-2 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .industries-rotating-section {
        padding: 80px 0;
        min-height: 700px;
    }
    
    .industries-ring-1 {
        width: 400px;
        height: 400px;
    }
    
    .industries-ring-1 .industry-orb[data-industry="1"] {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-200px);
        animation: counterRotateOrb1 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="2"] {
        transform: translate(-50%, -50%) rotate(-45deg) translateY(-200px);
        animation: counterRotateOrb2 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="3"] {
        transform: translate(-50%, -50%) rotate(-90deg) translateY(-200px);
        animation: counterRotateOrb3 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="4"] {
        transform: translate(-50%, -50%) rotate(-135deg) translateY(-200px);
        animation: counterRotateOrb4 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="5"] {
        transform: translate(-50%, -50%) rotate(-180deg) translateY(-200px);
        animation: counterRotateOrb5 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="6"] {
        transform: translate(-50%, -50%) rotate(-225deg) translateY(-200px);
        animation: counterRotateOrb6 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="7"] {
        transform: translate(-50%, -50%) rotate(-270deg) translateY(-200px);
        animation: counterRotateOrb7 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="8"] {
        transform: translate(-50%, -50%) rotate(-315deg) translateY(-200px);
        animation: counterRotateOrb8 60s linear infinite;
    }
    
    @keyframes counterRotateOrb1 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-200px) rotate(-0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateY(-200px) rotate(-360deg);
        }
    }
    
    @keyframes counterRotateOrb2 {
        0% {
            transform: translate(-50%, -50%) rotate(-45deg) translateY(-200px) rotate(45deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(315deg) translateY(-200px) rotate(-315deg);
        }
    }
    
    @keyframes counterRotateOrb3 {
        0% {
            transform: translate(-50%, -50%) rotate(-90deg) translateY(-200px) rotate(90deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(270deg) translateY(-200px) rotate(-270deg);
        }
    }
    
    @keyframes counterRotateOrb4 {
        0% {
            transform: translate(-50%, -50%) rotate(-135deg) translateY(-200px) rotate(135deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(225deg) translateY(-200px) rotate(-225deg);
        }
    }
    
    @keyframes counterRotateOrb5 {
        0% {
            transform: translate(-50%, -50%) rotate(-180deg) translateY(-200px) rotate(180deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-200px) rotate(-180deg);
        }
    }
    
    @keyframes counterRotateOrb6 {
        0% {
            transform: translate(-50%, -50%) rotate(-225deg) translateY(-200px) rotate(225deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(135deg) translateY(-200px) rotate(-135deg);
        }
    }
    
    @keyframes counterRotateOrb7 {
        0% {
            transform: translate(-50%, -50%) rotate(-270deg) translateY(-200px) rotate(270deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-200px) rotate(-90deg);
        }
    }
    
    @keyframes counterRotateOrb8 {
        0% {
            transform: translate(-50%, -50%) rotate(-315deg) translateY(-200px) rotate(315deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(45deg) translateY(-200px) rotate(-45deg);
        }
    }
    
    .industry-orb {
        width: 110px;
        gap: 10px;
    }
    
    .industry-orb-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .industry-orb-text {
        font-size: 10px;
        max-width: 110px;
        min-width: 90px;
        padding: 8px 12px;
    }
    
    .industries-rotating-title-1 {
        font-size: 32px;
    }
    
    .industries-rotating-title-2 {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .industries-rotating-section {
        padding: 60px 0;
        min-height: 600px;
    }
    
    .industries-ring-1 {
        width: 320px;
        height: 320px;
    }
    
    .industries-ring-1 .industry-orb[data-industry="1"] {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-160px);
        animation: counterRotateOrb1 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="2"] {
        transform: translate(-50%, -50%) rotate(-45deg) translateY(-160px);
        animation: counterRotateOrb2 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="3"] {
        transform: translate(-50%, -50%) rotate(-90deg) translateY(-160px);
        animation: counterRotateOrb3 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="4"] {
        transform: translate(-50%, -50%) rotate(-135deg) translateY(-160px);
        animation: counterRotateOrb4 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="5"] {
        transform: translate(-50%, -50%) rotate(-180deg) translateY(-160px);
        animation: counterRotateOrb5 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="6"] {
        transform: translate(-50%, -50%) rotate(-225deg) translateY(-160px);
        animation: counterRotateOrb6 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="7"] {
        transform: translate(-50%, -50%) rotate(-270deg) translateY(-160px);
        animation: counterRotateOrb7 60s linear infinite;
    }
    
    .industries-ring-1 .industry-orb[data-industry="8"] {
        transform: translate(-50%, -50%) rotate(-315deg) translateY(-160px);
        animation: counterRotateOrb8 60s linear infinite;
    }
    
    @keyframes counterRotateOrb1 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-160px) rotate(-0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateY(-160px) rotate(-360deg);
        }
    }
    
    @keyframes counterRotateOrb2 {
        0% {
            transform: translate(-50%, -50%) rotate(-45deg) translateY(-160px) rotate(45deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(315deg) translateY(-160px) rotate(-315deg);
        }
    }
    
    @keyframes counterRotateOrb3 {
        0% {
            transform: translate(-50%, -50%) rotate(-90deg) translateY(-160px) rotate(90deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(270deg) translateY(-160px) rotate(-270deg);
        }
    }
    
    @keyframes counterRotateOrb4 {
        0% {
            transform: translate(-50%, -50%) rotate(-135deg) translateY(-160px) rotate(135deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(225deg) translateY(-160px) rotate(-225deg);
        }
    }
    
    @keyframes counterRotateOrb5 {
        0% {
            transform: translate(-50%, -50%) rotate(-180deg) translateY(-160px) rotate(180deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-160px) rotate(-180deg);
        }
    }
    
    @keyframes counterRotateOrb6 {
        0% {
            transform: translate(-50%, -50%) rotate(-225deg) translateY(-160px) rotate(225deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(135deg) translateY(-160px) rotate(-135deg);
        }
    }
    
    @keyframes counterRotateOrb7 {
        0% {
            transform: translate(-50%, -50%) rotate(-270deg) translateY(-160px) rotate(270deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(90deg) translateY(-160px) rotate(-90deg);
        }
    }
    
    @keyframes counterRotateOrb8 {
        0% {
            transform: translate(-50%, -50%) rotate(-315deg) translateY(-160px) rotate(315deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(45deg) translateY(-160px) rotate(-45deg);
        }
    }
    
    .industry-orb {
        width: 100px;
        gap: 8px;
    }
    
    .industry-orb-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .industry-orb-text {
        font-size: 9px;
        max-width: 100px;
        min-width: 80px;
        padding: 8px 10px;
        line-height: 1.3;
    }
    
    .industries-rotating-title-1 {
        font-size: 28px;
    }
    
    .industries-rotating-title-2 {
        font-size: 42px;
    }
}

/* Community Section Responsive */
@media (max-width: 1024px) {
    .community-section {
        padding: 80px 0;
        min-height: 600px;
    }
    
    .ring-1 {
        width: 300px;
        height: 300px;
    }
    
    .ring-2 {
        width: 450px;
        height: 450px;
    }
    
    .ring-3 {
        width: 600px;
        height: 600px;
    }
    
    .community-title-1 {
        font-size: 40px;
    }
    
    .community-title-2 {
        font-size: 60px;
    }
    
    .community-profiles {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .profile-picture {
        width: 80px;
        height: 80px;
    }
    
    .profile-placeholder {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .ring-1 {
        width: 250px;
        height: 250px;
    }
    
    .ring-2 {
        width: 350px;
        height: 350px;
    }
    
    .ring-3 {
        width: 450px;
        height: 450px;
    }
    
    .community-title-1 {
        font-size: 32px;
    }
    
    .community-title-2 {
        font-size: 48px;
    }
    
    .community-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
    
    .community-profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .profile-picture {
        width: 70px;
        height: 70px;
    }
    
    .profile-placeholder {
        font-size: 28px;
    }
    
    .profile-name {
        font-size: 13px;
    }
    
    .profile-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .community-section {
        padding: 50px 0;
        min-height: 400px;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .ring-3 {
        width: 360px;
        height: 360px;
    }
    
    .community-title-1 {
        font-size: 24px;
    }
    
    .community-title-2 {
        font-size: 36px;
    }
    
    .community-btn {
        padding: 12px 32px;
        font-size: 14px;
    }
    
    .community-profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .profile-picture {
        width: 60px;
        height: 60px;
    }
    
    .profile-placeholder {
        font-size: 24px;
    }
    
    .profile-info {
        padding: 10px 16px;
    }
    
    .profile-name {
        font-size: 12px;
    }
    
    .profile-title {
        font-size: 10px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .nav-container {
        height: 100px;
        min-height: 100px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .btn-primary {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .features-grid,
    .features-grid-large {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        min-height: 70px;
        position: relative;
        padding: 0 20px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text-dark {
        font-size: 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 20px;
        cursor: pointer;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .dark-navbar .nav-links {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 24px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 17px;
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    
    .dark-navbar .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dark-navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }
    
    .nav-cta {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 16px 24px;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        bottom: 0;
    }
    
    .dark-navbar .nav-cta {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active ~ .nav-cta,
    .nav-cta.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-cta .btn-primary-dark {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 16px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .features-grid,
    .features-grid-large,
    .platform-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 0 16px;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .feature-card,
    .feature-card-large,
    .platform-card,
    .trust-card {
        margin-bottom: 0;
    }
    
    .section-content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        height: 70px;
        min-height: 70px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-links {
        top: 70px;
    }
    
    .nav-cta {
        top: 70px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .join-title {
        font-size: 32px;
    }
    
    .feature-card,
    .feature-card-large,
    .platform-card,
    .trust-card {
        padding: 24px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-logo .logo-img {
        height: 80px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 12px 20px;
        min-height: 44px; /* Touch-friendly target size */
    }
    
    .btn-large {
        font-size: 16px;
        padding: 14px 24px;
        min-height: 48px; /* Touch-friendly target size */
    }
    
    .nav-link {
        min-height: 44px; /* Touch-friendly target size */
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .section-content {
        padding: 0 12px;
    }
    
    .feature-card h3,
    .feature-card-large h3,
    .platform-card h3,
    .trust-card h3 {
        font-size: 20px;
    }
    
    .feature-card p,
    .feature-card-large p,
    .platform-card p,
    .trust-card p {
        font-size: 14px;
    }
}

/* Dark Theme Styles */
.dark-theme {
    background-color: #0a0a0a;
    color: #ffffff;
}


/* Dark Navigation */
.dark-navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
}

.dark-navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.dark-navbar .nav-container {
    height: 80px;
    min-height: 80px;
}

.logo-text-dark {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.dark-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dark-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.dark-nav-link:hover {
    color: #ffffff;
}

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

.btn-primary-dark {
    background: #ff6b35;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary-dark:hover {
    background: #ff8c5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary-dark {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-secondary-dark:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Dark Hero Section */
.hero-dark {
    position: relative;
    background: #0a0a0a;
    color: white;
    padding: 80px 0 120px 0;
    text-align: center;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 5% 10%, #fff, transparent),
        radial-gradient(1px 1px at 12% 25%, #fff, transparent),
        radial-gradient(2px 2px at 18% 35%, #fff, transparent),
        radial-gradient(1px 1px at 25% 15%, #fff, transparent),
        radial-gradient(2px 2px at 30% 45%, #fff, transparent),
        radial-gradient(1px 1px at 35% 28%, #fff, transparent),
        radial-gradient(2px 2px at 42% 12%, #fff, transparent),
        radial-gradient(1px 1px at 48% 55%, #fff, transparent),
        radial-gradient(2px 2px at 55% 22%, #fff, transparent),
        radial-gradient(1px 1px at 62% 38%, #fff, transparent),
        radial-gradient(2px 2px at 68% 8%, #fff, transparent),
        radial-gradient(1px 1px at 72% 48%, #fff, transparent),
        radial-gradient(2px 2px at 78% 18%, #fff, transparent),
        radial-gradient(1px 1px at 82% 32%, #fff, transparent),
        radial-gradient(2px 2px at 88% 52%, #fff, transparent),
        radial-gradient(1px 1px at 92% 25%, #fff, transparent),
        radial-gradient(2px 2px at 15% 60%, #fff, transparent),
        radial-gradient(1px 1px at 22% 72%, #fff, transparent),
        radial-gradient(2px 2px at 28% 65%, #fff, transparent),
        radial-gradient(1px 1px at 33% 78%, #fff, transparent),
        radial-gradient(2px 2px at 38% 58%, #fff, transparent),
        radial-gradient(1px 1px at 45% 82%, #fff, transparent),
        radial-gradient(2px 2px at 52% 68%, #fff, transparent),
        radial-gradient(1px 1px at 58% 75%, #fff, transparent),
        radial-gradient(2px 2px at 65% 62%, #fff, transparent),
        radial-gradient(1px 1px at 72% 88%, #fff, transparent),
        radial-gradient(2px 2px at 78% 72%, #fff, transparent),
        radial-gradient(1px 1px at 85% 65%, #fff, transparent),
        radial-gradient(2px 2px at 92% 80%, #fff, transparent),
        radial-gradient(1px 1px at 8% 42%, #fff, transparent),
        radial-gradient(2px 2px at 14% 88%, #fff, transparent),
        radial-gradient(1px 1px at 20% 95%, #fff, transparent),
        radial-gradient(2px 2px at 26% 85%, #fff, transparent),
        radial-gradient(1px 1px at 32% 92%, #fff, transparent),
        radial-gradient(2px 2px at 40% 88%, #fff, transparent),
        radial-gradient(1px 1px at 46% 95%, #fff, transparent),
        radial-gradient(2px 2px at 54% 85%, #fff, transparent),
        radial-gradient(1px 1px at 60% 92%, #fff, transparent),
        radial-gradient(2px 2px at 66% 88%, #fff, transparent),
        radial-gradient(1px 1px at 74% 95%, #fff, transparent),
        radial-gradient(2px 2px at 80% 85%, #fff, transparent),
        radial-gradient(1px 1px at 86% 92%, #fff, transparent),
        radial-gradient(2px 2px at 94% 88%, #fff, transparent),
        radial-gradient(1px 1px at 10% 52%, #fff, transparent),
        radial-gradient(2px 2px at 16% 48%, #fff, transparent),
        radial-gradient(1px 1px at 24% 58%, #fff, transparent),
        radial-gradient(2px 2px at 30% 52%, #fff, transparent),
        radial-gradient(1px 1px at 36% 68%, #fff, transparent),
        radial-gradient(2px 2px at 44% 62%, #fff, transparent),
        radial-gradient(1px 1px at 50% 72%, #fff, transparent),
        radial-gradient(2px 2px at 56% 68%, #fff, transparent),
        radial-gradient(1px 1px at 64% 78%, #fff, transparent),
        radial-gradient(2px 2px at 70% 75%, #fff, transparent),
        radial-gradient(1px 1px at 76% 82%, #fff, transparent),
        radial-gradient(2px 2px at 84% 78%, #fff, transparent),
        radial-gradient(1px 1px at 90% 85%, #fff, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.7;
    animation: starsMove 20s linear infinite;
}

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

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

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

.orange-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    max-width: 2800px;
    height: 70%;
    min-height: 500px;
    background: 
        radial-gradient(ellipse 80% 45% at center bottom, rgba(255, 107, 53, 1) 0%, rgba(255, 107, 53, 0.98) 3%, rgba(255, 107, 53, 0.95) 8%, rgba(255, 107, 53, 0.9) 15%, rgba(255, 107, 53, 0.8) 25%, rgba(255, 107, 53, 0.65) 35%, rgba(255, 107, 53, 0.5) 45%, rgba(255, 107, 53, 0.35) 55%, rgba(255, 107, 53, 0.2) 65%, rgba(255, 107, 53, 0.1) 75%, transparent 90%),
        radial-gradient(ellipse 100% 55% at center bottom, rgba(255, 80, 40, 0.9) 0%, rgba(255, 80, 40, 0.7) 10%, rgba(255, 80, 40, 0.5) 25%, rgba(255, 80, 40, 0.3) 40%, rgba(255, 80, 40, 0.15) 55%, transparent 75%),
        radial-gradient(ellipse 120% 65% at center bottom, rgba(200, 60, 30, 0.6) 0%, rgba(200, 60, 30, 0.4) 20%, rgba(200, 60, 30, 0.2) 40%, rgba(200, 60, 30, 0.1) 55%, transparent 70%),
        linear-gradient(to top, rgba(139, 50, 25, 0.3) 0%, transparent 5%);
    pointer-events: none;
    z-index: 0;
    filter: blur(3px);
    opacity: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

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

.hero-title-dark {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle-dark {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Dashboard Preview Section */
.dashboard-preview {
    background: #0a0a0a;
    padding: 80px 0;
}

/* Trusted By Section */
.trusted-by-section {
    position: relative;
    background: #1a0f0f;
    padding: 120px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-by-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(139, 50, 25, 0.05) 2px,
            rgba(139, 50, 25, 0.05) 4px
        );
    z-index: 0;
}

.trusted-by-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse 80% 40% at center, 
        rgba(255, 107, 53, 0.8) 0%, 
        rgba(255, 107, 53, 0.6) 15%, 
        rgba(255, 107, 53, 0.4) 30%, 
        rgba(255, 107, 53, 0.2) 45%, 
        rgba(200, 60, 30, 0.1) 60%, 
        transparent 80%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    animation: trustedGlowPulse 6s ease-in-out infinite;
}

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

.trusted-by-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.trusted-by-title {
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

.trusted-by-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.company-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.company-logo-item:nth-child(1) { animation-delay: 0.4s; }
.company-logo-item:nth-child(2) { animation-delay: 0.5s; }
.company-logo-item:nth-child(3) { animation-delay: 0.6s; }
.company-logo-item:nth-child(4) { animation-delay: 0.7s; }

.company-logo-item:hover {
    transform: translateY(-5px);
}

.company-logo-icon {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.company-logo-icon svg {
    width: 100%;
    height: 100%;
}

.company-logo-item:hover .company-logo-icon {
    color: #ff6b35;
    transform: scale(1.1);
}

.company-name {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.company-logo-item:hover .company-name {
    color: rgba(255, 255, 255, 1);
}

/* Logo Icon Styles */
.feather-icon svg {
    stroke: currentColor;
    fill: none;
}

.bolt-icon svg {
    fill: currentColor;
}

.globe-icon svg {
    stroke: currentColor;
    fill: none;
}

.box-icon svg {
    fill: currentColor;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    min-height: 500px;
    animation: fadeInUp 1s ease-out 0.8s both;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.dashboard-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.dashboard-sidebar {
    width: 250px;
    background: #141414;
    padding: 24px;
    border-right: 1px solid #2a2a2a;
}

.dashboard-logo {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.dashboard-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ff6b35;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dashboard-nav-item:hover {
    background: #2a2a2a;
    color: #ffffff;
    transform: translateX(5px);
}

.dashboard-nav-item.active {
    background: #2a2a2a;
    color: #ff6b35;
}

.dashboard-nav-item.active::before {
    transform: scaleY(1);
}

.dashboard-nav-item i {
    width: 20px;
    text-align: center;
}

.dashboard-main {
    flex: 1;
    padding: 24px;
    background: #1a1a1a;
}

.dashboard-header {
    margin-bottom: 32px;
}

.dashboard-search {
    width: 100%;
    padding: 12px 16px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.dashboard-search::placeholder {
    color: #6b7280;
}

.dashboard-search:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: #1a1a1a;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dashboard-section {
    background: #141414;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.dashboard-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    color: #d1d5db;
    font-size: 14px;
}

.dashboard-table thead {
    border-bottom: 1px solid #2a2a2a;
}

.dashboard-table th {
    text-align: left;
    padding: 12px 8px;
    color: #9ca3af;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.dashboard-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #2a2a2a;
}

.dashboard-table tbody tr {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.dashboard-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.dashboard-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.dashboard-table tbody tr:nth-child(3) { animation-delay: 0.3s; }

.dashboard-table tbody tr:hover {
    background: #2a2a2a;
    transform: translateX(5px);
}

.popularity-bar {
    display: inline-block;
    height: 6px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 3px;
    min-width: 20px;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.popularity-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes slideInLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.visitor-insights {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.visitor-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    animation: countUp 1.5s ease-out;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.visitor-chart {
    width: 100%;
    height: 150px;
    position: relative;
}

.visitor-chart canvas {
    width: 100%;
    height: 100%;
    animation: fadeIn 1s ease-out 1s both;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .hero-title-dark {
        font-size: 56px;
    }
    
    .hero-subtitle-dark {
        font-size: 20px;
    }
    
    .solution-section .section-title {
        font-size: 56px;
    }
    
    .solution-section .section-subtitle {
        font-size: 20px;
        margin-bottom: 50px;
    }
    
    .solution-content {
        margin-top: 35px;
    }
    
    .channels-container .solution-description {
        font-size: 28px;
    }
    
    .solution-subtitle {
        font-size: 42px;
    }
    
    .solution-description {
        font-size: 24px;
        font-weight: 700;
    }
    
    /* Industries Section 1024px */
    .industries-title-orange,
    .industries-title-white {
        font-size: 56px;
    }
    
    .industries-title-bar {
        height: 110px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .industries-grid-wrapper {
        padding: 36px;
    }
    
    .industry-icon {
        width: 75px;
        height: 75px;
    }
    
    .industry-icon i {
        font-size: 44px;
    }
    
    .industry-text {
        font-size: 17px;
    }
    
    /* Modern Cards 1024px */
    .modern-cards-row {
        gap: 20px;
    }
    
    .modern-card {
        width: 280px;
        padding: 30px 24px;
    }
    
    .card-icon-3d {
        font-size: 52px;
    }
    
    .card-description {
        font-size: 16px;
    }
    
    /* Problem Section 1024px */
    .problem-title-serif {
        font-size: 80px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    /* Solution Section 1024px */
    .solution-section .section-title {
        font-size: 60px;
    }
    
    .solution-section .section-subtitle {
        font-size: 21px;
    }
    
    .solution-features {
        padding: 70px 0;
    }
    
    .solution-features::before {
        height: 350px;
    }
    
    .features-list.deck-of-cards {
        min-height: 400px;
        padding: 60px 0;
    }
    
    .feature-card {
        width: 280px;
    }
    
    .feature-card[data-card="1"] {
        transform: translateX(-380px) translateY(0) translateZ(-150px) rotateY(40deg) rotateX(5deg);
    }
    
    .feature-card[data-card="2"] {
        transform: translateX(-200px) translateY(-20px) translateZ(-80px) rotateY(20deg) rotateX(3deg);
    }
    
    .feature-card[data-card="3"] {
        transform: translateX(-60px) translateY(-30px) translateZ(0) rotateY(8deg) rotateX(2deg);
    }
    
    .feature-card[data-card="4"] {
        transform: translateX(60px) translateY(-30px) translateZ(0) rotateY(-8deg) rotateX(2deg);
    }
    
    .feature-card[data-card="5"] {
        transform: translateX(200px) translateY(-20px) translateZ(-80px) rotateY(-20deg) rotateX(3deg);
    }
    
    .feature-card[data-card="6"] {
        transform: translateX(380px) translateY(0) translateZ(-150px) rotateY(-40deg) rotateX(5deg);
    }
    
    .problem-header-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .problem-title-serif {
        font-size: 64px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Channels Section 1024px */
    /* Maintain 3-left, 3-right layout for iPad */
    .channels-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        flex-direction: row;
    }
    
    .channels-column {
        flex: 0 0 200px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .channels-column.channels-left,
    .channels-column.channels-right {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 16px;
    }
    
    .channel-item {
        min-height: 90px;
        padding: 16px 12px;
        flex: 0 0 auto;
        max-width: 180px;
        width: 100%;
    }
    
    .channel-item i {
        font-size: 32px;
    }
    
    .channel-item span {
        font-size: 13px;
    }
    
    .channel-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .channel-icon-overlay {
        font-size: 16px !important;
    }
    
    .deck-central-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
    }
    
    .deck-icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .deck-text {
        font-size: 24px;
    }
    
    .channels-connection-lines {
        display: block;
    }
    
    .channels-container {
        min-height: 380px;
        padding: 30px 0;
    }
    
    .problem-result {
        margin-top: 60px;
        padding: 60px 40px;
    }
    
    .result-header {
        margin-bottom: 30px;
    }
    
    .result-title {
        font-size: 36px;
    }
    
    .result-items {
        height: 420px;
        max-width: 800px;
    }
    
    .result-item {
        width: 260px;
        padding: 26px 30px;
    }
    
    .result-item[data-index="0"] {
        top: 6%;
        left: 3%;
    }
    
    .result-item[data-index="1"] {
        top: 6%;
        right: 3%;
    }
    
    .result-item[data-index="2"] {
        bottom: 6%;
        left: 3%;
    }
    
    .result-item[data-index="3"] {
        bottom: 6%;
        right: 3%;
    }
    
    .result-card-title {
        font-size: 24px;
    }
    
    .result-card-desc {
        font-size: 20px;
    }
    
    .result-card-icon {
        width: 38px;
        height: 38px;
    }
    
    .result-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .dashboard-container {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .dashboard-nav {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-dark {
        padding: 40px 0 100px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title-dark {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle-dark {
        font-size: 17px;
        margin-bottom: 32px;
        line-height: 1.5;
    }
    
    .solution-section .section-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .solution-section .section-subtitle {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 40px;
    }
    
    .solution-content {
        margin-top: 30px;
    }
    
    .solution-subtitle {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    
    .solution-description {
        font-size: 17px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .btn-primary-dark,
    .btn-secondary-dark {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dashboard-preview {
        padding: 40px 0;
    }
    
    .dashboard-container {
        border-radius: 0;
    }
    
    .trusted-by-section {
        padding: 80px 0;
    }
    
    .trusted-by-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .trusted-by-logos {
        gap: 40px;
    }
    
    .company-logo-icon {
        width: 56px;
        height: 56px;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .problem-section,
    .solution-section,
    .industries-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .problem-header-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .problem-title-serif {
        font-size: 42px;
        text-align: center;
        line-height: 1.1;
    }
    
    .problem-subtitle-text {
        text-align: center;
        font-size: 20px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .problem-grid {
        gap: 20px;
    }
    
    .problem-item {
        padding: 20px;
    }
    
    .problem-result {
        margin-top: 40px;
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .problem-result::before {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }
    
    .result-header {
        margin-bottom: 32px;
    }
    
    .result-title {
        text-align: center;
        font-size: 32px;
        line-height: 1.2;
    }
    
    .result-items-wrapper {
        min-height: auto;
    }
    
    .result-items {
        height: auto;
        min-height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        max-width: 100%;
    }
    
    .result-item {
        position: relative !important;
        width: 100%;
        max-width: 100%;
        padding: 20px 24px;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: resultCardFloatInMobile 0.6s ease-out forwards;
        margin: 0;
    }
    
    .result-item[data-index="0"],
    .result-item[data-index="1"],
    .result-item[data-index="2"],
    .result-item[data-index="3"] {
        animation-delay: 0.1s;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    @keyframes resultCardFloatInMobile {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .result-card-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .result-card-desc {
        font-size: 17px;
        line-height: 1.4;
    }
    
    .result-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }
    
    .result-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .result-card-content {
        gap: 6px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }
    
    /* Channels Section 768px */
    /* Maintain 3-left, 3-right layout for mobile/tablet, scaled down */
    .channels-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-direction: row;
    }
    
    .channels-column {
        flex: 0 0 140px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .channels-column.channels-left,
    .channels-column.channels-right {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 12px;
    }
    
    .channel-item {
        min-height: 80px;
        padding: 12px 10px;
        flex: 0 0 auto;
        max-width: 140px;
        width: 100%;
    }
    
    .channel-item i {
        font-size: 28px;
    }
    
    .channel-item span {
        font-size: 12px;
    }
    
    .channel-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .channel-icon-overlay {
        font-size: 14px !important;
    }
    
    .deck-central-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
    }
    
    .deck-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .deck-text {
        font-size: 20px;
    }
    
    .channels-connection-lines {
        display: block;
    }
    
    .channels-container {
        min-height: 320px;
        padding: 20px 0;
    }
    
    .features-list,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-omnichannel,
    .solution-features,
    .solution-result,
    .solution-integrations {
        margin-bottom: 60px;
    }
    
    .solution-subtitle {
        font-size: 28px;
    }
    
    /* Industries Section Tablet */
    .industries-title-orange,
    .industries-title-white {
        font-size: 40px;
    }
    
    .industries-title-bar {
        height: 90px;
        width: 6px;
    }
    
    .industries-header {
        gap: 18px;
        margin-bottom: 50px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .industries-grid-wrapper {
        padding: 28px;
    }
    
    .industry-icon {
        width: 65px;
        height: 65px;
    }
    
    .industry-icon i {
        font-size: 40px;
    }
    
    .industry-text {
        font-size: 15px;
    }
    
    .industry-item {
        padding: 28px 20px;
    }
    
    /* Modern Cards Tablet */
    .modern-cards-row {
        gap: 18px;
    }
    
    .modern-card {
        width: 100%;
        max-width: 320px;
        padding: 28px 22px;
    }
    
    .card-icon-3d {
        font-size: 48px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    /* Problem Section Tablet */
    .problem-title-serif {
        font-size: 60px;
    }
    
    .problem-subtitle-text {
        font-size: 22px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .problem-item {
        padding: 24px;
    }
    
    /* Solution Section Tablet */
    .solution-section .section-title {
        font-size: 48px;
    }
    
    .solution-section .section-subtitle {
        font-size: 19px;
        margin-bottom: 45px;
    }
    
    .solution-content {
        margin-top: 30px;
    }
    
    .channels-container .solution-description {
        font-size: 24px;
        margin-bottom: 50px;
    }
    
    .solution-description {
        font-size: 22px;
        font-weight: 700;
    }
    
    .channels-container .solution-description {
        font-size: 22px;
        margin-bottom: 45px;
    }
    
    .solution-features {
        padding: 60px 0;
    }
    
    .solution-features::before {
        height: 300px;
    }
    
    /* Hero Section Tablet */
    .hero-title-dark {
        font-size: 48px;
    }
    
    .hero-subtitle-dark {
        font-size: 19px;
    }
    
    .hero-dark {
        padding: 80px 0 140px 0;
        min-height: 650px;
    }
    
    .integrations-visualization {
        height: 500px;
        max-width: 100%;
    }
    
    .central-icon-bg {
        width: 100px;
        height: 100px;
    }
    
    .central-icon-bg .cube-icon {
        width: 50px;
        height: 50px;
    }
    
    .integration-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .integration-icon-bg svg {
        width: 35px;
        height: 35px;
    }
    
    .integration-icon-bg i {
        font-size: 28px;
    }
    
    .integration-icon-1,
    .integration-icon-2 {
        top: 5%;
    }
    
    .integration-icon-4,
    .integration-icon-5 {
        bottom: 5%;
    }
    
    .integration-icon-1,
    .integration-icon-5 {
        left: 5%;
    }
    
    .integration-icon-2,
    .integration-icon-4 {
        right: 5%;
    }
    
    .integration-icon-3,
    .integration-icon-6 {
        left: 5%;
        right: 5%;
    }
    
    .industries-subtitle {
        font-size: 20px;
    }
    
    .industry-item {
        padding: 16px;
        font-size: 15px;
    }
    
    .problem-text {
        font-size: 15px;
    }
    
    .problem-icon {
        width: 40px;
        height: 40px;
    }
    
    .solution-features {
        padding: 80px 0;
    }
    
    .solution-features::before {
        height: 150px;
    }
    
    .features-list.modern-cards {
        padding: 40px 24px;
        margin-top: 40px;
    }
    
    .modern-card {
        width: 100%;
        max-width: 320px;
        margin-top: 0 !important;
        margin-left: 0 !important;
        transform: translateY(30px) scale(0.95) !important;
    }
    
    .modern-card[data-card="2"],
    .modern-card[data-card="3"],
    .modern-card[data-card="5"],
    .modern-card[data-card="6"] {
        margin-top: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Industries Section Mobile (480px) */
    .industries-title-orange,
    .industries-title-white {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .industries-title-bar {
        height: 60px;
        width: 5px;
    }
    
    .industries-header {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industries-grid-wrapper {
        padding: 20px;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .industry-icon i {
        font-size: 32px;
    }
    
    .industry-text {
        font-size: 14px;
    }
    
    .industry-item {
        padding: 20px 12px;
        gap: 16px;
    }
    
    /* Modern Cards Mobile */
    .modern-cards-row {
        gap: 16px;
    }
    
    .modern-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        min-height: 180px;
    }
    
    .card-icon-3d {
        font-size: 40px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    /* Problem Section Mobile */
    .problem-title-serif {
        font-size: 40px;
    }
    
    .problem-subtitle-text {
        font-size: 18px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-item {
        padding: 20px;
    }
    
    .problem-subtitle-text {
        font-size: 18px;
    }
    
    .problem-text {
        font-size: 14px;
    }
    
    /* Solution Section Mobile */
    .solution-section .section-title {
        font-size: 36px;
    }
    
    .solution-section .section-subtitle {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .solution-content {
        margin-top: 25px;
    }
    
    .channels-container .solution-description {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .solution-description {
        font-size: 18px;
        font-weight: 700;
    }
    
    .channels-container .solution-description {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .solution-subtitle {
        font-size: 28px;
    }
    
    .solution-features {
        padding: 50px 0;
    }
    
    .solution-features::before {
        height: 250px;
    }
    
    /* Hero Section Mobile */
    .hero-title-dark {
        font-size: 36px;
    }
    
    .hero-subtitle-dark {
        font-size: 16px;
    }
    
    .hero-dark {
        padding: 60px 0 100px 0;
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary-dark,
    .btn-secondary-dark {
        width: 100%;
        max-width: 100%;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        height: 65px;
        min-height: 65px;
    }
    
    .nav-links {
        top: 65px;
    }
    
    .logo-text-dark {
        font-size: 22px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-dark {
        padding: 30px 0 80px 0;
    }
    
    .hero-title-dark {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle-dark {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .solution-section .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .solution-section .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .solution-content {
        margin-top: 20px;
    }
    
    .solution-subtitle {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .solution-description {
        font-size: 15px;
    }
    
    .btn-primary-dark,
    .btn-secondary-dark {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .problem-section,
    .solution-section,
    .industries-section {
        padding: 50px 0;
    }
    
    .problem-title-serif {
        font-size: 36px;
    }
    
    .problem-subtitle-text {
        font-size: 15px;
    }
    
    .problem-result {
        padding: 30px 16px;
    }
    
    .result-title {
        font-size: 28px;
    }
    
    .result-card-title {
        font-size: 18px;
    }
    
    .result-card-desc {
        font-size: 16px;
    }
    
    .result-card-icon {
        width: 32px;
        height: 32px;
    }
    
    .result-card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .result-item {
        padding: 18px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Channels Section 480px */
    /* Maintain 3-left, 3-right layout for small mobile, compact */
    .channels-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        flex-direction: row;
    }
    
    .channels-column {
        flex: 0 0 110px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .channels-column.channels-left,
    .channels-column.channels-right {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }
    
    .channel-item {
        min-height: 75px;
        padding: 10px 8px;
        flex: 0 0 auto;
        max-width: 110px;
        width: 100%;
    }
    
    .channel-item i {
        font-size: 22px;
    }
    
    .channel-item span {
        font-size: 10px;
    }
    
    .channel-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .channel-icon-overlay {
        font-size: 11px !important;
    }
    
    .sms-text-overlay {
        font-size: 7px !important;
    }
    
    .deck-central-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
    }
    
    .deck-icon-bg {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
    
    .deck-text {
        font-size: 18px;
    }
    
    .channels-connection-lines {
        display: block;
    }
    
    .channels-container {
        min-height: 280px;
        padding: 16px 0;
    }
    
    .solution-subtitle {
        font-size: 22px;
    }
    
    .industries-title-orange,
    .industries-title-white {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .industries-title-bar {
        height: 80px;
        width: 6px;
    }
    
    .industries-header {
        gap: 16px;
        margin-bottom: 60px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .industries-grid-wrapper {
        padding: 24px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon i {
        font-size: 36px;
    }
    
    .industry-text {
        font-size: 16px;
    }
    
    .industry-item {
        padding: 24px 16px;
    }
    
    /* Modern Cards Responsive */
    .modern-cards-row {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-card {
        width: 100%;
        max-width: 400px;
    }
    
    /* Solution Section Responsive */
    .solution-section .section-title {
        font-size: 48px;
    }
    
    .solution-section .section-subtitle {
        font-size: 20px;
    }
    
    .solution-description {
        font-size: 18px;
    }
    
    .solution-features {
        padding: 60px 0;
    }
    
    .solution-features::before {
        height: 300px;
    }
    
    /* Problem Section Responsive */
    .problem-title-serif {
        font-size: 56px;
    }
    
    .problem-subtitle-text {
        font-size: 16px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .problem-item {
        padding: 24px;
    }
    
    /* Hero Section Responsive */
    .hero-title-dark {
        font-size: 48px;
    }
    
    .hero-subtitle-dark {
        font-size: 18px;
    }
    
    .hero-dark {
        padding: 80px 0 120px 0;
        min-height: 600px;
    }
    
    .problem-item {
        padding: 16px;
    }
    
    .problem-text {
        font-size: 14px;
    }
    
    .industry-item {
        padding: 14px;
        font-size: 14px;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .channel-item {
        min-height: 110px;
        padding: 18px 14px;
    }
    
    .channel-item i {
        font-size: 24px;
    }
    
    .channel-item span {
        font-size: 13px;
    }
    
    .channel-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .channel-icon-overlay {
        font-size: 14px !important;
    }
    
    .integrations-visualization {
        height: 400px;
    }
    
    .central-icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .central-icon-bg .cube-icon {
        width: 40px;
        height: 40px;
    }
    
    .integration-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .integration-icon-bg svg {
        width: 30px;
        height: 30px;
    }
    
    .integration-icon-bg i {
        font-size: 24px;
    }
    
    .connection-lines {
        opacity: 0.5;
    }
    
    .solution-features {
        padding: 60px 0;
    }
    
    .solution-features::before {
        height: 120px;
        width: 1.5px;
    }
    
    .features-list.modern-cards {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .modern-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        min-height: 160px;
    }
    
    .card-icon-3d {
        font-size: 32px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .card-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}





