	/* CSS Reset */
	*, *::before, *::after {
		box-sizing: border-box;
	}	
	body {
		margin: 0;
		font-family: 'Inter', sans-serif;
		background-color: #121212;
		color: #fff;
		line-height: 1.5;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		--white: #e0e0e0;
		--orange: #ff6f00;
		--orange-dark: #cc5800;
		--orange-light: #ffa726;
		--dark: #0d0d0d;
		--bg-black: #121212;
		--bg-black-alt: #1e1e1e;
		--text-light: #f0f0f0;
		--cta-button: #ff8c42;
		--tool-orange: #ff6b35;
		/* scrollbar */
		scrollbar-width: thin;
		scrollbar-color: var(--orange) #333;
	}
	body::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}
	body::-webkit-scrollbar-thumb {
		background-color: var(--orange);
		border-radius: 6px;
	}
	body::-webkit-scrollbar-track {
		background-color: #333;
	}
	a {
		color: var(--orange);
		text-decoration: none;
		transition: color 0.3s ease;
	}
	a:hover, a:focus {
		color: var(--orange-dark);
		outline: none;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: 0 0 1rem 0;
		color: var(--orange);
	}
	/* Layout */
	header {
		position: sticky;
		top: 0;
		height: 64px;
		background: rgba(18, 18, 18, 0.75);
		backdrop-filter: saturate(180%) blur(10px);
		
		align-items: center;
		justify-content: space-between;
		padding: 0 24px;
		border-bottom: 1px solid rgba(255, 111, 0, 0.3);
		z-index: 1000;
		box-shadow: 0 2px 20px rgba(255, 107, 53, 0.2);
	}
	.top-container {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 2rem;
	}
	.logo {
		font-weight: 800;
		font-size: clamp(1.25rem, 2vw, 1.75rem);
		letter-spacing: 2px;
		color: var(--white);
		user-select: none;
		text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
	}
	.logo span {
		color: var(--orange);
	}
	nav.desktop-nav {
		display: flex;
		gap: 28px;
		align-items: center;
	}
	nav.desktop-nav ul {
		display: flex;
		list-style: none;
		gap: 2rem;
	}
	nav.desktop-nav a {
		font-weight: 600;
		font-size: 1rem;
		padding: 8px 12px;
		border-radius: 6px;
		transition: background-color 0.25s ease;
	}
	nav.desktop-nav a:hover, nav.desktop-nav a:focus {
		background-color: var(--orange-dark);
		color: #222;
		outline: none;
	}
	button#menu-toggle {
		background: none;
		border: none;
		color: var(--orange);
		font-size: 32px;
		cursor: pointer;
		display: none;
	}
	/* Welcome container */
	.welcome {
		background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(26, 26, 26, 0.9)), 
		url('ui_img/Toolhub_splash.jpg');
		background-size: cover;
		background-position: center;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: var(--text-light);
		padding: 0 1rem;
		position: relative;
		overflow: hidden;
	}

	.welcome::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(45deg, rgba(32, 128, 128, 0.1), transparent);
		z-index: 1;
	}

	.welcome-content {
		position: relative;
		z-index: 2;
	}
	
	.welcome-content h1 {
		font-size: 3.5rem;
		margin-bottom: 1rem;
		animation: fadeInUp 1s ease;
		color: var(--orange);
		text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
	}

	.welcome-content p {
		font-size: 1.2rem;
		margin-bottom: 2rem;
		animation: fadeInUp 1s ease 0.2s both;
		color: var(--text-light);
	}

	.cta-button {
		display: inline-block;
		background: linear-gradient(135deg, var(--orange-dark), var(--cta-button));
		color: var(--dark);
		padding: 1rem 2rem;
		text-decoration: none;
		border-radius: 8px;
		font-weight: bold;
		transition: all 0.3s ease;
		animation: fadeInUp 1s ease 0.4s both;
		box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
		border: none;
		cursor: pointer;
	}

	.cta-button:hover {
		transform: translateY(-3px);
		box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
		background: linear-gradient(135deg, var(--cta-button), var(--orange-dark));
	}
	/* Navigation in sidebar */
	.filter-list {
		list-style: none;
		margin: 0;
		padding: 0;
		color: var(--text-light);
		font-weight: 500;
		font-size: 0.95rem;
	}
	.filter-list li {
		margin: 8px 0;
		display: flex;
		align-items: center;
		gap: 10px;
		cursor: pointer;
		user-select: none;
		border-radius: 6px;
		padding: 6px 8px;
		transition: background-color 0.2s ease;
	}
	.filter-list li.selected {
		background-color: var(--orange);
		color: #222;
		font-weight: 700;
	}
	.filter-list li:hover:not(.selected) {
		background-color: rgba(255,111,0,0.2);
	}
	
	/* Search Bar */
	.search-filters {
		padding: 3rem 2rem;
		background: rgba(45, 45, 45, 0.8);
		margin: 2rem auto;
		max-width: 1200px;
		border-radius: 15px;
		box-shadow: 0 8px 25px rgba(0,0,0,0.3);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 107, 53, 0.2);
	}
	.search-bar {
		display: flex;
		gap: 1rem;
		margin-bottom: 2rem;
	}
	.search-bar input {
		width: 100%;
		padding: 12px 48px 12px 16px;
		font-size: 1rem;
		border: none;
		border-radius: 32px;
		background: var(--bg-black-alt);
		color: var(--text-light);
		transition: box-shadow 0.3s ease;
	}
	.search-bar input::placeholder {
		color: #bbb;
	}
	.search-bar input:focus {
		outline: none;
		box-shadow: 0 0 10px var(--orange);
		background: #222;
	}
	.search-bar .material-icons {
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		color: var(--orange);
		pointer-events: none;
		font-size: 28px;
	}
	.category-filter {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		margin-bottom: 2rem;
	}
	.category-btn {
		padding: 0.8rem 1.5rem;
		border: 2px solid var(--orange-dark);
		background: rgba(255, 107, 53, 0.1);
		color: var(--orange-dark);
		border-radius: 25px;
		cursor: pointer;
		transition: all 0.3s ease;
		font-weight: bold;
	}
	.category-btn.active,
	.category-btn:hover {
		background: var(--orange-dark);
		color: var(--dark);
		box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
		transform: translateY(-2px);
	}
	.price-filter {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		align-items: center;
	}
	.price-filter span {
		color: var(--orange-dark);
		font-weight: bold;
	}
	.price-btn {
		padding: 0.6rem 1.2rem;
		border: 2px solid var(--orange-dark);
		background: rgba(255, 107, 53, 0.1);
		color: var(--orange-dark);
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	.price-btn.active,
	.price-btn:hover {
		background: var(--orange-dark);
		color: var(--dark);
		box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
	}
	
	/* Tool Cards Grid */
	.tools {
		padding: 2rem;
	}

	.tools-container {
		max-width: 1200px;
		margin: 0 auto;
	}
	.section-title {
		text-align: center;
		margin-bottom: 3rem;
		font-size: 2.5rem;
		color: var(--orange-dark);
		text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
	}
	.tool-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 32px;
	}
	.tool-card {
		background: var(--bg-black-alt);
		border-radius: 16px;
		border: 2px solid rgba(255, 107, 53, 0.2);
		overflow: hidden;
		display: flex;
		flex-direction: column;
		box-shadow: 0 4px 8px rgba(255,111,0,0.15);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		position: relative;
	}
	.tool-card:hover,
	.tool-card:focus-within {
		transform: translateY(-6px);
		box-shadow:
		  0 8px 16px rgba(255,111,0,0.4);
		outline: none;
	}
	.tool-image {
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		border-bottom: 1px solid rgba(255,111,0,0.3);
	}
	.tool-info {
		padding: 1.5rem;
	}
	.tool-title {
		font-size: 1.25rem;
		color: var(--text-light);
		margin-bottom: 0.5rem;
	}
	.tool-description {
		color: #b0b0b0;
		margin-bottom: 1rem;
		line-height: 1.5;
	}
	.tool-category {
		display: inline-block;
		background: rgba(255, 107, 53, 0.2);
		color: var(--tool-orange);
		padding: 0.3rem 0.8rem;
		border-radius: 15px;
		font-size: 0.8rem;
		margin-bottom: 0.5rem;
		border: 1px solid rgba(255, 107, 53, 0.3);
	}
	.tool-price {
		color: var(--tool-orange);
		font-size: 1.5rem;
		font-weight: bold;
		margin: 0.5rem 0;
		text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
	}
	.tool-deposit {
		color: var(--orange-light);
		font-weight: bold;
		margin-bottom: 1rem;
	}
	/*
	.tool-meta {
		
	}
	*/
	
	/* Footer */
	footer {
		background: rgba(13, 13, 13, 0.95);
		color: var(--text-light);
		padding: 3rem 2rem;
		margin-top: 4rem;
		border-top: 1px solid rgba(255, 107, 53, 0.3);
	}

	.footer-content {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
	}

	.footer-section h3 {
		margin-bottom: 1rem;
		color: var(--orange-dark);
	}

	.footer-section p {
		margin-bottom: 0.5rem;
	}

	.footer-section a {
		color: var(--text-light);
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.footer-section a:hover {
		color: var(--orange-dark);
	}

	.footer-bottom {
		text-align: center;
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		color: #888;
	}
	
	/* Responsive */
	@media (max-width: 1023px) {
		.sidebar {
		  position: fixed;
		  top: 64px;
		  left: 0;
		  width: 280px;
		  height: calc(100vh - 64px);
		  transform: translateX(-100%);
		  transition: transform 0.3s ease;
		  z-index: 1500;
		}
		.sidebar.show {
		  transform: translateX(0);
		}
		main {
		  margin-left: 0;
		  padding: 16px;
		}
		button#menu-toggle {
		  display: block;
		}
		nav.desktop-nav {
		  display: none;
		}
	}

	/* style from page end */
	.toast-container {
		position: fixed;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		background: var(--orange);
		color: #222;
		padding: 16px 28px;
		border-radius: 24px;
		font-size: 1rem;
		font-weight: 700;
		box-shadow: 0 4px 12px rgba(255,111,0,0.7);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: 2000;
		pointer-events: none;
		user-select: none;
		max-width: 90vw;
		text-align: center;
	}
	.error-message {
		color: #ff6023;
		font-size: 0.85rem;
		min-height: 20px;
		margin-top: 2px;
		margin-bottom: 6px;
		user-select: none;
	}
	label {
		display: block;
		margin-top: 16px;
		font-weight: 600;
		font-size: 1rem;
		color: var(--orange-dark);
	}
	input, select {
		width: 100%;
		padding: 10px 14px;
		border-radius: 10px;
		border: 1px solid #444;
		background-color: #222;
		color: #eee;
		font-size: 1rem;
		font-family: 'Inter', sans-serif;
		transition: border-color 0.3s ease;
	}
	input:focus, select:focus {
		border-color: var(--orange);
		outline: none;
		background-color: #1a1a1a;
	}
	.sr-only {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0,0,0,0);
		white-space: nowrap;
		border: 0;
	}
	/* Отступы между основными блоками контента */
section {
    margin-bottom: 30px; /* Отступ снизу от каждого раздела */
}

/* Отступы внутри основного контента */
main {
    padding: 20px;
}

/* Для списков адресов — чтобы пункты не сливались */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Обновления главного экрана, преимуществ, условий и мобильной версии */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.hero-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 107, 53, 0.45));
}

.hero-lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--orange);
}

.cta-button-secondary:hover,
.cta-button-secondary:focus {
    color: var(--dark);
    background: linear-gradient(135deg, var(--cta-button), var(--orange-dark));
}

.benefits,
.conditions {
    padding: 4rem 2rem;
    background: #161616;
}

.benefits-container,
.conditions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid,
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.benefit-card,
.condition-card {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.benefit-card .material-icons {
    color: #fff;
    font-size: 42px;
    display: inline-flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange-dark), var(--cta-button));
    margin-bottom: 18px;
}

.benefit-card h3,
.condition-card h3 {
    color: var(--orange-light);
    margin-bottom: 10px;
}

.benefit-card p,
.condition-card p {
    color: #d4d4d4;
    margin: 0;
}

.search-filters {
    scroll-margin-top: 86px;
}

.tool-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tool-rent-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange-dark), var(--cta-button));
    color: var(--dark);
    font-weight: 800;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.tool-rent-button:hover,
.tool-rent-button:focus {
    color: var(--dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 64px;
        padding: 0 12px;
    }

    .top-container {
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    nav.desktop-nav {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    nav.desktop-nav ul {
        padding: 0;
        margin: 0;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav.desktop-nav a {
        font-size: 0.9rem;
        padding: 6px 8px;
    }

    button#menu-toggle {
        display: none;
    }

    .welcome {
        min-height: calc(100vh - 64px);
        height: auto;
        padding: 92px 18px 64px;
        align-items: flex-start;
    }

    .hero-brand {
        flex-direction: column;
        gap: 8px;
    }

    .hero-logo {
        width: 74px;
        height: 74px;
    }

    .welcome-content h1 {
        font-size: 2.35rem;
        margin-bottom: 0.25rem;
    }

    .welcome-content p {
        font-size: 1rem;
        max-width: 340px;
        margin-bottom: 1.35rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: min(100%, 320px);
        margin: 0 auto;
    }

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

    .benefits,
    .conditions,
    .tools {
        padding: 2.5rem 1rem;
    }

    .search-filters {
        margin: 1rem;
        padding: 1.5rem 1rem;
        scroll-margin-top: 118px;
    }

    .category-filter,
    .price-filter {
        gap: 0.6rem;
    }

    .category-btn,
    .price-btn {
        width: 100%;
    }

    .tool-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Черно-оранжевый каталог в стиле страницы "О нас" */
.search-filters {
    background: linear-gradient(180deg, rgba(34,34,34,.96), rgba(18,18,18,.98));
    border: 1px solid rgba(255,111,0,.36);
    box-shadow: 0 16px 42px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.035);
}
.search-bar input {
    border: 1px solid rgba(255,111,0,.28);
    background: #0f0f0f;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.category-btn,
.price-btn {
    color: #fff;
    border-color: rgba(255,111,0,.55);
    background: rgba(15,15,15,.72);
}
.category-btn.active,
.category-btn:hover,
.price-btn.active,
.price-btn:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
}
.tools {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,111,0,.13), transparent 34%),
        linear-gradient(180deg, #111 0%, #0f0f0f 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.tools .section-title {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-shadow: 0 8px 26px rgba(0,0,0,.42);
    position: relative;
}
.tools .section-title::after {
    content: '';
    display: block;
    width: 74px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
    margin: 12px auto 0;
}
.tool-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    align-items: stretch;
}
.tool-card {
    background: linear-gradient(180deg, rgba(35,35,35,.96), rgba(22,22,22,.98));
    border: 1px solid rgba(255,111,0,.36);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 14px 34px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.03);
    overflow: hidden;
}
.tool-card:hover,
.tool-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(255,151,31,.75);
    box-shadow: 0 18px 44px rgba(0,0,0,.42), 0 0 0 1px rgba(255,111,0,.24);
}
.tool-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(255,111,0,.30);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 14px;
}
.tool-info { padding: 0 2px 2px; }
.tool-category {
    align-self: flex-start;
    background: rgba(255,111,0,.14);
    border: 1px solid rgba(255,111,0,.42);
    color: var(--orange-light);
    font-weight: 800;
}
.tool-title {
    color: #fff;
    font-weight: 950;
    line-height: 1.2;
    margin-top: 4px;
}
.tool-description {
    color: #cfcfcf;
    font-size: .95rem;
}
.tool-meta {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 12px;
    margin-top: auto;
}
.tool-price { color: var(--orange-light); }
.tool-deposit { color: #fff; }
.tool-rent-button {
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}
.tool-rent-button:hover,
.tool-rent-button:focus { color: #fff; }

/* Модальное окно выбора пункта проката */
.rent-modal[hidden] { display: none; }
.rent-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 18px;
}
.rent-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.76);
    backdrop-filter: blur(6px);
}
.rent-modal__dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: min(86vh, 820px);
    overflow: auto;
    background: linear-gradient(180deg, rgba(34,34,34,.98), rgba(14,14,14,.99));
    border: 1px solid rgba(255,111,0,.55);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.62);
    padding: 26px;
    color: #fff;
}
.rent-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,111,0,.45);
    background: #111;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.rent-modal__eyebrow {
    margin: 0 0 4px;
    color: var(--orange-light);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
}
.rent-modal__dialog h2 { color: #fff; margin-bottom: 6px; }
.rent-modal__tool { margin: 0 0 18px; color: #d4d4d4; }
.rent-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 14px;
}
.rent-location-card {
    border: 1px solid rgba(255,111,0,.32);
    border-radius: 16px;
    background: rgba(20,20,20,.84);
    padding: 16px;
}
.rent-location-card h3 { color: #fff; margin-bottom: 10px; }
.rent-location-card p { margin: 6px 0; color: #d0d0d0; }
.rent-location-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.rent-location-actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
}
.rent-call { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; }
.rent-chat { border: 1px solid var(--orange); color: #fff; }
.rent-route { grid-column: 1 / -1; border: 1px solid rgba(255,255,255,.18); color: #fff; }
@media (max-width: 720px) {
    .tool-grid { grid-template-columns: 1fr; gap: 18px; }
    .rent-modal__dialog { padding: 22px 14px 16px; }
    .rent-location-actions { grid-template-columns: 1fr; }
}

/* MAX button in rent modal */
.rent-max {
    border-color: var(--orange);
    color: #fff;
    background: rgba(255, 111, 0, .08);
}
.rent-max:hover,
.rent-max:focus {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
}

/* Финальная мобильная/планшетная навигация и улучшение фона главного экрана */
html, body { overflow-x: hidden; }

.mobile-nav {
    display: none;
}

@media (max-width: 1023px) {
    header {
        height: auto;
        min-height: 64px;
        padding: 0 14px;
    }

    .top-container {
        position: relative;
        width: 100%;
        padding: 10px 0;
    }

    nav.desktop-nav {
        display: none !important;
    }

    button#menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(255,111,0,.55);
        border-radius: 12px;
        background: rgba(15,15,15,.92);
        color: var(--orange);
        z-index: 1002;
    }

    .mobile-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(320px, calc(100vw - 28px));
        display: grid;
        gap: 8px;
        padding: 14px;
        border: 1px solid rgba(255,111,0,.55);
        border-radius: 16px;
        background: rgba(12,12,12,.98);
        box-shadow: 0 20px 50px rgba(0,0,0,.55);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 1001;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav a {
        display: block;
        padding: 13px 14px;
        border-radius: 11px;
        color: #fff;
        font-weight: 900;
        text-align: left;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.03);
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus {
        color: #fff;
        background: linear-gradient(135deg, var(--orange), var(--orange-light));
    }

    .welcome {
        background-image:
            linear-gradient(rgba(13, 13, 13, 0.48), rgba(13, 13, 13, 0.66)),
            url('ui_img/Toolhub_splash.jpg');
        background-size: cover;
        background-position: center center;
    }

    .welcome::before {
        background:
            radial-gradient(circle at 50% 36%, rgba(255,111,0,.18), transparent 34%),
            linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.32));
    }

    .welcome-content {
        width: min(92vw, 680px);
        padding: 22px 16px;
        border-radius: 22px;
        background: rgba(0,0,0,.34);
        border: 1px solid rgba(255,111,0,.20);
        backdrop-filter: blur(2px);
    }
}

@media (max-width: 768px) {
    .top-container {
        flex-wrap: nowrap;
    }

    .welcome {
        min-height: calc(100svh - 64px);
        padding: 78px 14px 42px;
        align-items: center;
        background-position: center top;
    }

    .welcome-content {
        padding: 20px 14px;
        background: rgba(0,0,0,.30);
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .welcome {
        min-height: calc(100svh - 64px);
        height: auto;
        padding: 86px 28px 72px;
        background-position: center center;
    }

    .welcome-content {
        margin-top: 0;
    }

    .hero-actions {
        flex-wrap: nowrap;
    }
}
