/* ============================================
   Lazy Designers - NEO-BRUTALIST DIGITAL AGENCY
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
    --acid-green: #CCFF00;
    --neon-pink: #FF00FF;
    --cyber-cyan: #00FFFF;
    --deep-black: #0A0A0A;
    --off-white: #F5F5F5;
    --dark-gray: #1A1A1A;
    --accent-red: #FF6B6B;
    --accent-gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--deep-black);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   VERTICAL NAVIGATION
   ============================================ */

.vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 80px;
    background: var(--dark-gray);
    border-right: 3px solid var(--acid-green);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    transition: width 0.3s ease;
}

.vertical-nav:hover {
    width: 200px;
}

.nav-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--acid-green);
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.vertical-nav:hover .nav-logo {
    transform: scale(1.1);
}

.nav-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--off-white);
    text-decoration: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: all 0.3s ease;
    opacity: 0.6;
    letter-spacing: 2px;
}

.vertical-nav:hover .nav-item {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
}

.nav-item:hover,
.nav-item.active {
    color: var(--acid-green);
    opacity: 1;
    transform: translateX(10px) rotate(0deg);
}

.nav-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.nav-social a {
    color: var(--off-white);
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-social a:hover {
    color: var(--acid-green);
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================
   MAGAZINE-STYLE HERO
   ============================================ */

.hero-magazine {
    position: relative;
    min-height: 100vh;
    margin-left: 80px;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    padding: 40px 80px 100px 80px;
    overflow: hidden;
}

.hero-magazine::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(204, 255, 0, 0.03) 2px,
            rgba(204, 255, 0, 0.03) 4px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.hero-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--acid-green);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { 
    animation-delay: 0.4s;
    color: var(--acid-green);
}
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.offset {
    padding-left: 120px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-meta {
    display: flex;
    gap: 80px;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-label {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.meta-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--acid-green);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-whatsapp {
    padding: 20px 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--acid-green);
    color: var(--deep-black);
    border-color: var(--acid-green);
}

.cta-primary:hover {
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 var(--off-white);
}

.cta-whatsapp {
    background: transparent;
    color: var(--off-white);
    border-color: var(--off-white);
}

.cta-whatsapp:hover {
    background: var(--off-white);
    color: var(--deep-black);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 var(--acid-green);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 80px;
    background: var(--acid-green);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* ============================================
   SERVICES HORIZONTAL SCROLL
   ============================================ */

.services-scroll {
    margin-left: 80px;
    padding: 150px 0;
    background: var(--dark-gray);
    position: relative;
}

.section-header-break {
    padding: 0 80px;
    margin-bottom: 80px;
}

.section-title-massive {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.6;
}

.services-horizontal {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 80px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.services-horizontal::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 400px;
    background: var(--deep-black);
    border: 3px solid var(--off-white);
    padding: 60px 40px;
    scroll-snap-align: start;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--acid-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--acid-green);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.2);
}

.service-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 80px;
    font-weight: 700;
    color: var(--acid-green);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-icon {
    font-size: 48px;
    color: var(--acid-green);
    margin-bottom: 30px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.service-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.metric {
    padding: 8px 16px;
    background: var(--dark-gray);
    border: 1px solid var(--acid-green);
    color: var(--acid-green);
}

.service-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--off-white);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--acid-green);
    padding-left: 10px;
}

/* ============================================
   WHY CHOOSE US - BRUTALIST
   ============================================ */

.why-choose-brutalist {
    margin-left: 80px;
    padding: 150px 0;
    background: var(--deep-black);
}

.why-content {
    background: var(--acid-green);
    color: var(--deep-black);
    padding: 100px 60px;
    position: relative;
}

.why-title {
    font-size: clamp(50px, 8vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 60px;
}

.why-stats {
    display: flex;
    gap: 60px;
}

.stat-block {
    font-family: 'JetBrains Mono', monospace;
}

.stat-num {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.why-reasons {
    padding: 80px 60px;
    background: var(--dark-gray);
    display: grid;
    gap: 60px;
}

.reason-item {
    display: flex;
    gap: 30px;
    align-items: start;
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateX(20px);
}

.reason-icon {
    font-size: 40px;
    color: var(--acid-green);
    flex-shrink: 0;
}

.reason-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.reason-item p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-section {
    margin-left: 80px;
    padding: 150px 80px;
    background: var(--dark-gray);
}

.process-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    margin-bottom: 100px;
    letter-spacing: -0.02em;
}

.process-timeline {
    display: grid;
    gap: 80px;
}

.process-step {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 75px;
    top: 100px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--acid-green);
    opacity: 0.3;
}

.step-marker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 80px;
    font-weight: 700;
    color: var(--acid-green);
    line-height: 1;
}

.step-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.step-content p {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO MASONRY
   ============================================ */

.portfolio-preview {
    margin-left: 80px;
    padding: 150px 80px;
    background: var(--deep-black);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.portfolio-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.view-all {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--off-white);
    text-decoration: none;
    letter-spacing: 2px;
    border: 3px solid var(--off-white);
    padding: 20px 40px;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: var(--acid-green);
    color: var(--deep-black);
    border-color: var(--acid-green);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 var(--off-white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    grid-auto-rows: 300px;
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.portfolio-card {
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray), var(--deep-black));
    border: 3px solid var(--off-white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--acid-green);
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .card-overlay {
    transform: translateY(0);
}

.card-category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--acid-green);
    margin-bottom: 15px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.card-metrics {
    display: flex;
    gap: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.card-metrics span {
    padding: 6px 12px;
    background: var(--acid-green);
    color: var(--deep-black);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    margin-left: 80px;
    padding: 150px 80px;
    background: var(--dark-gray);
}

.testimonials-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--deep-black);
    border: 3px solid var(--off-white);
    padding: 50px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 30px;
    font-size: 200px;
    color: var(--acid-green);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    border-color: var(--acid-green);
    transform: translateY(-10px);
}

.testimonial-rating {
    color: var(--acid-green);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* ============================================
   CTA MASSIVE
   ============================================ */

.cta-massive {
    margin-left: 80px;
    padding: 200px 80px;
    background: var(--acid-green);
    color: var(--deep-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-massive::before {
    content: 'LET\'S TALK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 300px;
    font-weight: 700;
    opacity: 0.05;
    white-space: nowrap;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 25px 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--deep-black);
    color: var(--acid-green);
    border-color: var(--deep-black);
}

.cta-btn-primary:hover {
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 var(--deep-black);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--deep-black);
    border-color: var(--deep-black);
}

.cta-btn-secondary:hover {
    background: var(--deep-black);
    color: var(--acid-green);
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.3);
}

/* ============================================
   MASSIVE FOOTER
   ============================================ */

.footer-massive {
    margin-left: 80px;
    min-height: 80vh;
    background: var(--deep-black);
    padding: 100px 80px 50px;
    border-top: 3px solid var(--acid-green);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin-bottom: 100px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--acid-green);
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 0;
}

.footer-social a:hover {
    background: var(--acid-green);
    border-color: var(--acid-green);
    color: var(--deep-black);
    transform: rotate(360deg);
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    opacity: 0.6;
}

.footer-bottom p {
    margin: 10px 0;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite; 
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .vertical-nav {
        width: 60px;
    }
    
    .vertical-nav:hover {
        width: 180px;
    }
    
    .hero-magazine,
    .services-scroll,
    .why-choose-brutalist,
    .process-section,
    .portfolio-preview,
    .testimonials-section,
    .cta-massive,
    .footer-massive {
        margin-left: 60px;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .section-title-massive,
    .portfolio-title,
    .testimonials-title,
    .process-title {
        font-size: 60px;
        word-break: break-all;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .vertical-nav {
        width: 0;
        opacity: 0;
    }
    .section-header-break {
    padding: 0 0px;
    word-break: break-all;
} 

    .nav-item {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
}
    
    .hero-magazine,
    .services-scroll,
    .why-choose-brutalist,
    .process-section,
    .portfolio-preview,
    .testimonials-section,
    .cta-massive,
    .footer-massive {
        margin-left: 0;
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .title-line.offset {
        padding-left: 30px;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-horizontal {
        padding: 40px 20px;
    }
    
    .service-card {
        min-width: 300px;
    }
    
    .why-choose-brutalist .row {
        flex-direction: column;
    }
    
    .why-reasons {
    
    padding: 80px 6px;
        
    }
    .reason-item{
        display: block;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 30px;
        display: block;
    }
    
    .step-marker {
        font-size: 50px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}