/* =============================================
   TOKENS
   ============================================= */
:root {
    --red:        #D10000;
    --red-deep:   #A80000;
    --red-soft:   rgba(209,0,0,0.1);
    --black:      #0C0C0C;
    --black-2:    #131313;
    --black-3:    #1A1A1A;
    --white:      #FFFFFF;
    --off-white:  #F2F2F2;
    --grey:       #6B6B6B;
    --grey-lt:    #ADADAD;
    --border:     1px solid #222;
    --border-red: 2px solid var(--red);
    --font-head:  'Bebas Neue', sans-serif;
    --font-body:  'DM Sans', sans-serif;
    --ease:       cubic-bezier(.4,0,.2,1);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.7;
}
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

.btn--red {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    box-shadow: 0 4px 20px rgba(209,0,0,0.3);
}
.btn--red:hover {
    background: var(--red-deep);
    border-color: var(--red-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(209,0,0,0.45);
}

@keyframes heartbeat {
    0%,100% { box-shadow: 0 4px 20px rgba(209,0,0,0.3); }
    50%      { box-shadow: 0 4px 32px rgba(209,0,0,0.6); }
}
.btn--pulse { animation: heartbeat 2s ease-in-out infinite; }
.btn--pulse:hover { animation: none; }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid #333;
}
.btn--outline:hover { border-color: #25D366; color: #25D366; transform: translateY(-2px); }

.btn--white {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn--ghost-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: var(--red);
    padding: 10px 16px;
    text-align: center;
}

.topbar__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.topbar__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: white;
    animation: blink 1.4s infinite;
    flex-shrink: 0;
}

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

.topbar__phone {
    font-weight: 800;
    font-size: 1rem;
    background: rgba(0,0,0,0.18);
    padding: 4px 14px;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s;
}

.topbar__phone:hover { background: rgba(0,0,0,0.35); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(14px);
    border-bottom: var(--border);
}

.navbar__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 500;
    flex-shrink: 0;
}
.navbar__logo strong { font-weight: 800; }

.navbar__nav {
    display: flex;
    gap: 32px;
}

.navbar__nav a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--grey-lt);
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.navbar__nav a:hover { color: var(--white); }

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 2px solid var(--red);
    transition: all 0.2s;
    flex-shrink: 0;
}
.navbar__cta:hover { background: var(--red-deep); border-color: var(--red-deep); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 93vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.38) saturate(0.75);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12,12,12,0.97) 0%,
        rgba(12,12,12,0.78) 50%,
        rgba(12,12,12,0.15) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 28px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey-lt);
    margin-bottom: 24px;
}

.badge__dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(209,0,0,0.25);
    animation: blink 1.6s infinite;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(4.5rem, 9vw, 9.5rem);
    line-height: 0.92;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 26px;
}

.hero__title mark {
    background: none;
    color: var(--red);
}

.hero__sub {
    font-size: 1.18rem;
    color: var(--grey-lt);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 40px;
}
.hero__sub strong { color: var(--off-white); }

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Mini social proof */
.hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
}

.proof__stars { color: #F4B823; font-size: 1.1rem; letter-spacing: 2px; }
.proof__text { font-size: 0.9rem; color: var(--grey-lt); }
.proof__text strong { color: var(--white); }

.br-desk { display: block; }

/* =============================================
   TRUST BAR
   ============================================= */
.trustbar {
    background: var(--black-2);
    border-top: var(--border-red);
    border-bottom: var(--border);
}

.trustbar__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 20px;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.trust-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    color: var(--red);
    line-height: 1;
}

.trust-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trust-div {
    width: 1px;
    background: #222;
    align-self: stretch;
    margin: 16px 0;
}

/* Highlight trust item */
.trust-item--highlight {
    background: rgba(209,0,0,0.07);
}

.trust-num--white { color: var(--white) !important; font-size: 1.6rem !important; }

/* Hero cheaper pill */
.hero__cheaper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 11px 18px;
    font-size: 0.92rem;
    color: var(--grey-lt);
    margin-bottom: 32px;
    line-height: 1.4;
}

.cheaper__icon { font-size: 1.2rem; flex-shrink: 0; }

/* =============================================
   VS PLATFORMĂ SECTION
   ============================================= */
.vs-section {
    background: var(--black-3);
    border-top: var(--border-red);
    border-bottom: var(--border-red);
    padding: 100px 0;
}

.vs-section__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.vs-header {
    margin-bottom: 60px;
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border: var(--border-red);
}

.vs-col {
    padding: 48px 44px;
}

.vs-col--bad {
    background: rgba(255,255,255,0.02);
}

.vs-col--good {
    background: rgba(209,0,0,0.05);
}

.vs-col__label {
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2A2A2A;
}

.vs-col--good .vs-col__label {
    border-bottom-color: rgba(209,0,0,0.3);
}

.vs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vs-list li {
    font-size: 0.97rem;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.vs-col--bad .vs-list li {
    color: var(--grey);
}

.vs-col--bad .vs-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #444;
}

.vs-col--good .vs-list li {
    color: var(--grey-lt);
}

.vs-col--good .vs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.vs-col--good .vs-list li strong {
    color: var(--white);
}

/* VS divider */
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    background: var(--black);
    border-left: var(--border-red);
    border-right: var(--border-red);
    flex-shrink: 0;
}

.vs-divider span {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--red);
    writing-mode: vertical-rl;
    letter-spacing: 6px;
}

/* Responsive VS */
@media (max-width: 860px) {
    .vs-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        width: 100%;
        height: 56px;
        border-left: none;
        border-right: none;
        border-top: var(--border-red);
        border-bottom: var(--border-red);
    }

    .vs-divider span {
        writing-mode: horizontal-tb;
        letter-spacing: 4px;
    }

    .vs-col {
        padding: 36px 28px;
    }
}


/* =============================================
   SERVICE CARD — 4-column grid
   ============================================= */
.service-list {
    grid-template-columns: repeat(4, 1fr);
}

.service-card--highway {
    background: var(--black-3);
    border-right: var(--border-red);
    position: relative;
    overflow: hidden;
}

.service-card--highway::before {
    content: 'A2 / A4';
    position: absolute;
    top: 14px; right: -8px;
    background: var(--red);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 16px;
    transform: rotate(0deg);
}

.service-card--highway .svc-icon { color: #FF4444; }
.service-card--highway .svc-link { color: #FF4444; }

/* =============================================
   HIGHWAY URGENCY BAND
   ============================================= */
.highway-band {
    background: #0E0E0E;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    padding: 20px 28px;
}

.highway-band__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hb-icon {
    color: var(--red);
    flex-shrink: 0;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%,90%,100% { transform: rotate(0); }
    92% { transform: rotate(-8deg); }
    96% { transform: rotate(8deg); }
}

.hb-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hb-text strong {
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.3px;
}

.hb-text span {
    font-size: 0.88rem;
    color: var(--grey-lt);
}

.hb-btn {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 2px solid var(--red);
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.hb-btn:hover {
    background: transparent;
    color: var(--red);
}

/* =============================================
   TCARD — Highway special (full-width)
   ============================================= */
.tcard--highway {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    background: #0E0E0E;
    border-left: 4px solid var(--red);
    border-bottom: 1px solid #1E1E1E;
}

.tcard--highway .tcard__text {
    border-left: none;
    padding-left: 0;
    font-size: 1rem;
    flex: 1;
}

.tcard--highway .tcard__top { flex-shrink: 0; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 180px; }
.tcard--highway .tcard__stars { margin-left: 0; }

/* =============================================
   FAQ — Urgent item (autostrada)
   ============================================= */
.faq-item--urgent {
    border-color: var(--red) !important;
    background: rgba(209,0,0,0.04);
}

.faq-item--urgent .faq-q {
    color: var(--white);
}

.faq-item--urgent .faq-q::after {
    color: var(--red);
}

/* 4-col responsive */
@media (max-width: 1100px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card--highway { border-right: var(--border-red); }
    .service-card:nth-child(2) { border-right: none; }
    .service-card:nth-child(3), .service-card:nth-child(4) { border-top: var(--border-red); }
}


/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 100px 0;
    background: var(--black);
}

.services__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-head { display:flex; flex-direction:column; gap:10px; margin-bottom:48px; }
.section-head.centered { align-items:center; text-align:center; }

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
}

.section-h2 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.5px;
}

.section-desc {
    color: var(--grey-lt);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.75;
    margin-top: 4px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: var(--border-red);
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 48px 36px;
    border-right: var(--border-red);
    background: var(--black-2);
    position: relative;
    transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--black-3); }

.service-card--featured {
    background: var(--red) !important;
}
.service-card--featured:hover { background: var(--red-deep) !important; }
.service-card--featured::after { display: none; }

.svc-featured-label {
    position: absolute;
    top: 0; right: 0;
    background: var(--black);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
}

.svc-icon {
    color: var(--red);
    margin-bottom: 24px;
}
.service-card--featured .svc-icon { color: rgba(255,255,255,0.9); }

.service-card h3 {
    font-family: var(--font-head);
    font-size: 2.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.05;
}

.service-card p {
    font-size: 0.97rem;
    color: var(--grey-lt);
    line-height: 1.78;
    flex: 1;
    margin-bottom: 28px;
}
.service-card--featured p { color: rgba(255,255,255,0.82); }

.svc-link {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--red);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
    transition: letter-spacing 0.2s;
}
.svc-link:hover { letter-spacing: 2px; }
.service-card--featured .svc-link { color: var(--white); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 100px 0;
    background: var(--black-2);
    border-top: var(--border);
    border-bottom: var(--border);
}

.testimonials__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.test-global-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 1.1rem;
    color: var(--grey-lt);
}

.test-stars { color: #F4B823; font-size: 1.4rem; letter-spacing: 2px; }
.test-global-rating strong { color: var(--white); font-size: 2rem; font-family: var(--font-head); letter-spacing: 0; }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2px;
    background: #1E1E1E;
}

.tcard {
    background: var(--black-2);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background 0.2s;
}

/* Large card spans column 1, rows 1+2 */
.tcard--large {
    grid-row: 1 / 3;
}

.tcard:hover { background: var(--black-3); }

.tcard::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(209,0,0,0.12);
    line-height: 1;
    pointer-events: none;
}

.tcard__top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tcard__avatar {
    width: 46px; height: 46px;
    background: var(--av-color, var(--red));
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.tcard__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.tcard__meta {
    font-size: 0.8rem;
    color: var(--grey);
    margin-top: 2px;
}

.tcard__stars {
    margin-left: auto;
    color: #F4B823;
    font-size: 0.95rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.tcard__text {
    font-size: 0.97rem;
    color: var(--grey-lt);
    line-height: 1.8;
    font-style: normal;
    border-left: 3px solid var(--red);
    padding-left: 16px;
    flex: 1;
}

.tcard--large .tcard__text {
    font-size: 1.05rem;
}

.tcard__text strong { color: var(--white); font-style: normal; }

.tcard__service {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #1E1E1E;
}

/* =============================================
   ZONES
   ============================================= */
.zones {
    padding: 90px 0;
    background: var(--black);
    border-bottom: var(--border);
}

.zones__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.zones__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--black-2);
    border: 1px solid #242424;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--grey-lt);
    transition: all 0.2s;
    cursor: default;
}

.zone-chip:hover {
    border-color: var(--red);
    color: var(--white);
    background: var(--black-3);
}

.zone-chip--red {
    border-color: var(--red);
    color: var(--white);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 100px 0;
    background: var(--black-2);
}

.faq__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    background: var(--black-3);
    border: 1px solid #232323;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--red);
}

.faq-q {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    transition: background 0.2s;
    user-select: none;
    gap: 16px;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-q:hover { background: rgba(255,255,255,0.03); }

.faq-a {
    padding: 0 28px 22px;
    color: var(--grey-lt);
    font-size: 0.97rem;
    line-height: 1.78;
    border-top: 1px solid #232323;
}

.faq-a p { padding-top: 16px; }
.faq-a strong { color: var(--white); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background: var(--red);
    padding: 90px 28px;
}

.cta-band__wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band__text h2 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-band__text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 400px;
    line-height: 1.6;
}

.cta-band__text p strong { color: var(--white); }

.cta-band__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--black-2);
    border-top: var(--border);
    padding: 64px 28px 24px;
}

.footer__wrap { max-width: 1240px; margin: 0 auto; }

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: var(--border);
    margin-bottom: 24px;
}

.footer__brand .navbar__logo { margin-bottom: 14px; }

.footer__brand p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.7;
}

.footer__contact h3,
.footer__zones h3 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 16px;
}

.footer__phone {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.2s;
}
.footer__phone:hover { color: var(--red); }

.footer__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #25D366;
    transition: opacity 0.2s;
}
.footer__wa:hover { opacity: 0.8; }

.footer__zones p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.9;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #333;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .navbar__nav { display: none; }

    .service-list { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: var(--border-red); }
    .service-card:last-child { border-bottom: none; }

    .testimonials__grid { grid-template-columns: 1fr; }
    .tcard--large { grid-row: auto; }

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

    .cta-band__wrap { flex-direction: column; text-align: center; }
    .cta-band__text p { max-width: 100%; }
    .cta-band__btns { justify-content: center; width: 100%; }

    .footer__top { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { flex-direction: column; }

    .trustbar__wrap { flex-wrap: wrap; }
    .trust-item { flex-basis: 45%; }
    .trust-div:nth-child(4) { display: none; }

    .hero__overlay {
        background: linear-gradient(180deg,rgba(12,12,12,0.94) 0%,rgba(12,12,12,0.7) 100%);
    }
    .br-desk { display: none; }
}

@media (max-width: 680px) {
    .hero__content { padding: 60px 20px; }
    .hero__title { font-size: 3.8rem; }
    .hero__sub { font-size: 1.05rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }

    .topbar__inner { font-size: 0.8rem; gap: 10px; }

    .trust-item { flex-basis: 100%; }
    .trust-div { display: none; }

    .cta-band__btns { flex-direction: column; }
    .cta-band__btns .btn { width: 100%; justify-content: center; }

    .zones__grid { gap: 8px; }
    .zone-chip { font-size: 0.88rem; padding: 10px 16px; }

    .tcard { padding: 28px 20px; }
}
