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

:root {
    --red: #C41E1E;
    --red-dark: #A01818;
    --red-light: #E8302030;
    --black: #111111;
    --dark: #1a1a1a;
    --gray-900: #222222;
    --gray-800: #333333;
    --gray-700: #444444;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #aaaaaa;
    --gray-300: #cccccc;
    --gray-200: #e5e5e5;
    --gray-100: #f3f3f3;
    --gray-50: #f9f9f9;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.1), 0 12px 32px rgba(0,0,0,0.08);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    font-family: inherit;
}
.btn svg { flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-dark {
    background: transparent;
    color: var(--gray-800);
    border-color: var(--gray-300);
}
.btn-outline-dark:hover { border-color: var(--gray-800); background: var(--gray-50); }

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-white:hover { background: var(--gray-100); }

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

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(196, 30, 30, 0.08);
    border-radius: 4px;
}
.section-tag-light {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title.text-left { text-align: left; }
.section-title-light { color: var(--white); }
.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.services, .how-it-works, .reviews, .contact {
    text-align: center;
}
.services, .how-it-works, .reviews, .home-intro, .preview-section, .split-feature, .values-section {
    padding: 80px 0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.46) 62%, rgba(0,0,0,0) 100%);
    border-bottom: 0;
    transition: all var(--transition);
}
.header.scrolled {
    background: rgba(17,17,17,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 98px;
    gap: 32px;
}
.logo-img {
    height: 72px;
    width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.65));
}
.nav { display: flex; gap: 4px; }
.nav-link {
    position: relative;
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: 0;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}
.nav-link:hover { color: var(--white); background: transparent; }
.header-right { display: flex; align-items: center; gap: 16px; }
.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}
.phone-link:hover { color: var(--white); }
.mobile-toggle { display: none; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-bg-img {
    width: 100%;
    height: calc(100% + 130px);
    object-fit: cover;
    object-position: center top;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 142px, rgba(0,0,0,0) 260px),
        radial-gradient(circle at 72% 28%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 34%),
        linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.86) 24%, rgba(0,0,0,0.48) 54%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.36) 0%, rgba(0,0,0,0.12) 48%, rgba(0,0,0,0.82) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    height: 128px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 140' preserveAspectRatio='none'%3E%3Cpath fill='%23C41E1E' d='M0 80 C170 101 338 105 515 97 C728 87 935 45 1200 5 L1200 42 C960 63 742 108 516 120 C334 130 154 119 0 96 Z'/%3E%3Cpath fill='%23111111' d='M0 92 C158 113 338 121 518 112 C743 100 960 57 1200 32 L1200 140 L0 140 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
    pointer-events: none;
}
.hero::after {
    content: none;
}
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    padding-top: 150px;
    padding-bottom: 148px;
}
.hero-tag,
.hero-title,
.hero-sub,
.hero-btns {
    max-width: 720px;
}
.hero-tag {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ff2028;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}
.hero-title {
    font-size: clamp(2.85rem, 4.6vw, 3.75rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-shadow: 0 4px 22px rgba(0,0,0,0.7);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.68;
    margin-bottom: 38px;
    max-width: 570px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-btns .btn {
    min-width: 190px;
    justify-content: center;
    padding: 16px 28px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}
.hero-btns .btn-outline {
    border-color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.28);
}

/* ===== INNER PAGES & HOME PREVIEWS ===== */
.inner-page .header {
    background: linear-gradient(180deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.58) 64%, rgba(0,0,0,0) 100%);
}

.page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.compact-page-hero { min-height: 500px; }

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.48) 42%, rgba(0,0,0,0.82) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.72) 46%, rgba(0,0,0,0.2) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 82px;
}

.home-intro {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.rich-copy p {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.rich-copy p:last-child { margin-bottom: 0; }

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

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.875fr 0.875fr;
    gap: 22px;
}

.preview-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--black);
    box-shadow: var(--shadow-lg);
}

.preview-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.78) 100%);
    z-index: 1;
}

.preview-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.preview-card span,
.preview-card h3 {
    position: relative;
    z-index: 2;
}

.preview-card span {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    margin-bottom: 10px;
}

.preview-card h3 {
    max-width: 440px;
    font-size: 1.28rem;
    line-height: 1.32;
    color: var(--white);
}

.preview-card-large h3 { font-size: 1.55rem; }

.page-section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.service-detail-grid,
.detail-card-grid-3 {
    display: grid;
    gap: 22px;
    margin-top: 42px;
}

.service-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
    min-height: 240px;
    padding: 30px;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(0,0,0,0.04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.detail-card:hover {
    transform: translateY(-3px);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
}

.service-detail-grid .detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    text-align: center;
}

.detail-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    background: rgba(196, 30, 30, 0.08);
    color: var(--red);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
}

.detail-card h3 {
    margin-bottom: 10px;
    color: var(--black);
    font-size: 1.08rem;
    line-height: 1.3;
}

.detail-card p {
    color: var(--gray-600);
    font-size: 0.93rem;
    line-height: 1.7;
}

.fleet-snapshot-grid .detail-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 188px;
    padding: 28px 30px;
    text-align: center;
}

.split-feature {
    background: var(--white);
}

.feature-media {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.feature-copy {
    text-align: left;
}

.feature-copy .rich-copy + .btn {
    margin-top: 28px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.check-list p {
    position: relative;
    padding-left: 34px;
    color: var(--gray-700);
    line-height: 1.6;
}

.check-list p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
}

.check-list p::after {
    content: '';
    position: absolute;
    left: 6px;
    top: calc(0.35em + 4px);
    width: 6px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feature-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stat-panel {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: var(--black);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.stat-panel strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--red);
    margin-bottom: 12px;
}

.stat-panel span {
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.values-section {
    background: var(--gray-50);
    text-align: center;
}

.values-section .detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 32px 28px;
    text-align: center;
}

.values-section .detail-card p {
    max-width: 310px;
}

.page-fleet {
    padding-top: 88px;
}

.star-text {
    color: var(--red);
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.cta-band {
    padding: 66px 0;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.96), rgba(17,17,17,0.9)),
        linear-gradient(90deg, var(--red), var(--black));
    color: var(--white);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-band p {
    max-width: 650px;
    color: rgba(255,255,255,0.74);
}

/* ===== PRIVACY POLICY ===== */
.policy-section {
    padding: 88px 0;
    background: var(--white);
}

.policy-container {
    max-width: 880px;
}

.policy-content {
    color: var(--gray-700);
}

.policy-content h2 {
    margin-bottom: 24px;
    color: var(--black);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.15;
}

.policy-content h3 {
    margin-top: 34px;
    margin-bottom: 10px;
    color: var(--black);
    font-size: 1.08rem;
    line-height: 1.35;
}

.policy-content h2 + h3 {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.78;
}

.policy-content a {
    color: var(--red);
    font-weight: 700;
}

.policy-content a:hover {
    color: var(--red-dark);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--black);
    border-top: 0;
    padding: 8px 0 0;
    position: relative;
    z-index: 5;
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 24px 28px;
    border-right: 1px solid rgba(255,255,255,0.16);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 30, 0.2);
    border-radius: 50%;
    color: var(--red);
    flex-shrink: 0;
}
.trust-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.trust-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== SERVICES ===== */
.services { background: var(--gray-50); }
.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 44px;
    align-items: stretch;
    text-align: left;
}
.service-feature {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
}
.service-feature::after {
    content: none;
}
.service-feature img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service-feature-panel {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 22px 24px;
    background: rgba(17,17,17,0.82);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius);
    color: var(--white);
}
.service-feature-panel span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.service-feature-panel strong {
    display: block;
    max-width: 420px;
    font-size: 1.18rem;
    line-height: 1.35;
}
.service-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service-row {
    display: grid;
    padding: 28px 32px;
    border-bottom: 1px solid var(--gray-200);
    transition: background var(--transition);
}
.service-row:hover {
    background: var(--gray-50);
}
.service-row h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--black);
}
.service-row p {
    max-width: 520px;
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.service-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-200);
}
.service-proof span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 14px 16px;
    background: var(--gray-50);
    color: var(--gray-800);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

/* ===== FLEET ===== */
.fleet {
    position: relative;
    padding: 80px 0;
    background: var(--dark);
    overflow: hidden;
}
.fleet-content {
    position: relative;
    z-index: 2;
}
.fleet-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    text-align: left;
}
.fleet-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    line-height: 1.7;
    margin-top: 12px;
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fleet-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.fleet-card-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 80px 0;
}
.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}
.step {
    flex: 1;
    max-width: 320px;
    padding: 40px 28px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.step:hover {
    box-shadow: var(--shadow);
    border-color: var(--gray-300);
}
.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    border-radius: 12px;
    margin: 0 auto 20px;
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}
.step-connector {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}
.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    text-align: left;
}
.reviews-header .section-title { margin-bottom: 0; }
.reviews-rating { text-align: right; }
.rating-score {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 6px;
}
.stars { display: flex; gap: 2px; justify-content: flex-end; margin-bottom: 4px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.review-card {
    text-align: left;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.review-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--black);
}
.review-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.reviews-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: var(--white);
    text-align: left;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-sub { margin: 0 0 32px; text-align: left; }
.contact-info > p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-detail svg {
    color: var(--red);
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 2px;
}
.contact-detail a, .contact-detail span {
    font-size: 0.9rem;
    color: var(--gray-600);
}
.contact-detail a:hover { color: var(--red); }

/* ===== QUOTE FORM ===== */
.contact-form-wrap { position: relative; }
.quote-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}
.quote-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row-4 {
    grid-template-columns: repeat(4, 1fr);
}
.form-group { text-align: left; }
.form-group.full-width { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea { resize: vertical; }
.form-divider {
    text-align: center;
    margin: 24px 0 20px;
    position: relative;
}
.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}
.form-divider span {
    position: relative;
    background: var(--white);
    padding: 0 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}
.cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 4px 0 18px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}
.form-success svg { margin: 0 auto 16px; }
.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 64px 0 0;
    color: var(--gray-400);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    width: 95px;
    height: 36px;
    margin-bottom: 16px;
    object-fit: contain;
}
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col a, .footer-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-400);
    padding: 5px 0;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-license-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-license-badge svg {
    color: var(--red);
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}
.footer-bottom p a {
    color: var(--white);
}
.footer-bottom p a:hover {
    color: var(--white);
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .service-feature { min-height: 440px; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mobile-toggle { display: flex; }
    .mobile-toggle { flex-shrink: 0; }
    .header-inner { gap: 14px; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 24px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -4px 0 24px rgba(0,0,0,0.3);
    }
    .nav.open { transform: translateX(0); }
    .nav-link {
        font-size: 1rem;
        padding: 14px 16px;
        border-radius: var(--radius);
    }
    .nav-link:hover { background: rgba(255,255,255,0.08); }
    .nav-link::after { display: none; }
    .header-right { display: none; }

    .hero { min-height: 620px; }
    .hero-bg-img { object-position: 60% center; }
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.8) 58%, rgba(0,0,0,0.32) 100%),
            linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.82) 100%);
    }
    .hero-content {
        padding-top: 138px;
        padding-bottom: 54px;
    }
    .hero::before {
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'%3E%3Cpath fill='%23C41E1E' d='M0 8 C250 14 500 15 720 13 C910 11 1068 6 1200 3 L1200 17 C1035 20 900 24 718 25 C490 27 240 22 0 16 Z'/%3E%3Cpath fill='%23111111' d='M0 15 C250 21 500 23 720 22 C900 21 1035 18 1200 14 L1200 28 L0 28 Z'/%3E%3C/svg%3E");
    }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-tag { font-size: 0.82rem; letter-spacing: 0.12em; }
    .hero-sub { font-size: 1rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }

    .services-layout { gap: 22px; }
    .service-feature {
        min-height: 360px;
        border-radius: var(--radius);
    }
    .service-feature-panel {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }
    .service-feature-panel strong { font-size: 1rem; }
    .service-list { border-radius: var(--radius); }
    .service-row {
        padding: 22px 20px;
    }
    .service-row h3 { font-size: 0.98rem; }
    .service-row p { font-size: 0.9rem; }
    .service-proof { grid-template-columns: 1fr; }
    .service-proof span {
        min-height: 48px;
        font-size: 0.74rem;
    }

    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-card { aspect-ratio: 16/10; }

    .steps-grid { flex-direction: column; gap: 16px; }
    .step-connector {
        align-self: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transform: rotate(90deg);
    }
    .step { max-width: 100%; }

    .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .reviews-rating { text-align: left; }
    .stars { justify-content: flex-start; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-cta { flex-direction: column; }
    .reviews-cta .btn { width: 100%; justify-content: center; }

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

    .form-row { grid-template-columns: 1fr; }
    .form-row-4 { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .form-row-4 { grid-template-columns: 1fr; }
    .quote-form { padding: 24px; }
    .trust-bar-inner { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .trust-item:last-child { border-bottom: none; }
    .logo-img { width: 153px; height: 58px; }
    .header-inner { height: 82px; }
    .hero { min-height: 580px; }
    .hero-content {
        padding-top: 122px;
        padding-bottom: 38px;
    }
    .hero::before {
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath fill='%23C41E1E' d='M0 7 C250 12 500 13 720 11 C910 9 1068 5 1200 2 L1200 15 C1035 18 900 21 718 22 C490 23 240 19 0 14 Z'/%3E%3Cpath fill='%23111111' d='M0 13 C250 18 500 20 720 19 C900 18 1035 15 1200 12 L1200 24 L0 24 Z'/%3E%3C/svg%3E");
    }
}

@media (max-width: 1120px) {
    .header-inner { gap: 18px; }
    .nav-link { padding: 10px 10px; font-size: 0.72rem; }
    .header-right .btn { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; gap: 36px; }
    .preview-grid {
        grid-template-columns: 1fr 1fr;
    }
    .preview-card-large {
        grid-column: 1 / -1;
    }
    .service-detail-grid,
    .detail-card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .page-hero { min-height: 520px; }
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 1rem;
        padding: 14px 16px;
    }
    .page-hero,
    .compact-page-hero {
        min-height: 520px;
    }
    .page-hero-content {
        padding-top: 128px;
        padding-bottom: 70px;
        max-width: calc(100vw - 32px);
    }
    .hero-title,
    .section-title,
    .cta-band h2 {
        max-width: 100%;
    }
    .section-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .preview-grid,
    .service-detail-grid,
    .detail-card-grid-3,
    .feature-panel-grid {
        grid-template-columns: 1fr;
    }
    .preview-card {
        min-height: 300px;
        padding: 24px;
    }
    .feature-media,
    .feature-media img {
        min-height: 340px;
    }
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-band-inner .btn {
        width: 100%;
        justify-content: center;
    }
    .detail-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 390px;
    }
    .page-hero-content,
    .contact-info,
    .feature-copy,
    .rich-copy {
        max-width: 358px;
    }
    .home-intro,
    .preview-section,
    .split-feature,
    .values-section,
    .services,
    .how-it-works,
    .reviews,
    .contact {
        padding: 64px 0;
    }
    .page-hero,
    .compact-page-hero {
        min-height: 500px;
    }
    .page-hero .hero-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }
    .preview-card h3,
    .preview-card-large h3 {
        font-size: 1.18rem;
    }
    .detail-card {
        padding: 24px;
    }
}
