/*
    Centennial Group - Брутальный индустриальный дизайн автосервиса
    Жесткий, агрессивный стиль с акцентом на механику и профессионализм
*/

:root {
    --primary-color: #ff4500;
    --primary-dark: #cc3700;
    --primary-light: #ff6b35;
    --accent-color: #ffd700;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --surface: #2a2a2a;
    --metal-bg: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --glass-bg: rgba(255, 69, 0, 0.05);
    --glass-border: rgba(255, 69, 0, 0.3);
    --text-light: #ffffff;
    --text-muted: #888888;
    --border-color: rgba(255, 69, 0, 0.2);
    --shadow-brutal: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 69, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Impact', 'Arial Black', 'Franklin Gothic Heavy', sans-serif;
    background: var(--dark-bg);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 69, 0, 0.03) 2px, rgba(255, 69, 0, 0.03) 4px),
        radial-gradient(circle at 20% 30%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-weight: 600;
}

/* Брутальный индустриальный фон */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 69, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    z-index: -2;
    opacity: 0.6;
}

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

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 69, 0, 0.4);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.99);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 1), 0 0 30px rgba(255, 69, 0, 0.5);
    border-bottom-width: 4px;
}

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

.logo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--text-light);
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-family: 'Impact', 'Arial Black', sans-serif;
    padding: 0;
    margin: 0;
}

.logo:hover {
    color: var(--primary-color);
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
    outline: none;
    border: none;
}

.logo:focus {
    outline: none;
    border: none;
}

.logo:active {
    outline: none;
    border: none;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
}

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

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

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

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border: 2px solid transparent;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-shadow: none;
}

.nav a:hover::before {
    width: 100%;
}

/* ===== HERO SECTION - Асимметричная сетка ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0;
    overflow: hidden;
    padding-top: 100px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Частицы на фоне */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 25s infinite;
}

.particle:nth-child(2n) {
    background: var(--text-muted);
    animation-duration: 30s;
}

.particle:nth-child(3n) {
    background: var(--surface);
    animation-duration: 35s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(150px) scale(1.5);
        opacity: 0;
    }
}

.hero__main {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.hero__content {
    max-width: 750px;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero__content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    position: relative;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.hero__content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cta-btn {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 0;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

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

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

.cta-btn:hover {
    background: var(--primary-dark);
    border-color: var(--accent-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 1),
        0 0 30px rgba(255, 69, 0, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    text-shadow: none;
}

.hero__sidebar {
    position: relative;
    z-index: 2;
    background: var(--metal-bg);
    border-left: 4px solid var(--primary-color);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    box-shadow: inset -10px 0 30px rgba(0, 0, 0, 0.8);
    width: 100%;
    box-sizing: border-box;
}

.hero__stat {
    text-align: center;
    padding: 2rem;
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero__stat:hover::before {
    opacity: 1;
}

.hero__stat:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 69, 0, 0.5);
}

.hero__stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.hero__stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 10rem 0;
    position: relative;
    background: var(--metal-bg);
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

.features h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

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

.feature-card {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.5);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 10rem 0;
    background: var(--dark-bg);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.about-section h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

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

.stat-card {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.5);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ===== ACCORDION SECTION ===== */
.accordion-section {
    padding: 10rem 0;
    background: var(--metal-bg);
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

.accordion-section h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 2rem;
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.accordion-item:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 69, 0, 0.5);
}

.accordion-title {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-title.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-title.active,
.accordion-title:hover {
    color: var(--primary-color);
    background: rgba(255, 69, 0, 0.1);
    text-shadow: none;
}

.accordion-content {
    display: none;
    padding: 0 2.5rem 2.5rem;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.1rem;
    animation: slideDown 0.4s ease;
}

.accordion-content.open {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ANALYTICS, APPOINTMENT, MARKETING SECTIONS ===== */
.analytics-section,
.appointment-section,
.marketing-section {
    padding: 8rem 0;
    background: var(--metal-bg);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.analytics-section h2,
.appointment-section h2,
.marketing-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.analytics-img-wrap,
.appointment-img-wrap,
.marketing-img-wrap {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.analytics-img-wrap img,
.appointment-img-wrap img,
.marketing-img-wrap img {
    width: 100%;
    max-width: 900px;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 0;
    border: 4px solid var(--primary-color);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(255, 69, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
    filter: contrast(1.1) brightness(0.9);
}

.analytics-img-wrap:hover img,
.appointment-img-wrap:hover img,
.marketing-img-wrap:hover img {
    transform: scale(1.03);
    border-color: var(--accent-color);
    border-width: 6px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 1),
        0 0 60px rgba(255, 69, 0, 0.8),
        inset 0 0 40px rgba(255, 69, 0, 0.3);
    filter: contrast(1.2) brightness(1);
}

.analytics-section p,
.appointment-section p,
.marketing-section p {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 10rem 0;
    background: var(--dark-bg);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.testimonial-quote {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 2rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto 4rem;
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(80px) scale(0.9);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    position: relative;
}

.testimonial-content {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 4rem;
    text-align: center;
    position: relative;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.testimonial-quote {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 2rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.testimonial-content p {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.author-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.author-role {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.15);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 69, 0, 0.8);
}

.testimonial-dots {
    display: flex;
    gap: 1.2rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 10rem 0;
    background: var(--metal-bg);
    position: relative;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

.pricing-section h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.5);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.6);
}

.pricing-card.featured::before {
    transform: scaleX(1);
    height: 6px;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 
        inset 0 0 40px rgba(255, 69, 0, 0.4),
        0 16px 50px rgba(0, 0, 0, 1),
        0 0 40px rgba(255, 69, 0, 0.8);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 3px solid var(--accent-color);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6);
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.8rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 1.4rem 2.5rem;
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Impact', 'Arial Black', sans-serif;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured .pricing-btn {
    background: var(--primary-color);
    border-color: var(--accent-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6);
}

.pricing-btn:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.8);
    text-shadow: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 10rem 0;
    background: var(--dark-bg);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.contact-section h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1.2rem 1.8rem;
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    resize: none;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 
        inset 0 0 20px rgba(255, 69, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.5);
    background: rgba(255, 69, 0, 0.05);
}

.contact-form button {
    background: var(--primary-color);
    color: var(--text-light);
    border: 3px solid var(--primary-color);
    border-radius: 0;
    padding: 1.4rem 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Impact', 'Arial Black', sans-serif;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.contact-form button:hover {
    background: var(--primary-dark);
    border-color: var(--accent-color);
    border-width: 4px;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 1),
        0 0 30px rgba(255, 69, 0, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    text-shadow: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.contact-info-item {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.contact-info-item:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: translateX(12px);
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 69, 0, 0.5);
}

.contact-info-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.9;
    font-size: 1.1rem;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--metal-bg);
    border-top: 4px solid var(--primary-color);
    padding: 5rem 0 2.5rem;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.8);
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__about h3,
.footer__contacts h3,
.footer__nav h3,
.footer__policies h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.footer__about p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.1rem;
}

.footer__contacts ul,
.footer__nav ul,
.footer__policies ul {
    list-style: none;
}

.footer__contacts li,
.footer__nav li,
.footer__policies li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer__nav a,
.footer__policies a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav a:hover,
.footer__policies a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 3px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-weight: 600;
}

/* ===== POLICY PAGES ===== */
.policy-section {
    padding: 10rem 0 5rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 4rem;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.policy-content h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.policy-updated {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.policy-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.policy-content h3 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.15rem;
}

.policy-content ul {
    margin: 2rem 0;
    padding-left: 2.5rem;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.15rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

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

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

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--metal-bg);
    border: 3px solid var(--primary-color);
    border-radius: 0;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    max-width: 90%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup span {
    color: var(--text-light);
    font-size: 1rem;
}

.cookie-popup a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-popup button {
    background: var(--primary-color);
    color: var(--text-light);
    border: 3px solid var(--primary-color);
    border-radius: 0;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Impact', 'Arial Black', sans-serif;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 69, 0, 0.5);
}

.cookie-popup button:hover {
    background: var(--primary-dark);
    border-color: var(--accent-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(255, 69, 0, 0.8);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 100px 0 3rem;
    }

    .hero__main {
        padding: 2rem 2rem;
    }

    .hero__sidebar {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        flex-direction: row;
        justify-content: space-around;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .hero__stat {
        padding: 1.5rem 1rem;
    }

    .hero__stat-number {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .hero__stat-label {
        font-size: 0.85rem;
    }

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

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--dark-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        backdrop-filter: blur(30px);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav ul {
        flex-direction: column;
        gap: 3rem;
    }

    .nav a {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .nav a::before {
        bottom: -15px;
        height: 4px;
    }

    .nav a:hover {
        transform: translateY(-8px);
        color: var(--primary-color);
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 90px 0 2rem;
        min-height: auto;
    }

    .hero__main {
        padding: 1.5rem 1rem;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .hero__content p {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        max-width: 100%;
    }

    .hero__sidebar {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1.5rem;
        border-top: 3px solid var(--primary-color);
    }

    .hero__stat {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .hero__stat-number {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero__stat-label {
        font-size: 0.8rem;
    }

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

    .contact-info-item:hover {
        transform: translateX(0);
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }

    .testimonial-content {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-quote {
        font-size: 4rem;
        top: 0.5rem;
        left: 1rem;
    }

    .cookie-popup {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 1.5rem;
    }

    .hero__main {
        padding: 1rem 0.75rem;
    }

    .hero__content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 1rem;
        letter-spacing: 0.03em;
    }

    .hero__content p {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        letter-spacing: 0.05em;
    }

    .hero__sidebar {
        padding: 1.5rem 0.75rem;
        gap: 1rem;
    }

    .hero__stat {
        padding: 1rem 0.75rem;
    }

    .hero__stat-number {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 0.5rem;
    }

    .hero__stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

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

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 0 1rem;
    }

    .hero__main {
        padding: 0.75rem 0.5rem;
    }

    .hero__content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero__content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero__sidebar {
        padding: 1rem 0.5rem;
        gap: 0.75rem;
    }

    .hero__stat {
        padding: 0.75rem 0.5rem;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__stat-label {
        font-size: 0.65rem;
    }
}

/* Parallax effect for scroll */
@media (prefers-reduced-motion: no-preference) {
    .hero__main {
        will-change: transform;
    }

    .feature-card {
        will-change: transform;
    }
}

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .container {
        max-width: 2200px;
    }

    .hero__content h1 {
        font-size: 9rem;
    }

    .hero__content p {
        font-size: 2rem;
    }

    .features__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    max-width: 100%;
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    height: 120px;
    border-radius: 0;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 4px solid var(--accent-color);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.6);
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: none;
}

.timeline-content {
    flex: 1;
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    margin: 0 3rem;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: translateY(-8px);
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.5);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .timeline::before {
        left: 60px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.team-member:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.5);
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-member p {
    line-height: 1.8;
}

/* ===== FEATURE ICON ===== */
.feature-icon {
    color: var(--primary-color);
    display: block;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--metal-bg);
    border: 3px solid var(--border-color);
    border-radius: 0;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        inset 0 0 30px rgba(255, 69, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.5);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    text-align: center;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.service-card > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-btn {
    display: block;
    text-align: center;
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0;
    border: 3px solid var(--primary-color);
    font-weight: 900;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Impact', 'Arial Black', sans-serif;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.5);
}

.service-btn:hover {
    background: var(--primary-dark);
    border-color: var(--accent-color);
    border-width: 4px;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.8);
    text-shadow: none;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    border: 4px solid var(--accent-color);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 69, 0, 0.6);
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-shadow: none;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

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

