/*
    Hundred Holdings - Professional Automotive Service Website
    Redesigned with modern UI/UX
    2026
*/

:root {
    /* INDUSTRIAL METAL COLORS - Mature, Professional */
    --primary-color: #1a1a1a;
    --primary-dark: #0d0d0d;
    --primary-light: #2d2d2d;
    --secondary-color: #8b6914;
    --accent-color: #c9a961;
    --accent-2: #6b5b2f;
    --metal-dark: #2c2c2c;
    --metal-light: #4a4a4a;
    --bronze: #cd7f32;
    --steel: #71797e;
    
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #fafafa;
    --bg-light: #f0f0f0;
    --bg-gray: #e8e8e8;
    --bg-dark: #1a1a1a;
    --bg-metal: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    --bg-bronze: linear-gradient(135deg, #cd7f32 0%, #8b6914 100%);
    
    --border-color: #3a3a3a;
    --border-width: 2px;
    --border-radius: 4px;
    
    /* INDUSTRIAL SHADOWS - Depth, Metal */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(201, 169, 97, 0.3);
    
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --header-height: 80px;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-white);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(58, 58, 58, 0.02) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(58, 58, 58, 0.02) 100px);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 105, 20, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Header - INDUSTRIAL METAL */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-metal);
    border-bottom: 3px solid var(--bronze);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

header.scrolled {
    box-shadow: var(--shadow-xl);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(201, 169, 97, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border-radius: 50%;
    box-shadow: 
        0 0 0 2px var(--metal-dark),
        120px 0 0 0 var(--bronze),
        120px 0 0 2px var(--metal-dark),
        0 40px 0 0 var(--bronze),
        0 40px 0 2px var(--metal-dark),
        120px 40px 0 0 var(--bronze),
        120px 40px 0 2px var(--metal-dark);
}

.logo:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(201, 169, 97, 0.3);
    transform: translateY(-2px);
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all var(--transition-base);
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius);
}

nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

nav a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

nav a:hover,
nav a.active {
    color: var(--accent-color);
    background: rgba(201, 169, 97, 0.1);
}

nav a:hover::before,
nav a.active::before,
nav a:hover::after,
nav a.active::after {
    opacity: 1;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.burger:hover span {
    background: var(--bg-white);
}

.burger.open span {
    background: var(--bg-white);
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Hero Section - INDUSTRIAL */
.main-hero {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 2rem 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.03) 0%, rgba(42, 42, 42, 0.03) 100%);
    border-bottom: 3px solid var(--bronze);
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.hero-background {
    display: none;
}

/* Content Wrapper */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    flex: 1;
}

/* Text Section */
.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-bronze);
    color: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.hero-label::before,
.hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--metal-dark);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-label::before {
    left: -12px;
}

.hero-label::after {
    right: -12px;
}

.label-dot {
    display: none;
}

.hero-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.title-highlight {
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(139, 105, 20, 0.1) 100%);
    padding: 0.2em 0.5em;
    border-left: 4px solid var(--bronze);
    border-radius: var(--border-radius);
    display: inline-block;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.title-highlight::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.title-gradient {
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.1) 0%, rgba(201, 169, 97, 0.1) 100%);
    padding: 0.2em 0.5em;
    border-left: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    display: inline-block;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.title-gradient::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-weight: 400;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.05) 0%, rgba(42, 42, 42, 0.05) 100%);
    border-left: 4px solid var(--bronze);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 1.25rem;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 1.25rem;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-action-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 0.75rem 2rem;
    border: 2px solid var(--bronze);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-btn-primary {
    background: var(--bg-bronze);
    color: var(--bg-white);
    border-color: var(--bronze);
}

.hero-btn-primary::before,
.hero-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--metal-dark);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary::before {
    left: -12px;
}

.hero-btn-primary::after {
    right: -12px;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #d68f42 0%, #b8751f 100%);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-btn-secondary {
    background: rgba(58, 58, 58, 0.8);
    color: var(--accent-color);
    border-color: var(--metal-light);
}

.hero-btn-secondary::before,
.hero-btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--metal-dark);
    border: 2px solid var(--metal-light);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary::before {
    left: -12px;
}

.hero-btn-secondary::after {
    right: -12px;
}

.hero-btn-secondary:hover {
    background: rgba(58, 58, 58, 1);
    color: var(--accent-color);
    border-color: var(--bronze);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.play-icon {
    display: none;
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-bronze);
    color: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    pointer-events: none;
}

/* Visual Section */
.hero-visual-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    border: 3px solid var(--bronze);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-image-container:hover .image-frame {
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 30px rgba(201, 169, 97, 0.3);
    transform: translateY(-4px);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.image-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 0;
}

.image-dec-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.image-dec-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: -40px;
    left: -40px;
    animation: float 10s ease-in-out infinite reverse;
}

/* Feature Cards */
.hero-feature-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-card {
    position: absolute;
    background: var(--bg-metal);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    animation: cardFloat 8s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 20px rgba(201, 169, 97, 0.2);
    transform: translateY(-4px);
}

.feature-card.card-1 {
    top: 10%;
    right: -40px;
    animation-delay: 0s;
}

.feature-card.card-2 {
    bottom: 20%;
    left: -50px;
    animation-delay: 2.5s;
}

.feature-card.card-3 {
    top: 60%;
    right: -30px;
    animation-delay: 5s;
}

@media (max-width: 1400px) {
    .feature-card.card-1 {
        right: -20px;
    }
    
    .feature-card.card-2 {
        left: -30px;
    }
    
    .feature-card.card-3 {
        right: -15px;
    }
}

.feature-card-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.feature-card-info {
    display: flex;
    flex-direction: column;
}

.feature-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-card-desc {
    font-size: 0.9rem;
    color: var(--bg-white);
    font-weight: 400;
    opacity: 0.9;
}

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

/* Stats Bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-metal);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    box-sizing: border-box;
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-stats-bar::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-stats-bar::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.stat-item-bar {
    text-align: center;
    min-width: 120px;
}

.stat-number-bar {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-text-bar {
    font-size: 0.9rem;
    color: var(--bg-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--bronze), transparent);
    position: relative;
}

.stat-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-hero {
        padding: 2rem 2rem 1.5rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-visual-section {
        order: -1;
        padding: 0;
    }
    
    .hero-text-section {
        text-align: center;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-action-bar {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .feature-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-hero {
        padding: 1.5rem 1.5rem 1rem;
        overflow-x: hidden;
    }
    
    .hero-content-wrapper {
        padding: 0;
    }
    
    .hero-visual-section {
        padding: 0;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-action-bar {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        margin: 1rem auto 0;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    }
    
    .feature-card {
        display: none;
    }
}

/* Section Styles */
.section {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 4rem 3rem;
    position: relative;
}

/* Decorative background patterns for sections - INDUSTRIAL */
#features::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

#benefits::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

#about::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: 0.05em;
    padding: 2rem 0;
    border-top: 3px solid var(--bronze);
    border-bottom: 3px solid var(--bronze);
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.section-content {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 400;
}

/* Features Slider */
.slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.slider-item {
    background: var(--bg-white);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    border-left: 4px solid var(--bronze);
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.slider-item::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.slider-item:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    border-color: var(--bronze);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.slider-item:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.slider-item:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.slider-item:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.slider-item:nth-child(5) .feature-icon {
    animation-delay: 0.8s;
}

.slider-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 0.02em;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--metal-light);
}

.slider-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
    font-size: 1rem;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--bronze);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--bronze);
}

.accordion-title {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
    position: relative;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    letter-spacing: 0.02em;
}

.accordion-title::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--bronze);
    transition: all var(--transition-base);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-metal);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.accordion-title.open {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(139, 105, 20, 0.1) 100%);
    color: var(--text-dark);
}

.accordion-title.open::after {
    content: '−';
    background: var(--bg-bronze);
    color: var(--bg-white);
    border-color: var(--accent-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 2rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
    font-size: 1rem;
    background: var(--bg-white);
}

.accordion-content.open {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid var(--metal-light);
}

/* Benefits Section */
#benefits .section-content ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

#benefits .section-content ul li {
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    margin-bottom: 1rem;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--bronze);
    font-weight: 400;
    font-size: 1rem;
}

#benefits .section-content ul li::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--bg-bronze);
    color: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#benefits .section-content ul li:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    border-color: var(--bronze);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

/* CTA Section - INDUSTRIAL */
.cta-section {
    background: var(--bg-metal);
    border: 3px solid var(--bronze);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    margin: 5rem auto;
    max-width: var(--max-width);
    position: relative;
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--bg-white);
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.9;
}

.cta-section a {
    background: var(--bg-bronze);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.cta-section a::before,
.cta-section a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--metal-dark);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.cta-section a::before {
    left: -12px;
}

.cta-section a::after {
    right: -12px;
}

.cta-section a:hover {
    background: linear-gradient(135deg, #d68f42 0%, #b8751f 100%);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Contact Form - INDUSTRIAL */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 400;
    transition: all var(--transition-base);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--bronze);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-form button {
    width: 100%;
    background: var(--bg-bronze);
    color: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #d68f42 0%, #b8751f 100%);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-form button:active {
    transform: translate(8px, 8px);
}

#contact .section-content > div {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

#contact .section-content > div::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

#contact .section-content strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#contact .section-content a {
    color: var(--bronze);
    text-decoration: none;
    transition: all var(--transition-base);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

#contact .section-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--bronze);
}

/* Footer - INDUSTRIAL */
footer {
    background: var(--bg-metal);
    color: var(--bg-white);
    padding: 4rem 3rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--bronze);
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--bronze);
}

.footer-section h4::after {
    display: none;
}

.footer-section p {
    line-height: 1.7;
    color: var(--bg-white);
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    font-weight: 400;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--bronze);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Cookie Popup */
#cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-metal);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    max-width: 90vw;
    width: 600px;
    position: relative;
}

#cookie-popup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

#cookie-popup.show {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

#cookie-popup a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    transition: all var(--transition-base);
}

#cookie-popup a:hover {
    border-bottom-color: var(--bronze);
}

#cookie-popup button {
    background: var(--bg-bronze);
    color: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#cookie-popup button:hover {
    background: linear-gradient(135deg, #d68f42 0%, #b8751f 100%);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 2rem 1.5rem;
    }
    
    .main-hero-content {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    header {
        padding: 0 1.5rem;
    }
    
    nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-metal);
        border: 2px solid var(--bronze);
        border-top: none;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        padding: 2rem;
        box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        gap: 1rem;
        z-index: 999;
    }
    
    nav a {
        color: var(--bg-white);
        background: rgba(201, 169, 97, 0.1);
        border: 2px solid var(--bronze);
        border-radius: var(--border-radius);
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        width: 100%;
        text-align: left;
        box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    nav a::before {
        left: 1rem;
        opacity: 1;
        width: 8px;
        height: 8px;
    }
    
    nav a::after {
        display: none;
    }
    
    nav a:hover,
    nav a.active {
        color: var(--accent-color);
        background: rgba(201, 169, 97, 0.2);
        border-color: var(--accent-color);
        box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: translateX(4px);
    }
    
    nav.open {
        display: flex;
    }
    
    .burger {
        display: flex;
    }
    
    .section {
        padding: 3rem 2rem;
    }
    
    .slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .main-hero {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .section {
        padding: 2.5rem 1.5rem;
        margin: 3rem auto;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #cookie-popup {
        width: calc(100vw - 2rem);
        padding: 1.5rem;
    }
    
    #cookie-popup.show {
        flex-direction: column;
        align-items: stretch;
    }
    
    #cookie-popup button {
        width: 100%;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

/* Statistics Section - INDUSTRIAL */
.statistics-section {
    background: var(--bg-metal);
    color: var(--bg-white);
    position: relative;
    border-top: 3px solid var(--bronze);
    border-bottom: 3px solid var(--bronze);
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.statistics-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.statistics-section .section-title {
    color: var(--accent-color);
    border-color: var(--bronze);
}

.statistics-section .section-title::before,
.statistics-section .section-title::after {
    background: var(--bronze);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--bronze);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* Testimonials Section - INDUSTRIAL */
.testimonials-section {
    background: var(--bg-white);
    position: relative;
    border-top: 1px solid var(--metal-light);
    border-bottom: 1px solid var(--metal-light);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--bg-white);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--bronze);
    padding: 2.5rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    border-color: var(--bronze);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--bronze);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--bronze);
    padding-left: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--metal-light);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-bronze);
    color: var(--bg-white);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
    pointer-events: none;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* Technology Section - INDUSTRIAL */
.technology-section {
    position: relative;
    overflow: visible;
    background: var(--bg-light);
    border-top: 1px solid var(--metal-light);
    border-bottom: 1px solid var(--metal-light);
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.tech-item {
    background: var(--bg-white);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--bronze);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.tech-item::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    border-color: var(--bronze);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.tech-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--metal-light);
}

.tech-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
    font-size: 1rem;
}

/* FAQ Section - INDUSTRIAL */
.faq-section {
    background: var(--bg-white);
    position: relative;
    border-top: 1px solid var(--metal-light);
    border-bottom: 1px solid var(--metal-light);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.faq-container {
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--bronze);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--bronze);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all var(--transition-base);
    user-select: none;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(139, 105, 20, 0.1) 100%);
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--bronze);
    font-weight: 300;
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin-left: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-metal);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-icon {
    background: var(--bg-bronze);
    color: var(--bg-white);
    border-color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 2rem;
    background: var(--bg-white);
    border-top: 1px solid var(--metal-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem 2rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
}

/* Decorative Elements - INDUSTRIAL */
.section {
    position: relative;
}

.section::after {
    display: none;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Policy Pages Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out;
}

.policy-content h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    padding: 1.5rem 0;
    border-top: 3px solid var(--bronze);
    border-bottom: 3px solid var(--bronze);
    position: relative;
}

.policy-content h1::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.policy-content h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.policy-content h2 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bronze);
    position: relative;
    padding-left: 1.5rem;
}

.policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.policy-content h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.policy-content ul,
.policy-content ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
    color: var(--text-medium);
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-content a {
    color: var(--bronze);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--bronze);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--bronze);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    padding: 0.8rem 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--bronze);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.back-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--metal-dark);
    border: 2px solid var(--bronze);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.back-link:hover {
    color: var(--bg-white);
    background: var(--bg-bronze);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    border-left: 4px solid var(--bronze);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.highlight-box::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.highlight-box p {
    margin-bottom: 0;
}

.highlight-box strong {
    color: var(--bronze);
}

/* Policy page section styling */
.policy-content .section {
    background: var(--bg-white);
    border: 2px solid var(--metal-light);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--bronze);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 3rem;
    margin: 2rem 0;
    position: relative;
}

.policy-content .section::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: -8px;
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border: 2px solid var(--metal-dark);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .highlight-box {
        padding: 1.2rem;
    }
    
    .back-link {
        width: 100%;
        justify-content: center;
    }
}
