/* Custom properties */
:root {
    --bg-color: #050505;
    --bg-surface: #080808;
    --bg-surface-light: #101010;
    --bg-card: rgba(255, 255, 255, 0.02);
    --primary-red: #d90000;
    --primary-red-hover: #ff1a1a;
    --primary-red-glow: rgba(217, 0, 0, 0.4);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dark: #52525b;
    --glass-bg: rgba(255, 255, 255, 0.01);
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip-to-content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 10px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 14px; /* Mobile first font-size scaling */
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-red {
    color: var(--primary-red);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4444 60%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-zinc {
    color: var(--text-dark);
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h2 {
    font-size: 2.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

/* Section tag */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-red);
    margin-bottom: 1rem;
    padding: 6px 16px;
    border: 1px solid var(--primary-red);
    border-radius: var(--radius-sm);
    background: transparent;
    box-shadow: inset 0 0 10px rgba(217, 0, 0, 0.1);
    position: relative;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 12px;
    background: var(--primary-red);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
    position: relative;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-red);
    color: #fff;
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(217, 0, 0, 0.2);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(217, 0, 0, 0.4), 0 0 30px rgba(217, 0, 0, 0.1);
}

.btn-primary:hover {
    background: rgba(217, 0, 0, 0.1);
    color: var(--primary-red-hover);
    box-shadow: inset 0 0 15px rgba(217, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 15, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 15, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 42px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-red {
    color: var(--primary-red);
}

.logo-bv {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Hamburger menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

/* Hamburger → X animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 20%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 20%, black 40%, transparent 100%);
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204,0,0,0.25) 0%, rgba(204,0,0,0.05) 40%, rgba(5,5,5,0) 70%);
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204,0,0,0.1) 0%, rgba(5,5,5,0) 70%);
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(204, 0, 0, 0); }
}

.hero-content h1 {
    font-size: 4.25rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

/* Quick Form in Hero */
.hero-quick-form-wrapper {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    max-width: 550px;
}

.hero-quick-form {
    display: flex;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.hero-quick-form .input-group {
    flex: 1;
}

.hero-quick-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.hero-quick-form input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15);
}

.quick-submit-btn {
    white-space: nowrap;
}

.quick-form-guarantee {
    display: block;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

/* Hero Logo Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-showcase {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.logo-ring-outer {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(204,0,0,0.6), rgba(204,0,0,0), rgba(255,80,80,0.8), rgba(204,0,0,0), rgba(204,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinSlow 15s linear infinite;
    padding: 3px;
    box-shadow: 0 0 60px rgba(204, 0, 0, 0.4), inset 0 0 40px rgba(204, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.logo-ring-middle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 80, 80, 0.5);
    animation: spinSlow 20s linear infinite reverse;
    pointer-events: none;
}

.logo-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bg-surface-light) 0%, var(--bg-color) 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinSlow 15s linear infinite reverse;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(204, 0, 0, 0.3), inset 0 0 30px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.hero-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(204, 0, 0, 0.5));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatLogo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Orbiting badges */
.orbiting-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spinSlow 25s linear infinite;
}

.orbit-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(204, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    animation: spinSlow 25s linear infinite reverse;
    transition: var(--transition);
}

.orbit-badge:hover {
    border-color: var(--primary-red);
    background: rgba(204, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.3);
    transform: scale(1.15);
}

.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 25%; right: 2%; }
.orbit-3 { bottom: 10%; right: 10%; }
.orbit-4 { bottom: 10%; left: 10%; }
.orbit-5 { top: 25%; left: 2%; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Ticker bar */
.info-bar {
    background-color: var(--primary-red);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-track {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0 1rem;
    letter-spacing: 0.5px;
}

.ticker-divider {
    font-size: 0.6rem;
    opacity: 0.5;
    padding: 0 0.5rem;
}

/* ISO Strip */
.iso-strip {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-color) 100%);
    position: relative;
    z-index: 1;
}

.iso-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(217, 0, 0, 0.02) 10px, rgba(217, 0, 0, 0.02) 20px);
    pointer-events: none;
    z-index: -1;
}

.iso-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.iso-block {
    background: var(--bg-surface-light);
    border: 1px solid var(--glass-border);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 250px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.iso-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204,0,0,0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.iso-block:hover {
    border-color: rgba(204, 0, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.iso-block:hover::before {
    opacity: 1;
}

.iso-icon {
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.iso-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.iso-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hoe het werkt (Werkwijze) */
.how-it-works {
    background: var(--bg-color);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.step-card {
    flex: 1;
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(204, 0, 0, 0.4);
    box-shadow: 0 15px 35px rgba(204, 0, 0, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(217, 0, 0, 0.1);
    color: var(--primary-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-red);
    transform: rotate(3deg);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-connector {
    flex: 0 0 50px;
    height: 2px;
    background: transparent;
    border-top: 2px dashed rgba(217, 0, 0, 0.5);
    margin-top: 80px; 
    position: relative;
}

/* Services */
.services {
    background-color: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.06), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(204, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-abbr {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.service-card:hover ul li::before {
    transform: translateX(3px);
}

.service-card:hover ul li {
    color: var(--text-main);
}

/* Waarom Brandivo (Over ons) */
.why-brandivo {
    background: linear-gradient(rgba(13, 13, 15, 0.85), rgba(13, 13, 15, 0.95)), url('bg-industrial.png') no-repeat center center/cover;
    position: relative;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.why-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), rgba(204,0,0,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 60px;
}

.why-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.why-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    background: rgba(204, 0, 0, 0.05);
    border-color: rgba(204, 0, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Certification Section */
.certification {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.certification::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(204,0,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cert-intro {
    margin-bottom: 4rem;
}

.cert-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-intro-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.cert-intro-card:hover {
    border-color: rgba(204, 0, 0, 0.2);
    transform: translateY(-3px);
}

.cert-intro-icon {
    color: var(--primary-red);
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(204, 0, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-intro-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cert-intro-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(204,0,0,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-card:hover {
    border-color: rgba(204, 0, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-level {
    margin-bottom: 1.25rem;
    position: relative;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
}

.cert-badge-ovk { background: rgba(204, 0, 0, 0.12); color: #ff4444; border: 1px solid rgba(204, 0, 0, 0.25); }
.cert-badge-mvk { background: rgba(255, 140, 0, 0.12); color: #ff9500; border: 1px solid rgba(255, 140, 0, 0.25); }
.cert-badge-hvk { background: rgba(255, 215, 0, 0.12); color: #ffd700; border: 1px solid rgba(255, 215, 0, 0.25); }

.cert-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cert-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cert-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.cert-bar-fill {
    height: 100%;
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-bar-fill.animated { width: var(--fill-width, 0%); }
.cert-bar-1 { background: linear-gradient(90deg, #cc0000, #ff4444); --fill-width: 33%; }
.cert-bar-2 { background: linear-gradient(90deg, #cc6600, #ff9500); --fill-width: 60%; }
.cert-bar-3 { background: linear-gradient(90deg, #ccaa00, #ffd700); --fill-width: 100%; }

.cert-level-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Branches */
.branches {
    background-color: var(--bg-color);
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.branch-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.branch-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    opacity: 0.5;
}

.branch-card:hover .branch-bg {
    transform: scale(1.1);
    opacity: 0.8;
}

.branch-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    flex-grow: 1;
    background: linear-gradient(to top, rgba(13,13,15,0.95) 0%, rgba(13,13,15,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.branch-card:nth-child(1) .branch-bg { background-image: url('branch-bouw.png'); }
.branch-card:nth-child(2) .branch-bg { background-image: url('branch-industrie.png'); }
.branch-card:nth-child(3) .branch-bg { background-image: url('branch-evenementen.png'); }
.branch-card:nth-child(4) .branch-bg { background-image: url('branch-vastgoed.png'); }
.branch-card:nth-child(5) .branch-bg { background-image: url('branch-zorg.png'); }
.branch-card:nth-child(6) .branch-bg { background-image: url('branch-logistiek.png'); }

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    z-index: 2;
}

.branch-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.branch-card:hover::before {
    transform: scaleY(1);
}

.branch-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: auto;
}

.branch-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.branch-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Sectie */
.faq-section {
    background: var(--bg-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    position: relative;
    background: var(--bg-surface);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    text-align: left;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.detail-item:hover .detail-icon {
    background: rgba(204, 0, 0, 0.2);
    transform: scale(1.05);
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
}

.mt-4 { margin-top: 1rem; }

/* Form Styles */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    transition: var(--transition);
}

.contact-form:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group { margin-bottom: 0; }

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

input, select, textarea {
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15);
    background: rgba(204, 0, 0, 0.02);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

input::placeholder, textarea::placeholder {
    color: var(--text-dark);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Floating Actions (WhatsApp, Telefoon) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-action-btn:hover {
    transform: scale(1.1);
}

/* Back to top button */
.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-surface-light);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.wa-btn {
    background-color: #25D366;
}

.wa-btn:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.phone-btn {
    background-color: var(--primary-red);
}

/* Sticky Bottom Bar voor mobiel */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 998;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.w-100 { width: 100%; }

/* Footer */
.footer {
    background-color: #000;
    padding: 2.5rem 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover { opacity: 1; }

.footer p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--text-main); }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Keyboard focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Contact detail links */
a.detail-item {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a.detail-item:hover {
    color: var(--primary-red);
}

a.detail-item:hover span {
    color: var(--primary-red);
}

/* Performance hints for animated elements */
.orbiting-badges, .orbit-badge, .logo-ring-outer, .logo-ring-inner {
    will-change: transform;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (min-width: 769px) {
    html {
        font-size: 16px; /* Reset to normal on desktop */
    }
    .hide-desktop { display: none !important; }
}

@media (max-width: 992px) {
    .hero-container, .why-container, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-quick-form-wrapper { margin: 0 auto; }
    
    .hero-logo-showcase {
        width: 300px;
        height: 300px;
        margin: 2rem auto 0;
    }
    
    .logo-ring-outer { width: 170px; height: 170px; }
    .hero-logo-img { width: 90px; height: 90px; }
    .orbit-badge { width: 48px; height: 48px; font-size: 0.7rem; }
    
    h2 { text-align: center; font-size: 2.25rem; }
    .why-left h2, .contact-info h2 { text-align: left; }
    .cert-intro-grid { grid-template-columns: 1fr; }
    
    section { padding: 5rem 0; }
}

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    
    /* Make room for sticky bottom bar */
    body { padding-bottom: 80px; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-border);
        gap: 0;
    }
    
    .nav-links a {
        padding: 1rem 24px;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a::after { display: none !important; }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    
    .hero-quick-form { flex-direction: column; }
    .steps-grid { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    
    .hero-content h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-tag { font-size: 0.75rem; }
    
    .contact-form { padding: 2rem; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    
    /* Adjust Floating Buttons */
    .floating-actions {
        bottom: 100px; /* Above the sticky bar */
        right: 20px;
    }
    .float-action-btn { width: 50px; height: 50px; }
    .float-action-btn svg { width: 24px; height: 24px; }

    h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hide-mobile-sm { display: none !important; }
}

/* ══════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════ */
.brandivo-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px 20px;
    border-radius: var(--radius-lg);
    max-width: 380px;
    min-width: 280px;
    background: #1a1a24;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(16px);
    overflow: hidden;
    /* start off-screen */
    transform: translateY(110%) scale(0.96);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.brandivo-toast.toast-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.brandivo-toast--success .toast-icon { color: #10b981; }
.brandivo-toast--error   .toast-icon { color: #ef4444; }

.toast-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 3px;
}

.toast-message {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    margin-top: -2px;
    flex-shrink: 0;
}

.toast-close:hover { color: var(--text-main); }

/* Shrinking progress bar at the bottom */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: var(--primary-red);
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

.brandivo-toast--error .toast-progress { background: #ef4444; }
.brandivo-toast--success .toast-progress { background: #10b981; }

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* ══════════════════════════════════════════════════
   INLINE FIELD VALIDATION
══════════════════════════════════════════════════ */
.form-group.field-error input,
.form-group.field-error select,
.form-group.field-error textarea,
.input-group.field-error input {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-group.field-success input,
.form-group.field-success select,
.form-group.field-success textarea,
.input-group.field-success input {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}

.field-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 500;
    animation: hintSlide 0.2s ease;
}

@keyframes hintSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   SPINNER IN BUTTON
══════════════════════════════════════════════════ */
.btn-spinner {
    animation: btnSpin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes btnSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.btn-loading {
    pointer-events: none;
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════
   FORM SUCCESS OVERLAY
══════════════════════════════════════════════════ */
.form-success-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-success-overlay.overlay-visible {
    opacity: 1;
}

.form-success-inner {
    text-align: center;
    padding: 2rem;
}

.success-check-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.success-check {
    width: 80px;
    height: 80px;
}

/* Circle draw animation */
.check-circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.6s ease 0.1s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

/* Tick draw animation */
.check-tick {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawTick 0.4s ease 0.65s forwards;
}

@keyframes drawTick {
    to { stroke-dashoffset: 0; }
}

.form-success-inner h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.form-success-inner p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-reset-btn {
    min-width: 180px;
}