.app-link{
    text-decoration: none;
    color: #667eea;
}

.app-link:hover{
    text-decoration: none;
    color: #667eea;
}

/* "De ce DAUNE.expert": titlurile cardurilor micșorate pe mobil ca să încapă pe un singur rând
   (clasă proprie, nu .home-explore-title direct — folosită și pe homepage la secțiunea "Explorează",
   unde rămâne neschimbată). */
@media (max-width: 767px) {
    .why-diff-title {
        font-size: clamp(0.58rem, calc(4vw - 3.5px), 1rem) !important;
    }
}

/* Beneficii: card cu icon + efect hover reluat de la .home-explore-card (bordură verde + umbră, fără translateY) */
.rutier-benefit-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.rutier-benefit-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    border-color: #61953A;
}
.rutier-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(97,149,58,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
    margin-bottom: 1rem;
}
.rutier-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rutier-benefit-card .card-title {
    font-size: 1rem;
    line-height: 1.3;
}
.rutier-benefit-card .card-body p {
    font-size: 0.85rem;
}
@media (max-width: 480px) {
    .rutier-benefit-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }
    .rutier-benefit-card .card-title {
        font-size: 0.9rem;
    }
    .rutier-benefit-card .card-body p {
        font-size: 0.8rem;
    }
}

/* FIX: blog-post.css defineste global "a:hover{color:#5d8e28 !important}" (gandit pt. link-uri din articole),
   dar se incarca si pe aceasta pagina pt. stilul FAQ si suprascrie culorile de hover ale butoanelor/link-urilor de mai jos. */
.wrapper-rutier a.btn-success:hover { color: #000 !important; }
.wrapper-rutier .home-explore-link:hover,
.wrapper-rutier .home-explore-link:focus { color: #1a3d18 !important; }

/* CTA "Accidentele pot apărea oricând": fraza pe un singur rând, pe orice lățime de ecran —
   font-size scalat cu viewport (clamp) în loc de dimensiunea fixă din .home-title. */
.accident-cta-title {
    /* white-space: nowrap; */
    font-size: clamp(0.6rem, 3.15vw, 1.85rem) !important;
}

@media (max-width: 768px) {
    .home-title {
        font-size: clamp(1rem, calc(7.1vw - 4.6px), 1.6rem) !important;
    }
}


@media (max-width: 480px) {
    .accident-cta-btn {
        font-size: 0.85rem !important;
        padding: 0.55rem 1.5rem !important;
        white-space: nowrap;
    }
}
/* Bordură bold sus/jos — clasă proprie (nu .home-summer direct, ca să nu afecteze banda
   "Ofertă Vară 2026" de pe homepage, care folosește aceeași clasă .home-summer). */
.accident-cta-section {
    border-top: 4px solid #c8da2b;
    border-bottom: 4px solid #c8da2b;
}

/* CTA discount (deasupra formularului): banda verde-închis pe toată lățimea, la fel ca banda "Accidentele pot apărea oricând".
   Scopat la .wrapper-rutier — .summer-trigger e folosit și pe /asistenta-calatorie, unde rămâne neschimbat. */
.wrapper-rutier .summer-trigger {
    background-color: #1a3d18;
    padding: 3rem 20px;
    margin-top: 0;
    border-top: 4px solid #c8da2b;
    border-bottom: 4px solid #c8da2b;
}
.wrapper-rutier .summer-trigger-subtitle {
    color: rgba(255,255,255,0.85);
}

/* Formular: look reluat de la .home-product-card (bordură subțire, colțuri rotunjite) */
.rutier-form-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
}
.rutier-form-header {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}
.rutier-form-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a3d18;
    margin-bottom: 0.75rem;
}
.rutier-form-body {
    padding: 0 2.5rem 2rem;
}
.rutier-form-section-label {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}
.rutier-form-section-label p {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px !important;
}
.rutier-form-card .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.6rem 0.9rem;
    height: auto;
}
.rutier-form-card .form-control:focus {
    border-color: #61953A;
    box-shadow: 0 0 0 0.15rem rgba(97,149,58,0.15);
}

@media (max-width: 768px) {
    .rutier-form-body { padding: 0 1.25rem 1.5rem; }
}

/* WIZARD: indicator de progres și tranziție între pași */
.wizard-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
}

.wizard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.wizard-dot.active {
    background: #61953A;
}

/* flex column pe step 1 – permite mt-auto pe nav row pentru a elimina spațiul gol de jos */
#wizard-step-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.odero-btn-custom{
    background-color: #334D37;
    padding: 2px 0px 2px 0px ;
    border: none;
    transition: ease-in-out;
}

.odero-btn-custom-pay{
    transform: translateY(3px);
}

.odero-btn-custom:hover{
    background: #35D32F;
    background: linear-gradient(90deg, rgba(53, 211, 47, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(51, 77, 55, 1) 100%);
    border: none;
    color: #fff;
    transition: ease-in-out;
}
.pay-btn-custom{
    border: none !important;
}
.pay-inline{
    display: inline-flex;
    align-items: center;
    gap: .25em;
}

.pay-logo{
    display: inline-block;
    height: 1.1em;
}

.pay-logo-bt{
    transform: translateY(4px);
}

@media (max-width: 480px) {
    .pay-btn-custom{
        font-size: 1rem !important;
    }

    .odero-btn-custom-pay {
        width: 75px !important;
    }
    .bt-btn-custom-pay {
        width: 25px !important;
    }
}

/* Rând de preț în hero — folosit pe variantele cu discount (rutier-bt, rutier-vara), care afișează
   prețul redus direct în hero, spre deosebire de ARODEC standard (fără discount, deci fără preț tăiat). */
.hero-price-row {
    margin-bottom: 1.5rem;
}
.hero-price-old {
    color: rgba(255,255,255,0.55);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}
.hero-price-new {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
}
.hero-price-suffix {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-left: 0.4rem;
}

/* Preț tăiat în header-ul formularului — pereche cu .home-price-amount (style.css), folosită doar
   pe variantele cu discount, unde formularul standard nu are preț redus de afișat. */
.home-price-old {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

/* Badge ofertă sub prețul din formular (variante cu discount) */
.rutier-form-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 4px 12px;
    background: rgba(97,149,58,0.10);
    color: #61953A;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

/* ADDED: reseteaza mostenirea de la h1 pentru subtitlul mutat in interiorul lui */
.home-hero-title .home-subtitle {
    display: block;
    font-size: 1.125rem;        /* valoarea pe care o avea <p>-ul inainte */
    font-weight: 400;           /* AICI e bold-ul din screenshot */
    line-height: 1.5;
    letter-spacing: normal;
    text-transform: none;
    text-shadow: none;          /* daca titlul are text-shadow, il scoti de pe subtitlu */
    font-family: inherit;       /* doar daca h1 foloseste alt font decat body */
    margin-top: 0.75rem;
    margin-bottom: 0;
}