/* ============================================
   Reanimatie.nl - Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary: #1e3a5f;
    --primary-light: #2a4f7f;
    --primary-dark: #142841;
    --accent: #e63946;
    --accent-light: #ff4d5a;
    --accent-dark: #c62833;
    --green: #2a9d8f;
    --green-light: #3ab8a8;
    --orange: #e9a820;
    --blue: #457b9d;

    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-dark: #0f1923;
    --bg-card: #ffffff;

    --text-primary: #1a1a2e;
    --text-secondary: #555770;
    --text-muted: #8b8da3;
    --text-light: #ffffff;

    --border: #e2e4ed;
    --border-light: #f0f1f5;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-secondary);
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    margin-left: 4px;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
}

@media (max-width: 1100px) and (min-width: 769px) {
    .nav-link {
        padding: 8px 8px;
        font-size: 0.85rem;
    }

    .nav-menu {
        gap: 2px;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 50%, #f5f0f0 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-plus, .stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.2);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.hero-icon {
    color: var(--accent);
    margin-bottom: 8px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    56% { transform: scale(1); }
}

.ecg-line {
    width: 200px;
    color: var(--accent);
    opacity: 0.6;
}

.ecg-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: ecg 3s linear infinite;
}

@keyframes ecg {
    to { stroke-dashoffset: 0; }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- Section Styles --- */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Features Section --- */
.features {
    padding: 80px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon.icon-red {
    background: rgba(230, 57, 70, 0.08);
    color: var(--accent);
}

.feature-icon.icon-green {
    background: rgba(42, 157, 143, 0.08);
    color: var(--green);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Cursus App Section --- */
.cursus-section {
    background: var(--bg-secondary);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.app-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.app-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    color: var(--accent);
    border-radius: var(--radius-sm);
}

.app-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.app-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* App Mockup */
.app-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--primary);
    color: white;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-body {
    padding: 20px;
}

.mockup-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.mockup-nav-item {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.mockup-nav-item.active {
    background: var(--accent);
    color: white;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.mockup-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.mockup-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.mockup-list-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mockup-list-dot.green { background: var(--green); }
.mockup-list-dot.blue { background: var(--blue); }
.mockup-list-dot.orange { background: var(--orange); }

.mockup-list-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-list-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- AED Lease Section --- */
.aed-section {
    position: relative;
    background: var(--bg-primary);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}

.pricing-info {
    padding: 48px;
}

.pricing-product {
    margin-bottom: 32px;
}

.product-images {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.product-images .product-image {
    margin-bottom: 0;
}

.product-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    padding: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-product h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-product p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-features h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
}

/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-highlight {
    display: inline-flex;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 12px;
    margin-right: 4px;
}

.pricing-amount .price {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-amount .cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 12px;
}

.pricing-amount .period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 12px;
    margin-left: 4px;
}

.pricing-vat {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.pricing-desc p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-quick-list {
    text-align: left;
    margin-bottom: 32px;
    width: 100%;
}

.pricing-quick-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    opacity: 0.9;
    padding-left: 24px;
    position: relative;
}

.pricing-quick-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-weight: 700;
}

.pricing-box .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
    font-size: 1.05rem;
}

.pricing-box .btn-primary:hover {
    background: var(--bg-secondary);
    border-color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 12px;
}

/* Pricing Tiers */
.pricing-tier {
    width: 100%;
    margin-bottom: 8px;
}

.pricing-tier-item {
    text-align: center;
}

.pricing-tier .tier-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-bottom: 4px;
}

.pricing-tier .pricing-amount {
    justify-content: center;
}

.pricing-tier .pricing-amount .price {
    font-size: 3rem;
}

.pricing-tier .pricing-amount .currency {
    font-size: 1.2rem;
    margin-top: 8px;
}

.pricing-tier .pricing-amount .cents {
    font-size: 1.2rem;
    margin-top: 8px;
}

.pricing-tier .pricing-amount .period {
    font-size: 0.85rem;
    margin-top: 8px;
}

.pricing-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 16px auto;
}

/* --- About Section --- */
.about-section {
    background: var(--bg-secondary);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
}

.value h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.value p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-visual-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-icon-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --- Referral / Doorverwijzen Section --- */
.referral-section {
    background: var(--bg-secondary);
}

.referral-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.referral-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
}

.referral-content {
    padding: 56px 48px;
}

.referral-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.referral-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.badge-gold {
    background: rgba(233, 168, 32, 0.12);
    color: #b8860b;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.referral-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.referral-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.referral-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
}

.referral-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.referral-step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.btn-gold {
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: white;
    border-color: #d4a017;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    border-color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

/* Referral Visual / Reward Card */
.referral-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    min-height: 100%;
}

.referral-reward-card {
    text-align: center;
    color: white;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 300px;
}

.reward-badge {
    display: inline-flex;
    padding: 6px 20px;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: white;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.reward-months {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #f0c040, #ffe580);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reward-label {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 20px;
}

.reward-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    margin: 0 auto 20px;
}

.reward-save {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 4px;
}

.reward-price {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f0c040, #ffe580);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reward-details {
    margin-top: 24px;
    text-align: left;
}

.reward-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.82rem;
    opacity: 0.85;
}

.reward-detail svg {
    flex-shrink: 0;
    color: #f0c040;
}

@media (max-width: 1024px) {
    .referral-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .referral-content {
        padding: 32px 24px;
    }

    .referral-visual {
        padding: 32px 24px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--bg-secondary);
}

.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 0 48px;
}

.faq-section .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.faq-section .faq-item:last-child {
    border-bottom: none;
}

.faq-section .faq-question {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 20px 40px 20px 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
}

.faq-section .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
}

.faq-section .faq-item.open > .faq-question::after {
    content: '\2212';
}

.faq-section .faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-section .faq-item.open > .faq-answer {
    max-height: 600px;
}

.faq-section .faq-answer p,
.faq-section .faq-answer ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
}

.faq-section .faq-answer p:last-child,
.faq-section .faq-answer ul:last-child {
    margin-bottom: 20px;
}

.faq-section .faq-answer ul {
    padding-left: 24px;
}

.faq-section .faq-answer li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.faq-section .faq-answer a {
    color: var(--accent);
    text-decoration: none;
}

.faq-section .faq-answer a:hover {
    color: var(--accent-dark);
}

@media (max-width: 640px) {
    .faq-section .faq-container {
        padding: 0 24px;
    }
}

/* --- Reanimeren Section --- */
.reanimeren-section {
    background: var(--bg-primary);
}

.reanimatie-steps {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.step-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.step-list {
    margin: 12px 0;
    padding-left: 20px;
    list-style: disc;
}

.step-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 4px;
    list-style: disc;
}

.step-note {
    margin-top: 8px;
    padding: 12px 16px;
    background: rgba(230, 57, 70, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.reanimatie-cta {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius-xl);
}

.cta-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
}

.cta-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-card .btn-primary {
    flex-shrink: 0;
    background: white;
    color: var(--primary);
    border-color: white;
}

.cta-card .btn-primary:hover {
    background: var(--bg-secondary);
    border-color: var(--bg-secondary);
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* --- Form Section --- */
.form-section {
    background: var(--bg-primary);
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--bg-primary);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    display: none;
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 4px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--accent);
}

.form-group.error .form-error,
.form-consent.error .form-error {
    display: block;
}

.form-summary {
    margin: 32px 0 24px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-row span:first-child {
    font-weight: 500;
    color: var(--text-secondary);
}

.summary-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.form-consent {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.form-consent.error .checkmark {
    border-color: var(--accent);
}

/* Form Loading & Error */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-api-error {
    padding: 16px 20px;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Contact Section --- */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 36px 24px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    color: var(--accent);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer-brand .nav-logo {
    color: white;
}

.footer-brand .logo-accent {
    color: var(--accent);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: white;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-cta {
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-card {
        width: 240px;
        height: 240px;
    }

    .hero-icon svg {
        width: 56px;
        height: 56px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 32px 24px;
    }

    .pricing-info {
        padding: 32px 24px;
    }

    .pricing-box {
        padding: 32px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .about-visual-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 100px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .pricing-amount .price {
        font-size: 3.5rem;
    }

    .summary-row {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}
