/* Aan de slag — pagina-specifieke uitbreiding op over-contact-ui.css */

body.om-site.om-ads-page {
    background: var(--om-bg);
    color: var(--om-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 5rem;
}

/* ===== Hero ===== */
.om-ads-hero {
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.om-ads-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 20% 0%, rgba(255, 107, 53, 0.2), transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(230, 57, 70, 0.12), transparent 55%);
    pointer-events: none;
}

.om-ads-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: center;
}

.om-ads-hero-copy {
    text-align: left;
}

.om-ads-hero-copy .om-pg-badge {
    margin-bottom: 1rem;
}

.om-ads-hero-copy h1 {
    text-align: left;
    margin-bottom: 1rem;
}

.om-ads-hero-copy .om-pg-hero__lead {
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: 540px;
}

.om-ads-hero-copy .om-pg-stats {
    justify-content: flex-start;
}

/* Launch card — primaire actie */
.om-ads-launch-card {
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.16), rgba(21, 27, 36, 0.95));
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 1.35rem;
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.om-ads-launch-card__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.om-ads-launch-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--om-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
    flex-shrink: 0;
}

.om-ads-launch-card__head h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.om-ads-launch-card__head p {
    font-size: 0.75rem;
    color: var(--om-muted);
    margin: 0.15rem 0 0;
}

.om-ads-launch-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.om-ads-launch-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.4rem 0;
    line-height: 1.45;
}

.om-ads-launch-list li i {
    color: var(--om-green);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

/* Hero-knoppen */
.om-btn--hero {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    width: 100%;
    border-radius: 0.9rem;
    box-shadow: 0 10px 32px rgba(255, 107, 53, 0.4);
}

.om-btn--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 107, 53, 0.5);
}

.om-ads-launch-card .om-btn--hero + .om-btn--ghost-sm {
    margin-top: 0.65rem;
}

.om-btn--ghost-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--om-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--om-border);
    transition: color 0.2s, border-color 0.2s;
}

.om-btn--ghost-sm:hover {
    color: #fff;
    border-color: rgba(255, 107, 53, 0.35);
}

/* ===== Secties ===== */
.om-value-grid--6 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .om-value-grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .om-value-grid--6 {
        grid-template-columns: 1fr;
    }
}

/* Route keuze */
.om-ads-routes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 768px) {
    .om-ads-routes {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.om-ads-route-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 1.25rem;
    min-height: 100%;
}

.om-ads-route-card.is-featured {
    border-color: rgba(255, 107, 53, 0.45);
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.14), var(--om-card));
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
}

.om-ads-route-card__head {
    flex-shrink: 0;
}

.om-ads-route-card__tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--om-green);
    margin-bottom: 0.75rem;
    min-height: 0.875rem;
}

.om-ads-route-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.35;
    min-height: 2.7rem;
}

.om-ads-route-card__head > p {
    font-size: 0.875rem;
    color: var(--om-muted);
    line-height: 1.55;
    margin: 0 0 1.15rem;
    min-height: 4.25rem;
}

.om-ads-route-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.om-ads-route-card__list li {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
    line-height: 1.45;
}

.om-ads-route-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--om-green);
    font-weight: 800;
    font-size: 0.75rem;
}

.om-ads-route-card__foot {
    margin-top: auto;
    padding-top: 0.25rem;
}

.om-ads-route-card__foot .om-btn {
    width: 100%;
    min-height: 3rem;
    padding: 0.9rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    justify-content: center;
}

.om-btn--wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.om-btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

/* Sticky */
.om-ads-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(15, 20, 25, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--om-border);
    display: none;
}

.om-ads-sticky__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 0.65rem;
}

.om-ads-sticky .om-btn {
    flex: 1;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

@media (max-width: 960px) {
    .om-ads-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .om-ads-hero-copy,
    .om-ads-hero-copy h1,
    .om-ads-hero-copy .om-pg-hero__lead {
        text-align: center;
    }

    .om-ads-hero-copy .om-pg-stats {
        justify-content: center;
    }

    .om-ads-hero-copy .om-pg-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .om-ads-sticky { display: block; }
    body.om-site.om-ads-page { padding-bottom: 6rem; }
    body.om-ads-page .om-lc-root {
        bottom: calc(5.25rem + env(safe-area-inset-bottom));
        z-index: 99999;
    }
}
