:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #8b5cf6;
    /* Vibrant Purple */
    --text: #334155;
    --text-light: #64748b;
    --background: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 20%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(2deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(2deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3 {
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 50%, #8b5cf6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s ease infinite;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary);
    text-decoration: none;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 40px;
    width: 40px;
    filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.2));
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    padding: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-text {
    color: var(--text);
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid transparent;
}

.btn-text:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.1);
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Decorative Blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Enhanced 3D effect */
    box-shadow:
        0 50px 100px -20px rgba(50, 50, 93, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image:hover {
    animation-play-state: paused;
    transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
}

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

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 246, 255, 0.8);
    backdrop-filter: blur(4px);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 99px;
    margin-bottom: 32px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

/* Features */
.features {
    padding: 120px 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* "How it works" - Steps */
.steps-container {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.steps-list {
    list-style: none;
    padding: 0;
    position: relative;
}

/* Vertical line */
.steps-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(37, 99, 235, 0.2) 100%);
    z-index: 0;
}

.step-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 70px;
    z-index: 1;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}

.step-title {
    display: block;
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cta-icon {
    font-size: 72px;
    display: block;
    margin-bottom: 24px;
    animation: fadeInUp 1s infinite alternate;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    color: var(--text-light);
    text-align: center;
    font-size: 0.9rem;
    background: var(--white);
}

/* Pricing Card Enhancements */
.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
    padding: 50px;
}

.pricing-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-tag small {
    font-size: 0.5em;
    opacity: 0.6;
}

.price-period {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.stat-item {
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
}

.stat-item strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

/* Pricing Section Dedicated */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    margin-bottom: 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pricing-content {
    padding-right: 40px;
}

.pricing-features {
    list-style: none;
    margin-top: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(45, 212, 191, 0.2);
    color: #2dd4bf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-card-visual {
    background: var(--white);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.pricing-card-visual:hover {
    transform: rotate(0deg) scale(1.02);
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 12px;
}

.amount {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 24px;
    margin-left: 8px;
}

/* Mobile Tweaks */
@media (max-width: 900px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pricing-content {
        padding-right: 0;
    }

    .pricing-features li {
        justify-content: center;
    }

    .pricing-card-visual {
        transform: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    #main-nav.active {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        transform: none;
        margin: 0 -24px;
        /* bleed to edges on mobile */
        border-radius: 0;
        box-shadow: none;
        animation: none;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Value Creation Section */
.value-creation {
    background: #f8fafc;
    padding: 120px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.value-card-stack {
    background: #ffffff;
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.value-card-stack::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: -1;
    border-radius: 40px;
    filter: blur(20px);
}

.strategic-item {
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.strategic-item:hover {
    transform: translateX(10px);
    border-color: rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.strategic-item.marge {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.strategic-item.assortiment {
    background: #fff7ed;
    border-left: 4px solid #f97316;
}

.strategic-item.besluit {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
}

.strategic-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #0f172a;
}

.strategic-item span {
    font-size: 0.95rem;
    color: #64748b;
}

.value-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.value-stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.value-stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin: 0;
}

@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .value-card-stack {
        order: 2;
        padding: 30px;
    }

    .value-content {
        order: 1;
        text-align: center;
    }

    .value-stats {
        justify-content: center;
        gap: 40px;
    }
}

/* Quick Start Guide */
.installation-guide {
    padding: 100px 0;
    background: #ffffff;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.guide-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.guide-icon-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    box-shadow: var(--shadow-sm);
}

.chrome-ui-icon {
    background: #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #475569;
}

.pin-icon {
    color: #2563eb;
}

@media (max-width: 900px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item h4 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Showcase Section */
.showcase-section {
    padding: 120px 0;
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Image left, text right, slightly favoring image */
    gap: 80px;
    align-items: center;
    text-align: left;
}

.showcase-content h2 {
    margin-bottom: 24px;
    font-size: 2.75rem;
}

.showcase-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.showcase-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-mockup:hover {
    transform: scale(1.02);
}

.showcase-mockup img {
    width: 100%;
    display: block;
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}