/* ============================================
   ПАРОМ.PRO — Main Stylesheet
   Brand Colors: #ffc000 (yellow), #171717 (dark)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --brand-yellow: #ffc000;
    --brand-yellow-hover: #e6ad00;
    --brand-yellow-light: #fff3cc;
    --brand-dark: #171717;
    --brand-dark-light: #2a2a2a;
    --brand-dark-lighter: #3d3d3d;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --text-primary: #171717;
    --text-secondary: #525252;
    --text-muted: #737373;
    --text-on-dark: #ffffff;
    --text-on-yellow: #171717;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--brand-dark);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: var(--brand-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo img {
    height: 44px;
    width: auto;
}

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

.nav__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-yellow);
    transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--brand-yellow);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.938rem;
    white-space: nowrap;
}

.header__phone svg {
    width: 18px;
    height: 18px;
    fill: var(--brand-yellow);
}

.header__cta {
    display: none;
}

/* Mobile menu toggle */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    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);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--brand-yellow);
    color: var(--brand-dark);
}

.btn--primary:hover {
    background: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 192, 0, 0.3);
}

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

.btn--dark:hover {
    background: var(--brand-dark-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn--outline:hover {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

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

.btn--outline-dark:hover {
    background: var(--brand-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    background: var(--brand-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero__main {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 24px 0;
    width: 100%;
}

.hero__row {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    min-height: 480px;
}

.hero__text {
    flex: 0 0 50%;
    max-width: 540px;
    padding-bottom: 60px;
}

.hero__logo {
    height: 48px;
    width: auto;
    margin-bottom: 32px;
}

.hero__title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__title span {
    color: var(--brand-yellow);
}

.hero__subtitle {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 460px;
}

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

.hero__image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    min-height: 300px;
}

.hero__truck {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    position: relative;
    bottom: 0;
}

/* Features bar */
.hero__features {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__features-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero__feature {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hero__feature:last-child {
    border-right: none;
}

.hero__feature:hover {
    background: rgba(255, 255, 255, 0.04);
}

.hero__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 192, 0, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-yellow);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__feature-text {
    min-width: 0;
}

.hero__feature-text h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
}

.hero__feature-text p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* ============================================
   SECTION BASE
   ============================================ */

.section {
    padding: 100px 0;
}

.section--gray {
    background: var(--gray-50);
}

.section--dark {
    background: var(--brand-dark);
    color: var(--white);
}

.section--yellow {
    background: var(--brand-yellow);
    color: var(--brand-dark);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-yellow);
    margin-bottom: 16px;
}

.section--dark .section__tag,
.section--yellow .section__tag {
    color: var(--brand-dark);
}

.section--yellow .section__tag {
    opacity: 0.6;
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section--dark .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section--dark .section__subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   STATS SECTION
   ============================================ */

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

.stat {
    text-align: center;
    padding: 32px 16px;
}

.stat__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--brand-yellow);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.section--dark .stat__number {
    color: var(--brand-yellow);
}

.stat__label {
    font-size: 0.938rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.section--dark .stat__label {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--brand-yellow-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card__text {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-dark);
    transition: gap var(--transition);
}

.service-card__link:hover {
    color: var(--brand-yellow-hover);
    gap: 12px;
}

.service-card__link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ============================================
   HOW WE WORK
   ============================================ */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step {
    position: relative;
    counter-increment: step;
    text-align: center;
    padding: 0 16px;
}

.step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--gray-200));
    z-index: 0;
}

.step__title {
    font-size: 1.063rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   ADVANTAGES
   ============================================ */

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

.advantage {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.advantage:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 192, 0, 0.2);
}

.advantage__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 192, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-yellow);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.advantage__title {
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.advantage__text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,192,0,0.12) 0%, transparent 70%);
}

.cta__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta__text {
    color: rgba(255,255,255,0.6);
    font-size: 1.063rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================
   FLEET / AUTOPARK
   ============================================ */

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

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.fleet-card__image {
    height: 240px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
}

.fleet-card__image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.fleet-card__body {
    padding: 28px;
}

.fleet-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.fleet-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.fleet-card__spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fleet-card__spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.fleet-card__spec-value {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-primary);
}

.fleet-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.fleet-card__price span {
    color: var(--brand-yellow-hover);
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.pricing-table th {
    background: var(--brand-dark);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.938rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr {
    transition: background var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--brand-yellow-light);
}

.pricing-table td:first-child {
    font-weight: 600;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form__input,
.form__textarea,
.form__select {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 4px rgba(255, 192, 0, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--gray-400);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--brand-yellow-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info__label {
    font-size: 0.813rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: 1.063rem;
    font-weight: 600;
}

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

.contact-info__value a:hover {
    color: var(--brand-yellow-hover);
}

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */

.about-hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--brand-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-content__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PAGE HERO (Internal pages)
   ============================================ */

.page-hero {
    padding: 140px 0 60px;
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,192,0,0.1) 0%, transparent 70%);
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
    color: var(--brand-yellow);
}

.page-hero__breadcrumb span {
    color: var(--brand-yellow);
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-hero__stats {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.page-hero__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
}

.page-hero__stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-yellow);
    line-height: 1;
}

.page-hero__stat-label {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.page-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--brand-dark);
    color: var(--white);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer__logo {
    height: 36px;
    width: auto;
}

.footer__heading {
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-yellow);
    margin-bottom: 20px;
}

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

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--brand-yellow);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-yellow);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.footer__contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer__contact-item a:hover {
    color: var(--brand-yellow);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.813rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE OVERLAY
   ============================================ */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--brand-dark);
    z-index: 999;
    padding: 100px 32px 32px;
    transition: right var(--transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav__link {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    color: var(--brand-yellow);
}

.mobile-nav__phone {
    margin-top: auto;
    color: var(--brand-yellow);
    font-size: 1.25rem;
    font-weight: 700;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 520px;
    width: 90%;
    z-index: 1;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.modal__close:hover {
    background: var(--gray-200);
}

.modal__close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    fill: none;
    stroke-width: 2;
}

.modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal__subtitle {
    font-size: 0.938rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .hero__main {
        padding: 60px 24px 0;
    }

    .hero__text {
        flex: none;
        max-width: 100%;
        padding-bottom: 40px;
    }

    .hero__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image {
        justify-content: center;
        min-height: auto;
    }

    .hero__truck {
        max-width: 500px;
    }

    .hero__features-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__feature:nth-child(2) {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step:not(:last-child)::after {
        display: none;
    }

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

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav, .header__phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header__inner {
        height: 68px;
    }

    .header__logo img {
        height: 36px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero__main {
        padding: 40px 24px 0;
    }

    .hero__image {
        display: none;
    }

    .hero__features-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

    .hero__feature {
        padding: 14px 16px;
        gap: 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero__feature:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero__feature:nth-child(3),
    .hero__feature:nth-child(4) {
        border-bottom: none;
    }

    .hero__feature-icon {
        width: 34px;
        height: 34px;
    }

    .hero__feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero__feature-text h4 {
        font-size: 0.75rem;
    }

    .hero__feature-text p {
        font-size: 0.625rem;
    }

    .section {
        padding: 64px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

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

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

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .page-hero {
        padding: 110px 0 40px;
    }

    .cta {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

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