﻿/* ============================================================
   VEHICLE CARD — LISTING (TOKEN-DRIVEN)
   ============================================================ */

.vehicle-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .vehicle-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.vehicle-card-inner {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-light);
}

.vehicle-info {
    padding: var(--space-4);
}

.vehicle-title {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.vehicle-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-3) 0;
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    color: var(--text-medium);
}

    .vehicle-meta li strong {
        font-weight: 600;
    }

.vehicle-price {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary);
}

/* ============================================================
   VEHICLE DETAIL PAGE — BASE (TOKEN-DRIVEN)
   ============================================================ */

.vehicle-detail-page {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text-dark);
    line-height: var(--lh-normal);
}

.vd-section {
    padding: var(--space-5) 0;
    /*    border-bottom: 1px solid var(--border-light);*/
}

    .vd-section:last-child {
        border-bottom: none;
    }

    .vd-section h3,
    .vd-section h4 {
        font-weight: 600;
        margin-bottom: var(--space-3);
        color: var(--text-dark);
    }
.vd-section-title {
    color: var(--text-dark);
}
/* ============================================================
   GALLERI — PREMIUM (TOKEN-DRIVEN)
   ============================================================ */
.vd-gallery {
    position: relative;
}

.vd-gallery-counter {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--font-sm);
    z-index: 10;
}

/* Huvudbildens canvas */
.vd-gallery-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Själva bilden */
.vd-gallery-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity .2s;
}

/* Thumbnails */
.vd-gallery-thumbs img {
    width: 120px;
    height: 80px;
    background: var(--bg-dark);
    object-fit: contain;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s, opacity .2s;
}

    .vd-gallery-thumbs img:hover {
        opacity: .7;
    }

    .vd-gallery-thumbs img.active {
        border-color: var(--primary);
    }

/* ============================================================
   SIDOKORT — PRIS, SÄLJARE, KONTAKT (TOKEN-DRIVEN)
   ============================================================ */

.vd-side-info {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

    .vd-side-info h3 {
        font-size: var(--font-xl);
        margin-bottom: var(--space-2);
        color: var(--text-dark);
    }

    .vd-side-info h4 {
        font-size: var(--font-lg);
        color: var(--primary);
        margin-bottom: var(--space-4);
    }

/* Prisbox */
.vd-price-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.vd-price {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.vd-seller {
    font-size: var(--font-sm);
    margin-bottom: var(--space-4);
    color: var(--text-medium);
}

    .vd-seller strong {
        display: block;
        font-size: var(--font-md);
        margin-top: var(--space-1);
        color: var(--text-dark);
    }

/* ============================================================
   ACTION BUTTONS (TOKEN-DRIVEN)
   ============================================================ */

.vd-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.vd-action-btn {
    flex: 1 1 calc(50% - var(--space-3));
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--font-sm);
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

    .vd-action-btn:hover {
        background: var(--primary-light);
        box-shadow: var(--shadow-md);
    }

    .vd-action-btn i {
        font-size: var(--font-md);
        color: var(--primary);
    }
/* ============================================================
   SEKTION 3 — TEKNISK INFO (SPECIFIKATIONER)
   ============================================================ */

.vd-spec-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   SEKTION 4 — TJÄNSTER
   ============================================================ */

.vd-service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    text-align: center;
    transition: box-shadow .2s ease;
    box-shadow: var(--shadow-sm);
}

    .vd-service-card:hover {
        box-shadow: var(--shadow-md);
    }

    .vd-service-card h4 {
        font-size: var(--font-lg);
        margin-bottom: var(--space-3);
        color: var(--text-dark);
    }

/* ============================================================
   SEKTION 5 — UTRUSTNING
   ============================================================ */

.vd-feature-col h4 {
    margin-top: var(--space-5);
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-dark);
}

.vd-feature-col ul {
    padding-left: var(--space-4);
}

.vd-feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 var(--space-5) 0;
}

    .vd-feature-list li {
        padding: var(--space-2) 0;
        border-bottom: 1px solid var(--border-light);
        font-size: var(--font-sm);
        color: var(--text-medium);
    }

        .vd-feature-list li:last-child {
            border-bottom: none;
        }

/* ============================================================
   SEKTION 7 — BESKRIVNING
   ============================================================ */

.vd-description-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
    line-height: var(--lh-loose);
}

/* ============================================================
   SEKTION 8 — KONTAKT
   ============================================================ */

.vd-opening-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd-opening-hours li {
    font-size: var(--font-sm);
    padding: var(--space-1) 0;
    color: var(--text-medium);
}

.vd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.vd-contact-card {
    padding: var(--space-6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    line-height: var(--lh-loose);
}

.seller-card {
    background: var(--bg-light);
}

.vd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.seller-card {
    background: var(--bg-light);
}

.message-card {
    background: var(--primary);
    color: var(--bg-white);
}

.vd-contact-icon {
    font-size: 3rem;
    margin-bottom: var(--space-3);
    color: var(--accent-yellow);
}


.vd-contact-card p {
    margin: 0 0 var(--space-1);
    line-height: 1.3;
}

.vd-contact-card ul {
    margin: 0;
    padding-left: var(--space-4);
}

.vd-contact-card li {
    margin-bottom: var(--space-1);
    line-height: 1.3;
}

/* Extra kompakt för mobil */
@media (max-width: 768px) {
    .vd-contact-card p,
    .vd-contact-card li {
        margin-bottom: var(--space-1);
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .vd-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .form-blue {
        padding: var(--space-5);
    }

    .seller-card {
        padding: var(--space-5);
    }

    .form-blue-large-icon {
        margin-bottom: var(--space-2);
    }
}


/* ============================================================
   LIGHTBOX / ZOOM
   ============================================================ */

.vd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.vd-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.vd-lightbox-close {
    position: absolute;
    top: var(--space-5);
    right: calc(var(--space-5) * 2);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* ============================================================
   EXTERN ANNONSBOX
   ============================================================ */

.external-ad-box {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    /*    margin: var(--space-4) 0;*/
}

.external-ad-label {
    font-size: var(--font-xs);
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.external-ad-content {
    text-align: center;
}

.external-ad-title {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--text-dark);
}

.external-ad-text {
    font-size: var(--font-sm);
    color: var(--text-medium);
    margin-bottom: var(--space-3);
}

.external-ad-placeholder {
    width: 970px;
    height: 250px;
    max-width: 100%;
    background: var(--bg-light);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-md);
    margin: 0 auto;
}

.external-ad-placeholder-970x250 {
    width: 970px;
    height: 250px;
    max-width: 100%;
    background: var(--primary);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-md);
    margin: 0 auto;
}
.external-ad-placeholder-160x660 {
    width: 160px;
    height: 6000px;
    max-width: 100%;
    background: var(--primary);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-md);
    margin: 0 auto;
}
.external-ad-placeholder-300x600 {
    width: 300px;
    height: 600px;
    max-width: 100%;
    background: var(--primary);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-md);
    margin: 0 auto;
}
.external-ad-placeholder-728x90 {
    width: 728px;
    height: 90px;
    max-width: 100%;
    background: var(--primary);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-md);
    margin: 0 auto;
}
/* ============================================================
   SHARE POPUP (TOKEN-DRIVEN)
   ============================================================ */

.vd-share-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.vd-share-content {
    background: var(--bg-white);
    padding: var(--space-5);
    width: 90%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: fadeIn .25s ease-out;
}

    .vd-share-content h3 {
        margin-bottom: var(--space-2);
        font-size: var(--font-lg);
        color: var(--text-dark);
    }

.vd-share-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin: var(--space-4) 0;
}

.vd-share-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--bg-light);
    transition: background .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--text-dark);
}

    .vd-share-item:hover {
        background: var(--primary-light);
        box-shadow: var(--shadow-md);
    }

    .vd-share-item i {
        font-size: var(--font-lg);
        color: var(--primary);
    }

.vd-share-close {
    width: 100%;
    padding: var(--space-3);
    border: none;
    background: var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-sm);
}
/* ============================================================
   LEAD FORM POPUP (TOKEN-DRIVEN)
   ============================================================ */

.vd-lead-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.vd-lead-content {
    background: var(--bg-white);
    padding: var(--space-5);
    width: 90%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.vd-field {
    margin-bottom: var(--space-3);
}

    .vd-field label {
        display: block;
        margin-bottom: var(--space-1);
        font-weight: 600;
        font-size: var(--font-sm);
        color: var(--text-dark);
    }

    .vd-field input,
    .vd-field textarea {
        width: 100%;
        padding: var(--space-2);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-sm);
        font-size: var(--font-sm);
        color: var(--text-dark);
    }

.vd-checkbox {
    margin: var(--space-3) 0;
    display: flex;
    gap: var(--space-2);
    align-items: center;
    font-size: var(--font-sm);
    color: var(--text-medium);
}

.vd-info {
    font-size: var(--font-xs);
    color: var(--text-light);
    margin-bottom: var(--space-3);
    display: flex;
    gap: var(--space-1);
    align-items: center;
}

.vd-submit-btn {
    width: 100%;
    padding: var(--space-3);
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-sm);
}

.vd-lead-close {
    width: 100%;
    margin-top: var(--space-2);
    padding: var(--space-3);
    background: var(--border-light);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-sm);
}

.vd-lead-content h3 {
    color: var(--primary-dark);
}
/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================================
   VEHICLE LISTING GRID
   ============================================================ */

.vehicle-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
}
/* Tablet */
@media (max-width: 992px) {
    .vehicle-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* Mobil */
@media (max-width: 600px) {
    .vehicle-list {
        grid-template-columns: 1fr;
    }
}
/* Extra luft runt kort i vissa sektioner */
.vehicle-list-wrapper {
    margin-top: var(--space-5);
}
/* ============================================================
   SHARE POPUP (TOKEN-DRIVEN)
   ============================================================ */

.vd-share-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .vd-share-popup.active {
        display: flex;
    }

.vd-share-content {
    background: var(--bg-white);
    padding: var(--space-6);
    width: 90%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: fadeIn .25s ease-out;
    text-align: center;
}

    .vd-share-content h3 {
        font-size: var(--font-lg);
        margin-bottom: var(--space-2);
        color: var(--text-dark);
    }

    .vd-share-content p {
        font-size: var(--font-sm);
        color: var(--text-medium);
        margin-bottom: var(--space-4);
    }

.vd-share-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.vd-share-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--bg-light);
    transition: background .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--text-dark);
    font-size: var(--font-sm);
}

    .vd-share-item:hover {
        background: var(--primary-light);
        box-shadow: var(--shadow-md);
    }

    .vd-share-item i {
        font-size: var(--font-lg);
        color: var(--primary);
    }

.vd-share-close {
    width: 100%;
    padding: var(--space-3);
    border: none;
    background: var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-sm);
}

.vd-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    max-width: 100%;
    margin-top: var(--space-6);
}

.vd-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.vd-grid-2,
.vd-grid-3,
.vehicle-list {
}

.vd-gallery-thumbs img {
    max-width: 100%;
    height: auto;
}

.vd-action-buttons {
    flex-wrap: wrap;
}
/* ============================================================
   FORM-BLUE — Premium mörkblå formkomponent
   ============================================================ */

.form-blue {
    background: var(--primary-dark);
    padding: var(--space-7);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.1);
}

    .form-blue h1, h2, h3, h4, h5, h6 {
        color: var(--bg-white);
    }
    /* Labels */
    .form-blue label {
        display: block;
        font-size: var(--font-sm);
        font-weight: 600;
        color: var(--bg-white);
        margin-bottom: var(--space-2); /* MER spacing under label */
    }
    /* Inputs, selects, textarea – gemensam stil */
    .form-blue input,
    .form-blue select,
    .form-blue textarea {
        width: 100%;
        padding: 16px;
        margin-bottom: var(--space-5); /* MER spacing mellan fälten */
        border-radius: 10px;
        border: none;
        font-size: var(--font-md);
        background: rgba(255,255,255,0.15);
        color: var(--bg-white);
        transition: border-color .2s, box-shadow .2s, background .2s;
    }
        /* Placeholder */
        .form-blue input::placeholder,
        .form-blue textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }
        /* Focus state */
        .form-blue input:focus,
        .form-blue select:focus,
        .form-blue textarea:focus {
            outline: none;
            background: rgba(255,255,255,0.22);
            box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
        }
        /* Select options */
        .form-blue select option {
            color: #333;
        }
    /* Textarea */
    .form-blue textarea {
        resize: vertical;
        min-height: 120px;
    }
/* Button */
.form-blue-btn {
    width: 100%;
    padding: 18px;
    background: #FDD835;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: var(--font-lg);
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}

    .form-blue-btn:hover {
        background: #ffe55c;
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        transform: translateY(-2px);
    }
/* Mobile */
@media (max-width: 768px) {
    .form-blue {
        padding: var(--space-5);
    }

        .form-blue input,
        .form-blue select,
        .form-blue textarea {
            padding: 14px;
        }
}

.form-blue-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

    .form-blue-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #FDD835; /* BMP-gul */
    }

    .form-blue-checkbox label {
        color: var(--bg-white);
        font-size: var(--font-sm);
        cursor: pointer;
    }

    .form-blue-checkbox a {
        color: var(--bg-white);
        text-decoration: underline;
    }

.form-blue-large-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 179, 0, 0.15);
    margin-bottom: var(--space-3);
}

    .form-blue-large-icon .bi {
        font-size: 3rem;
        margin-bottom: var(--space-2);
        color: var(--accent-yellow);
        -webkit-text-stroke: 0px;
    }
/* ============================================================
   REVEAL CONTACT BUTTON — Premium style
   ============================================================ */

.reveal-contact-btn {
    background: var(--accent-yellow);
    color: #000;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: var(--font-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-left: var(--space-1);
}

    .reveal-contact-btn:hover {
        background: var(--accent-orange);
    }
/* Fade-in for revealed contact info */
.contact-protected {
    opacity: 0;
    transition: opacity .3s ease;
    margin-left: var(--space-2);
}

    .contact-protected.visible {
        opacity: 1;
    }
/* Mobile adjustments */
@media (max-width: 768px) {
    .reveal-contact-btn {
        margin-top: var(--space-1);
        width: 100%;
        justify-content: center;
    }

    .contact-protected {
        display: block;
        margin-left: 0;
        margin-top: var(--space-1);
    }
}
/* ============================================================
   SUPPORT PROCESS — Premium style
   ============================================================ */
.support-process {
    padding-bottom: 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 35px;
}

.process-card {
    background: #1f1f1f;
    color: #fff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    }

.process-icon {
    font-size: 48px;
    color: #ffd84d;
    margin-bottom: 20px;
    display: block;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.process-card ol {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

    .process-card ol li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

        .process-card ol li::before {
            content: "➜";
            position: absolute;
            left: 0;
            top: 0;
            color: #ffd84d;
            font-weight: 700;
        }

.process-card .btn-primary {
    background: #ffd84d;
    color: #000;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background .2s ease;
}

    .process-card .btn-primary:hover {
        background: #f5c932;
    }

@media (max-width: 900px) {
    .process-grid {
        gap: 25px;
    }
}

.quick-link span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
