/* Allin Platform Hero Section - Major Tech Company Style */
.allin-hero {
    position: relative;
    min-height: calc(100vh - 70px); /* Subtract navbar height */
    background: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    z-index: 1;
    margin-top: 70px; /* Match navbar height */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Remove all background effects */
.allin-hero::before,
.allin-hero::after {
    display: none;
}

/* Retro CRT Canvas Effect */
#hero-pixels-bg {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00eaff;
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 24s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 19s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 17s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 23s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Ensure hero content is properly positioned */
.hero-content-wrapper {
    width: 100%;
    min-height: calc(80vh - 70px); /* Adjust for navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 10;
    position: relative;
    padding: 1.5rem 0;
    margin-top: 0;
}

/* Hero Text Section - Left Aligned */
.hero-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 1;
    transform: none;
    animation: none;
}

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

.hero-animation-section {
    display: none;
}

@keyframes heroAnimationReveal {
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

/* Hero Screenshot Section - Mobile App Screenshot */
/* Professional big-tech company style - No animations, clean presentation */
.hero-screenshot-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    z-index: 2;
}

/* Professional device frame mockup - Big tech company style */
.mobile-screenshot-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 32px;
    border: 2px solid rgba(0, 242, 254, 0.2);
    box-shadow: 
        0 0 0 1px rgba(0, 242, 254, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(0, 242, 254, 0.2),
        inset 0 0 60px rgba(0, 242, 254, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
    /* Prevent any overrides */
    animation: none !important;
    opacity: 1 !important;
}

.mobile-screenshot-container::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    z-index: 2;
}

.mobile-screenshot-container::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    z-index: 2;
}

.mobile-screenshot-container:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 
        0 0 0 1px rgba(0, 242, 254, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 150px rgba(0, 242, 254, 0.3),
        inset 0 0 80px rgba(0, 242, 254, 0.08);
}

.mobile-screenshot {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 28px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    /* Ensure clear, high-quality display - Professional big tech style */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: none !important;
    animation: none !important;
}

/* Responsive adjustments for mobile screenshot */
@media (max-width: 1200px) {
    .mobile-screenshot-container {
        max-width: 300px;
        padding: 14px;
        border-radius: 28px;
    }
    
    .mobile-screenshot-container::before {
        width: 55px;
        height: 5px;
        top: 10px;
    }
    
    .mobile-screenshot-container::after {
        width: 110px;
        height: 3px;
    }
}

@media (max-width: 992px) {
    .hero-screenshot-section {
        padding: 1.5rem 1rem;
    margin-top: 2rem;
}

    .mobile-screenshot-container {
        max-width: 280px;
        padding: 12px;
        border-radius: 24px;
    }
    
    .mobile-screenshot {
        border-radius: 24px;
    }
    
    .mobile-screenshot-container::before {
        width: 50px;
        height: 5px;
        top: 9px;
    }
    
    .mobile-screenshot-container::after {
        width: 100px;
        height: 3px;
}
}

@media (max-width: 768px) {
    .hero-screenshot-section {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .mobile-screenshot-container {
        max-width: 240px;
        padding: 10px;
    border-radius: 20px;
    }
    
    .mobile-screenshot {
        border-radius: 20px;
}

    .mobile-screenshot-container::before {
        width: 45px;
        height: 4px;
        top: 8px;
    }
    
    .mobile-screenshot-container::after {
        width: 90px;
        height: 3px;
    }
}

@media (max-width: 576px) {
    .hero-screenshot-section {
        padding: 0.5rem;
        margin-top: 1rem;
    }
    
    .mobile-screenshot-container {
        max-width: 200px;
        padding: 8px;
        border-radius: 18px;
}

    .mobile-screenshot {
        border-radius: 18px;
}

    .mobile-screenshot-container::before {
        width: 40px;
        height: 4px;
        top: 7px;
}

    .mobile-screenshot-container::after {
        width: 80px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .mobile-screenshot-container {
        max-width: 220px;
        padding: 10px;
        border-radius: 20px;
}

    .mobile-screenshot {
        border-radius: 16px;
}

    .mobile-screenshot-container::before {
        width: 35px;
        height: 3px;
        top: 6px;
}

    .mobile-screenshot-container::after {
        width: 70px;
        height: 2px;
    }
}

/* Dual Screenshots Container for AllinLocal */
.mobile-screenshots-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}

.mobile-screenshot-wrapper {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-screenshots-container .mobile-screenshot-container {
    max-width: 280px;
    margin: 0;
}

.mobile-screenshots-container .mobile-screenshot-container:first-child {
    transform: rotate(-5deg);
    z-index: 2;
}

.mobile-screenshots-container .mobile-screenshot-container:last-child {
    transform: rotate(5deg);
    z-index: 1;
}

.mobile-screenshots-container .mobile-screenshot-container:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.02);
    z-index: 3;
}

/* Responsive adjustments for dual screenshots */
@media (max-width: 1200px) {
    .mobile-screenshots-container {
        gap: 18px;
        max-width: 700px;
}

    .mobile-screenshots-container .mobile-screenshot-container {
        max-width: 260px;
}
}

@media (max-width: 992px) {
    .mobile-screenshots-container {
        gap: 16px;
        max-width: 600px;
}

    .mobile-screenshots-container .mobile-screenshot-container {
        max-width: 240px;
    }
    
    .mobile-screenshots-container .mobile-screenshot-container:first-child {
        transform: rotate(-3deg);
}

    .mobile-screenshots-container .mobile-screenshot-container:last-child {
        transform: rotate(3deg);
}
}

@media (max-width: 768px) {
    .mobile-screenshots-container {
        gap: 14px;
        max-width: 600px;
    }
    
    .mobile-screenshots-container .mobile-screenshot-container {
        max-width: 220px;
    }
    
    .mobile-screenshots-container .mobile-screenshot-container:first-child {
        transform: rotate(-2deg);
    }
    
    .mobile-screenshots-container .mobile-screenshot-container:last-child {
        transform: rotate(2deg);
    }
}

@media (max-width: 576px) {
    .mobile-screenshots-container {
        gap: 12px;
        flex-direction: column;
        max-width: 100%;
}

    .mobile-screenshots-container .mobile-screenshot-container {
        max-width: 200px;
    }
    
    .mobile-screenshots-container .mobile-screenshot-container:first-child,
    .mobile-screenshots-container .mobile-screenshot-container:last-child {
        transform: rotate(0deg);
}
    
    .mobile-screenshots-container .mobile-screenshot-container:hover {
        transform: translateY(-12px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .mobile-screenshots-container {
        gap: 10px;
}
    
    .mobile-screenshots-container .mobile-screenshot-container {
        max-width: 180px;
    }
}

/* Hero Features Section */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    opacity: 1;
    align-items: center;
    justify-content: flex-start;
    transform: none;
    animation: none;
}

.feature-pill {
  display: flex;
  align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 234, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.3);
}

.feature-pill:hover::before {
    left: 100%;
}

.feature-pill i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.feature-pill:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Hero Logo */
.hero-logo-container {
    position: relative;
    margin-bottom: 1rem;
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.hero-logo {
  width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 234, 255, 0.5));
    animation: logoFloat 6s ease-in-out infinite;
}

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

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

/* Main Text - Major Tech Company Style */
.allin-hero-main-text {
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.allin-hero-main-text br {
    display: none;
}

.text-reveal {
    color: #ffffff;
    opacity: 1;
    transform: none;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.text-separator {
    color: #00eaff;
    font-weight: 400;
        opacity: 1;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.5);
    filter: drop-shadow(0 0 8px rgba(0, 234, 255, 0.3));
}

/* Hero Subtitle Paragraph */
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    max-width: 700px;
    opacity: 1;
    transform: none;
    animation: none;
    text-align: center;
}

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

.subtitle-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #ffffff, #00eaff, #ffffff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: subtitleShimmer 3s ease-in-out infinite;
}

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

.subtitle-highlight {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00eaff, #6f00ff);
    animation: subtitleExpand 2s ease-out 2s forwards;
}

@keyframes subtitleExpand {
    to { width: 100%; }
}

/* Box Feature Pills */
.box-feature-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.box-feature-pill i {
    font-size: 1rem;
}

.connect-pill {
    top: 20%;
    left: 20%;
}

.booking-pill {
    top: 15%;
    right: 25%;
}

.travel-pill {
    top: 30%;
    right: 20%;
}

.services-pill {
    top: 35%;
    left: 15%;
}
.hero-headline-interact {
  transition: color 0.2s, text-shadow 0.2s;
  cursor: pointer;
}
.hero-headline-interact:hover {
  color: #00eaff;
  text-shadow: 0 2px 16px #00eaff44;
}
.allin-hero {
  background: #0d0d0d;
  background-position: 50% 50%;
  background-size: cover;
  transition: background-position 0.5s cubic-bezier(0.4,0,0.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .modern-animate-fadeup,
  .modern-animate-scalein,
  .modern-animate-bar,
  .accent-svg,
  .hero-animated-subtitle {
    transition: none !important;
    animation: none !important;
  }
}
.hero-btn-rocket {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: inline-block;
  margin-right: 0.5em;
}
.rocket-animate {
  transform: translateY(-8px) rotate(-18deg) scale(1.18);
  filter: drop-shadow(0 2px 8px #00eaff88);
}

.gradient-text {
    background: linear-gradient(90deg, #00eaff, #6f00ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    animation: gradientFlow 8s linear infinite;
    background-size: 200% 100%;
}

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


/* Allin Hero Canvas */
.allin-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Ensure canvas is responsive */
@media (max-width: 768px) {
    .allin-hero-canvas {
        width: 100% !important;
        height: 100% !important;
    }
    
}

@keyframes boxDropFromNav {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Window Controls */
.window-controls {
    position: relative;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    opacity: 0.7;
}

/* UI Elements Container */
.ui-elements-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 60px 40px 40px 40px;
}

/* Base UI Icon Styles - Raining Effect */
.ui-icon {
    position: absolute;
    font-size: 2.8rem;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-100vh) scale(0.3);
    animation: iconRainDrop 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    z-index: 5;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
    cursor: pointer;
}

.ui-icon:hover {
    transform: scale(1.3) translateY(-8px);
    filter: drop-shadow(0 12px 24px rgba(0, 234, 255, 0.8));
}

.ui-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Random positions for raining effect */
.truck-icon {
    color: #3b82f6;
    top: 15%;
    left: 12%;
    animation-delay: 2.5s;
}

.messaging-icon {
    color: #8b5cf6;
    top: 8%;
    left: 45%;
    animation-delay: 2.8s;
}

.car-icon {
    color: #ef4444;
    top: 12%;
    right: 15%;
    animation-delay: 3.1s;
}

.rental-icon {
    color: #10b981;
    top: 28%;
    left: 8%;
    animation-delay: 3.4s;
}

.social-icon {
    color: #06b6d4;
    top: 25%;
    left: 38%;
    animation-delay: 3.7s;
}

.plumber-icon {
    color: #f97316;
    top: 22%;
    right: 12%;
    animation-delay: 4.0s;
}

.helper-icon {
    color: #f59e0b;
    top: 42%;
    left: 15%;
    animation-delay: 4.3s;
}

.electrician-icon {
    color: #ec4899;
    top: 38%;
    left: 42%;
    animation-delay: 4.6s;
}

.delivery-icon {
    color: #059669;
    top: 35%;
    right: 18%;
    animation-delay: 4.9s;
}

.food-icon {
    color: #dc2626;
    top: 58%;
    left: 10%;
    animation-delay: 5.2s;
}

.health-icon {
    color: #7c3aed;
    top: 55%;
    left: 35%;
    animation-delay: 5.5s;
}

.education-icon {
    color: #0891b2;
    top: 52%;
    right: 10%;
    animation-delay: 5.8s;
}

.finance-icon {
    color: #16a34a;
    top: 72%;
    left: 18%;
    animation-delay: 6.1s;
}

.entertainment-icon {
    color: #ea580c;
    top: 68%;
    left: 45%;
    animation-delay: 6.4s;
}

.shopping-icon {
    color: #be185d;
    top: 65%;
    right: 15%;
    animation-delay: 6.7s;
}

.ai-icon {
    color: #1e40af;
    top: 78%;
    right: 35%;
    animation-delay: 7.0s;
}

@keyframes iconRainDrop {
    0% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.3);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Premium CTA Button - Square Style with Dim White Background */
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 1.1em 2.5em;
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 12px;
    background: #f8f9fa;
    color: #000000 !important;
    border: 2px solid #000000;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    z-index: 1;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    margin-top: 0.5rem;
    text-transform: none;
    height: fit-content;
    min-height: 48px;
}

.hero-cta-button:hover {
    background: #e9ecef;
    color: #000000 !important;
    transform: scale(1.04);
}

.hero-cta-button:active {
    transform: scale(1.02);
}

/* Allpixel Logo in Button - Dim White Background */
.hero-cta-button .allpixel-logo {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    height: 28px;
    width: 28px;
    filter: brightness(0); /* Make logo black for dim white background */
}

.hero-cta-button:hover .allpixel-logo {
    transform: rotate(360deg);
}


.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.button-particles::before,
.button-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    animation: buttonParticle 2s linear infinite;
}

.button-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.button-particles::after {
    top: 80%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes buttonParticle {
    0% { transform: translateY(0) scale(0); opacity: 1; }
    100% { transform: translateY(-50px) scale(1); opacity: 0; }
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
}

.hero-cta-button:hover .button-ripple {
    width: 300px;
    height: 300px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .allin-hero {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-content-wrapper {
        min-height: calc(80vh - 70px);
    }
    
    .allin-hero-main-text {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 450px;
    }
    
}

@media (max-width: 992px) {
    .allin-hero {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
        padding-top: 2rem;
    }
    
    .hero-content-wrapper {
        min-height: calc(80vh - 70px);
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .allin-hero-main-text {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text-section {
        align-items: center;
        max-width: 100%;
        margin-left: 0;
        gap: 0.8rem;
    }
    
}

@media (max-width: 768px) {
    .allin-hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: 1rem;
        padding-top: 2.5rem;
    }
    
    .hero-features {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-content-wrapper {
        min-height: calc(80vh - 70px);
        padding: 2rem 0;
    }
    
    .allin-hero-main-text {
        font-size: 2.2rem;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 0.7em 1.3em;
        min-height: 44px;
        align-self: center;
    }
    
    .hero-cta-button .allpixel-logo {
        height: 24px;
        width: 24px;
    }
    
}

@media (max-width: 576px) {
    .allin-hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: 0.5rem;
        padding-top: 2rem;
    }
    
    .hero-content-wrapper {
        min-height: calc(80vh - 60px);
        padding: 1.5rem 0;
    }
    
    .allin-hero-main-text {
        font-size: 1.8rem;
        line-height: 1.1;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-cta-button {
        font-size: 0.9rem;
        padding: 0.6em 1.2em;
        min-height: 42px;
        align-self: center;
    }
    
    .hero-cta-button .allpixel-logo {
        height: 20px;
        width: 20px;
    }
    
}

/* Product Logo Animation */
@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-logo-container img {
    transition: all 0.3s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.8));
    }
}

/* Enhanced Professional Animations */
@keyframes professionalFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes professionalGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 242, 254, 0.6);
    }
    }
    
.tech-card {
    animation: professionalFadeIn 0.8s ease-out;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.2);
}

@media (max-width: 480px) {
    .allin-hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding-top: 2rem;
    }
    
    .hero-content-wrapper {
        min-height: calc(80vh - 60px);
        padding: 1.5rem 0;
    }
    
    .allin-hero-main-text {
        font-size: 1.6rem;
    }
    
    .hero-features {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-cta-button {
        min-height: 40px;
        align-self: center;
    }
    
}

@media (max-width: 360px) {
    .allin-hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding-top: 1.5rem;
    }
    
    .hero-content-wrapper {
        min-height: calc(80vh - 60px);
        padding: 1.5rem 0;
    }
    
    .allin-hero-main-text {
        font-size: 1.4rem;
    }
    
    .hero-features {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-cta-button {
        min-height: 38px;
        align-self: center;
    }
    
}

/* Remove all previous hero bubble/canvas styles for cleanliness */
.allin-hero-visual-wrapper, .allin-hero-canvas, .allin-hero-animated-text, .allin-hero-bubble-img { display: none !important; } 

