/* === VARIABLES === */
:root {
    --primary: #1e3a5f;
    --primary-light: #2c5282;
    --primary-dark: #152a45;
    --accent: #3182ce;
    --accent-light: #4299e1;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-200);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

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

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

@media (min-width: 992px) {
    .burger {
        display: none;
    }
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
}

/* === HERO SECTION === */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 420px;
        gap: 60px;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

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

/* Hero Form */
.hero-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.hero-form .form-title {
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.hero-form .form-subtitle {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* === FORMS === */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center;
}

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

/* === SECTIONS === */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

/* === ADVANTAGES === */
.advantages {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.advantage-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.advantage-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.advantage-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* === SERVICES PREVIEW === */
.services-preview {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 4rem;
    filter: grayscale(100%) brightness(200%);
}

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.service-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.service-link {
    font-weight: 600;
    color: var(--accent);
}

.service-link:hover {
    color: var(--primary);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* === CALCULATOR === */
.calculator {
    background: var(--white);
}

.calculator-wrapper {
    display: grid;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.calculator-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.calculator-text {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.calculator-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calculator-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0625rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
}

.calculator-form {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-xl);
}

/* === STATS === */
.stats {
    background: var(--primary);
    padding: 60px 0;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    display: inline;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-top: 8px;
}

/* === GEOGRAPHY === */
.geography {
    background: var(--gray-50);
}

.geography-list {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .geography-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .geography-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.geography-column h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.geography-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.geography-column li {
    color: var(--gray-600);
}

/* === CTA === */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
}

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

.cta-title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-description {
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone,
.footer-email {
    color: var(--white);
    font-weight: 500;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--accent);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer ul a {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.footer ul a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--gray-600);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.modal-title {
    margin-bottom: 12px;
}

.modal-text {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.modal-btn {
    min-width: 150px;
}

/* === PAGE HERO === */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.page-title {
    color: var(--white);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* === SERVICES LIST === */
.services-list {
    background: var(--white);
}

.service-detail {
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.service-detail-content {
    max-width: 800px;
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-detail-text {
    color: var(--gray-600);
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-features ul {
    display: grid;
    gap: 12px;
}

@media (min-width: 768px) {
    .service-features ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-700);
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.service-prices {
    margin-bottom: 32px;
}

.service-prices h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.price-table {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:last-child {
    font-weight: 600;
    color: var(--primary);
}

.service-info-box {
    background: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.service-info-box h4 {
    margin-bottom: 12px;
    color: var(--white);
}

.service-vehicles {
    margin-bottom: 32px;
}

.service-vehicles h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--primary);
}

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

@media (min-width: 768px) {
    .vehicles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vehicle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    text-align: center;
}

.vehicle-icon {
    font-size: 2rem;
}

/* === WHY US === */
.why-us {
    background: var(--gray-50);
}

.why-us-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-us-item {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.why-us-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.why-us-item h3 {
    margin-bottom: 12px;
}

.why-us-item p {
    color: var(--gray-600);
}

/* === ABOUT PAGE === */
.about-main {
    background: var(--white);
}

.about-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.about-image-placeholder span {
    font-size: 5rem;
    display: block;
    margin-bottom: 16px;
}

.about-image-placeholder p {
    font-size: 1.25rem;
    font-weight: 500;
}

/* About Stats */
.about-stats {
    background: var(--gray-50);
    padding: 60px 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .about-stats .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-stats .stat-item {
    text-align: center;
    color: var(--gray-800);
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* === VALUES === */
.values {
    background: var(--white);
}

.values-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* === FLEET === */
.fleet {
    background: var(--gray-50);
}

.fleet-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fleet-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.fleet-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.fleet-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.fleet-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.fleet-count {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* === LICENSES === */
.licenses {
    background: var(--white);
}

.licenses-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 992px) {
    .licenses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.license-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
}

.license-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.license-card h4 {
    margin-bottom: 12px;
}

.license-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* === TEAM === */
.team {
    background: var(--primary);
    color: var(--white);
}

.team .section-title {
    color: var(--white);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .team-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-stat {
    text-align: center;
}

.team-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-stat p {
    opacity: 0.9;
}

/* === CONTACTS === */
.contacts {
    background: var(--gray-50);
}

.contacts-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-text a {
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

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

.contact-text p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* === REQUISITES === */
.requisites {
    background: var(--white);
}

.requisites-content {
    max-width: 800px;
    margin: 0 auto;
}

.requisites-block {
    margin-bottom: 24px;
}

.requisites-block h4 {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.requisites-block p {
    color: var(--gray-700);
}

.requisites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .requisites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.requisite-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.requisite-value {
    font-weight: 600;
    color: var(--gray-800);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* === LOADING STATE === */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    margin-left: 8px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .cta {
        padding: 60px 0;
    }

    .stats {
        padding: 40px 0;
    }

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