/* System Root Tokens & Color Palette */
:root {
    --bg-main: #0a0c10;
    --bg-card: rgba(18, 22, 31, 0.75);
    --bg-card-hover: rgba(26, 32, 46, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(255, 94, 0, 0.35);
    
    --primary-orange: #ff5e00;
    --primary-glow: rgba(255, 94, 0, 0.4);
    --accent-gold: #ffb703;
    
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hide Breadcrumbs */
.breadcrumbs, .breadcrumb, nav[aria-label="breadcrumb"] {
    display: none !important;
}

/* Layout Containers */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.medium-container {
    max-width: 900px;
}

.section-padding {
    padding: 100px 0;
}

.section-dark-card {
    background: linear-gradient(180deg, rgba(14, 17, 24, 0.5) 0%, rgba(8, 10, 14, 0.8) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Typography Helpers */
h1, h2, h3, h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-orange) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.sub-heading {
    display: inline-block;
    color: var(--primary-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 94, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.glass-panel-glow {
    background: rgba(18, 22, 31, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color-glow);
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.15);
    border-radius: 20px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    max-width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #ff5e00 0%, #d44800 100%);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.7);
    transform: translateY(-2px);
}

.btn-outline-glow {
    background: transparent;
    color: var(--text-white);
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.2);
}

.btn-outline-glow:hover {
    background: var(--primary-orange);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 6px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-orange);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: rgba(14, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-deep);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-white);
}

.header-phone:hover {
    color: var(--primary-orange);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-orange);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
}

.hero-card-glow {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color-glow);
    box-shadow: var(--shadow-deep);
}

.spec-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0) 100%);
}

.mini-spec-list {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

/* Trust Bar */
.trust-bar {
    background: rgba(14, 18, 26, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.trust-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.trust-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.trust-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 12, 16, 0.85);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    z-index: 2;
}

.product-badge.accent {
    color: var(--primary-orange);
    border-color: var(--primary-glow);
}

.product-badge.warning {
    color: var(--accent-gold);
}

.product-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-features {
    margin-bottom: 25px;
}

.product-features li {
    font-size: 0.875rem;
    color: var(--text-main);
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.product-features li::before {
    content: "•";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.product-footer {
    margin-top: auto;
}

/* Spec Spotlight */
.spec-spotlight-card {
    padding: 40px;
}

.spec-spotlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.tag-pill {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.specs-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.spec-name {
    color: var(--text-muted);
}

.spec-val {
    font-weight: 600;
    color: var(--text-white);
}

.spec-spotlight-image img {
    border-radius: 12px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.margin-top-lg {
    margin-top: 25px;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.adv-card {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
}

.adv-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.adv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Config Section */
.config-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.config-card {
    padding: 35px;
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.badge-status {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-muted);
}

.badge-status.accent {
    color: var(--accent-gold);
    background: rgba(255, 183, 3, 0.1);
}

.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.plus-list li::before {
    content: "+";
    color: var(--primary-orange);
}

/* Services Grid */
.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-box {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.link-arrow:hover {
    gap: 10px;
}

/* Production Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    padding: 30px;
    text-align: center;
}

.avatar-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.3);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.avatar-box svg {
    width: 36px;
    height: 36px;
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card .desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Accordion FAQ */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.accordion-header .icon {
    font-size: 1.4rem;
    color: var(--primary-orange);
    transition: transform var(--transition-fast);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 25px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Lead Form */
.form-card-wrapper {
    padding: 45px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.main-lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 12, 16, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.2);
}

.form-footer {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.form-privacy a {
    color: var(--text-main);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #06080b;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 15px;
}

.footer-about {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-line svg {
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.social-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;

    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin: 0 auto;
    background: rgba(14, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color-glow);
    border-radius: 12px;
    padding: 16px 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-main);
    line-height: 1.4;
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-flex {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-spotlight-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(10, 12, 16, 0.98);
        backdrop-filter: blur(20px);
        padding: 25px;
        border-bottom: 1px solid var(--border-color);
        display: none;
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        box-shadow: var(--shadow-deep);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 8px;
        border-left: 2px solid var(--primary-orange);
        border-radius: 4px;
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .config-grid {
        grid-template-columns: 1fr;
    }
    
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card-wrapper {
        padding: 25px;
    }

    .spec-spotlight-card {
        padding: 25px;
    }

    .spec-spotlight-image img {
        height: 240px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 14px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header-phone span {
        display: none;
    }
    
    .brand-subtitle {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-flex {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .spec-row {
        flex-wrap: wrap;
        gap: 4px;
    }
}

@media (max-width: 350px) {
    .gallery-item, .service-box img {
        height: 160px;
    }
}