/* style.css */

/* RESET / BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0f172a;
    color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.narrow {
    max-width: 820px;
}

.center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    color: #ffffff;
    line-height: 1.2;
}

h2 {
    margin-top: 34px;
    margin-bottom: 14px;
}

h3 {
    margin-bottom: 12px;
}

p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #cbd5e1;
}

a {
    color: inherit;
}

/* BUTTONS */
.btn {
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: 0.2s ease;
}

.btn.large {
    padding: 15px 24px;
    font-size: 16px;
}

.btn.full {
    width: 100%;
}

.btn.primary,
.primary {
    background: #3b82f6;
    color: #ffffff;
}

.btn.primary:hover,
.primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn.secondary,
.secondary {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid #334155;
}

.btn.secondary:hover,
.secondary:hover {
    background: #334155;
    transform: translateY(-1px);
}

/* HEADER / NAV */
.header {
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-dropdown {
    position: relative;
}

.nav-drop-btn {
    background: none;
    border: none;
    color: #cbd5f5;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 0;
}

.nav-drop-btn:hover {
    color: #ffffff;
}

.nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;

    position: absolute;
    top: 38px;
    left: 0;
    min-width: 340px;
    max-height: 75vh;
    overflow-y: auto;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 10px;
    z-index: 50;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 14px;
}


.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-cta {
    white-space: nowrap;
}

.burger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
}

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

.home-hero {
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.25), transparent 35%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
    color: #cbd5f5;
}

.eyebrow {
    color: #93c5fd;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
    color: #cbd5e1;
    font-size: 14px;
}

/* GENERAL GRIDS / CARDS */
.grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.grid.small {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.card {
    background: #1e293b;
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.2s ease;
}

.card:hover {
    background: #334155;
    transform: translateY(-2px);
}

.featured-card {
    border: 1px solid #3b82f6;
    position: relative;
}

.card-tag {
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.section-intro {
    color: #94a3b8;
    max-width: 680px;
}

/* BASIC HOME CALC */
.calc-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-box input {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #020617;
    color: #ffffff;
}

/* CALCULATOR */
.calculator-section {
    padding: 60px 0;
}

.calculator-card {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1e293b, #111827);
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.calculator-card h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 8px;
}

.calculator-card .muted {
    color: #94a3b8;
    margin-bottom: 30px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.calc-grid.three {
    grid-template-columns: 1fr;
}

.calc-column {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid #334155;
    border-radius: 18px;
    padding: 22px;
}

.calc-column h3 {
    font-size: 20px;
    margin-bottom: 18px;
}

.calc-grid label,
.calc-column label {
    display: block;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 7px;
    font-weight: 600;
}

.calc-grid input,
.calc-grid select,
.calc-grid textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid #475569;
    background: #020617;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.calc-grid textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.55;
}

.calc-grid select {
    appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #94a3b8 50%),
        linear-gradient(135deg, #94a3b8 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.calc-grid input:focus,
.calc-grid select:focus,
.calc-grid textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.calc-grid input::placeholder,
.calc-grid textarea::placeholder {
    color: #64748b;
}

.calculator-card .btn {
    text-align: center;
}

/* RESULT BOXES */
.result-box {
    display: none;
    margin-top: 28px;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 18px;
    padding: 24px;
}

.result-box.show {
    display: block;
}

.result-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
}

.result-box p {
    color: #cbd5e1;
    margin-bottom: 10px;
}

.result-box strong {
    color: #ffffff;
}

.result-grid {
    display: grid;
    gap: 14px;
    margin: 18px 0;
}

.result-grid div {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 16px;
}

.result-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

/* LINK FETCH */
.link-fetch-box {
    background: #020617;
    border: 1px solid #334155;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 28px;
}

.link-fetch-box label {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-weight: 600;
}

.link-fetch-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-fetch-row input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #334155;
    background: #020617;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

.link-fetch-row input:hover {
    border-color: #475569;
}

.link-fetch-row input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.link-fetch-row input::placeholder {
    color: #64748b;
}

.link-fetch-row button {
    width: 100%;
}

.fetch-result {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #334155;
}

.fetch-result h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.fetch-error {
    margin-top: 12px;
    color: #fca5a5;
}

.price-chip {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid #475569;
    border-radius: 999px;
    padding: 9px 13px;
    margin: 5px 5px 5px 0;
    cursor: pointer;
}

.price-chip:hover {
    background: #334155;
}

/* SEO CONTENT */
.content-section {
    padding: 45px 0;
}

.content-section.alt {
    background: rgba(2, 6, 23, 0.28);
}

.seo-list {
    margin: 20px 0;
    padding-left: 20px;
}

.seo-list li {
    margin-bottom: 10px;
    color: #cbd5e1;
    line-height: 1.6;
}

.seo-table-wrap {
    margin: 30px 0;
    overflow-x: auto;
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
}

.seo-table th,
.seo-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #334155;
}

.seo-table th {
    background: #020617;
    color: #ffffff;
}

.seo-table td {
    color: #cbd5e1;
}

.seo-cta-box {
    background: linear-gradient(180deg, #1e293b, #111827);
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 28px;
    margin: 35px 0;
    text-align: center;
}

.seo-cta-box h2 {
    margin-top: 0;
}

.internal-links-box {
    margin-top: 40px;
}

.inline-cta {
    background: #020617;
    border: 1px solid #334155;
    padding: 20px;
    border-radius: 16px;
    margin: 24px 0;
}

.note {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 20px;
}

/* TABLE BOX */
.table-box {
    overflow-x: auto;
    margin: 20px 0;
}

.table-box table {
    width: 100%;
    border-collapse: collapse;
    background: #1e293b;
    border-radius: 10px;
}

.table-box th,
.table-box td {
    padding: 12px;
    border-bottom: 1px solid #334155;
    text-align: left;
}

/* HIGHLIGHT / STEPS */
.home-highlight {
    padding: 40px 0;
}

.highlight-box {
    background: linear-gradient(135deg, #1e293b, #020617);
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 30px;
    display: grid;
    gap: 20px;
    align-items: center;
}

.mini-card,
.step-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 18px;
    padding: 20px;
}

.step-card strong {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    border-radius: 50%;
    margin-bottom: 12px;
}

/* LEAD MODAL */
.lead-box {
    margin-top: 28px;
    background: linear-gradient(135deg, #1e293b, #020617);
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.lead-box p {
    color: #cbd5e1;
}

.lead-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    z-index: 9999;
    padding: 20px;
}

.lead-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-modal-content {
    width: 100%;
    max-width: 520px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 28px;
    position: relative;
}

.lead-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

.lead-modal-content label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    color: #cbd5e1;
}

.lead-modal-content input,
.lead-modal-content textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #020617;
    color: #ffffff;
}

.lead-modal-content textarea {
    min-height: 100px;
    resize: vertical;
}

.lead-modal-content .btn {
    width: 100%;
    margin-top: 18px;
}

/* CAR CARDS */
.car-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.car-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.car-card-content {
    padding: 20px;
}

.car-card h3 {
    margin: 15px 0 5px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #3b82f6;
}

.small {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.car-card .btn {
    margin-top: 10px;
}

/* OFFER CARDS */
.offer-grid {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.offer-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.offer-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.offer-content {
    padding: 20px;
}

.offer-price {
    color: #60a5fa;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.offer-list {
    margin: 16px 0;
    padding-left: 18px;
    color: #cbd5e1;
}

.offer-list li {
    margin-bottom: 6px;
}

.offer-card .btn {
    width: 100%;
    text-align: center;
}

/* ARTICLE IMAGE */
.article-main-image {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    background: #020617;
    margin: 10px 0 35px;
}

/* FAQ */
.faq {
    padding: 45px 0;
}

.faq-item {
    border-bottom: 1px solid #334155;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #cbd5e1;
}

.faq-item.active .faq-answer {
    max-height: 260px;
    margin-bottom: 15px;
}

.icon {
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* AI BILVURDERING - FORMULAR */
.car-value-form {
    margin-top: 28px;
}

.car-value-form .calc-column {
    display: flex;
    flex-direction: column;
}

.car-value-form textarea {
    min-height: 125px;
}

.car-value-form .btn {
    margin-top: 8px;
}

/* AI BILVURDERING - RESULTAT */
#carValueLoading {
    line-height: 1.6;
}

#carValueResult {
    line-height: 1.65;
}

#carValueResult h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

#carValueResult h4 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

#carValueResult p {
    color: #cbd5e1;
    margin-bottom: 14px;
}

#carValueResult ul {
    margin: 10px 0 22px;
    padding-left: 22px;
    color: #cbd5e1;
}

#carValueResult li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.valuation-result-grid {
    display: grid;
    gap: 14px;
    margin: 20px 0 28px;
}

.valuation-result-grid div {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 18px;
}

.valuation-result-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
}

.valuation-result-grid p {
    font-size: 20px;
    font-weight: 800;
    color: #60a5fa !important;
    margin: 0;
    line-height: 1.35;
}

.valuation-disclaimer {
    margin-top: 24px;
    padding: 14px 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 14px;
    color: #cbd5e1;
    font-size: 14px;
}

/* FOOTER
   Brug .site-footer inde i includes/footer.php.
   .footer er kun wrapperen omkring include-filen. */
.footer {
    margin: 0;
    padding: 0;
}

.footer .site-footer {
    margin-top: 70px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calculator-card {
        padding: 40px;
    }

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

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

    .highlight-box {
        grid-template-columns: 1fr auto;
    }

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

    .link-fetch-row {
        flex-direction: column;
    }
}

@media (min-width: 900px) {
    .calc-grid.three {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1050px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .container {
        padding: 18px;
    }

    .hero {
        padding: 60px 18px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .calculator-card {
        padding: 22px;
        border-radius: 20px;
    }

    .calc-column {
        padding: 18px;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background: #020617;
        border: 1px solid #334155;
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        display: none;
        z-index: 100;
        max-height: 80vh;
        overflow-y: auto;
    }

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

    .nav-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        border: none;
        transform: none;
        transition: max-height 0.25s ease, opacity 0.2s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 4px 0 12px;
    }
}

    .nav-drop-btn {
        width: 100%;
        text-align: left;
        font-weight: 700;
        color: #ffffff;
        padding: 10px 8px;
    }

    .nav-dropdown-menu a {
        padding-left: 18px;
    }

    .burger {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .article-main-image {
        max-height: 300px;
    }


/* FIX AI BILVURDERING FELTER */

#carValueForm select,
#carValueForm textarea {
    width: 100% !important;
    display: block !important;
    margin-bottom: 16px !important;
    padding: 14px 15px !important;
    border-radius: 12px !important;
    border: 1px solid #475569 !important;
    background-color: #020617 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-family: Arial, sans-serif !important;
    outline: none !important;
}

#carValueForm select {
    height: 48px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    background-image:
        linear-gradient(45deg, transparent 50%, #94a3b8 50%),
        linear-gradient(135deg, #94a3b8 50%, transparent 50%) !important;
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50% !important;
    background-size: 6px 6px, 6px 6px !important;
    background-repeat: no-repeat !important;
}

#carValueForm textarea {
    min-height: 115px !important;
    resize: vertical !important;
    line-height: 1.55 !important;
}

#carValueForm select:focus,
#carValueForm textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25) !important;
}

#carValueForm textarea::placeholder {
    color: #64748b !important;
}
/* NUMMERPLADE OPSLAG */

.plate-lookup-box {
    background: #020617;
    border: 1px solid #334155;
    border-radius: 18px;
    padding: 20px;
    margin: 24px 0 30px;
}

.plate-lookup-box label {
    display: block;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-weight: 700;
}

.plate-lookup-row {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.plate-lookup-row input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 12px;
    border: 1px solid #475569;
    background: #020617;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
}

.plate-lookup-row input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.plate-lookup-result {
    margin-top: 12px;
    margin-bottom: 0;
    color: #94a3b8;
    font-size: 14px;
}

.plate-lookup-result.error {
    color: #fca5a5;
}

@media (min-width: 768px) {
    .plate-lookup-row {
        flex-direction: row;
        align-items: center;
    }

    .plate-lookup-row input {
        flex: 1;
    }

    .plate-lookup-row .btn {
        width: auto;
        white-space: nowrap;
    }
}

/* Premium små-animationer */

.calculator-card,
.calc-column,
.result-box,
.valuation-result-grid > div {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-column:hover,
.valuation-result-grid > div:hover {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.result-box.show {
    animation: fadeUp 0.35s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lookup-loading {
    margin-top: 12px;
    color: #93c5fd;
    font-weight: 700;
    display: none;
}

.lookup-loading.show {
    display: block;
}

.lookup-loading::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    border: 2px solid rgba(147, 197, 253, 0.35);
    border-top-color: #60a5fa;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    vertical-align: -2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Sticky mobil CTA */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 999;
        display: block;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        text-align: center;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    }

    body {
        padding-bottom: 85px;
    }
}

.site-footer {
    margin-top: 70px;
    padding: 55px 0 22px;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.18), transparent 32%),
        linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-top: 1px solid #334155;
}

.footer-grid {
    display: grid;
    gap: 30px;
}

.footer-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 14px;
    color: #94a3b8;
}

.site-footer h3 {
    font-size: 15px;
    margin-bottom: 14px;
    color: #ffffff;
}

.site-footer a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.site-footer a:hover {
    color: #60a5fa;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-badges span {
    border: 1px solid #334155;
    background: rgba(15,23,42,0.8);
    color: #93c5fd;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid #1e293b;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    color: #64748b;
    font-size: 13px;
}

@media (min-width: 850px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }
}