/* CSS Variables for Light/Dark Mode */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-tertiary: #888;
    --border-color: #f0f0f0;
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* Gradient colors - Change these to update all section colors at once */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);
    --gradient-sky: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);

    /* Social proof & stats gradients */
    --gradient-social-proof: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-stat-1: linear-gradient(135deg, #2B5DBE 0%, #2B5DBE 100%);
    --gradient-stat-2: linear-gradient(135deg, #346ED9 0%, #346ED9 100%);
    --gradient-stat-3: linear-gradient(135deg, #3C82F5 0%, #3C82F5 100%);
    --gradient-stat-4: linear-gradient(135deg, #468BF7 0%, #468BF7 100%);

    /* Spotlight & Bento dark sections */
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);

    /* CTA gradient */
    --gradient-cta: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Dark mode via system preference */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --text-tertiary: #888;
        --border-color: #333;
        --shadow-color: rgba(0, 0, 0, 0.3);
    }
}

/* Manual dark mode override */
:root[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #888;
    --border-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Manual light mode override */
:root[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-tertiary: #888;
    --border-color: #f0f0f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
.navbar {
    padding: 1.5rem 2rem;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.nav-logo svg {
    color: var(--text-tertiary);
}

.nav-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Dark Mode Toggle */
.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* Language Toggle */
.language-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    min-width: 48px;
}

.language-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.lang-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* New Hero Section with Sky Background */
.hero-new {
    position: relative;
    padding: 8rem 2rem 10rem;
    background: var(--gradient-sky);
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.hero-text {
    color: white;
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-app-icon {
    margin-bottom: 2rem;
}

.hero-app-icon img {
    width: 120px;
    height: 120px;
    border-radius: 26.67%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge svg {
    color: #fbbf24;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
}

.hero-app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.hero-app-store-btn img {
    height: 60px;
    width: auto;
}

.hero-app-store-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

/* Feature Cards */
.hero-features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1.0rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
}

.hero-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Right Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-phone-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-phone {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

/* Decorative Clouds */
.hero-clouds {
    display: none;
}

/* Responsive for new hero */
@media (max-width: 968px) {
    .hero-new {
        padding: 6rem 2rem 8rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-app-icon img {
        width: 100px;
        height: 100px;
    }

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

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

    .hero-phone {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-new {
        padding: 4rem 1.5rem 6rem;
    }

    .hero-app-icon img {
        width: 80px;
        height: 80px;
    }

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

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

    .hero-app-store-btn img {
        height: 50px;
    }

    .hero-phone {
        max-width: 240px;
    }
}

/* ========================================
   SHARED UTILITIES
   ======================================== */

/* Section Tag Badge */
.section-tag {
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag.blue-purple {
    background: var(--gradient-sky);
}

.section-tag.sky {
    background: var(--gradient-sky);
}

/* Section Images */
.section-image {
    max-width: 450px;
    width: 100%;
}

.section-image-medium {
    max-width: 320px;
    width: 100%;
}

.section-image-large {
    max-width: 400px;
    width: 100%;
}

.section-image-small {
    max-width: 350px;
    width: 100%;
}

/* ========================================
   FEATURE SPOTLIGHT SECTION
   ======================================== */

.feature-spotlight-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.spotlight-grid.reverse {
    direction: rtl;
}

.spotlight-grid.reverse > * {
    direction: ltr;
}

.spotlight-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.spotlight-bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.spotlight-content {
    color: white;
}

.spotlight-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotlight-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.spotlight-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spotlight-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.spotlight-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.spotlight-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #60a5fa;
}

.spotlight-feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.spotlight-feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   BENTO GRID SECTION
   ======================================== */

.bento-section {
    padding: 8rem 2rem;
    background-color: var(--bg-primary);
}

.bento-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.bento-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    position: relative;
}

.bento-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: rgba(15, 52, 96, 0.3);
}

.bento-card:hover .bento-card-bg {
    opacity: 1;
}

.bento-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bento-large {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: none;
    padding: 3rem;
}

.bento-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 300px;
    justify-content: center;
}

.bento-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 14px;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-card-icon {
    transform: rotate(5deg) scale(1.05);
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spotlight-grid.reverse {
        direction: ltr;
    }

    .spotlight-title {
        font-size: 2rem;
    }

    .spotlight-description {
        font-size: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-cards-column {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .bento-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .feature-spotlight-section,
    .bento-section {
        padding: 4rem 1.5rem;
    }

    .spotlight-title {
        font-size: 1.75rem;
    }

    .spotlight-description {
        font-size: 0.95rem;
    }

    .section-image {
        max-width: 280px;
    }

    .section-image-medium {
        max-width: 240px;
    }

    .section-image-large {
        max-width: 280px;
    }

    .section-image-small {
        max-width: 240px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-cards-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-title {
        font-size: 1.75rem;
    }

    .bento-card {
        padding: 1.5rem;
    }
}

/* Diagonal Background Utility */
.diagonal-bg {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.diagonal-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--bg-primary);
    transform: skewY(-2deg);
    transform-origin: left;
}

/* Feature Item Text (gebruikt in features-list) */
.feature-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Section Utilities */
.section-icon {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ========================================
   DYNAMISCHE SECTIES
   ======================================== */

/* Features List Section - Compact iPhone + checklist */
.features-list-section {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
}

.features-list-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.features-list-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-list-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.feature-checkmark svg {
    display: block;
    transition: transform 0.2s ease;
}

.feature-item:hover .feature-checkmark svg {
    transform: scale(1.08);
}

.feature-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Modern Features List Section */
.features-list-modern {
    padding: 4rem 2rem 8rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.features-list-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-list-modern-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image Side */
.features-list-modern-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image-wrapper {
    position: relative;
    max-width: 280px;
    width: 100%;
}

.features-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Side */
.features-list-modern-content {
    padding: 1rem 0;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.features-badge svg {
    color: #3b82f6;
}

.features-list-modern-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-list-modern-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Features Grid */
.features-modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Feature Card */
.feature-modern-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-primary);
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-modern-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    transform: translateX(4px);
}

.feature-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.feature-modern-card:hover .feature-card-icon {
    transform: scale(1.05) rotate(-5deg);
}

.feature-card-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    padding-top: 0.5rem;
}

/* Background Decoration */
.features-bg-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Dark Mode */
body.dark-mode .feature-modern-card {
    background: var(--dark-card-bg);
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .feature-modern-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
}

/* Screenshot Sections */
.screenshot-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.screenshot-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.screenshot-content.reverse {
    direction: rtl;
}

.screenshot-content.reverse > * {
    direction: ltr;
}

.screenshot-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-text {
    padding: 2rem 0;
}

.screenshot-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.screenshot-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
}

/* Modern Screenshot Section */
.screenshot-section-modern {
    padding: 4rem 2rem 8rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.screenshot-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.screenshot-modern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.screenshot-modern-content.reverse {
    direction: rtl;
}

.screenshot-modern-content.reverse > * {
    direction: ltr;
}

/* Screenshot Visual Side */
.screenshot-modern-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-card-wrapper {
    position: relative;
    perspective: 1000px;
    max-width: 500px;
    width: 100%;
}

.screenshot-card {
    position: relative;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
}

.screenshot-card-glow {
    display: none;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
}

/* Floating Elements - Hidden */
.screenshot-float-element {
    display: none;
}

/* Content Side */
.screenshot-modern-text {
    padding: 2rem 0;
}

.screenshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.screenshot-badge-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.screenshot-modern-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshot-modern-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Highlights */
.screenshot-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.screenshot-highlight-item svg {
    flex-shrink: 0;
    color: #3b82f6;
    stroke-width: 2.5;
}

.screenshot-highlight-item span {
    font-weight: 500;
}

/* Background Decoration */
.screenshot-bg-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Dark Mode Adjustments */
body.dark-mode .screenshot-card {
    background: var(--dark-card-bg);
}

body.dark-mode .screenshot-modern-title,
body.dark-mode .bento-title,
body.dark-mode .spotlight-title,
body.dark-mode .features-list-modern-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Centered Text Section */
.centered-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--bg-primary);
}

.centered-content {
    max-width: 600px;
    margin: 0 auto;
}

.centered-section .section-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.centered-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.centered-section .section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Stats Section */
/* Social Proof Hero */
.social-proof-hero {
    padding: 6rem 2rem 4rem;
    background: var(--gradient-social-proof);
    text-align: center;
}

.social-proof-container {
    max-width: 900px;
    margin: 0 auto;
}

.social-proof-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.social-proof-title .highlight {
    color: #4ade80;
}

.social-proof-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section - Modern Card Design */
.stats-section {
    padding: 5rem 2rem;
    background-color: var(--bg-primary);
}

.stats-section.bg-light {
    background-color: var(--bg-secondary);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--gradient-stat-1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:nth-child(2) {
    background: var(--gradient-stat-2);
}

.stat-card:nth-child(3) {
    background: var(--gradient-stat-3);
}

.stat-card:nth-child(4) {
    background: var(--gradient-stat-4);
}

.stat-card-inner {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background-color: var(--bg-secondary);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.testimonial-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--bg-primary);
}

.cta-section.bg-gradient {
    background: var(--gradient-sky);
    color: white;
}

.cta-section.bg-gradient h2,
.cta-section.bg-gradient .cta-description {
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button.primary {
    background-color: #4A90E2;
    color: white;
}

.cta-section.bg-gradient .cta-button.primary {
    background-color: white;
    color: #667eea;
}

.cta-button.secondary {
    background-color: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.cta-section.bg-gradient .cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--bg-primary);
}

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

.faq-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: #4A90E2;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--bg-primary);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: #4A90E2;
    font-weight: 300;
    transition: transform 0.2s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

/* Background Utilities */
.bg-light {
    background-color: var(--bg-secondary);
}

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #666 !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-list-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-list-content h2 {
        font-size: 2.25rem;
    }

    .features-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    

    .screenshot-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .screenshot-content.reverse {
        direction: ltr;
    }

    .screenshot-text h2 {
        font-size: 2rem;
    }

    /* Modern screenshot responsive */
    .screenshot-modern-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .screenshot-modern-content.reverse {
        direction: ltr;
    }

    .screenshot-modern-title {
        font-size: 2.25rem;
    }

    .screenshot-float-1 {
        right: 5%;
        top: 5%;
    }

    .screenshot-float-2 {
        left: 5%;
        bottom: 5%;
    }



    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .app-name {
        font-size: 2rem;
    }

    .feature-text h2,
    .powerful-section h2 {
        font-size: 1.7rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .social-proof-title {
        font-size: 2.25rem;
    }

    .social-proof-subtitle {
        font-size: 1.125rem;
    }

    .cta-section h2,
    .centered-section h2 {
        font-size: 1.7rem;
    }

    /* Modern features list responsive */
    .features-list-modern-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-list-modern-title {
        font-size: 2.25rem;
    }

    .features-list-modern-subtitle {
        font-size: 1rem;
    }

    .features-image-wrapper {
        max-width: 240px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 1.5rem 5rem;
    }

    .features-list-section,
    .features-list-modern,
    .screenshot-section,
    .screenshot-section-modern,
    .feature-section,
    .screenshots-section {
        padding: 4rem 1.5rem;
    }

    .features-list-content h2 {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        gap: 0.875rem;
        padding: 0.625rem 0;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    /* Modern features list mobile */
    .features-list-modern-title {
        font-size: 1.875rem;
    }

    .features-list-modern-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .features-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    .feature-modern-card {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }

    .feature-card-icon {
        width: 36px;
        height: 36px;
    }

    .feature-card-text {
        font-size: 0.95rem;
        padding-top: 0.25rem;
    }

    .features-image-wrapper {
        max-width: 200px;
    }



    .screenshot-text h2 {
        font-size: 1.75rem;
    }

    .screenshot-text p {
        font-size: 1rem;
    }

    /* Modern screenshot mobile */
    .screenshot-modern-title {
        font-size: 1.875rem;
    }

    .screenshot-modern-description {
        font-size: 1rem;
    }

    .screenshot-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    .screenshot-float-element {
        width: 48px;
        height: 48px;
    }

    .screenshot-float-1,
    .screenshot-float-2 {
        opacity: 0.7;
    }

    .screenshot-card {
        padding: 1rem;
    }

    .screenshot-highlights {
        gap: 0.75rem;
    }

    .screenshot-highlight-item {
        font-size: 0.9rem;
    }

    .powerful-section {
        padding: 4rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

    .stat-number {
        font-size: 2.75rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .social-proof-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .social-proof-title {
        font-size: 1.875rem;
    }

    .social-proof-subtitle {
        font-size: 1rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
    }

    .centered-section,
    .stats-section,
    .testimonials-section,
    .cta-section,
    .faq-section {
        padding: 4rem 1.5rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Base animation states */
.scroll-animate {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
}

/* Fade Up Animation - Subtiel en vloeiend */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Fade In Animation (no movement) */
.fade-in {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate-in {
    opacity: 1;
}

/* Slide In From Left - Subtiel */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In From Right - Subtiel */
.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up Animation - Zeer subtiel */
.scale-up {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-up.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for child elements - Vloeiender */
.stagger-children > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.animate-in > *:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.animate-in > *:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.animate-in > *:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.animate-in > *:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children.animate-in > *:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children.animate-in > *:nth-child(6) {
    transition-delay: 0.3s;
}

.stagger-children.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .fade-up,
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-up,
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
