/* ============================================
   Raben Car Detailing Studio — Stylesheet
   ============================================ */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: local('Inter');
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red:          #eb5a53;
    --red-light:    #ff7068;
    --red-dark:     #c43d36;
    --red-glow:     rgba(235, 90, 83, 0.25);
    --bg:           #080808;
    --bg-2:         #0f0f0f;
    --bg-3:         #161616;
    --glass:        rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --white:        #ffffff;
    --text:         #c8c8c8;
    --text-muted:   #666666;
    --border:       rgba(255, 255, 255, 0.07);
    --radius:       16px;
    --radius-sm:    10px;
    --radius-lg:    24px;
    --nav-height:   72px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

/* --- Scroll progress --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    z-index: 9999;
    width: 0%;
    transition: width 0.08s linear;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: var(--red);
    color: var(--white);
}

.btn--gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn--gold:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--red-glow);
}

.btn--gold:hover::after { opacity: 1; }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    border-color: rgba(235, 90, 83, 0.5);
    color: var(--red-light);
    background: rgba(235, 90, 83, 0.06);
}

.btn--full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* --- Section --- */
.section { padding: 128px 0; }

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--red);
    margin-bottom: 16px;
}

.section__label::before {
    content: '';
    width: 20px; height: 1.5px;
    background: var(--red);
    border-radius: 1px;
}

.section__title {

    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.section__sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.75;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav--scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav__menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    padding: 6px 14px;
    border-radius: 100px;
}

.nav__menu a:hover,
.nav__menu a.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav__cta {
    padding: 9px 20px !important;
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.nav__cta:hover {
    background: var(--red-light) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 20px var(--red-glow) !important;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 22px; height: 1.5px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s;
    display: block;
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
}

/* Ambient light blobs */
.hero__bg::before {
    content: '';
    position: absolute;
    width: 900px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(235,90,83,0.12) 0%, transparent 70%);
    top: -100px; right: -200px;
    pointer-events: none;
}

.hero__bg::after {
    content: '';
    position: absolute;
    width: 600px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(235,90,83,0.06) 0%, transparent 70%);
    bottom: 0; left: -100px;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 100px;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 10px;
    background: rgba(235, 90, 83, 0.08);
    border: 1px solid rgba(235, 90, 83, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.hero__badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 6px var(--red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {

    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero__title .gold {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 50%, var(--red-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__stats {
    display: flex;
    gap: 0;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero__stats > div {
    flex: 1;
    padding-right: 32px;
    border-right: 1px solid var(--border);
}

.hero__stats > div:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 32px;
}

.hero__stats > div:not(:first-child):not(:last-child) {
    padding-left: 32px;
}

.hero__stat-num {

    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red-light), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -0.04em;
}

.hero__stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__car {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero__car::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 40% 50%, rgba(235,90,83,0.1) 0%, transparent 60%);
}

/* Corner accents on the card */
.hero__car::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80px; height: 80px;
    border-top: 1px solid var(--red);
    border-left: 1px solid var(--red);
    border-radius: 20px 0 0 0;
    opacity: 0.5;
}

.hero__car-svg { width: 80%; position: relative; z-index: 1; }

.hero__glow {
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(235,90,83,0.18), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Floating tags on hero visual */
.hero__tag {
    position: absolute;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 2;
}

.hero__tag--tl {
    top: 20px; left: -20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__tag--tl::before {
    content: '★';
    color: var(--red);
    font-size: 14px;
}

.hero__tag--br {
    bottom: 20px; right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__tag__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.hero__tag__text {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.hero__tag__sub {
    font-size: 10px;
    color: var(--text-muted);
}

/* --- Proof strip --- */
.proof-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    background: var(--bg-2);
    position: relative;
}

/* Fade edges */
.proof-strip::before,
.proof-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.proof-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.proof-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }

.proof-strip__track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.proof-strip__item {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-strip__item::before {
    content: '✦';
    color: var(--red);
    font-size: 9px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --- Services --- */
.diensten { background: var(--bg); }

.diensten__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.dienst-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Gradient top line */
.dienst-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

/* Glow on hover */
.dienst-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 30%, rgba(235,90,83,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.dienst-card:hover {
    border-color: rgba(235, 90, 83, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(235,90,83,0.1);
}

.dienst-card:hover::before { opacity: 1; }
.dienst-card:hover::after { opacity: 1; }

.dienst-card__icon {
    width: 48px; height: 48px;
    background: rgba(235, 90, 83, 0.1);
    border: 1px solid rgba(235, 90, 83, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.dienst-card__price {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.dienst-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.dienst-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.dienst-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.dienst-card__features li {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dienst-card__features li::before {
    content: '';
    width: 16px; height: 16px;
    min-width: 16px;
    background: rgba(235, 90, 83, 0.1);
    border: 1px solid rgba(235, 90, 83, 0.25);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23eb5a53' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Werkwijze --- */
.werkwijze { background: var(--bg-2); }

.werkwijze__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
}

/* Connecting line */
.werkwijze__steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--red), var(--border), transparent);
    z-index: 0;
}

.stap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.stap__num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--bg-2);
    border: 1px solid rgba(235, 90, 83, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(235, 90, 83, 0.15);
    transition: all 0.3s;
}

.stap:hover .stap__num {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 32px var(--red-glow);
    border-color: var(--red);
}

.stap__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.stap__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- Resultaten --- */
.resultaten { background: var(--bg); }

.resultaten__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.result-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(235, 90, 83, 0.2);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.result-card__visual {
    aspect-ratio: 4/3;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.result-card__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(235,90,83,0.06) 0%, transparent 70%);
}

.result-card__label {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.result-card__body { padding: 20px 24px; }

.result-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.result-card__sub {
    font-size: 12px;
    color: var(--text-muted);
}

.car-illustration { width: 75%; opacity: 0.6; position: relative; z-index: 1; }

/* result card foto */
.result-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover .result-card__visual img { transform: scale(1.05); }

/* --- Locatie banner --- */
.locatie-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.locatie-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    filter: brightness(0.5);
}

.locatie-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
}

.locatie-banner__content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.locatie-banner__title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .locatie-banner { height: 300px; }
}

/* --- Galerij --- */
.galerij { background: var(--bg-2); }

.galerij__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: 64px;
}

.galerij__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-3);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.galerij__item--wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.galerij__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galerij__item:hover img { transform: scale(1.06); }

.galerij__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerij__item:hover .galerij__overlay { opacity: 1; }

.galerij__overlay span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.galerij__tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--red);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .galerij__grid { grid-template-columns: 1fr 1fr; }
    .galerij__item--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
    .galerij__grid { grid-template-columns: 1fr; }
    .galerij__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* --- Reviews --- */
.reviews { background: var(--bg-2); }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.review-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.3s;
    position: relative;
}

/* Big quote mark */
.review-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;

    font-size: 80px;
    line-height: 1;
    color: rgba(235, 90, 83, 0.1);
    font-weight: 800;
    pointer-events: none;
}

.review-card:hover { border-color: rgba(235, 90, 83, 0.2); }

.review-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.review-card__stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--red-light), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.review-card__car {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- Contact --- */
.contact { background: var(--bg); }

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
}

.contact__info { display: flex; flex-direction: column; gap: 12px; }

.contact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.25s;
}

.contact__item:hover {
    background: rgba(255,255,255,0.02);
    border-color: var(--border);
}

.contact__icon {
    width: 40px; height: 40px;
    min-width: 40px;
    background: rgba(235, 90, 83, 0.08);
    border: 1px solid rgba(235, 90, 83, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.contact__item-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact__item-val {
    font-size: 14px;
    color: var(--white);
    line-height: 1.5;
}

/* --- Form --- */
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__group { display: flex; flex-direction: column; gap: 8px; }

.form__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form__input, .form__select, .form__textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--white);
    font-family: inherit;
    transition: all 0.2s;
    width: 100%;
}

.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    border-color: rgba(235, 90, 83, 0.5);
    background: rgba(235, 90, 83, 0.04);
    box-shadow: 0 0 0 3px rgba(235, 90, 83, 0.08);
}

.form__select { appearance: none; cursor: pointer; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__input::placeholder, .form__textarea::placeholder { color: #333; }
.form__select option { background: #111; }

.form__success {
    display: none;
    padding: 20px;
    background: rgba(235, 90, 83, 0.06);
    border: 1px solid rgba(235, 90, 83, 0.2);
    border-radius: var(--radius-sm);
    color: var(--red-light);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.form__success.visible { display: block; }

/* --- Footer --- */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.footer__tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 16px;
}

.footer__heading {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer__links a:hover { color: var(--red-light); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.diensten__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.diensten__grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.reviews__grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.reviews__grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.werkwijze__steps [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.werkwijze__steps [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.werkwijze__steps [data-animate]:nth-child(4) { transition-delay: 0.24s; }

/* --- Mobile nav --- */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: var(--nav-height); left: 0; right: 0; bottom: 0;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        font-size: 18px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav__menu.open { transform: translateX(0); }
    .nav__menu a { font-size: 18px; padding: 12px 24px; }
    .nav__toggle { display: flex; }

    /* Hero */
    .hero__inner {
        grid-template-columns: 1fr;
        padding-top: calc(var(--nav-height) + 48px);
        padding-bottom: 60px;
        gap: 40px;
    }
    .hero__visual { display: none; }
    .hero__title { font-size: clamp(32px, 8vw, 52px); }
    .hero__text { font-size: 15px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; width: 100%; }
    .hero__stats { flex-wrap: wrap; gap: 20px; margin-top: 36px; padding-top: 28px; }
    .hero__stats > div { border-right: none; padding: 0; flex: 0 0 calc(50% - 10px); }
    .hero__tag { display: none; }

    /* Sections */
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }

    /* Diensten */
    .diensten__grid { grid-template-columns: 1fr; }

    /* Werkwijze */
    .werkwijze__steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .werkwijze__steps::before { display: none; }

    /* Resultaten */
    .resultaten__grid { grid-template-columns: 1fr; }

    /* Galerij */
    .galerij__grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 40px; }

    /* Reviews */
    .reviews__grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact__layout { grid-template-columns: 1fr; gap: 40px; }
    .form__row { grid-template-columns: 1fr; }
    .form { padding: 28px 20px; }

    /* Footer */
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Locatie */
    .locatie-banner { height: 280px; }
    .locatie-banner__title { font-size: clamp(22px, 5vw, 36px); }
}

@media (max-width: 480px) {
    .hero__title { font-size: 30px; }
    .hero__badge { font-size: 10px; }
    .section__title { font-size: 26px; }

    .werkwijze__steps { grid-template-columns: 1fr; gap: 32px; }

    .galerij__grid { grid-template-columns: 1fr; }
    .galerij__item--wide { grid-column: span 1; aspect-ratio: 4/3; }

    .form { padding: 20px 16px; }

    .hero__stats > div { flex: 0 0 100%; }
    .hero__stats > div:last-child { padding-left: 0; }

    .proof-strip__track { gap: 24px; }
}
