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

:root {
    --green: #027937;
    --green-dark: #015A29;
    --green-btn: #1a7a3c;
    --black: #111111;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-text: #444444;
    --gray-border: #e0e0e0;
    --font: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased
}

#despre,
#servicii,
#cum-functioneaza,
#de-ce,
#cum-alegi-masina-potrivita,
#panel-transport,
#panel-tractar,
#cum-calculam-pretul,
#partener,
#contact,
#recomandari {
    scroll-margin-top: 50px;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.logo-icon img {
    width: 100%;
    height: auto;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white
}

.logo-wordmark {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
}

.logo-wordmark span {
    color: var(--green)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    transition: opacity .15s;
}

.nav-links a:hover {
    opacity: .7
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
}

.nav-lang img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px
}

/* ── HERO ── */
.hero {
    min-height: 500px;
    display: grid;
    grid-template-columns:1fr 1fr;
    background: var(--black);
    overflow: hidden;
    position: relative;
}

.hero-left {
    padding: 72px 56px 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #027937;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.hero h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero h1 .accent {
    color: #027937
}

.hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    max-width: 440px;
    margin-bottom: 32px;
}

.hero-sub strong {
    color: white;
    font-weight: 600
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

.btn-app:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25)
}

.btn-app svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.btn-app-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.btn-app-label small {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray-text)
}

.btn-app-label span {
    font-size: 14px;
    font-weight: 700
}

.hero-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

.hero-trust-item::before {
    content: '✓';
    color: #027937;
    font-weight: 700
}

/* Phone mockup */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    background: var(--black);
}

.phone-mockup {
    width: 220px;
    background: #1a1a1a;
    border-radius: 36px;
    border: 8px solid #2a2a2a;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.phone-screen {
    background: var(--white);
    padding: 28px 14px 16px;
    min-height: 380px;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.phone-question {
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.phone-services-label {
    font-size: 9px;
    color: var(--gray-text);
    margin-bottom: 8px
}

.phone-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 7px;
    margin-bottom: 12px
}

.phone-service {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 9px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 8px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.phone-service-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-service-icon svg {
    width: 16px;
    height: 16px
}

.s-green {
    background: #d4f0dc
}

.s-green svg {
    fill: var(--green)
}

.s-blue {
    background: #dce8f5
}

.s-blue svg {
    fill: #2563eb
}

.s-orange {
    background: #fce8d8
}

.s-orange svg {
    fill: #ea6f1e
}

.s-purple {
    background: #ede8f7
}

.s-purple svg {
    fill: #7c3aed
}

.phone-banner {
    background: var(--green);
    border-radius: 8px;
    padding: 10px 10px;
    color: white;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.4;
}

.phone-banner strong {
    display: block;
    font-size: 9px;
    margin-bottom: 2px
}

/* ── TRUST STRIP ── */
.trust-strip {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    margin-bottom: 2px;
}

.trust-tile {
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-tile:last-child {
    border-right: none
}

.trust-tile.dark {
    background: var(--black);
    color: white
}

.trust-tile.green {
    background: var(--green);
    color: white
}

.trust-tile.dark2 {
    background: #0a0a0a;
    color: white
}

.trust-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 4px
}

.trust-icon svg {
    width: 36px;
    height: 36px
}

.trust-tile.dark svg, .trust-tile.dark2 svg {
    fill: rgba(255, 255, 255, .85)
}

.trust-tile.green svg {
    fill: white
}

.trust-label {
    font-size: 16px;
    font-weight: 700
}

.trust-desc {
    font-size: 13px;
    opacity: .65;
    line-height: 1.45
}

/* ── SECTION COMMONS ── */
section {
    padding: 72px 48px
}

.section-inner {
    max-width: 1140px;
    margin: 0 auto
}

.section-center {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.65
}

/* ── ABOUT / RAPID SI DE INCREDERE ── */
.about-section {
    padding: 0;
    overflow: hidden
}

.about-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    min-height: 360px
}

.about-left {
    background: var(--green);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.about-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 28px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: white;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
    width: fit-content;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .22)
}

.about-right {
    background: var(--black);
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
}

.about-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #027937;
    min-width: 64px;
    text-align: center;
}

.about-stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.45
}

.about-stat-text strong {
    color: white;
    font-weight: 600;
    display: block;
    font-size: 14px;
    margin-bottom: 2px
}

/* ── SERVICES ── */
.services-bg {
    background: var(--white)
}

.services-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 28px;
}

.service-card {
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
    border-color: rgba(26, 122, 60, .3);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

/* SVG illustration placeholders */
.service-img-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-img-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: .25
}

.service-body {
    padding: 22px 24px 24px
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black)
}

.service-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 16px
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: white;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}

.btn-green:hover {
    background: var(--green-dark)
}

.btn-green-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--green);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 7px;
    border: 1.5px solid var(--green);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
}

.btn-green-outline:hover {
    background: var(--green);
    color: white
}

/* Service image color strips */
.si-cargo {
    background: linear-gradient(135deg, #1a3a27 0%, #2a5c3f 100%)
}

.si-towing {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%)
}

.si-crew {
    background: linear-gradient(135deg, #1a2a1a 0%, #2a422a 100%)
}

.si-cargo svg, .si-towing svg, .si-waste svg, .si-crew svg {
    opacity: .35;
    fill: white;
    width: 90px;
    height: 90px
}

.service-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    height: 100%;
}

.freight-bg {
    background-image: url("/assets/images/freight.jpg");
}

.towing-bg {
    background-image: url("/assets/images/towing.jpg");
}

.loading-crew-bg {
    background-image: url("/assets/images/loading-team.jpg");
}

.waste-bg {
    background-image: url("/assets/images/saci-de-rafie-editat.png");
}

/* ── WHY US ── */
.why-bg {
    background: var(--gray-light)
}

.why-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.why-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}

.why-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: #e8f5ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 5px;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--green)
}

.why-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black)
}

.why-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65
}

/* ── HOW IT WORKS (steps) ── */
.steps-section {
    background: white
}

.steps-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    overflow: hidden;
}

.step-item {
    padding: 28px 24px;
    border-right: 1px solid var(--gray-border);
    position: relative;
}

.step-item:last-child {
    border-right: none
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: white;
    font-size: 17px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black)
}

.step-text {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6
}

.step-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    background: #e8f5ee;
    color: var(--green);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── PROBLEM / SOLUTION ── */
.problems-bg {
    background: var(--gray-light)
}

.prob-grid {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.prob-row {
    display: grid;
    grid-template-columns:1fr 48px 1fr;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
}

.prob-cell {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px 0 0 10px;
}

.sol-cell {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 10px 10px 0;
}

.arrow-mid {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #027937;
    font-size: 18px;
    font-weight: 700;
}

.prob-icon-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.x-dot {
    background: #fecaca;
    color: #b91c1c
}

.ok-dot {
    background: #bbf7d0;
    color: #15803d
}

.prob-text {
    font-size: 13px;
    color: #7f1d1d;
    line-height: 1.45
}

.sol-text {
    font-size: 13px;
    color: #14532d;
    font-weight: 500;
    line-height: 1.45
}

/* ── CTA FINAL ── */
.cta-final {
    background: var(--black);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26, 122, 60, .25) 0%, transparent 70%);
}

.cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto
}

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-final h2 .accent {
    color: #027937
}

.cta-final p {
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.app-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, .35)
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 40px 48px 32px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    margin-top: 8px
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s
}

.footer-links a:hover {
    color: white
}

.footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7
}

.footer-contact a {
    color: var(--green);
    text-decoration: none
}

.footer-bottom {
    max-width: 1140px;
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(255, 255, 255, .25)
}


/* ── VEHICLES SECTION ── */
.vehicles-section {
    background: var(--gray-light);
    padding: 72px 48px;
}

.vehicles-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.vtabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.vtab {
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--gray-border);
    background: white;
    font-family: var(--font);
    color: var(--gray-text);
    cursor: pointer;
    transition: all .15s;
}

.vtab.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

.vtab:hover:not(.active) {
    border-color: var(--green);
    color: var(--green);
}

.vpanel {
    display: none;
}

.vpanel.active {
    display: block;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vehicles-grid.towing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.vcard {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.vcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .09);
    border-color: rgba(26, 122, 60, .3);
}

.vcard-img {
    width: 100%;
    height: 160px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px 16px;
}

.vcard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
}

.vcard-body {
    padding: 18px 20px 20px;
}

.vcard-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.vcard-tagline {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 14px;
    line-height: 1.4;
}

.vcard-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 14px;
}

.vcard-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-border);
}

.vcard-specs li:last-child {
    border-bottom: none;
}

.vspec-label {
    color: var(--gray-text);
}

.vspec-val {
    font-weight: 700;
    color: var(--black);
    font-size: 12px;
}

.vcard-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}

.vuse {
    font-size: 11px;
    font-weight: 500;
    background: var(--green-light);
    color: var(--green);
    padding: 3px 9px;
    border-radius: 20px;
}

/* Towing sub-grid: 3+3 layout */
.towing-note {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

.towing-note strong {
    color: var(--black);
}

.towing-note-icon {
    width: 36px;
    height: 36px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.towing-note-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green);
}

.towing-platforms {
    margin-bottom: 32px;
}

.towing-sub-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-text);
    margin-bottom: 14px;
}

.towing-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.towing-vehicles-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-text);
    margin-bottom: 14px;
}

.towing-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ttype-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    transition: border-color .15s, box-shadow .15s;
}

.ttype-card:hover {
    border-color: rgba(26, 122, 60, .3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.ttype-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.ttype-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green);
}

.ttype-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.ttype-platform {
    font-size: 11px;
    color: var(--gray-text);
}

/* ── PRICING LOGIC SECTION ── */
.pricing-section {
    background: white;
    padding: 72px 48px;
}

.pricing-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pricing-visual {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 28px;
}

.pricing-component {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--gray-border);
    margin-bottom: 10px;
    transition: border-color .15s;
}

.pricing-component:hover {
    border-color: rgba(26, 122, 60, .3);
}

.pricing-component:last-child {
    margin-bottom: 0;
}

.pc-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green);
}

.pc-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.pc-desc {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.45;
}

.pricing-total {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-total-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.pricing-total-val {
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.pricing-total-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    margin-top: 2px;
}

/* ── PARTNER SECTION ── */
.partner-section {
    background: var(--black);
    padding: 72px 48px;
}

.partner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.partner-content h2 span {
    color: #027937;
}

.partner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.partner-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.partner-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.partner-bullets li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 222, 128, .15);
    color: #027937;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.p-stat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}

.p-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #027937;
    line-height: 1;
    margin-bottom: 6px;
}

.p-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.45;
}

@media (max-width: 960px) {
    .vehicles-section {
        padding: 48px 24px;
    }

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

    .towing-grid-2 {
        grid-template-columns: 1fr;
    }

    .towing-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .partner-inner {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 48px 24px;
    }

    .partner-section {
        padding: 48px 24px;
    }
}

@media (max-width: 600px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .towing-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-stats {
        grid-template-columns: 1fr 1fr;
    }
}


/* ── VEHICLES SECTION ── */
.vehicles-section {
    background: var(--gray-light);
    padding: 72px 48px
}

.vehicles-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px
}

.vtabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px
}

.vtab {
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--gray-border);
    background: white;
    font-family: var(--font);
    color: var(--gray-text);
    cursor: pointer;
    transition: all .15s
}

.vtab.active {
    background: var(--green);
    border-color: var(--green);
    color: white
}

.vtab:hover:not(.active) {
    border-color: var(--green);
    color: var(--green)
}

.vpanel {
    display: none
}

.vpanel.active {
    display: block
}

.vehicles-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.vcard {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    border-top: 3px solid var(--green)
}

.vcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .09);
    border-color: rgba(26, 122, 60, .3)
}

.vcard-img {
    width: 100%;
    height: 180px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px 20px
}

.vcard-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none
}

.vcard-body {
    padding: 18px 20px 20px
}

.vcard-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px
}

.vcard-tagline {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 14px;
    line-height: 1.4;
    font-style: italic
}

.vcard-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 14px
}

.vcard-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-border)
}

.vcard-specs li:last-child {
    border-bottom: none
}

.vspec-label {
    color: var(--gray-text)
}

.vspec-val {
    font-weight: 700;
    color: var(--black);
    font-size: 12px
}

.vcard-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px
}

.vuse {
    font-size: 11px;
    font-weight: 500;
    background: var(--green-light);
    color: var(--green);
    padding: 3px 9px;
    border-radius: 20px
}

.towing-note {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5
}

.towing-note strong {
    color: var(--black)
}

.towing-note-icon {
    width: 36px;
    height: 36px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.towing-note-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green)
}

.towing-platforms {
    margin-bottom: 32px
}

.towing-sub-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-text);
    margin-bottom: 14px
}

.towing-grid-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.towing-vehicles-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-text);
    margin-bottom: 14px
}

.towing-types-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px
}

.ttype-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    transition: border-color .15s, box-shadow .15s
}

.ttype-card:hover {
    border-color: rgba(26, 122, 60, .3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.ttype-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px
}

.ttype-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green)
}

.ttype-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px
}

.ttype-platform {
    font-size: 11px;
    color: var(--gray-text)
}

/* ── PRICING ── */
.pricing-section {
    background: white;
    padding: 72px 48px
}

.pricing-inner {
    max-width: 1140px;
    margin: 0 auto
}

.pricing-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: center
}

.pricing-visual {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 28px
}

.pricing-component {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--gray-border);
    margin-bottom: 10px;
    transition: border-color .15s
}

.pricing-component:hover {
    border-color: rgba(26, 122, 60, .3)
}

.pricing-component:last-child {
    margin-bottom: 0
}

.pc-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pc-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--green)
}

.pc-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px
}

.pc-desc {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.45
}

.pricing-total {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.pricing-total-label {
    font-size: 14px;
    font-weight: 700;
    color: white
}

.pricing-total-val {
    font-size: 18px;
    font-weight: 800;
    color: white
}

.pricing-total-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    margin-top: 2px
}

/* ── PARTNER ── */
.partner-section {
    background: var(--black);
    padding: 72px 48px
}

.partner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center
}

.partner-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px
}

.partner-content h2 span {
    color: #027937
}

.partner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px
}

.partner-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px
}

.partner-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8)
}

.partner-bullets li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 222, 128, .15);
    color: #027937;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.p-stat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center
}

.p-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #027937;
    line-height: 1;
    margin-bottom: 6px
}

.p-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.45
}

.partner-stats {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

@media (max-width: 960px) {
    .vehicles-section, .pricing-section, .partner-section {
        padding: 48px 24px
    }

    .vehicles-grid {
        grid-template-columns:1fr 1fr
    }

    .towing-grid-2 {
        grid-template-columns:1fr
    }

    .towing-types-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .pricing-grid {
        grid-template-columns:1fr
    }

    .partner-inner {
        grid-template-columns:1fr
    }
}

@media (max-width: 600px) {
    .vehicles-grid {
        grid-template-columns:1fr
    }

    .towing-types-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .partner-stats {
        grid-template-columns:1fr 1fr
    }
}


/* ── HOW IT WORKS — new split layout ── */
.steps-section {
    background: white;
    padding: 72px 48px
}

.steps-split {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 360px;
    gap: 64px;
    align-items: center;
}

.steps-left {
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px
}

.step-row {
    display: flex;
    gap: 20px;
    padding: 24px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .15s;
    position: relative;
}

.step-row::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 64px;
    bottom: -1px;
    width: 2px;
    background: var(--gray-border);
}

.step-row:last-child::before {
    display: none
}

.step-row.active {
    background: var(--green-light)
}

.step-row.active .step-num-new {
    background: var(--green);
    color: white
}

.step-row:hover:not(.active) {
    background: var(--gray-light)
}

.step-num-new {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gray-light);
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all .15s;
    position: relative;
    z-index: 1;
}

.step-content-new {
}

.step-title-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px
}

.step-text-new {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6
}

.step-tag-new {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(26, 122, 60, .1);
    color: var(--green);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Phone mockup right side */
.steps-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.steps-phone-frame {
    width: 260px;
    position: relative;
}

.steps-phone-notch {
    display: none;
}

.steps-phone-screen {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.steps-phone-screen img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity .3s ease;
}

@media (max-width: 960px) {
    .steps-section {
        padding: 48px 24px
    }

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

    .steps-phone {
        display: none
    }
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;

    position: sticky;
    top: 0;

    background: #fefefe;
    z-index: 1200;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE / TABLET <= 1440px */
@media (max-width: 1440px) {
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;

        background: #fefefe;

        display: none;
        flex-direction: column;

        justify-content: center; /* vertical centering */
        align-items: center; /* horizontal centering */

        gap: 25px;

        list-style: none;
        padding: 0;
        margin: 0;

        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 20px;
    }
}

.about-me-first-section {
    justify-content: flex-start;
}

.footer-middle-legal {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.litigii-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.litigii-container img {
    width: 50%;
    height: auto;
    min-width: 200px;
}

.footer-website-link {
    text-decoration: none;
}

.contact-column-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.netopia-container {
    margin-top: auto;
}


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    nav {
        padding: 0 24px
    }

    .hero {
        grid-template-columns:1fr
    }

    .hero-right {
        display: none
    }

    .about-grid {
        grid-template-columns:1fr
    }

    .services-grid {
        grid-template-columns:1fr
    }

    .why-grid {
        grid-template-columns:1fr 1fr
    }

    .steps-grid {
        grid-template-columns:1fr 1fr
    }

    .steps-grid .step-item:nth-child(2) {
        border-right: none
    }

    .trust-strip {
        grid-template-columns:1fr
    }

    .trust-tile {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .footer-inner {
        grid-template-columns:1fr
    }

    .footer-middle-legal {
        grid-template-columns:1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 48px 20px
    }

    nav {
        padding: 0 16px
    }

    .nav-links {
        display: none
    }

    .hero-left {
        padding: 48px 24px
    }

    .about-left, .about-right {
        padding: 48px 24px
    }

    .steps-grid {
        grid-template-columns:1fr
    }

    .steps-grid .step-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-border)
    }

    .why-grid {
        grid-template-columns:1fr
    }

    .prob-row {
        grid-template-columns:1fr
    }

    .arrow-mid {
        height: 36px
    }

    .prob-cell {
        border-radius: 10px 10px 0 0
    }

    .sol-cell {
        border-radius: 0 0 10px 10px
    }

    footer {
        padding: 32px 20px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .cta-final {
        padding: 56px 20px
    }
}

/* FAQ */
.faq-section {
    background: var(--bg-light, #f7f8fa)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.faq-item {
    border-bottom: 1px solid var(--gray-border, #e5e7eb)
}

.faq-item summary {
    font-size: 16px;
    font-weight: 600;
    color: var(--black, #1a1a1a);
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    color: var(--green, #22c55e);
    flex-shrink: 0
}

.faq-item[open] summary::after {
    content: "−"
}

.faq-a {
    font-size: 16px;
    color: var(--gray-text, #6b7280);
    line-height: 1.7;
    padding-bottom: 20px
}
