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

:root {
    /* Automotive Color Scheme */
    --primary-orange: #ff6600;
    --primary-red: #e63946;
    --primary-blue: #0066cc;
    --primary-silver: #c0c0c0;
    --primary-dark: #1a1a1a;
    --primary-accent: #ff9900;
    --bg-dark: #0d1117;
    --bg-secondary: #161b22;
    --bg-accent: #1c2128;
    --text-light: #f0f0f0;
    --text-muted: #8b949e;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 102, 0, 0.2);
    --shadow-orange: 0 0 25px rgba(255, 102, 0, 0.5), 0 0 50px rgba(255, 102, 0, 0.3);
    --shadow-red: 0 0 25px rgba(230, 57, 70, 0.5), 0 0 50px rgba(230, 57, 70, 0.3);
    --shadow-blue: 0 0 25px rgba(0, 102, 204, 0.5), 0 0 50px rgba(0, 102, 204, 0.3);
    --shadow-silver: 0 0 25px rgba(192, 192, 192, 0.4), 0 0 50px rgba(192, 192, 192, 0.2);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    height: 100%;
    min-height: 100vh;
}

body > *:first-child:not(.header):not(.fullscreen-menu):not(#cookiePopup) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Decorative Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 102, 0, 0.02) 2px, rgba(255, 102, 0, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-orange), 
        var(--primary-red), 
        var(--primary-blue), 
        transparent);
    opacity: 0.6;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    text-shadow: var(--shadow-orange);
    transition: all 0.3s;
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-coral), var(--primary-gold));
    transition: width 0.3s;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    color: var(--primary-orange);
    text-shadow: var(--shadow-coral);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s;
    box-shadow: var(--shadow-orange);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--primary-red);
    box-shadow: var(--shadow-red);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.fullscreen-menu::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fullscreen-link {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.fullscreen-link::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s;
    box-shadow: var(--shadow-orange);
}

.fullscreen-link::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: width 0.3s;
    box-shadow: var(--shadow-red);
}

.fullscreen-link:hover {
    color: var(--primary-orange);
    text-shadow: var(--shadow-orange);
}

.fullscreen-link:hover::before,
.fullscreen-link:hover::after {
    width: 40px;
}

/* Hero Section - Asymmetric Grid - BRUTAL DESIGN */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    visibility: visible !important;
    opacity: 1 !important;
    border-bottom: 4px solid var(--primary-orange);
}

/* Decorative Elements for Hero - BRUTAL */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    opacity: 0.08;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    opacity: 0.08;
    clip-path: polygon(0 0, 50% 0, 100% 50%, 100% 100%, 0 50%);
    z-index: 0;
}

.neon-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 102, 0, 0.03) 2px, rgba(255, 102, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(230, 57, 70, 0.03) 2px, rgba(230, 57, 70, 0.03) 4px);
    z-index: 0;
    pointer-events: none;
}

/* Decorative Geometric Shapes - BRUTAL SQUARES */
.neon-lines-bg::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 4px solid var(--primary-orange);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.3;
    transform: rotate(45deg);
    z-index: 0;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
    pointer-events: none;
}

.neon-lines-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    border: 4px solid var(--primary-red);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.3;
    transform: rotate(-45deg);
    z-index: 0;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
    pointer-events: none;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Decorative Lines - BRUTAL */
.decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decorative-lines::before,
.decorative-lines::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-orange), 
        var(--primary-red), 
        var(--primary-orange));
    opacity: 0.4;
    box-shadow: 0 0 20px var(--primary-orange);
}

.decorative-lines::before {
    left: 20%;
}

.decorative-lines::after {
    right: 20%;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid !important;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    transform: none;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure parallax elements have no transform until initialized */
[data-parallax] {
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

[data-parallax].parallax-ready {
    transform: none;
}

.hero-main {
    display: flex;
    align-items: center;
    position: relative;
    transform: none !important;
    will-change: auto;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.hero-content-wrapper {
    width: 100%;
    position: relative;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.brutal-text {
    display: block;
    position: relative;
    text-shadow: 
        4px 4px 0px var(--primary-orange),
        8px 8px 0px var(--primary-red),
        0 0 40px rgba(255, 102, 0, 0.6);
    animation: brutalGlow 3s ease-in-out infinite;
    opacity: 1 !important;
    visibility: visible !important;
}

.brutal-text.accent {
    color: var(--primary-orange);
    text-shadow: 
        4px 4px 0px var(--primary-red),
        8px 8px 0px var(--primary-blue),
        0 0 50px rgba(255, 102, 0, 0.8);
}

.brutal-text.highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(4px 4px 0px rgba(255, 102, 0, 0.5)) drop-shadow(8px 8px 0px rgba(230, 57, 70, 0.5));
    animation: brutalGlow 3s ease-in-out infinite, brutalShift 5s ease-in-out infinite;
}

@keyframes brutalGlow {
    0%, 100% {
        filter: drop-shadow(4px 4px 0px rgba(255, 102, 0, 0.5)) drop-shadow(8px 8px 0px rgba(230, 57, 70, 0.5)) drop-shadow(0 0 30px rgba(255, 102, 0, 0.6));
    }
    50% {
        filter: drop-shadow(4px 4px 0px rgba(255, 102, 0, 0.8)) drop-shadow(8px 8px 0px rgba(230, 57, 70, 0.8)) drop-shadow(0 0 50px rgba(255, 102, 0, 0.9));
    }
}

@keyframes brutalShift {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

.title-line {
    display: block;
    opacity: 1 !important;
    transform: none !important;
    animation: none;
    visibility: visible !important;
}

.title-line.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: titleReveal 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    will-change: opacity, transform;
    visibility: visible;
}

.title-line.animate.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.title-line.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line.animate:nth-child(3) {
    animation-delay: 0.3s;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        3px 3px 0px rgba(255, 102, 0, 0.3),
        6px 6px 0px rgba(230, 57, 70, 0.3),
        0 0 40px rgba(255, 102, 0, 0.8);
    filter: drop-shadow(0 0 20px var(--primary-orange));
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        visibility: visible;
    }
    to {
        opacity: 1 !important;
        transform: translateY(0);
        visibility: visible;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    opacity: 1 !important;
    animation: none;
    visibility: visible !important;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 1 !important;
    animation: none;
    visibility: visible !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(0.5);
    }
}

.glass-btn {
    padding: 1.2rem 3rem;
    background: rgba(26, 26, 26, 0.9);
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        4px 4px 0px var(--primary-red),
        0 0 20px rgba(255, 102, 0, 0.4);
    z-index: 1;
}

.brutal-btn {
    position: relative;
    z-index: 1;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-orange);
    transition: width 0.2s ease;
    z-index: -1;
    pointer-events: none;
}

.glass-btn:hover::before {
    width: 100%;
}

.glass-btn:hover {
    color: var(--bg-dark);
    transform: translate(4px, 4px) !important;
    box-shadow: 
        2px 2px 0px var(--primary-red),
        0 0 40px rgba(255, 102, 0, 0.8);
}

.brutal-btn:hover {
    transform: translate(4px, 4px) !important;
}

.outline-btn {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 3px solid var(--primary-red);
    border-radius: 0;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    box-shadow: 
        4px 4px 0px var(--primary-orange),
        0 0 20px rgba(230, 57, 70, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.brutal-btn-outline {
    position: relative;
    z-index: 1;
}

.outline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-red);
    transition: width 0.2s ease;
    z-index: -1;
    pointer-events: none;
}

.outline-btn:hover::before {
    width: 100%;
}

.outline-btn:hover {
    color: var(--bg-dark);
    transform: translate(4px, 4px) !important;
    box-shadow: 
        2px 2px 0px var(--primary-orange),
        0 0 40px rgba(230, 57, 70, 0.8);
}

.brutal-btn-outline:hover {
    transform: translate(4px, 4px) !important;
}

.brutal-btn .btn-text,
.brutal-btn-outline .btn-text {
    position: relative;
    z-index: 3;
    display: inline-block;
    pointer-events: none;
}

.glass-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-side {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: none !important;
    will-change: auto;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    border: 4px solid var(--primary-orange);
    box-shadow: 
        8px 8px 0px var(--primary-red),
        0 0 40px rgba(255, 102, 0, 0.5);
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(26, 26, 46, 0.9));
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) contrast(1.4) grayscale(20%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(50px);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    background: var(--primary-orange);
    animation-delay: 0s;
}

.float-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    background: var(--primary-orange);
    animation-delay: 2s;
}

.float-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    background: var(--primary-blue);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
    border-bottom: 2px solid rgba(255, 102, 0, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-orange), transparent);
    opacity: 0.5;
}

/* Brutal Shapes */
.brutal-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.brutal-shape {
    position: absolute;
    border: 4px solid;
    opacity: 0.15;
    animation: brutalRotate 20s linear infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    border-color: var(--primary-orange);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    border-color: var(--primary-red);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(-45deg);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
    animation-duration: 15s;
    animation-direction: reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    border-color: var(--primary-blue);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(30deg);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
    animation-duration: 25s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    border-color: var(--primary-orange);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(0deg);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
    animation-duration: 18s;
    animation-direction: reverse;
}

@keyframes brutalRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Visual Grid */
.visual-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    z-index: 1;
}

.grid-item {
    background: rgba(255, 102, 0, 0.05);
    border: 2px solid rgba(255, 102, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(230, 57, 70, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.grid-item:hover {
    border-color: var(--primary-orange);
    box-shadow: inset 0 0 30px rgba(255, 102, 0, 0.3);
}

.item-1 {
    background-image: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
}

.item-2 {
    background-image: linear-gradient(225deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
}

.item-3 {
    background-image: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
}

.item-4 {
    background-image: linear-gradient(315deg, rgba(255, 102, 0, 0.1), rgba(230, 57, 70, 0.05));
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 102, 0, 0.03) 10px, rgba(255, 102, 0, 0.03) 20px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--primary-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
    box-shadow: var(--shadow-orange);
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Section Styles */
section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
    z-index: 1;
}

/* First section should start right after header - exact header height */
section:first-of-type:not(.hero-section) {
    padding-top: 90px !important;
    padding-bottom: clamp(60px, 10vw, 120px);
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hero section specific padding */
.hero-section:first-of-type {
    padding-top: 100px !important;
}

/* Decorative Section Dividers */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-orange), 
        var(--primary-red), 
        var(--primary-blue), 
        transparent);
    opacity: 0.6;
}

/* Hide divider for first section */
section:first-of-type::before {
    display: none;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    text-shadow: var(--shadow-orange);
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* About Section - Statistics - BRUTAL */
.about-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    position: relative;
    border-top: 4px solid var(--primary-red);
    border-bottom: 4px solid var(--primary-orange);
}

.about-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    border: 4px solid var(--primary-red);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.2;
    transform: rotate(45deg);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.5);
}

.decorative-circle {
    position: absolute;
    top: 10%;
    left: 3%;
    width: 200px;
    height: 200px;
    border: 4px solid var(--primary-orange);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.2;
    transform: rotate(-45deg);
    z-index: 0;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    background: rgba(13, 13, 13, 0.95);
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 
        6px 6px 0px var(--primary-red),
        0 0 20px rgba(255, 102, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(230, 57, 70, 0.15));
    opacity: 0;
    transition: opacity 0.2s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: var(--primary-red);
    box-shadow: 
        8px 8px 0px var(--primary-orange),
        0 0 40px rgba(255, 102, 0, 0.6);
    transform: translate(-2px, -2px);
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: var(--shadow-orange);
    line-height: 1;
}

.stat-plus {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-orange);
}

.stat-label {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-block {
    background: rgba(13, 13, 13, 0.95);
    border: 3px solid var(--primary-red);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.2s;
    box-shadow: 
        6px 6px 0px var(--primary-orange),
        0 0 20px rgba(230, 57, 70, 0.3);
}

.info-block:hover {
    border-color: var(--primary-orange);
    box-shadow: 
        8px 8px 0px var(--primary-red),
        0 0 40px rgba(255, 102, 0, 0.6);
    transform: translate(-2px, -2px);
}

.info-block h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 0px var(--primary-orange),
        0 0 15px rgba(230, 57, 70, 0.6);
}

.info-block p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Services Section - Horizontal Slider - BRUTAL */
.services-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    border-top: 4px solid var(--primary-orange);
    border-bottom: 4px solid var(--primary-red);
    margin-top: 0 !important;
    margin-bottom: 0;
}

/* First section (services) should start right after fixed header */
.services-section:first-of-type {
    padding-top: 90px !important;
    padding-bottom: clamp(60px, 10vw, 120px);
}

/* Decorative Elements - BRUTAL */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    opacity: 0.15;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.5);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    opacity: 0.15;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(-45deg);
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.5);
}

.services-slider-wrapper {
    position: relative;
    margin-top: 3rem;
}

.services-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.service-slide {
    flex: 0 0 calc(33.333% - 1.5rem);
    scroll-snap-align: start;
    min-width: 350px;
}

.glass-card {
    background: rgba(13, 13, 13, 0.95);
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 
        6px 6px 0px var(--primary-red),
        0 0 20px rgba(255, 102, 0, 0.3);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(230, 57, 70, 0.1));
    opacity: 0;
    transition: opacity 0.2s;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    border-color: var(--primary-red);
    box-shadow: 
        8px 8px 0px var(--primary-orange),
        0 0 40px rgba(255, 102, 0, 0.6);
    transform: translate(-2px, -2px);
}

.service-icon {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.4), rgba(230, 57, 70, 0.4));
    opacity: 0;
    transition: opacity 0.2s;
}

.glass-card:hover .service-icon::after {
    opacity: 1;
}

.glass-card h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.glass-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(13, 13, 13, 0.95);
    border: 3px solid var(--primary-orange);
    border-radius: 0;
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        4px 4px 0px var(--primary-red),
        0 0 20px rgba(255, 102, 0, 0.4);
}

.slider-btn:hover {
    border-color: var(--primary-red);
    box-shadow: 
        6px 6px 0px var(--primary-orange),
        0 0 30px rgba(255, 102, 0, 0.7);
    background: var(--primary-orange);
    color: var(--bg-dark);
    transform: translateY(-50%) translate(-2px, -2px);
}

.slider-prev {
    left: -30px;
}

.slider-next {
    right: -30px;
}

/* Products Section - Asymmetric */
.products-section {
    background: var(--bg-secondary);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 217, 61, 0.02) 10px,
            rgba(255, 217, 61, 0.02) 20px
        );
    pointer-events: none;
    z-index: 0;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    filter: blur(30px);
    animation: morphShape 10s ease-in-out infinite;
    z-index: 0;
}

.products-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-top: 3rem;
}

.product-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}

.product-large {
    grid-row: 1 / 3;
    height: 600px;
}

.product-medium {
    height: 290px;
}

.product-small {
    height: 290px;
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
    filter: brightness(0.6);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.3), rgba(255, 107, 107, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.product-item:hover .product-image {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item:hover .product-content {
    transform: translateY(0);
    opacity: 1;
}

.product-content h3 {
    color: var(--primary-orange);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-orange);
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.product-content ul {
    list-style: none;
    padding: 0;
}

.product-content ul li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-dark);
    position: relative;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-teal);
    transform: translateY(-5px);
}

.benefit-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.benefit-item h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Process Section */
.process-section {
    background: var(--bg-secondary);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--primary-orange);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 20px;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
    transform: translateY(-5px);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-orange);
}

.process-step h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: var(--bg-dark);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-coral), 
        var(--primary-gold), 
        var(--primary-teal), 
        var(--primary-orange));
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.contact-item h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--primary-orange);
    text-shadow: var(--shadow-orange);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 217, 61, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 217, 61, 0.6);
}

/* Footer */
.footer {
    background: #0f0f1a;
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-coral), 
        var(--primary-gold), 
        var(--primary-teal), 
        var(--primary-orange));
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-size: 1.3rem;
    text-shadow: var(--shadow-orange);
}

.footer-section p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary-orange);
    text-shadow: var(--shadow-coral);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-coral), var(--primary-gold));
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-muted);
}

.cookie-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-orange);
}

.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 217, 61, 0.5);
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-orange);
    position: relative;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red), var(--primary-blue));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.policy-content h1 {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: var(--shadow-orange);
}

.policy-date {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--glass-border);
}

.policy-content h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s;
}

.policy-content a:hover {
    color: var(--primary-orange);
    text-shadow: var(--shadow-coral);
}

/* Thanks Page */
.thanks-section {
    padding: 150px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
    min-height: calc(100vh - 200px);
    position: relative;
}

.thanks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--primary-orange) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, var(--primary-red) 0%, transparent 50%);
    opacity: 0.1;
    z-index: 0;
}

.thanks-content {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-orange);
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
    box-shadow: var(--shadow-orange);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    text-shadow: var(--shadow-orange);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-submessage {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-orange);
}

.thanks-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 217, 61, 0.5);
}

.thanks-btn.secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.thanks-btn.secondary:hover {
    background: rgba(255, 217, 61, 0.1);
    box-shadow: var(--shadow-orange);
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.thanks-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.thanks-contact a {
    color: var(--primary-orange);
    text-decoration: underline;
    font-weight: 600;
}

.thanks-contact a:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 55% 45%;
        gap: 3rem;
    }
    
    .products-asymmetric {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-side {
        order: -1;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .products-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .product-large {
        grid-row: auto;
        height: 400px;
    }
    
    .product-medium,
    .product-small {
        height: 300px;
    }
    
    .service-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .glass-btn,
    .outline-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
        margin: 0.5rem 0;
    }
    
    .brutal-shape {
        opacity: 0.08;
    }
    
    .hero-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .badge-line {
        width: 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-slide {
        flex: 0 0 100%;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-message {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .product-large,
    .product-medium,
    .product-small {
        height: 250px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-container {
        max-width: 1800px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    
    .hero-container {
        max-width: 2200px;
    }
    
    .section-title {
        font-size: 5rem;
    }
}
