/* Onlinemagneet — Over & Contact pagina's */

:root {
    --om-orange: #FF6B35;
    --om-red: #E63946;
    --om-gradient: linear-gradient(135deg, #FF6B35 0%, #E63946 50%, #FF8C42 100%);
    --om-bg: #0F1419;
    --om-card: #151B24;
    --om-elevated: #1A2230;
    --om-text: rgba(255, 255, 255, 0.92);
    --om-muted: rgba(255, 255, 255, 0.62);
    --om-border: rgba(255, 255, 255, 0.08);
    --om-green: #2ECC71;
}

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

.om-pg-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .om-pg-container { padding: 0 1.75rem; }
}

.om-gradient-text {
    background: var(--om-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.om-pg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.35);
    margin-bottom: 1.25rem;
}

/* Hero */
.om-pg-hero {
    padding: 3rem 0 2.5rem;
    text-align: center;
    position: relative;
}

.om-pg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 107, 53, 0.14), transparent);
    pointer-events: none;
}

.om-pg-hero__inner { position: relative; }

.om-pg-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.om-pg-hero__lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--om-muted);
    max-width: 640px;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
}

.om-pg-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.om-pg-stat {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--om-border);
    color: rgba(255, 255, 255, 0.88);
}

.om-pg-stat i { color: var(--om-orange); margin-right: 0.35rem; }

/* Buttons */
.om-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 0.85rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.om-btn--primary {
    background: var(--om-gradient);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35);
}

.om-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.45);
}

.om-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid var(--om-border);
}

.om-btn--ghost:hover {
    border-color: rgba(255, 107, 53, 0.45);
    background: rgba(255, 107, 53, 0.1);
}

.om-btn--block { width: 100%; }

.om-pg-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Sections */
.om-pg-section {
    padding: 2.5rem 0;
}

.om-pg-section--alt {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--om-border);
    border-bottom: 1px solid var(--om-border);
}

.om-pg-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    text-align: center;
}

.om-pg-section__sub {
    text-align: center;
    color: var(--om-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 0.9375rem;
}

/* Founder card */
.om-founder {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.om-founder__avatar {
    width: 88px;
    height: 88px;
    border-radius: 1.25rem;
    background: var(--om-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
    flex-shrink: 0;
}

.om-founder__name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
}

.om-founder__role {
    font-size: 0.875rem;
    color: var(--om-orange);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.om-founder__quote {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1rem;
    font-style: italic;
}

.om-founder__body {
    font-size: 0.9375rem;
    color: var(--om-muted);
    line-height: 1.65;
    margin: 0;
}

.om-promise-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.om-promise-chip {
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 0.75rem;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.22);
}

.om-promise-chip strong {
    display: block;
    font-size: 0.9375rem;
    color: #86efac;
}

.om-promise-chip span {
    font-size: 0.6875rem;
    color: var(--om-muted);
}

/* Value grid */
.om-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.om-value-card {
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.om-value-card:hover {
    border-color: rgba(255, 107, 53, 0.35);
    transform: translateY(-4px);
}

.om-value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--om-orange);
    margin-bottom: 1rem;
}

.om-value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.om-value-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--om-muted);
    line-height: 1.55;
}

/* Timeline */
.om-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.om-timeline__step {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 1rem;
    position: relative;
}

.om-timeline__num {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: var(--om-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: #fff;
}

.om-timeline__step h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.om-timeline__step p {
    font-size: 0.75rem;
    color: var(--om-muted);
    margin: 0;
    line-height: 1.45;
}

/* CTA band */
.om-pg-cta {
    text-align: center;
    padding: 3rem 1.5rem;
    margin: 2rem 0 0;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.18), rgba(230, 57, 70, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.om-pg-cta h2 {
    margin-bottom: 0.5rem;
}

.om-pg-cta p {
    color: var(--om-muted);
    margin: 0 0 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* === CONTACT PAGE === */
.om-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}

.om-path-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.om-path-card {
    display: block;
    padding: 1.25rem 1.35rem;
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    width: 100%;
}

.om-path-card:hover,
.om-path-card.is-featured {
    border-color: rgba(255, 107, 53, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.om-path-card.is-featured {
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.14), var(--om-card));
}

.om-path-card__top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}

.om-path-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;
    flex-shrink: 0;
}

.om-path-card__icon--muted {
    background: rgba(255, 255, 255, 0.08);
    color: var(--om-orange);
}

.om-path-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.om-path-card__tag {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--om-green);
    margin-left: auto;
}

.om-path-card p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--om-muted);
    line-height: 1.5;
}

.om-contact-form-wrap {
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.om-contact-form-wrap h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.om-contact-form-wrap > p {
    font-size: 0.8125rem;
    color: var(--om-muted);
    margin: 0 0 1.25rem;
}

.om-form-group {
    margin-bottom: 0.85rem;
}

.om-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--om-muted);
    margin-bottom: 0.35rem;
}

.om-form-group input,
.om-form-group textarea,
.om-form-group select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.65rem;
    border: 1px solid var(--om-border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
}

.om-form-group input:focus,
.om-form-group textarea:focus,
.om-form-group select:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.om-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.om-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.om-form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.6875rem;
    color: var(--om-muted);
}

.om-form-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.om-form-trust i { color: var(--om-green); }

.om-form-msg {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    display: none;
}

.om-form-msg.is-ok {
    display: block;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #86efac;
}

.om-form-msg.is-err {
    display: block;
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: #fca5a5;
}

.om-faq-mini {
    margin-top: 1.5rem;
}

.om-faq-mini details {
    background: var(--om-card);
    border: 1px solid var(--om-border);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.om-faq-mini summary {
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    list-style: none;
}

.om-faq-mini summary::-webkit-details-marker { display: none; }

.om-faq-mini details[open] summary {
    border-bottom: 1px solid var(--om-border);
    color: var(--om-orange);
}

.om-faq-mini details p {
    padding: 0.85rem 1rem;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--om-muted);
    line-height: 1.55;
}

/* Sticky CTA */
.om-pg-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.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--om-border);
    display: none;
}

.om-pg-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    border-radius: 0.85rem;
    background: var(--om-gradient);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .om-founder {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .om-founder__avatar { margin: 0 auto; }
    .om-promise-row { grid-template-columns: 1fr; }
    .om-value-grid { grid-template-columns: 1fr; }
    .om-timeline { grid-template-columns: 1fr 1fr; }
    .om-contact-grid { grid-template-columns: 1fr; }
    .om-form-row { grid-template-columns: 1fr; }
    .om-pg-sticky { display: block; }
    body.om-site.om-over,
    body.om-site.om-contact { padding-bottom: 6rem; }

    /* Livechat boven sticky groeicheck-balk */
    body.om-over .om-lc-root,
    body.om-contact .om-lc-root {
        bottom: calc(5.25rem + env(safe-area-inset-bottom));
        z-index: 99999;
    }
}

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