* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #f8fafc;
    background:
        radial-gradient(circle at top left, rgba(255, 176, 0, 0.16), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(255, 77, 29, 0.14), transparent 30rem),
        #0b101b;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 16, 27, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(255, 176, 0, 0.28);
}

.brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 0.76rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #cbd5e1;
    font-size: 0.94rem;
}

.main-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 11px 17px;
    color: #111827 !important;
    font-weight: 800;
    background: var(--primary);
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 54px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 77, 29, 0.75);
    animation: pulse 1.8s infinite;
}

.hero h1,
.section-heading h2,
.trust-content h2,
.showcase-content h2,
.faq-intro h2,
.final-cta-card h2 {
    margin: 0;
    color: #ffffff;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 8vw, 6.9rem);
}

.hero-text {
    max-width: 650px;
    margin: 24px 0 0;
    color: #cbd5e1;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #111827;
    background: linear-gradient(135deg, var(--primary), #ffe29a);
    box-shadow: 0 18px 45px rgba(255, 176, 0, 0.25);
}

.btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 580px;
    gap: 12px;
    margin-top: 34px;
}

.hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
}

.hero-stats strong {
    display: block;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 0.86rem;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.warning-ring {
    position: absolute;
    inset: 24px;
    border: 2px dashed rgba(255, 176, 0, 0.28);
    border-radius: 50%;
    animation: rotateSlow 28s linear infinite;
}

.tow-card {
    position: absolute;
    inset: 46px 0 auto;
    min-height: 440px;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        linear-gradient(180deg, #172033, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 38px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.tow-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -26% -20%;
    height: 45%;
    background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.2), transparent);
    transform: rotate(-6deg);
}

.tow-lights {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.tow-lights span {
    width: 34px;
    height: 15px;
    background: var(--accent);
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(255, 77, 29, 0.75);
    animation: flash 1.1s infinite alternate;
}

.tow-lights span:nth-child(2) {
    background: var(--primary);
    animation-delay: 0.5s;
}

.truck-shape {
    position: relative;
    height: 210px;
    margin-top: 58px;
}

.truck-cab,
.truck-bed {
    position: absolute;
    bottom: 42px;
    background: linear-gradient(135deg, var(--primary), #ffe7a6);
    box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.1);
}

.truck-cab {
    left: 52px;
    width: 125px;
    height: 105px;
    border-radius: 26px 34px 16px 16px;
}

.truck-cab::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 16px;
    width: 44px;
    height: 32px;
    background: #101827;
    border-radius: 10px;
}

.truck-bed {
    left: 160px;
    width: 230px;
    height: 72px;
    border-radius: 14px;
}

.truck-bed::after {
    content: "";
    position: absolute;
    right: -44px;
    top: 26px;
    width: 68px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 99px;
    transform: rotate(-23deg);
}

.truck-hook {
    position: absolute;
    right: 42px;
    bottom: 20px;
    width: 38px;
    height: 44px;
    border-right: 5px solid #e2e8f0;
    border-bottom: 5px solid #e2e8f0;
    border-radius: 0 0 18px 0;
}

.wheel {
    position: absolute;
    bottom: 12px;
    width: 58px;
    height: 58px;
    background: #020617;
    border: 9px solid #475569;
    border-radius: 50%;
}

.wheel-one {
    left: 86px;
}

.wheel-two {
    left: 300px;
}

.road-lines {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 58px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.road-lines span {
    height: 8px;
    flex: 1;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.dispatch-panel {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 18px;
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.dispatch-panel small,
.dispatch-panel span {
    display: block;
    color: #94a3b8;
}

.dispatch-panel strong {
    display: block;
    color: #ffffff;
    font-size: 1.12rem;
}

.floating-badge {
    position: absolute;
    padding: 12px 16px;
    color: #111827;
    font-weight: 900;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    animation: floatY 4.4s ease-in-out infinite;
}

.badge-one {
    top: 76px;
    left: -14px;
}

.badge-two {
    right: -8px;
    bottom: 92px;
    animation-delay: 1.2s;
}

.quick-help {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #111827;
}

.quick-help-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.quick-help strong,
.quick-help span {
    display: block;
}

.quick-help strong {
    font-size: 1.15rem;
    line-height: 1.2;
}

.quick-help span {
    opacity: 0.78;
}

.quick-help a {
    flex: 0 0 auto;
    padding: 12px 17px;
    color: #ffffff;
    background: #111827;
    border-radius: 999px;
    font-weight: 900;
}

.section-heading {
    max-width: 740px;
    margin-bottom: 34px;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading h2,
.trust-content h2,
.showcase-content h2,
.faq-intro h2,
.final-cta-card h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.section-heading p,
.trust-content p,
.showcase-content p,
.faq-intro p,
.final-cta-card p {
    margin: 18px 0 0;
    color: #cbd5e1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.process-card,
.testimonial-card,
.coverage-card,
.faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 26px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 132px;
    height: 132px;
    background: rgba(255, 176, 0, 0.14);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 176, 0, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    color: #111827;
    font-size: 1.4rem;
    background: var(--primary);
    border-radius: 18px;
}

.service-card h3,
.process-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.28rem;
}

.service-card p,
.process-card p,
.testimonial-card p {
    margin: 0;
    color: #cbd5e1;
}

.trust-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        #0f172a;
}

.trust-grid,
.showcase-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 52px;
}

.map-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 176, 0, 0.26), transparent 10rem),
        radial-gradient(circle at 75% 70%, rgba(255, 77, 29, 0.22), transparent 11rem),
        linear-gradient(135deg, #172033, #0b1120);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 32px;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 45px 45px;
    border-radius: 28px;
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 5px solid #111827;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(255, 176, 0, 0.15);
}

.pin-one {
    top: 24%;
    left: 28%;
}

.pin-two {
    top: 55%;
    right: 24%;
}

.pin-three {
    bottom: 22%;
    left: 38%;
    background: var(--accent);
}

.map-route {
    position: absolute;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
    transform-origin: left center;
}

.route-one {
    top: 35%;
    left: 33%;
    width: 180px;
    transform: rotate(24deg);
}

.route-two {
    top: 63%;
    left: 42%;
    width: 150px;
    transform: rotate(-18deg);
}

.map-label {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.map-label strong,
.map-label span {
    display: block;
}

.map-label span {
    margin-top: 5px;
    color: #cbd5e1;
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.trust-list div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
}

.trust-list span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #111827;
    font-weight: 900;
    background: var(--primary);
    border-radius: 15px;
}

.trust-list p {
    margin: 0;
    color: #cbd5e1;
}

.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.process-card {
    padding: 28px;
}

.process-card > span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 28px;
    color: #111827;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #fff1bd);
    border-radius: 50%;
}

.showcase-section {
    background:
        radial-gradient(circle at center left, rgba(255, 176, 0, 0.11), transparent 26rem),
        #0f172a;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.feature-list div {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #dbeafe;
}

.check {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: #111827;
    font-weight: 900;
    background: var(--primary);
    border-radius: 50%;
}

.showcase-board {
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 34px;
}

.board-top {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.board-top span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 50%;
}

.coverage-card {
    padding: 22px;
    margin-top: 14px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.coverage-card.active {
    border-color: rgba(255, 176, 0, 0.5);
    background: rgba(255, 176, 0, 0.1);
}

.coverage-card:hover {
    transform: translateX(5px);
}

.coverage-card strong {
    color: #ffffff;
}

.coverage-card p {
    margin: 8px 0 0;
    color: #cbd5e1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
}

.stars {
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 22px;
    color: #ffffff;
}

.testimonial-card span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.faq-section {
    background: #0f172a;
}

.faq-grid {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    color: #ffffff;
    text-align: left;
    font-weight: 900;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.faq-item button span {
    color: var(--primary);
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.24s ease;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 20px;
    color: #cbd5e1;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.final-cta {
    position: relative;
}

.final-cta-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    padding: clamp(28px, 5vw, 54px);
    background:
        linear-gradient(135deg, rgba(255, 176, 0, 0.22), rgba(255, 77, 29, 0.12)),
        #111827;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 38px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.contact-panel {
    display: grid;
    gap: 12px;
}

.contact-panel a {
    display: block;
    padding: 18px;
    background: rgba(2, 6, 23, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-panel a:hover {
    transform: translateY(-3px);
    background: rgba(2, 6, 23, 0.72);
}

.contact-panel span,
.contact-panel strong {
    display: block;
}

.contact-panel span {
    color: #94a3b8;
    font-size: 0.86rem;
}

.contact-panel strong {
    color: #ffffff;
    margin-top: 4px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    color: #ffffff;
    font-weight: 900;
    background: #16a34a;
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(22, 163, 74, 0.36);
}

.whatsapp-float::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 9px;
    background: #ffffff;
    border-radius: 50%;
}

.site-footer {
    padding: 34px 0;
    color: #94a3b8;
    background: #070b13;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid strong {
    display: block;
    color: #ffffff;
}

.footer-grid p {
    max-width: 520px;
    margin: 8px 0 0;
}

.footer-grid span,
.footer-grid a {
    display: block;
    text-align: right;
}

.footer-grid a {
    margin-top: 6px;
    color: var(--primary);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 29, 0.75);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 77, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 29, 0);
    }
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes flash {
    from {
        opacity: 0.42;
        transform: scaleX(0.9);
    }

    to {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        padding: 18px;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        transform: translateY(-16px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    body.nav-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 12px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero-grid,
    .trust-grid,
    .showcase-grid,
    .faq-grid,
    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 480px;
    }

    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-grid .showcase-board {
        order: -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section-pad {
        padding: 64px 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 18px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 15vw, 4.6rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions,
    .quick-help-grid,
    .footer-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .quick-help a {
        width: 100%;
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 380px;
    }

    .warning-ring {
        inset: 18px;
    }

    .tow-card {
        inset: 22px 0 auto;
        min-height: 330px;
        border-radius: 28px;
    }

    .truck-shape {
        transform: scale(0.74);
        transform-origin: left center;
        margin-top: 28px;
    }

    .floating-badge {
        display: none;
    }

    .quick-help-grid {
        align-items: flex-start;
    }

    .trust-list div {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-height: 340px;
    }

    .route-one,
    .route-two {
        width: 110px;
    }

    .footer-grid span,
    .footer-grid a {
        text-align: left;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}