:root {
    /* ROOT Housestyle Colors */
    --font_main: "Titillium Web", sans-serif;
    --font_title: "Titillium Web", sans-serif;
    --primair_default: #2B3140;
    --primair_selected: #475067;
    --primair_default_light: #ffffff;
    --donkere_basis_secundair: #2B3140;
    --lichte_basis_primair: #ffffff;
    --lichte_basis_secundair: #f2f2f2;
    --donkere_basis_primair: #2b3140;
    --call_to_action_default: #E40049;
    --call_to_action_selected: #C20F48;
    --color_links: #2b3140;
    --color_title_headers: #2b3140;
    --header_text_color: #ffffff;
    --header_background_color: #e40049;
    --topheader_background_color: #2b3140;
    --color_gradient_left: #2B3140;
    --color_gradient_right: #E40049;
    --border-radius: 15px;
    --border-radius_buttons: 5px;
    --dimension_mainColumnWidth: 1200px;
    --dimension_contentColumnWidth: 1120px;

    /* Legacy variables for backward compatibility */
    --primary: #e40049;
    --primary-light: #ff1f6c;
    --primary-dark: #c20f48;
    --bg: #ffffff;
    --bg-light: #f2f2f2;
    --text: #2B3140;
    --text-muted: #666;
    --radius: 15px;
    --container: 1200px;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --header-height: 80px;
}

/* Scroll behavior fixes for sticky header and anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) - 80px); /* Scroll more down to show full section */
}

/* Prevent auto-scroll on page load */
body {
    overflow-anchor: none; /* Prevent scroll anchoring */
}

/* Prevent form focus from causing scroll jumps */
.scan-form input:focus {
    scroll-margin: 0;
    scroll-padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

html {
    height: 100%;
}

body {
    font-family: var(--font_main), sans-serif;
    margin: 0;
    background: var(--lichte_basis_secundair);
    color: var(--primair_default);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Main content area - grows to fill space */
main {
    flex: 1 0 auto;
}

/* Header - ROOT Style */
.header {
    background: var(--header_background_color);
    color: var(--header_text_color);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    height: var(--header-height);
    flex-shrink: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: all 0.3s ease;
}

.nav-bar {
    display: flex;
    gap: 2rem;
}

.nav-bar a {
    color: var(--header_text_color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-bar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--header_text_color);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nav-bar a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-bar a:hover::after {
    width: 100%;
}

/* Fixed anchor navigation - simplified approach */
section[id] {
    position: relative;
}

/* Specific scroll adjustments for each section */
#scan {
    scroll-margin-top: 100px; /* Account for header and add breathing room */
}

#features {
    scroll-margin-top: 120px; /* Reduced from 140px - account for scan section overlap and header */
}

#about {
    scroll-margin-top: 80px; /* Reduced from 100px - standard header clearance */
}

/* Compact Branded Section */
.brand-section {
    background: var(--primair_selected);
    color: #fff;
    text-align: center;
    min-height: 40vh;
    padding: 2rem 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--bg);
}

.brand-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.brand-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    text-align: center;
}

.brand-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    margin-top: -2rem;
}

/* Section common styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem; /* Reduced from 3rem */
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--call_to_action_default);
    border-radius: 3px;
}

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

/* Scan Section - Positioned below brand section */
.scan-section {
    background: #fff;
    margin: 0 auto 2rem;
    padding: 2.5rem 2.5rem 3rem;
    border-radius: var(--radius);
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 11;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.scan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.scan-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--call_to_action_selected) 0%, var(--call_to_action_default) 100%);
    border-radius: 3px;
}

.scan-header h2 {
    font-size: 1.8rem;
    color: var(--primair_default);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color_gradient_left) 0%, var(--color_gradient_right) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.scan-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
}

.scan-header h2 .icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

.scan-form {
    margin-bottom: 0;
}

.input-wrapper {
    display: flex;
    border: 1.5px solid #c8ccd4;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.input-wrapper:focus-within {
    border-color: var(--call_to_action_default);
    box-shadow: 0 0 0 3px rgba(228, 0, 73, 0.10);
}

.scan-form input {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1.125rem;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    font-family: var(--font_main), sans-serif;
    color: var(--primair_default);
    background: #fff;
}

.scan-form input::placeholder {
    color: #9aa0ae;
}

.scan-form input:focus {
    outline: none;
    scroll-margin: 0;
}

.scan-form button {
    padding: 0 1.75rem;
    border: none;
    border-radius: 0;
    background: var(--call_to_action_default);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8125rem;
    font-family: var(--font_main), sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.18s;
    white-space: nowrap;
    flex-shrink: 0;
}

.scan-form button:hover {
    background: var(--call_to_action_selected);
}

.scan-form button:active {
    background: #a80d3e;
}

.btn-text    { display: inline; }
.btn-loading { display: none; }

.input-help {
    display: block;
    color: #8892a4;
    font-size: 0.8125rem;
    margin-top: 0;
    text-align: left;
}

.example-url {
    color: var(--primair_default);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

.example-url:hover {
    color: var(--call_to_action_default);
}

.recent-scans {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaecf0;
}

.recent-scans details {
    width: 100%;
}

.recent-scans summary {
    cursor: pointer;
    color: var(--primair_default);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.15s;
    user-select: none;
    border: none;
    background: none;
    margin: 0;
}

.recent-scans summary::-webkit-details-marker { display: none; }
.recent-scans summary::marker { display: none; }

.recent-scans summary::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.45;
    transition: transform 0.2s;
    margin-left: 0.125rem;
}

.recent-scans details[open] summary::after {
    transform: rotate(180deg);
}

.recent-scans summary:hover {
    color: var(--call_to_action_default);
    transform: none;
    box-shadow: none;
    background: none;
    border-color: transparent;
}

.recent-scans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.recent-scans-grid a {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--lichte_basis_secundair);
    border-radius: 4px;
    color: var(--primair_default);
    text-decoration: none;
    border: 1px solid #e4e6ea;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
}

.recent-scans-grid a:hover {
    border-color: var(--call_to_action_default);
    color: var(--call_to_action_default);
    background: var(--lichte_basis_secundair);
    transform: none;
    box-shadow: none;
}

/* Features Section */
.features-section {
    text-align: center;
    background-color: #fff;
    padding: 2rem 0; /* Reduced from 4rem 0 */
    margin-bottom: 3rem; /* Reduced from 6rem */
    position: relative;
    z-index: 5;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    clip-path: polygon(0 30px, 100% 0, 100% 60px, 0 60px);
    z-index: -1;
}

/* Error message */
.error-message {
    background: #fff0f0;
    color: #d32f2f;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    border-left: 3px solid #d32f2f;
    font-size: 0.9rem;
}

/* Inline scan notification */
.scan-notification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3cd;
    color: #7a4f00;
    border: 1px solid #f5c842;
    border-radius: var(--radius);
    padding: 0.6rem 0.9rem;
    margin-top: 0.6rem;
    font-size: 0.875rem;
}

.scan-notification[hidden] {
    display: none;
}

.scan-notification svg {
    flex-shrink: 0;
    color: #b07d00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.feature-card .icon::after {
    content: '';
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(228, 0, 73, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
}

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

/* About Section */
.about-section {
    text-align: center;
    margin-bottom: 3rem; /* Reduced from 6rem */
    padding: 2rem 0; /* Reduced from 3rem 0 */
    background-color: var(--bg-light);
    border-radius: var(--radius);
}

.about-content {
    max-width: 800px;
    margin: 2rem auto 0; /* Reduced from 3rem auto 0 */
    padding: 0 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.primary-btn {
    background: var(--call_to_action_default);
    color: var(--header_text_color);
    box-shadow: 0 3px 8px rgba(228, 0, 73, 0.3);
}

.primary-btn:hover {
    background: var(--call_to_action_selected);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 0, 73, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid #ddd;
}

.secondary-btn:hover {
    background: rgba(0,0,0,0.03);
    border-color: #ccc;
    transform: translateY(-3px);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0 2rem;
}

.stat-card {
    background: var(--bg);
    padding: 1.8rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 150px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--call_to_action_default);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* Why ROOT Section - Personal Touch */
.why-root-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.why-root-content {
    max-width: var(--container);
    margin: 0 auto;
}

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

.eyebrow-text {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

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

.why-root-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.why-root-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(228, 0, 73, 0.03) 10px,
                    rgba(228, 0, 73, 0.03) 20px
            );
}

.placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.placeholder-content svg {
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.placeholder-content span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.image-placeholder:hover .placeholder-content svg {
    opacity: 0.7;
    transform: scale(1.1);
    transition: var(--transition);
}

.why-root-text {
    padding: 2rem;
}

.why-root-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.why-root-text p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    background: #fff;
    padding: 3rem 1.5rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-content {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* ROOT CTA Section */
.root-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 4rem 1.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.root-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.root-cta-content {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.root-cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.root-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.root-cta-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
}

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

.root-service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.root-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.root-service-item svg {
    flex-shrink: 0;
    color: #fff;
}

.root-service-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.root-service-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.root-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.root-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.root-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

.root-primary-btn svg {
    transition: transform 0.3s;
}

.root-primary-btn:hover svg {
    transform: translateX(5px);
}

.root-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.root-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.root-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.root-contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.root-contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.root-contact-info svg {
    flex-shrink: 0;
}

.root-contact-info .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer - Compact for minimal design */
.footer {
    background: var(--topheader_background_color);
    color: var(--header_text_color);
    padding: 2.5rem 1.5rem 1.5rem;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--call_to_action_default);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--call_to_action_default);
    transform: translateY(-3px);
}

.footer-tagline {
    color: var(--call_to_action_default);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-tool-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--call_to_action_default);
}

.footer-contact li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-about {
    max-width: 350px;
}

.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin: 0.5rem 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Hero Section */
.hero-section {
    background: var(--donkere_basis_primair);
    color: var(--header_text_color);
    padding: 3.5rem 1.5rem 4rem;
    position: relative;
    border-bottom: 3px solid var(--call_to_action_default);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
}

.hero-text {}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--call_to_action_default);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 3rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.hero-trust-item svg {
    color: var(--call_to_action_default);
    flex-shrink: 0;
}

/* Modern Container & Scan Section */
.modern-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
}

.scan-section-modern {
    background: var(--lichte_basis_primair);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.scan-form-wrapper {
    padding: 2.5rem 2.5rem 2.75rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px; /* Smaller header on mobile */
    }

    .brand-section {
        min-height: 35vh;
        padding: 2rem 1.5rem 4rem;
    }

    .brand-content {
        padding: 1.5rem 1rem;
    }

    .brand-content h1 {
        font-size: 2.2rem;
    }

    .brand-content p {
        font-size: 1.1rem;
    }

    .scan-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .scan-header h2 {
        font-size: 1.5rem;
    }

    .scan-header p {
        font-size: 1rem;
    }

    .stat-card {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.8rem 1.2rem;
    }

    .scan-section {
        padding: 2rem 1.5rem 2.5rem;
        max-width: 90%;
    }

    .main-content {
        margin-top: -1.5rem;
    }

    /* Adjust anchor positions for mobile */
    #features {
        scroll-margin-top: 80px;
    }

    #about {
        scroll-margin-top: 60px;
    }

    /* Reduce section spacing on mobile */
    .features-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .about-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .footer {
        margin-top: 2rem;
        padding: 2rem 1rem 1.5rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Why ROOT Section - Mobile */
    .why-root-section {
        padding: 3rem 1.5rem;
    }

    .why-root-header {
        margin-bottom: 2.5rem;
    }

    .why-root-header h2 {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .why-root-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder {
        height: 200px;
    }

    .why-root-text {
        padding: 1.5rem;
    }

    .why-root-text h3 {
        font-size: 1.2rem;
    }

    /* Trust Indicators - Mobile */
    .trust-indicators {
        padding: 2rem 1rem;
    }

    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-badge {
        padding: 1rem;
    }

    .trust-icon {
        font-size: 2.5rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 800px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .modern-container {
        padding: 0 1rem 3rem;
        margin-top: -1.5rem;
    }

    .scan-form-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .scan-form button {
        padding: 0.875rem;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}