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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Staggered Menu */
.staggered-menu {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.menu-toggle {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: 900;
    color: #333;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
}

.menu-icon {
    font-size: 1.5rem;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.menu-toggle.active .menu-icon {
    transform: rotate(45deg);
}

.menu-panel {
    position: absolute;
    top: 60px;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 16px;
    padding: 20px;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.menu-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.client-item {
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateX(20px);
    opacity: 0;
    font-weight: 700;
}

.menu-panel.active .client-item {
    transform: translateX(0);
    opacity: 1;
}

.menu-panel.active .client-item:nth-child(1) { transition-delay: 0.1s; }
.menu-panel.active .client-item:nth-child(2) { transition-delay: 0.15s; }
.menu-panel.active .client-item:nth-child(3) { transition-delay: 0.2s; }
.menu-panel.active .client-item:nth-child(4) { transition-delay: 0.25s; }
.menu-panel.active .client-item:nth-child(5) { transition-delay: 0.3s; }
.menu-panel.active .client-item:nth-child(6) { transition-delay: 0.35s; }
.menu-panel.active .client-item:nth-child(7) { transition-delay: 0.4s; }
.menu-panel.active .client-item:nth-child(8) { transition-delay: 0.45s; }
.menu-panel.active .client-item:nth-child(9) { transition-delay: 0.5s; }
.menu-panel.active .client-item:nth-child(10) { transition-delay: 0.55s; }
.menu-panel.active .client-item:nth-child(11) { transition-delay: 0.6s; }
.menu-panel.active .client-item:nth-child(12) { transition-delay: 0.65s; }
.menu-panel.active .client-item:nth-child(13) { transition-delay: 0.7s; }
.menu-panel.active .client-item:nth-child(14) { transition-delay: 0.75s; }
.menu-panel.active .client-item:nth-child(15) { transition-delay: 0.8s; }
.menu-panel.active .client-item:nth-child(16) { transition-delay: 0.85s; }
.menu-panel.active .client-item:nth-child(17) { transition-delay: 0.9s; }
.menu-panel.active .client-item:nth-child(18) { transition-delay: 0.95s; }
.menu-panel.active .client-item:nth-child(19) { transition-delay: 1s; }

.client-item:hover {
    background: rgba(107, 70, 193, 0.3);
    transform: translateX(5px);
}

.nav-container {
    padding: 8px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.logo-container {
    position: fixed;
    top: 20px;
    left: 30px;
    z-index: 10000;
    display: flex;
    align-items: center;
    height: 80px;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.logo-img {
    height: 250px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transform: translateY(0);
    font-size: 1.1rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6B46C1, #8B5CF6);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    z-index: -1;
}

.nav-links a:hover::before {
    left: 0;
}

.nav-links a:hover {
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #6B46C1, #8B5CF6);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-text {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.arrow-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 10px;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
    width: 100%;
    max-width: none;
}

.service-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-section p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.objective {
    color: #6B46C1 !important;
    font-weight: 600;
}

.core-services {
    color: #6B46C1 !important;
    font-style: italic;
}

.instagram-embed {
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.instagram-embed iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 16px;
}

.explosive-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    animation: gentleBounce 2s ease-in-out infinite;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.animated-text {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.animated-benefits {
    list-style: none;
}

.benefit-item {
    padding: 12px 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideInLeft 0.8s ease-out;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    padding-left: 20px;
}

.benefit-item:nth-child(1) { animation-delay: 0.2s; }
.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.6s; }
.benefit-item:nth-child(4) { animation-delay: 0.8s; }

.benefit-item {
    cursor: pointer;
}

.benefit-item:hover {
    color: #6B46C1;
    border-left-color: #6B46C1;
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.3);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    animation: popupSlide 0.5s ease-out;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #6B46C1;
}

#popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

#popup-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

/* About Section */
.about {
    padding: 100px 20px;
    background: white;
}

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

.handwriting-label {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    font-family: 'Courier New', monospace;
    transform: rotate(-5deg);
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.capability-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: left;
}

.capability-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.capability-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.key-capability {
    font-size: 0.9rem;
    color: #6B46C1;
    font-weight: 600;
    font-style: italic;
}

/* Logo Loop */
.logo-loop-container {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.logo-loop {
    display: flex;
    width: 100%;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
    width: 200%;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

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

/* Contact Section */
.contact {
    padding: 100px 20px;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.contact-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.contact .container {
    position: relative;
    z-index: 3;
}

/* Section Labels */
.section-label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    font-family: 'Courier New', monospace;
    transform: rotate(-5deg);
}

.contact-label {
    color: white;
}

/* Marketing Stupidity Section */
.marketing-stupidity {
    padding: 15px 20px;
    background: #f0f0f0;
    text-align: center;
}

.stupidity-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.stupidity-line:hover {
    opacity: 0.8;
}

.stupidity-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.stupidity-text {
    font-size: 1.3rem;
    color: #666;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-style: italic;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: white;
    color: #6B46C1;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: white;
    color: black;
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    font-weight: 700;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 80px 10px 30px;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .navbar {
        top: 10px;
    }
    
    .logo-container {
        top: 10px;
        left: 15px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .staggered-menu {
        top: 10px;
        right: 15px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .menu-icon {
        font-size: 1.2rem;
    }
    
    /* Marketing Stupidity */
    .marketing-stupidity {
        padding: 10px 15px;
    }
    
    .stupidity-line {
        flex-direction: column;
        gap: 10px;
    }
    
    .stupidity-title {
        font-size: 1.3rem;
    }
    
    .stupidity-text {
        font-size: 1rem;
    }
    
    /* Services Section */
    .services {
        padding: 60px 0;
    }
    
    .explosive-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .animated-text {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-section {
        padding: 25px 20px;
    }
    
    .service-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-section p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    /* About Section */
    .about {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .capability-item {
        padding: 25px 20px;
    }
    
    .capability-item h3 {
        font-size: 1.1rem;
    }
    
    .capability-item p {
        font-size: 0.9rem;
    }
    
    .key-capability {
        font-size: 0.85rem;
    }
    
    /* Logo Loop */
    .logo-item img {
        height: 35px;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 15px;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .instagram-embed iframe {
        width: 100%;
        height: 400px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Section Labels */
    .section-label {
        font-size: 0.8rem;
        top: 15px;
        left: 15px;
    }
    
    .handwriting-label {
        font-size: 0.8rem;
        top: -15px;
        left: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 25px 15px;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    /* Popup */
    .popup-content {
        padding: 30px 20px;
        width: 95%;
        margin: 0 10px;
    }
    
    #popup-title {
        font-size: 1.2rem;
    }
    
    #popup-text {
        font-size: 1rem;
    }
    
    /* Menu Panel */
    .menu-panel {
        right: -10px;
        max-height: 300px;
        min-width: 180px;
    }
    
    .client-item {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .explosive-title {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .contact h2 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .service-section,
    .capability-item {
        padding: 20px 15px;
    }
    
    .stupidity-title {
        font-size: 1.1rem;
    }
    
    .stupidity-text {
        font-size: 0.9rem;
    }
}