/* ═══════════════════════════════════════════════════════════
   MAPTEC — Apple-Stijl Website
   Design System & Volledige Stijlen
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
    --bg-dark:       #141e38;
    --bg-dark-2:     #1a2540;
    --bg-light:      #f5f5f7;
    --bg-white:      #ffffff;
    --text-dark:     #1d1d1f;
    --text-light:    #f5f5f7;
    --text-muted:    #6e6e73;
    --text-muted-l:  #86868b;
    --accent:        #ff6200;
    --accent-hover:  #e55800;
    --accent-light:  #ff8c00;
    --border-dark:   rgba(255,255,255,0.1);
    --border-light:  rgba(0,0,0,0.1);
    --glass-bg:      rgba(255,255,255,0.06);
    --radius-sm:     12px;
    --radius-md:     18px;
    --radius-lg:     24px;
    --radius-xl:     32px;
    --shadow-card:   0 20px 60px rgba(0,0,0,0.3);
    --shadow-sm:     0 4px 20px rgba(0,0,0,0.1);
    --font:          -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    --max-w:         980px;
    --section-pad:   120px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: linear-gradient(160deg, #1a2a4a 0%, #141e38 40%, #0e1830 100%); background-attachment: fixed; color: var(--text-light); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ── Container ──────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────────── */
.section-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.5); }

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-muted-l);
    max-width: 560px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-header.light .section-title { color: var(--text-dark); }
.section-header.light .section-sub { color: var(--text-muted); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 980px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-hover); transform: scale(1.02); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    color: var(--accent-light);
    font-size: 15px;
    font-weight: 500;
    border-radius: 980px;
    border: 1px solid rgba(255,140,0,0.3);
    transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--accent-light); background: rgba(255,140,0,0.08); }

/* ═══════════════════════════════════════ NAVIGATION ═══ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(14,24,48,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}
.nav-logo img {
    height: 54px;
    width: auto;
    display: block;
    background: #ffffff;
    border-radius: 6px;
    padding: 4px 8px;
}
.nav-logo:hover { opacity: 0.8; }

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    padding: 7px 16px;
    border: 1px solid rgba(255,140,0,0.4);
    border-radius: 980px;
    transition: all 0.2s;
}
.nav-cta:hover { background: rgba(255,140,0,0.1); border-color: var(--accent-light); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(14,24,48,0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu ul a { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════ HERO ═══ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/logicboard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.38;
    filter: grayscale(20%);
    transform: scale(1.0);
    transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.02); }

.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(255,98,0,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 24px;
    opacity: 0;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-light);
    margin-bottom: 24px;
    overflow: hidden;
}
.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-sub {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
    margin-bottom: 40px;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s 1.8s forwards;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
@keyframes fadeInUp {
    to { opacity: 1; }
}

/* ════════════════════════════════════ TAGLINE ═══ */
.tagline-section {
    background: var(--bg-dark-2);
    padding: 80px 0;
}
.tagline-text {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
}

/* ══════════════════════════════════ SERVICES ═══ */
.services {
    background: var(--bg-dark);
    padding: var(--section-pad) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: linear-gradient(145deg, rgba(255,98,0,0.14), rgba(100,30,0,0.09));
    border: 1px solid rgba(255,98,0,0.30);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 40px rgba(255,98,0,0.15);
    opacity: 0;
    transform: translateY(50px);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,140,0,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px rgba(255,98,0,0.12);
}
.service-card.featured {
    background: linear-gradient(145deg, rgba(255,98,0,0.18), rgba(100,30,0,0.12));
    border-color: rgba(255,98,0,0.35);
}
.service-card.featured:hover {
    border-color: rgba(255,140,0,0.6);
    box-shadow: 0 30px 80px rgba(255,98,0,0.2);
}

.service-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-light);
    background: rgba(255,140,0,0.15);
    border: 1px solid rgba(255,140,0,0.3);
    padding: 4px 12px;
    border-radius: 980px;
    margin-bottom: 24px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    color: var(--accent-light);
    margin-bottom: 24px;
}
.service-icon-wrap svg { width: 100%; height: 100%; }

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-light);
}
.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}
.service-card p em { color: var(--accent-light); font-style: normal; }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.service-tags span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: 980px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ════════════════════════════════ WHY MAPTEC ═══ */
.why {
    position: relative;
    background: #0e1830;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

/* Animated gradient orbs */
.why::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,98,0,0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: orb-float 8s ease-in-out infinite alternate;
    pointer-events: none;
}
.why::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,140,0,0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: orb-float 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

/* Circuit grid overlay */
.why .container {
    position: relative;
    z-index: 1;
}
.why .container::before {
    content: '';
    position: absolute;
    inset: -100px;
    background-image:
        linear-gradient(rgba(255,98,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,98,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

@keyframes orb-float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}

.why .section-title { color: var(--text-light); }
.why .section-eyebrow { color: var(--accent-light); }

.why-list { display: flex; flex-direction: column; gap: 100px; }

.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-row.reverse { direction: rtl; }
.why-row.reverse > * { direction: ltr; }

.why-text { opacity: 0; transform: translateX(-50px); }
.why-row.reverse .why-text { transform: translateX(50px); }

.why-num {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}
.why-text h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.15;
}
.why-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-muted-l);
}

.why-card-wrap { opacity: 0; transform: translateX(50px); }
.why-row.reverse .why-card-wrap { transform: translateX(-50px); }

.why-card {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s;
}
.why-card:hover { transform: scale(1.02); }

.why-card-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-light);
    margin: 0 auto 20px;
}
.why-card-stat {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 8px;
}
.why-card-label {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

/* ══════════════════════════════ DEVICES ═══ */
.devices-section {
    background: var(--bg-dark);
    padding: var(--section-pad) 0;
}
.devices-section .section-title { color: var(--text-light); }
.devices-section .section-sub { color: var(--text-muted-l); }

.devices-track-wrap {
    overflow-x: auto;
    padding: 0 24px 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.devices-track-wrap::-webkit-scrollbar { display: none; }

.devices-track {
    display: flex;
    gap: 16px;
    width: max-content;
    margin: 0 auto;
    padding: 8px 0;
}

.device-tile {
    background: var(--glass-bg);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    width: 180px;
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    opacity: 0;
    transform: translateY(30px);
    cursor: default;
}
.device-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(255,140,0,0.4);
    background: rgba(255,140,0,0.06);
}

.device-icon {
    width: 48px;
    height: 48px;
    color: rgba(255,255,255,0.6);
    margin: 0 auto 16px;
    transition: color 0.3s;
}
.device-tile:hover .device-icon { color: var(--accent-light); }
.device-icon svg { width: 100%; height: 100%; }

.device-tile h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.device-tile p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* ═══════════════════════════════ STATS ═══ */
.stats-section {
    background: linear-gradient(135deg, #1a2a4a, #0e1830, #0a1428);
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(30px);
}
.stat-item:last-child { border-right: none; }

.stat-value {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat-unit {
    font-size: 0.5em;
    color: var(--accent-light);
    font-weight: 600;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
}

/* ══════════════════════════ PLAN JE REPARATIE ═══ */
.plannen-section {
    position: relative;
    background: var(--bg-dark-2);
    padding: var(--section-pad) 0;
    overflow: hidden;
}
.plannen-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28;
    filter: grayscale(10%);
    z-index: 0;
}
.plannen-section .container,
.plannen-section .repender-wrap {
    position: relative;
    z-index: 1;
}
.plannen-section .section-title { color: var(--text-light); }
.plannen-section .section-sub { color: rgba(255,255,255,0.5); }

.repender-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

#repender-plugin {
    --color-repender-primary: 255, 98, 0;
    --color-repender-button: 255, 98, 0;
    position: relative;
}

/* Verberg de floating trigger knop — widget staat inline */
[class*="_popoverButtonOuter"] {
    display: none !important;
}

/* Verberg de sluitknop (X) — widget mag niet gesloten worden */
[class*="_popoverPanelCloseButton"] {
    display: none !important;
}

/* Maak het panel inline zichtbaar in de sectie */
[class*="_popoverPanelOuter"] {
    position: static !important;
    transform: none !important;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35) !important;
    border-radius: 20px !important;
    max-height: none !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: transparent !important;
    border: none !important;
}

[class*="_relative_"] {
    position: static !important;
}

/* Header — donker, past bij de sectie */
[class*="_popoverPanelHeader"] {
    background: #141e38 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
[class*="_popoverPanelHeader"] * {
    color: #f5f5f7 !important;
    font-family: var(--font) !important;
}

[class*="_popoverPanelTitle"] {
    font-size: 27px !important;
    font-weight: 600 !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
}

/* Content-gebied — wit zodat alle verdere stappen leesbaar zijn */
[class*="_popoverPanelContent"] {
    background: #ffffff !important;
    border-radius: 0 0 20px 20px !important;
}

/* ════ APPARAAT STAP — donkere glaskaarten ════ */
[class*="_outer_1x56z"] {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    padding: 20px 16px !important;
    background: #141e38 !important; /* eigen donkere achtergrond zodat kaarten goed uitkomen */
}

[class*="_outer_1x56z"] > div {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
}

[class*="_deviceTypeOuter"] {
    width: 100% !important;
}

[class*="_deviceTypeClickable"] {
    padding: 24px 12px !important;
    border-radius: 18px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: #f5f5f7 !important;
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.2s !important;
    cursor: pointer !important;
}

[class*="_deviceTypeClickable"]:hover {
    background: rgba(255, 98, 0, 0.28) !important;
    border-color: rgba(255, 98, 0, 0.80) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 32px rgba(255, 98, 0, 0.40) !important;
}

[class*="_deviceTypeClickable"]:hover .rep-icon-wrap {
    color: #ff6200 !important;
}

[class*="_deviceTypeClickable"]:hover span {
    color: #ffffff !important;
}

[class*="_deviceTypeClickable"].rep-selected {
    background: rgba(255, 98, 0, 0.16) !important;
    border-color: rgba(255, 98, 0, 0.80) !important;
    box-shadow: 0 0 0 1px rgba(255,98,0,0.50), 0 8px 28px rgba(255,98,0,0.30) !important;
}

[class*="_deviceTypeClickable"].rep-selected .rep-icon-wrap {
    color: #ff6200 !important;
}

[class*="_deviceTypeClickable"] span {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    font-family: var(--font) !important;
}

[class*="_deviceTypeImage"] {
    display: none !important;
}

/* Custom SVG iconen — wit lijnwerk op donkere kaart */
.rep-icon-wrap {
    width: 66px;
    height: 66px;
    margin: 0 auto 14px;
    color: rgba(255, 255, 255, 0.70);
}
.rep-icon-wrap svg {
    width: 100%;
    height: 100%;
}

/* ════ MERK STAP — zelfde donkere glasstijl als toestel stap ════ */
/* Outer wrapper vult de volledige content hoogte */
[class*="_outer_1lmb1"],
[class*="_outer_jb2o0"] {
    background: #141e38 !important;
    min-height: 100% !important;
}

[class*="_brands_"] {
    background: #141e38 !important;
    padding: 20px 16px !important;
}

[class*="_brand_"] {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 18px !important;
    padding: 20px 12px !important;
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.2s !important;
}

[class*="_brand_"]:hover {
    background: rgba(255, 98, 0, 0.14) !important;
    border-color: rgba(255, 98, 0, 0.60) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 28px rgba(255, 98, 0, 0.28) !important;
}

[class*="_brand_"].rep-selected {
    background: rgba(255, 98, 0, 0.16) !important;
    border-color: rgba(255, 98, 0, 0.80) !important;
    box-shadow: 0 0 0 1px rgba(255,98,0,0.50), 0 8px 28px rgba(255,98,0,0.30) !important;
}

[class*="_brand_"] span {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font) !important;
    font-size: 0.85rem !important;
}

/* Logo-tekst (bv. "Apple") — wit op donker */
[class*="_logoText"] {
    color: rgba(255,255,255,0.90) !important;
    font-size: 42px !important;
    font-weight: 700 !important;
}

/* Container voor merk-afbeeldingen groter maken */
[class*="_brandImageOuter"] {
    width: 100% !important;
    height: auto !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Merk-afbeeldingen — lichtere blauwe kleur voor leesbaarheid op donker */
[class*="_brandImageInner"] {
    height: 105px !important;
    max-height: none !important;
    max-width: 90% !important;
    width: auto !important;
    filter: brightness(3) saturate(0.6) !important;
    opacity: 1 !important;
}

/* Vraagtekenicon (Overig merk) */
[class*="_brandImageOuter"] svg {
    color: rgba(255,255,255,0.65) !important;
    width: 48px !important;
    height: 48px !important;
}

/* ════════════════════════════════════ B2B ═══ */
.b2b-section {
    background: linear-gradient(135deg, #1f0e00 0%, #120800 50%, #0d0400 100%);
    padding: var(--section-pad) 0;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b2b-text {
    opacity: 0;
    transform: translateX(-50px);
}
.b2b-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
}
.b2b-text p {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
}

.b2b-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.b2b-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}
.b2b-perks li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent-light);
}

.b2b-visual {
    opacity: 0;
    transform: translateX(50px);
}

.portal-window {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.portal-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.portal-dots { display: flex; gap: 6px; }
.dot-red, .dot-yellow, .dot-green {
    width: 10px; height: 10px; border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.portal-title {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-left: 4px;
}

.portal-body { padding: 12px 0; }
.portal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.portal-row:last-child { border-bottom: none; }
.portal-row:hover { background: rgba(255,255,255,0.03); }

.portal-device {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.portal-device svg { width: 14px; height: 14px; color: rgba(255,255,255,0.3); }

.portal-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 980px;
}
.portal-badge.in-progress { background: rgba(255,196,0,0.15); color: #ffc400; }
.portal-badge.done        { background: rgba(40,200,64,0.15);  color: #28c840; }
.portal-badge.waiting     { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

/* ════════════════════════════════════ FAQ ═══ */
.faq-section {
    background: var(--bg-light);
    padding: var(--section-pad) 0;
}
.faq-section .section-title { color: var(--text-dark); }
.faq-section .section-eyebrow { color: var(--accent); }

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(20px);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
}
.faq-btn:hover { color: var(--accent); }

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > div, .faq-panel p { overflow: hidden; }
.faq-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    padding-bottom: 20px;
}

/* ══════════════════════════════════ CONTACT ═══ */
.contact-section {
    background: var(--bg-dark-2);
    padding: var(--section-pad) 0;
}
.contact-section .section-title { color: var(--text-light); }
.contact-section .section-eyebrow { color: var(--accent-light); }
.contact-section .section-sub { color: rgba(255,255,255,0.5); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info { opacity: 0; transform: translateX(-30px); }
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-light);
}
.contact-icon-wrap svg { width: 18px; height: 18px; }

.contact-row strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}
.contact-row a, .contact-row span {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}
.contact-row a:hover { color: var(--accent-light); }

.opening-hours {
    margin-top: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 24px;
}
.opening-hours h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 24px;
}
.hours-grid span {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}
.hours-grid .closed { color: rgba(255,255,255,0.3); }

/* Contact Form */
.contact-form {
    opacity: 0;
    transform: translateX(30px);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-light);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,98,0,0.06);
}
.form-group select option { background: #1d1d1f; }
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-primary.full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; border-radius: var(--radius-md); }
.form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 12px;
}

/* ══════════════════════════════════ FOOTER ═══ */
.footer {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding: 60px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 6px;
    padding: 4px 8px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
    max-width: 240px;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h5 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* ════════════════════════════ RESPONSIVE ═══ */
@media (max-width: 900px) {
    :root { --section-pad: 80px; }
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .why-row, .why-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
    .why-row.reverse .why-text { transform: translateX(-50px); }
    .why-card { max-width: 300px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .b2b-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: clamp(36px, 10vw, 60px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .b2b-perks { display: none; }
    .why-list { gap: 60px; }
}

@media (max-width: 400px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
}
