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

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

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

:root {
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #e5e5e5;
    --white: #ffffff;
    --accent: #16a34a;
    --accent-hover: #15803d;
    --accent-light: #dcfce7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--white);
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.06'%3E%3Cpath d='M72 68v-8h-4v8h-8v4h8v8h4v-8h8v-4h-8zm0-60V0h-4v8h-8v4h8v8h4V12h8V8h-8zM12 68v-8H8v8H0v4h8v8h4v-8h8v-4h-8zM12 8V0H8v8H0v4h8v8h4V12h8V8h-8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.03) 20px,
            rgba(0, 0, 0, 0.03) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 16px,
            rgba(0, 0, 0, 0.025) 16px,
            rgba(0, 0, 0, 0.025) 32px
        );
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 
                0 1px 0 rgba(255, 255, 255, 0.8) inset;
    position: relative;
    overflow-x: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000000' stroke-width='1' stroke-opacity='0.05'%3E%3Cpath d='M0 0h100v100H0z'/%3E%3Cpath d='M0 0l100 100M100 0L0 100'/%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3C/g%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Ccircle cx='25' cy='25' r='3'/%3E%3Ccircle cx='75' cy='25' r='3'/%3E%3Ccircle cx='25' cy='75' r='3'/%3E%3Ccircle cx='75' cy='75' r='3'/%3E%3Ccircle cx='50' cy='50' r='4'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 50%, rgba(22, 163, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(22, 163, 74, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -1px;
    position: relative;
    transition: all 0.3s ease;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo span {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.desktop-nav {
    display: flex;
}

.mobile-nav {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 56px;
}

nav a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

nav a:hover {
    color: var(--dark);
    transform: translateY(-2px);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.header-cta {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.header-cta:hover {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2),
                0 4px 8px rgba(0, 0, 0, 0.15);
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    background: 
        linear-gradient(to right, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.5)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 40px;
    width: 100%;
    flex-wrap: nowrap;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
    min-width: fit-content;
    text-align: right;
}

.hero-subtitle {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-align: right;
    line-height: 1.4;
    white-space: nowrap;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--white);
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-weight: 400;
}

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

.hero-phone {
    color: var(--white);
    font-size: 22px;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
    font-weight: 600;
    white-space: nowrap;
}
.hero-phone:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(22, 163, 74, 0.5);
}

.btn-primary {
    padding: 18px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Stats Section */
.stats {
    padding: 120px 60px;
    background: var(--white);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 15px;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Services */
.services {
    padding: 140px 60px;
    background: 
        linear-gradient(rgba(250, 250, 250, 0.97), rgba(250, 250, 250, 0.80)),
        url('../images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--dark);
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
}

.service-card-rental {
    grid-column: 1;
    grid-row: 3;
}

.service-card {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card.featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('../images/featured.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 72px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(100px, -100px);
}

.service-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.service-card.featured:hover::before {
    background: rgba(0, 0, 0, 0.15);
}

.service-card.featured > * {
    position: relative;
    z-index: 1;
}

.service-card.featured h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.featured-cta {
    display: inline-block;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: #16a34a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
    width: fit-content;
    margin-top: auto;
}

.featured-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.service-card-rental {
    position: relative;
    overflow: hidden;
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
    max-width: 100%;
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    pointer-events: none;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.service-card-rental:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-rental > .service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: 8px;
    margin: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}

.service-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-rental h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.service-card-rental p {
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.service-price {
    margin-top: auto;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(220, 252, 231, 0.95) 100%);
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(22, 163, 74, 0.3);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.service-card-rental:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
    border-color: rgba(22, 163, 74, 0.3);
}

.service-card-rental:hover .service-price {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
    border-color: var(--accent);
}

.services-other {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.services-other-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 36px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    border-radius: 16px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-other-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-other:hover .services-other-trigger::before {
    opacity: 1;
}

.services-other-trigger-content {
    position: relative;
    z-index: 1;
}

.services-other-trigger h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.services-other-trigger p {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 400;
}

.services-other-trigger-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-other-trigger-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.services-other:hover .services-other-trigger-icon {
    transform: rotate(90deg);
}

.services-other-grid-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-other:hover .services-other-grid-wrap {
    max-height: 520px;
}

.services-other-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 32px;
}

.service-other-card {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    opacity: 0;
    transform: translateY(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.services-other:hover .service-other-card {
    opacity: 1;
    transform: translateY(0);
}

.services-other:hover .service-other-card:nth-child(1) { transition-delay: 0.05s; }
.services-other:hover .service-other-card:nth-child(2) { transition-delay: 0.1s; }
.services-other:hover .service-other-card:nth-child(3) { transition-delay: 0.15s; }
.services-other:hover .service-other-card:nth-child(4) { transition-delay: 0.2s; }
.services-other:hover .service-other-card:nth-child(5) { transition-delay: 0.25s; }
.services-other:hover .service-other-card:nth-child(6) { transition-delay: 0.3s; }
.services-other:hover .service-other-card:nth-child(7) { transition-delay: 0.35s; }
.services-other:hover .service-other-card:nth-child(8) { transition-delay: 0.4s; }

.service-other-card:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.15);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.contact-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: var(--accent);
}

/* About */
.about {
    padding: 140px 60px;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(26, 26, 26, 0.92)),
        url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Coverage Area */
.coverage {
    padding: 140px 60px;
    background: var(--white);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.coverage-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.coverage-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
}

.coverage-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: var(--dark);
}

.coverage-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.coverage-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--accent-light);
}

.city-item {
    padding: 16px 20px;
    background: var(--accent-light);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

.coverage-address {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--accent-light);
    border-radius: 16px;
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: var(--dark);
    position: relative;
}

.coverage-address-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 10px;
}

.coverage-address a {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1.4;
    transition: color 0.2s;
}

.coverage-address a:hover {
    color: var(--accent);
}

.coverage-address-note {
    margin-top: 12px;
    font-size: 15px;
    color: var(--medium-gray);
}

.coverage-highlight {
    margin-top: 40px;
    padding: 20px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 140px 60px;
    background: #fafafa;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.contact-info p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 48px;
    line-height: 1.7;
}

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

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.form-status {
    margin-bottom: 16px;
    padding: 12px 16px;
    font-size: 14px;
    min-height: 48px;
    border-radius: 8px;
    line-height: 1.5;
}
.form-status:not(:empty) {
    margin-top: 8px;
}
.form-status.success { color: #166534; background: #dcfce7; font-weight: 500; }
.form-status.error { color: #b91c1c; background: #fee2e2; }

/* Footer */
footer {
    padding: 80px 60px 40px;
    background: var(--dark);
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }

    .hero-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .hero-info {
        align-items: flex-start;
        width: 100%;
        margin-left: 0;
    }

    .hero-subtitle {
        text-align: left;
    }

    .hero-phone {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 32px;
    }

    .hero-container {
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-top {
        margin-bottom: 24px;
    }

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

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

    .service-card.featured {
        grid-column: 1;
        grid-row: 1;
    }

    .service-card-rental {
        grid-column: 1;
        grid-row: auto;
    }

    .services-other:hover .services-other-grid-wrap {
        max-height: 900px;
    }

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

    .coverage-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container,
    .hero-container,
    .stats,
    .services,
    .about,
    .contact,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-container {
        height: 80px;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-container {
        padding: 0 20px;
        max-width: 100%;
    }

    .services,
    .about,
    .contact,
    .coverage,
    footer {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 26px;
    }
    
    .logo-img {
        height: 70px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    .mobile-nav.active {
        max-height: 300px;
    }

    .mobile-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .mobile-nav li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .mobile-nav li:last-child {
        border-bottom: none;
    }

    .mobile-nav a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        color: var(--dark);
    }

    .mobile-nav a::before {
        display: none;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 13px;
        margin-right: 12px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-top {
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-label {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 0;
    }

    .hero-info {
        width: 100%;
        margin-left: 0;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-phone {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 15px;
        touch-action: manipulation;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 16px;
    }

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

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

    .service-card {
        padding: 24px;
    }

    .service-card.featured {
        padding: 40px 24px;
        min-height: auto;
    }

    .service-card.featured h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .service-card.featured p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .featured-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .service-card-image {
        height: 200px;
    }

    .service-card-content {
        padding: 24px;
    }

    .service-card-rental h3 {
        font-size: 24px;
    }

    .service-price {
        font-size: 20px;
        padding: 14px 20px;
    }

    .services-other {
        margin-top: 40px;
        padding-top: 32px;
    }

    .services-other-trigger {
        padding: 20px;
    }

    .services-other-trigger h3 {
        font-size: 18px;
    }

    .services-other-trigger p {
        font-size: 12px;
    }

    .services-other-grid-wrap {
        max-height: 900px;
    }

    .services-other .service-other-card {
        opacity: 1;
        transform: translateY(0);
    }

    .services-other-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 20px;
    }

    .coverage-content h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 32px;
    }

    .coverage-content p,
    .about-content p,
    .contact-info p {
        font-size: 16px;
    }

    .coverage-image {
        height: 300px;
    }

    .coverage-cities {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-details {
        gap: 24px;
    }

    .contact-item p {
        font-size: 18px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group {
        margin-bottom: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    footer {
        padding: 60px 20px 32px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 70px;
        padding: 0 16px;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 60px;
    }

    .hero-container {
        padding: 0 16px;
        max-width: 100%;
    }

    .services,
    .about,
    .contact,
    .coverage,
    footer {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
    }

    .logo {
        font-size: 24px;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 12px;
        margin-right: 8px;
    }

    .mobile-nav {
        top: 70px;
    }

    .hero {
        padding-top: 70px;
        min-height: calc(100vh - 70px);
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-label {
        font-size: 10px;
        padding: 5px 10px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-phone {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
        touch-action: manipulation;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card.featured {
        padding: 32px 20px;
        min-height: auto;
    }

    .service-card.featured h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .service-card.featured p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .featured-cta {
        padding: 10px 24px;
        font-size: 13px;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-rental h3 {
        font-size: 22px;
    }

    .service-price {
        font-size: 18px;
        padding: 12px 16px;
    }

    .coverage-content h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .coverage-image {
        height: 250px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-item p {
        font-size: 16px;
    }

    footer {
        padding: 48px 16px 24px;
    }
}

/* ФИКС: Гарантируем правильное расположение hero-top на десктопе */
@media (min-width: 1025px) {
    .hero-top {
        flex-direction: row !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    .hero-info {
        margin-left: auto !important;
        align-items: flex-end !important;
        width: auto !important;
        text-align: right !important;
    }
    
    .hero-subtitle {
        text-align: right !important;
        white-space: nowrap !important;
    }
    
    .hero-label {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
}

/* Плавное появление секций при скролле */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.reveal-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Лёгкий stagger для карточек и фич */
.reveal .service-card,
.reveal .feature-item {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal.reveal-in-view .service-card,
.reveal.reveal-in-view .feature-item {
    opacity: 1;
    transform: translateY(0);
}
.reveal.reveal-in-view .service-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.reveal-in-view .service-card:nth-child(2) { transition-delay: 0.1s; }
.reveal.reveal-in-view .service-card:nth-child(3) { transition-delay: 0.15s; }
.reveal.reveal-in-view .service-card:nth-child(4) { transition-delay: 0.2s; }
.reveal.reveal-in-view .feature-item:nth-child(1) { transition-delay: 0.05s; }
.reveal.reveal-in-view .feature-item:nth-child(2) { transition-delay: 0.12s; }
.reveal.reveal-in-view .feature-item:nth-child(3) { transition-delay: 0.19s; }
.reveal.reveal-in-view .feature-item:nth-child(4) { transition-delay: 0.26s; }

/* Hero: текст и кнопки по очереди при загрузке */
.reveal.hero .hero-label,
.reveal.hero .hero-top,
.reveal.hero .hero-content > h1,
.reveal.hero .hero-content > p,
.reveal.hero .hero-buttons {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.hero.reveal-in-view .hero-label { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal.hero.reveal-in-view .hero-top { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal.hero.reveal-in-view .hero-content > h1 { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.reveal.hero.reveal-in-view .hero-content > p { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.reveal.hero.reveal-in-view .hero-buttons { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }

/* Секция Услуги: заголовок, описание, блок "Прочие услуги" */
.reveal .section-header,
.reveal .services-other {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal.reveal-in-view .section-header { opacity: 1; transform: translateY(0); transition-delay: 0.02s; }
.reveal.reveal-in-view .services-other { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* О компании: текст сверху */
.reveal .about-content {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal.reveal-in-view .about-content { opacity: 1; transform: translateY(0); transition-delay: 0.02s; }

/* Coverage: карта и текст */
.reveal .coverage-image,
.reveal .coverage-content {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.reveal-in-view .coverage-image { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal.reveal-in-view .coverage-content { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }

/* Контакты: инфо и форма */
.reveal .contact-info,
.reveal .contact-form {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal.reveal-in-view .contact-info { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal.reveal-in-view .contact-form { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }

/* Footer: блоки и низ */
.reveal .footer-about,
.reveal .footer-links,
.reveal .footer-bottom {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.reveal.reveal-in-view .footer-about { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal.reveal-in-view .footer-content > .footer-links:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal.reveal-in-view .footer-content > .footer-links:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal.reveal-in-view .footer-content > .footer-links:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal.reveal-in-view .footer-bottom { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
