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

:root {
    --industrial-gray: #4B5563;
    --industrial-gray-dark: #374151;
    --industrial-gray-light: #6B7280;
    --accent-orange: #F97316;
    --accent-orange-dark: #EA580C;
    --accent-orange-light: #FB923C;
    --bg-light: #F3F4F6;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #D1D5DB;
    --shadow-industrial: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-industrial-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--industrial-gray);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-industrial-lg);
    border-top: 3px solid var(--accent-orange);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

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

.cookie-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-1px);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-industrial);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--industrial-gray);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--industrial-gray);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--industrial-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--industrial-gray);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent-orange);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--accent-orange);
}

/* Hero Section - Industrial Slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--industrial-gray-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
    transition: transform 10s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.75) 0%, rgba(55, 65, 81, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 900px;
    width: calc(100% - 40px);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        top: 45%;
    }
    to {
        opacity: 1;
        top: 50%;
    }
}

.hero-badge {
    display: block;
    padding: 8px 20px;
    background: var(--accent-orange);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 auto 20px auto;
    border-radius: 4px;
    animation: badgeSlideIn 0.6s ease-out 0.2s both;
    text-align: center;
    width: fit-content;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        margin-left: -50px;
    }
    to {
        opacity: 1;
        margin-left: auto;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 auto 20px auto;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: titleFadeIn 0.8s ease-out 0.3s both;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 20px;
    margin: 0 auto 40px auto;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: subtitleFadeIn 0.8s ease-out 0.4s both;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.95;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--industrial-gray);
    border-color: white;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(75, 85, 99, 0.8);
    border: 2px solid var(--accent-orange);
    color: white;
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.hero-nav:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.hero-nav.prev {
    left: 30px;
}

.hero-nav.next {
    right: 30px;
}

/* Conveyor Animation */
.conveyor-belt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: repeating-linear-gradient(
        90deg,
        var(--industrial-gray) 0px,
        var(--industrial-gray) 40px,
        var(--industrial-gray-light) 40px,
        var(--industrial-gray-light) 80px
    );
    border-top: 3px solid var(--accent-orange);
    overflow: hidden;
    z-index: 4;
}

.conveyor-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border: 2px solid var(--industrial-gray-dark);
    border-radius: 4px;
    animation: moveConveyor 15s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.conveyor-item:nth-child(2) {
    animation-delay: -5s;
}

.conveyor-item:nth-child(3) {
    animation-delay: -10s;
}

@keyframes moveConveyor {
    0% {
        left: -100px;
    }
    100% {
        left: 100%;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--accent-orange);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--industrial-gray);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--industrial-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Roboto', sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-industrial-lg);
    border-left-color: var(--accent-orange-dark);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Processes Accordion - Warehouse Document Style */
.features-accordion {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 20px;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--industrial-gray);
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item:hover {
    border-left-color: var(--accent-orange);
}

.accordion-item.active {
    border-left-color: var(--accent-orange);
    box-shadow: var(--shadow-industrial);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-light);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--industrial-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.accordion-header::before {
    content: 'PROCESS';
    position: absolute;
    left: 25px;
    top: 5px;
    font-size: 10px;
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 1px;
}

.accordion-header {
    padding-top: 25px;
}

.accordion-header:hover {
    background: #E5E7EB;
}

.accordion-icon {
    font-size: 24px;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    background: var(--bg-white);
}

.accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 20px 25px;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Process Metrics */
.process-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 500;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: 'Roboto', sans-serif;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
    position: relative;
}

.metric-bar-fill {
    height: 100%;
    background: var(--accent-orange);
    border-radius: 4px;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

/* Barcode Scanning Animation */
.barcode-scan {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-light);
    border: 2px solid var(--industrial-gray);
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--industrial-gray);
    overflow: hidden;
}

.barcode-scan::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: scanBarcode 2s infinite;
}

@keyframes scanBarcode {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Solutions Section */
.solutions {
    background: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.solution-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-orange);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent var(--accent-orange) transparent transparent;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-industrial-lg);
}

.solution-card:hover::after {
    border-width: 0 50px 50px 0;
}

.solution-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.solution-card:hover .solution-image {
    filter: grayscale(0);
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 300;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-weight: 300;
}

.solution-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 18px;
}

/* Analytics Section */
.analytics {
    background: var(--bg-light);
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.analytics-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.analytics-text > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.analytics-feature {
    padding: 20px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-orange);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-orange);
}

.analytics-feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

.analytics-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-industrial-lg);
    border: 2px solid var(--border-color);
}

/* Integration Section */
.integration {
    background: var(--bg-white);
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.integration-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-industrial-lg);
    border: 2px solid var(--border-color);
}

.integration-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.integration-item {
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--industrial-gray);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.integration-item:hover {
    border-left-color: var(--accent-orange);
    transform: translateX(5px);
}

.integration-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Automation Section */
.automation {
    background: var(--bg-light);
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.automation-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-orange);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-industrial-lg);
}

.automation-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 0.3;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 20px;
    right: 20px;
}

.automation-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.automation-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-orange);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-industrial-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--accent-orange);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

.testimonial-author strong {
    display: block;
    color: var(--industrial-gray);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--accent-orange);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.contact-item a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-orange-dark);
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-orange);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--industrial-gray);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--industrial-gray);
    color: var(--bg-white);
    padding: 60px 0 30px;
    border-top: 4px solid var(--accent-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange-light);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
}

/* Policy Pages Styles */
.policy-page {
    padding: 40px 0 80px;
    background: var(--bg-light);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-orange);
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--industrial-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--industrial-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--industrial-gray);
    font-weight: 600;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 10px;
    font-weight: 300;
}

.policy-content a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 600px;
    background: var(--bg-white);
    padding: 60px 40px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--accent-orange);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
}

.thanks-content a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
}

.thanks-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-industrial-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 2px solid var(--accent-orange);
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .hero-nav.prev {
        left: 10px;
    }

    .hero-nav.next {
        right: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .analytics-content {
        grid-template-columns: 1fr;
    }

    .integration-content {
        grid-template-columns: 1fr;
    }

    .automation-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .policy-content {
        padding: 20px 15px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 24px;
    }
}
