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

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

:root {
    --bg: #0b0b12;
    --card: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.09);
    --text: #f2f2f8;
    --text2: #a0a0b8;
    --accent: #f5920a;
    --accent-lt: #ffb95a;
    --accent-dk: #c47300;
    --glow: rgba(245, 146, 10, 0.25);
    --wa: #25d366;
    --mail: #60a5fa;
    --ig1: #f09433;
    --ig2: #dc2743;
    --ig3: #bc1888;
    --r: 18px;
}

html {
    font-size: 22px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 30% 5%, rgba(245, 146, 10, 0.1), transparent),
        radial-gradient(ellipse 40% 50% at 75% 85%, rgba(245, 146, 10, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
    z-index: 1;
}

/* ---------- HERO ---------- */
.hero {
    padding: 44px 0 20px;
    text-align: center;
}

.hero__truck-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.hero__truck-wrapper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 16px;
    background: radial-gradient(ellipse, var(--glow), transparent);
    filter: blur(8px);
}

.hero__truck {
    width: 80vw;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(245, 146, 10, 0.35));
    animation: bob 3.5s ease-in-out infinite;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero__title {
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--text), var(--accent-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.55rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.hero__desc {
    margin-top: 16px;
    color: var(--text2);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---------- CTA ---------- */
.cta {
    padding: 24px 0;
}

.cta__banner {
    background: linear-gradient(135deg, var(--accent-dk), var(--accent));
    border-radius: var(--r);
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 0 50px var(--glow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease;
}

.cta__banner.show {
    opacity: 1;
    transform: none;
}

.cta__banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255, 255, 255, 0.04) 18px, rgba(255, 255, 255, 0.04) 36px);
    animation: stripes 25s linear infinite;
}

@keyframes stripes {
    to {
        background-position: 50px 50px
    }
}

.cta__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    line-height: 1.35;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    position: relative;
    line-height: 1.6;
}

/* ---------- CALL BUTTON ---------- */
.call-section {
    padding: 10px 0 36px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid var(--accent);
    border-radius: var(--r);
    padding: 22px 22px;
    text-decoration: none;
    box-shadow: 0 0 28px rgba(245, 146, 10, 0.18);
    transition: all .3s ease;
}

.call-btn:active {
    transform: scale(0.98);
}

.call-btn__icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 146, 10, 0.45)
    }

    70% {
        box-shadow: 0 0 0 14px rgba(245, 146, 10, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 146, 10, 0)
    }
}

.call-btn__icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.call-btn__text {
    display: flex;
    flex-direction: column;
}

.call-btn__text strong {
    font-size: 1.15rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.call-btn__text span {
    font-size: 1.1rem;
    color: var(--accent-lt);
    margin-top: 4px;
    font-weight: 600;
}

/* ---------- ADVANTAGES ---------- */
.advantages {
    padding: 0 0 40px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-lt));
    border-radius: 2px;
}

.adv-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.adv {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--r);
    padding: 22px 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: all .45s ease;
}

.adv.show {
    opacity: 1;
    transform: none;
}

.adv__icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.adv strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.adv p {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.5;
}

/* ---------- CONTACTS ---------- */
.contacts {
    padding: 10px 0 40px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 22px;
    border-radius: var(--r);
    text-decoration: none;
    margin-bottom: 16px;
    border: 1px solid var(--card-border);
    transition: all .3s ease;
    opacity: 0;
    transform: translateY(16px);
    transition: all .45s ease;
}

.contact.show {
    opacity: 1;
    transform: none;
}

.contact:active {
    transform: scale(0.98);
}

.contact__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.contact__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.contact__body strong {
    font-size: 1.2rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact__body span {
    font-size: 1.05rem;
    color: var(--text2);
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- contact colors --- */
.contact--phone {
    background: linear-gradient(135deg, rgba(245, 146, 10, 0.14), rgba(245, 146, 10, 0.04));
    border-color: rgba(245, 146, 10, 0.3);
}

.contact--phone .contact__icon {
    background: var(--accent);
}

.contact--wa {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(37, 211, 102, 0.04));
    border-color: rgba(37, 211, 102, 0.3);
}

.contact--wa .contact__icon {
    background: var(--wa);
}

.contact--mail {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(96, 165, 250, 0.04));
    border-color: rgba(96, 165, 250, 0.3);
}

.contact--mail .contact__icon {
    background: var(--mail);
}

.contact--ig {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.14), rgba(225, 48, 108, 0.04));
    border-color: rgba(225, 48, 108, 0.3);
}

.contact--ig .contact__icon {
    background: linear-gradient(135deg, var(--ig1), var(--ig2), var(--ig3));
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 36px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: 10px;
}

.footer__city {
    font-size: 1.05rem;
    color: var(--text2);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer__copy {
    font-size: 0.9rem;
    color: #555;
}

/* ---------- FAB ---------- */
.fab {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 100;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(245, 146, 10, 0.45);
    text-decoration: none;
    animation: pulse 2s ease-out infinite;
    transition: transform .2s;
}

.fab:active {
    transform: scale(0.92);
}

.fab svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(245, 146, 10, 0.3);
    border-radius: 3px;
}

/* ========== TABLET (640+) ========== */
@media (min-width: 640px) {
    html {
        font-size: 18px;
    }

    .container {
        max-width: 700px;
    }

    .hero__truck {
        width: 320px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.8rem;
    }

    .adv-list {
        flex-direction: row;
    }

    .adv {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 28px 16px;
    }

    .adv__icon {
        font-size: 2.6rem;
    }
}

/* ========== DESKTOP (1024+) ========== */
@media (min-width: 1024px) {
    html {
        font-size: 17px;
    }

    .container {
        max-width: 800px;
    }

    .hero {
        padding: 70px 0 30px;
    }

    .hero__truck {
        width: 380px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .hero__subtitle {
        font-size: 2rem;
    }

    .call-btn {
        max-width: 520px;
        margin: 0 auto;
    }

    .contact {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}