:root {
    --brand-primary: #ff4d00;
    --brand-primary-dark: #cc3d00;
    --brand-primary-light: #fff0eb;
    --brand-accent: #00c9a7;
    --text-dark: #0f1a24;
    --text-muted: #5a6578;
    --surface: #ffffff;
    --surface-alt: #f7f8fa;
    --surface-dark: #0f1a24;
    --border: #e4e8ed;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--surface);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .page-hero-title,
.footer-title, .stat-value, .stat-number, .process-step {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.btn-primary {
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-primary-dark);
    --bs-btn-hover-border-color: var(--brand-primary-dark);
    --bs-btn-active-bg: var(--brand-primary-dark);
    --bs-btn-active-border-color: var(--brand-primary-dark);
    --bs-btn-disabled-bg: var(--brand-primary);
    --bs-btn-disabled-border-color: var(--brand-primary);
}

.btn-outline-primary {
    --bs-btn-color: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-primary);
    --bs-btn-hover-border-color: var(--brand-primary);
    --bs-btn-active-bg: var(--brand-primary-dark);
    --bs-btn-active-border-color: var(--brand-primary-dark);
}

.text-primary {
    color: var(--brand-primary) !important;
}

.text-accent {
    color: var(--brand-accent) !important;
}

.bg-dark {
    background: var(--surface-dark) !important;
}

.btn-glow {
    box-shadow: 0 8px 28px rgba(255, 77, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 77, 0, 0.45);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #ff8a00 50%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.brand-logo {
    width: 42px;
    height: 42px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.95rem;
}

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

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero,
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.page-hero {
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(15, 26, 36, 0.94) 0%, rgba(15, 26, 36, 0.6) 50%, rgba(255, 77, 0, 0.15) 100%);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.25) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-eyebrow,
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-accent);
    margin-bottom: 0.85rem;
}

.section-eyebrow {
    color: var(--brand-primary);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 1.25rem;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    max-width: 720px;
}

.hero-lead {
    font-size: 1.15rem;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust span {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
}

.hero-panel-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.hero-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-panel-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-panel-list strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-panel-list span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.hero-panel-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-panel-link:hover {
    color: #fff;
}

.stats-bar {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
    color: #fff;
    margin-top: -1px;
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.stat-desc {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.section-padding {
    padding: 5.5rem 0;
}

.section-intro {
    max-width: 640px;
}

.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.bg-light {
    background: var(--surface-alt) !important;
}

.city-card {
    background: var(--surface);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15, 26, 36, 0.12);
}

.city-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.city-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 36, 0.5) 0%, transparent 60%);
}

.city-card-body {
    padding: 1.5rem;
}

.city-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card,
.service-card,
.value-card,
.stat-card,
.info-panel,
.form-card,
.process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 26, 36, 0.08);
    border-color: var(--brand-primary);
}

.process-card {
    position: relative;
    padding-top: 2rem;
    transition: transform 0.2s ease;
}

.process-card:hover {
    transform: translateY(-3px);
}

.process-step {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-primary-light);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--brand-primary-light);
    margin-bottom: 1.15rem;
    position: relative;
}

.feature-icon::after {
    content: "";
    position: absolute;
    inset: 13px;
    background: var(--brand-primary);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-truck::after,
.icon-route::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M9 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M20 8h-3V4H3v13h1.05a2.5 2.5 0 0 1 4.9 0h2.1a2.5 2.5 0 0 1 4.9 0H20v-5l-2-4M6 13V6h8v7H6m9 0V9h2l2 4h-4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M9 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M20 8h-3V4H3v13h1.05a2.5 2.5 0 0 1 4.9 0h2.1a2.5 2.5 0 0 1 4.9 0H20v-5l-2-4M6 13V6h8v7H6m9 0V9h2l2 4h-4'/%3E%3C/svg%3E");
}

.icon-map::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
}

.icon-clock::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m1 11h-4V7h2v4h2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m1 11h-4V7h2v4h2'/%3E%3C/svg%3E");
}

.icon-check::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

.verion-section {
    background: linear-gradient(160deg, #0f1a24 0%, #1a2a3a 50%, #0f1a24 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.verion-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.12) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.verion-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verion-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

.verion-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.phone-mockup {
    max-width: 320px;
    margin: 0 auto;
    padding: 12px;
    background: linear-gradient(145deg, #2a3a4a 0%, #1a2a3a 100%);
    border-radius: 2.5rem;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-mockup-screen {
    background: #0f1a24;
    border-radius: 2rem;
    padding: 1.5rem;
    min-height: 420px;
}

.phone-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.phone-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 201, 167, 0.2);
    color: var(--brand-accent);
}

.phone-mockup-route {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.phone-route-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.phone-route-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.phone-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.phone-mockup-stats > div {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    padding: 0.85rem;
    text-align: center;
}

.phone-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.phone-stat-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
}

.phone-mockup-drop {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.2) 0%, rgba(255, 77, 0, 0.05) 100%);
    border: 1px solid rgba(255, 77, 0, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
}

.phone-drop-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.phone-drop-address {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.phone-drop-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.industry-tag {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2rem;
    margin: 0;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--brand-primary-light);
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
}

.testimonial-role {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-primary);
}

.verion-banner {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, #fff 100%);
    border: 2px solid var(--brand-primary);
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.cta-band {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 60%, #ff6b2b 100%);
    padding: 4.5rem 0;
}

.final-cta {
    padding: 5rem 0;
}

.final-cta-inner {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.7rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--brand-accent);
}

.plain-list {
    padding-left: 1.2rem;
}

.plain-list li {
    margin-bottom: 0.55rem;
}

.contact-block {
    margin-bottom: 1.5rem;
}

.contact-block a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-block a:hover {
    text-decoration: underline;
}

.form-card {
    box-shadow: 0 12px 40px rgba(15, 26, 36, 0.07);
    border: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 77, 0, 0.15);
}

.site-footer {
    background: var(--surface-dark);
    color: #fff;
    padding: 4rem 0 0;
    margin-top: 0;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-heading {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a,
.footer-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-links a:hover,
.footer-link:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-hours li {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .hero-panel {
        margin-top: 0.5rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 1.5rem 1rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
    }

    .final-cta-inner {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:nth-child(even) {
        border-right: none;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-glow,
    .hero-badge-dot {
        animation: none;
    }
}
