/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Автозапчасти Color Scheme */
    --primary-black: #1a2332;
    --primary-white: #ffffff;
    --accent-orange: #ff6b35;
    --accent-red: #e74c3c;
    --accent-blue: #3498db;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-gray: #7f8c8d;
    --border-thick: 4px;
    --border-thicker: 6px;
    --border-thickest: 8px;
}

body {
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.4;
    color: var(--text-dark);
    background-color: var(--primary-white);
    overflow-x: hidden;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* Header Styles - Brutalist */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    padding: 0.8rem 0;
    z-index: 1000;
    border-bottom: var(--border-thickest) solid var(--primary-black);
    box-shadow: 0 4px 0 0 var(--accent-orange);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--primary-black);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: var(--border-thick) solid var(--primary-black);
    padding: 0.4rem 1.2rem;
    background: var(--accent-orange);
}

.logo:hover {
    background: var(--primary-black);
    color: var(--accent-orange);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 var(--accent-red);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.desktop-nav .nav-link {
    color: var(--primary-white);
    background: var(--primary-black);
    text-decoration: none;
    font-weight: 900;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.6rem 1.2rem;
    border: var(--border-thick) solid var(--primary-black);
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 4px 4px 0 0 var(--accent-orange);
}

.desktop-nav .nav-link:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    border-color: var(--primary-black);
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 0 var(--accent-red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--primary-black);
    border: var(--border-thick) solid var(--primary-black);
    cursor: pointer;
    padding: 0.7rem;
    z-index: 1001;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    transition: all 0.2s ease;
    display: block;
}

.menu-toggle:hover {
    background: var(--accent-orange);
    border-color: var(--primary-black);
}

.menu-toggle:hover span {
    background: var(--primary-black);
}

/* Fullscreen Menu - Brutalist */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-white);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: var(--border-thickest) solid var(--primary-black);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 2001;
    background: var(--primary-black);
    border: var(--border-thick) solid var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--primary-white);
    transition: all 0.2s ease;
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}

.menu-close:hover {
    background: var(--accent-red);
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.fullscreen-nav-link {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-black);
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 1rem 2rem;
    border: var(--border-thick) solid transparent;
    display: inline-block;
    word-wrap: break-word;
}

.fullscreen-nav-link:hover {
    background: var(--accent-orange);
    border-color: var(--primary-black);
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0 0 var(--accent-red);
}

/* Hero Section - Brutalist */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: var(--primary-white);
    border-bottom: var(--border-thickest) solid var(--primary-black);
}

.particles-canvas {
    display: none; /* Убираем частицы для брутализма */
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-main-content {
    position: relative;
}

.hero-text-wrapper {
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--primary-black);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-line {
    display: block;
    color: var(--primary-black);
    text-shadow: 6px 6px 0 var(--accent-orange);
}

.title-line.highlight {
    color: var(--primary-white);
    background: var(--accent-orange);
    padding: 0.5rem 1rem;
    display: inline-block;
    border: var(--border-thick) solid var(--primary-black);
    box-shadow: 6px 6px 0 0 var(--accent-red);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-side-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-feature-card {
    padding: 2rem;
    background: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
    transition: all 0.2s ease;
}

.hero-feature-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0 0 var(--accent-blue);
    background: var(--accent-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-black);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1rem;
    border: var(--border-thick) solid var(--primary-black);
}

.hero-feature-card h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.hero-feature-card p {
    color: var(--text-dark);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-black);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    z-index: 2;
}

.scroll-line {
    width: 4px;
    height: 50px;
    background: var(--primary-black);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Brutalist Card Styles */
.glass-card {
    background: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
    padding: 2.5rem;
    transition: all 0.2s ease;
    box-shadow: 8px 8px 0 0 var(--accent-orange);
}

.glass-card:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 var(--accent-red);
}

.glass-button {
    background: var(--primary-black);
    border: var(--border-thick) solid var(--primary-black);
    color: var(--primary-white);
    padding: 1.2rem 3rem;
    font-weight: 900;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    box-shadow: 6px 6px 0 0 var(--accent-yellow);
}

.glass-button:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 0 var(--accent-red);
}

.cta-button-outline {
    background: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
    color: var(--primary-black);
    box-shadow: 6px 6px 0 0 var(--accent-blue);
}

.cta-button-outline:hover {
    background: var(--accent-blue);
    color: var(--primary-white);
    box-shadow: 10px 10px 0 0 var(--primary-black);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
    border-bottom: var(--border-thickest) solid var(--primary-black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 6px 6px 0 var(--accent-orange);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
}

/* About Section - Statistics */
.about-section {
    background: var(--primary-white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-text-content {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-intro {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-black);
    color: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
}

.stat-card:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0 0 var(--accent-red);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
    word-wrap: break-word;
}

.stat-card:hover .stat-number {
    color: var(--primary-white);
}

.stat-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-card:hover .stat-label {
    color: var(--primary-black);
}

.about-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border: var(--border-thickest) solid var(--primary-black);
    box-shadow: 12px 12px 0 0 var(--accent-orange);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-wrapper:hover {
    box-shadow: 16px 16px 0 0 var(--accent-red);
}

/* Services Section - Horizontal Slider */
.services-section {
    background: var(--bg-light);
}

.services-slider-wrapper {
    position: relative;
    overflow: hidden;
    border: var(--border-thick) solid var(--primary-black);
}

.services-slider {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-right: var(--border-thick) solid var(--primary-black);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    border-right: var(--border-thick) solid var(--primary-black);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-slide:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 3rem;
    background: var(--primary-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.service-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.service-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-black);
    border-top: var(--border-thick) solid var(--primary-black);
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border: var(--border-thick) solid var(--primary-black);
    color: var(--primary-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 900;
}

.slider-btn:hover {
    background: var(--primary-black);
    color: var(--accent-orange);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 0 var(--accent-red);
}

.slider-btn svg {
    stroke-width: 3;
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--primary-black);
}

/* Products Section - Asymmetric Layout */
.products-section {
    background: var(--primary-white);
}

.products-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.product-card-large {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: var(--border-thick) solid var(--primary-black);
}

.product-card-small {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: var(--border-thick) solid var(--primary-black);
}

.product-card-large img,
.product-card-small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-bottom: var(--border-thick) solid var(--primary-black);
}

.product-card-large:hover img,
.product-card-small:hover img {
    transform: scale(1.05);
}

.product-card-large:hover,
.product-card-small:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0 0 var(--accent-blue);
}

.product-info {
    padding: 2rem;
    background: var(--primary-white);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-info h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.product-info p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Technology Section - Interactive Diagram */
.technology-section {
    background: var(--bg-light);
}

.tech-diagram-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    border: var(--border-thickest) solid var(--primary-black);
    background: var(--primary-white);
}

.tech-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-bottom: var(--border-thickest) solid var(--primary-black);
}

.tech-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-features-interactive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-feature-point {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.point-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    border: var(--border-thick) solid var(--primary-black);
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 0 var(--primary-black);
}

.tech-feature-point:hover .point-marker {
    background: var(--accent-orange);
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 0 var(--accent-red);
}

.feature-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    background: var(--accent-orange);
    border: var(--border-thick) solid var(--primary-black);
    padding: 1.5rem;
    box-shadow: 8px 8px 0 0 var(--primary-black);
}

.tech-feature-point:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

.feature-tooltip h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.feature-tooltip p {
    color: var(--text-dark);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Process Section */
.process-section {
    background: var(--primary-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--primary-black);
    color: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
}

.process-step:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px 0 0 var(--accent-red);
}

.step-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step:hover .step-number {
    color: var(--primary-white);
}

.process-step h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--primary-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.process-step:hover h3 {
    color: var(--primary-black);
}

.process-step p {
    color: var(--primary-white);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step:hover p {
    color: var(--primary-black);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-panel h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    word-wrap: break-word;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: var(--border-thick) solid var(--primary-black);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item a {
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid var(--accent-orange);
    font-weight: 900;
}

.contact-item a:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    padding: 0.2rem 0.5rem;
    border-bottom-color: var(--primary-black);
}

.contact-form-panel {
    padding: 3rem;
    background: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-weight: 900;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    background: var(--primary-white);
    border: var(--border-thick) solid var(--primary-black);
    color: var(--text-dark);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-family: inherit;
    transition: all 0.2s ease;
    font-weight: 700;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--accent-orange);
    color: var(--primary-white);
    box-shadow: 4px 4px 0 0 var(--primary-black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
    font-weight: 400;
}

.submit-btn {
    margin-top: 1rem;
    border: none;
    font-family: inherit;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 4rem 0 2rem;
    border-top: var(--border-thickest) solid var(--accent-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-section p {
    color: var(--primary-white);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
}

.footer-section a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 900;
    border-bottom: 2px solid transparent;
}

.footer-section a:hover {
    color: var(--primary-white);
    border-bottom-color: var(--accent-orange);
    background: var(--accent-orange);
    padding: 0.2rem 0.5rem;
    color: var(--primary-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: var(--border-thick) solid var(--accent-orange);
    color: var(--primary-white);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    padding: 2rem;
    box-shadow: 0 -8px 0 0 var(--accent-orange);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: var(--border-thickest) solid var(--primary-black);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
}

.cookie-content a {
    color: var(--primary-black);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-orange);
    font-weight: 900;
    transition: all 0.2s ease;
}

.cookie-content a:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    padding: 0.2rem 0.5rem;
}

.cookie-btn {
    padding: 1rem 2.5rem;
    background: var(--primary-black);
    border: var(--border-thick) solid var(--primary-black);
    color: var(--primary-white);
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    box-shadow: 4px 4px 0 0 var(--accent-orange);
}

.cookie-btn:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 0 var(--accent-red);
}

/* Responsive Design */
@media (max-width: 968px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-side-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .service-slide {
        grid-template-columns: 1fr;
    }
    
    .products-asymmetric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card-large {
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .products-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-large {
        grid-column: span 1;
    }
    
    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 8rem 0 3rem;
        min-height: auto;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .glass-button {
        width: 100%;
        text-align: center;
    }
    
    .services-slider {
        gap: 0;
    }
    
    .slider-controls {
        gap: 1rem;
    }
    
    .tech-diagram-wrapper {
        min-height: 400px;
    }
    
    .tech-image-container {
        height: 400px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .title-line.highlight {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-feature-card {
        padding: 1.5rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .fullscreen-nav-link {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    
    .hero-container {
        max-width: 2000px;
    }
}

/* Thanks Page Styles */
.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 8px 8px 0 var(--accent-orange);
}

.thanks-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.thanks-content a {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-black);
    border: var(--border-thick) solid var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 900;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 6px 6px 0 0 var(--accent-yellow);
}

.thanks-content a:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 0 var(--accent-red);
}

/* Policy Pages Styles */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.policy-header {
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 8px 8px 0 var(--accent-orange);
}

.policy-header p {
    color: var(--text-dark);
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 700;
}

.policy-content {
    line-height: 1.9;
}

.policy-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary-black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.policy-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--primary-black);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.policy-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.policy-content a {
    color: var(--primary-black);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-orange);
    font-weight: 900;
    transition: all 0.2s ease;
}

.policy-content a:hover {
    background: var(--accent-orange);
    color: var(--primary-white);
    padding: 0.2rem 0.5rem;
}

.policy-content strong {
    color: var(--primary-black);
    font-weight: 900;
}
