/* ==========================================
   DIENSTEN PAGE - ULTIMATE 2026 STYLES
   ========================================== */

/* ====== CSS VARIABLES ====== */
:root {
    /* Gradient Colors */
    --gradient-blue: linear-gradient(135deg, #667eea, #764ba2);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #a78bfa);
    --gradient-cyan: linear-gradient(135deg, #06b6d4, #22d3ee);
    --gradient-green: linear-gradient(135deg, #10b981, #34d399);
    --gradient-orange: linear-gradient(135deg, #f97316, #fb923c);
    --gradient-pink: linear-gradient(135deg, #ec4899, #f472b6);
    --gradient-yellow: linear-gradient(135deg, #eab308, #fde047);
    --gradient-teal: linear-gradient(135deg, #14b8a6, #2dd4bf);
    --gradient-lime: linear-gradient(135deg, #84cc16, #a3e635);
    --gradient-indigo: linear-gradient(135deg, #6366f1, #818cf8);
    --gradient-rose: linear-gradient(135deg, #f43f5e, #fb7185);
    --gradient-violet: linear-gradient(135deg, #8b5cf6, #c4b5fd);
    
    /* Solid Colors */
    --blue: #667eea;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --green: #10b981;
    --orange: #f97316;
    --pink: #ec4899;
    --yellow: #eab308;
    --teal: #14b8a6;
    --lime: #84cc16;
    --indigo: #6366f1;
    --rose: #f43f5e;
    --violet: #8b5cf6;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ====== HERO SECTION ====== */
.diensten-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 80px;
    background: var(--bg-dark, #0a0a1a);
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: gradientPulse 10s ease-in-out infinite;
}

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

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(2px 2px at 90% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(1px 1px at 40% 60%, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--indigo);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--purple);
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--cyan);
    bottom: 20%;
    left: 25%;
    animation-delay: -6s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--pink);
    top: 40%;
    right: 30%;
    animation-delay: -9s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: var(--green);
    bottom: 30%;
    right: 5%;
    animation-delay: -12s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-30px) translateX(20px) scale(1.1); }
    50% { transform: translateY(20px) translateX(-10px) scale(0.95); }
    75% { transform: translateY(-15px) translateX(-20px) scale(1.05); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-mega-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.title-line {
    display: block;
    color: #fff;
}

.title-gradient {
    background: linear-gradient(135deg, var(--indigo), var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--indigo);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-hero-primary {
    padding: 18px 36px;
    background: var(--gradient-indigo);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.btn-hero-secondary {
    padding: 18px 36px;
    background: var(--glass-bg);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--indigo);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ====== SERVICES QUICK NAV ====== */
.services-quick-nav {
    padding: 80px 20px;
    background: var(--bg-darker, #08081a);
    position: relative;
}

.quick-nav-header {
    text-align: center;
    margin-bottom: 50px;
}

.quick-nav-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 15px;
}

.quick-nav-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.services-grid-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-nav-card {
    position: relative;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.service-nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-nav-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-nav-card:hover::before {
    opacity: 1;
}

.service-nav-card.featured {
    border-color: var(--indigo);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, var(--glass-bg) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    background: var(--gradient-cyan);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

.nav-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.gradient-blue { background: var(--gradient-blue); }
.gradient-purple { background: var(--gradient-purple); }
.gradient-cyan { background: var(--gradient-cyan); }
.gradient-green { background: var(--gradient-green); }
.gradient-orange { background: var(--gradient-orange); }
.gradient-pink { background: var(--gradient-pink); }
.gradient-yellow { background: var(--gradient-yellow); }
.gradient-teal { background: var(--gradient-teal); }
.gradient-lime { background: var(--gradient-lime); }
.gradient-indigo { background: var(--gradient-indigo); }
.gradient-rose { background: var(--gradient-rose); }
.gradient-violet { background: var(--gradient-violet); }

.service-nav-card h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.nav-card-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.nav-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-nav-card:hover .nav-card-arrow {
    background: var(--indigo);
    transform: translateX(5px);
}

/* ====== SERVICE SECTIONS ====== */
.service-section {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-dark, #0a0a1a);
    overflow: hidden;
}

.service-section.alt-bg {
    background: var(--bg-darker, #08081a);
}

.section-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.section-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: var(--indigo);
}

.section-orb.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: var(--purple);
}

.section-orb.purple { background: var(--purple); }
.section-orb.cyan { background: var(--cyan); }
.section-orb.green { background: var(--green); }
.section-orb.orange { background: var(--orange); }
.section-orb.pink { background: var(--pink); }
.section-orb.yellow { background: var(--yellow); }
.section-orb.teal { background: var(--teal); }
.section-orb.lime { background: var(--lime); }
.section-orb.indigo { background: var(--indigo); }
.section-orb.rose { background: var(--rose); }
.section-orb.violet { background: var(--violet); }
.section-orb.blue { background: var(--blue); }

.service-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-section-grid.reverse {
    direction: rtl;
}

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

.service-content {
    max-width: 550px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-tag.blue { background: rgba(102, 126, 234, 0.2); color: var(--blue); }
.service-tag.purple { background: rgba(139, 92, 246, 0.2); color: var(--purple); }
.service-tag.cyan { background: rgba(6, 182, 212, 0.2); color: var(--cyan); }
.service-tag.green { background: rgba(16, 185, 129, 0.2); color: var(--green); }
.service-tag.orange { background: rgba(249, 115, 22, 0.2); color: var(--orange); }
.service-tag.pink { background: rgba(236, 72, 153, 0.2); color: var(--pink); }
.service-tag.yellow { background: rgba(234, 179, 8, 0.2); color: var(--yellow); }
.service-tag.teal { background: rgba(20, 184, 166, 0.2); color: var(--teal); }
.service-tag.lime { background: rgba(132, 204, 22, 0.2); color: var(--lime); }
.service-tag.indigo { background: rgba(99, 102, 241, 0.2); color: var(--indigo); }
.service-tag.rose { background: rgba(244, 63, 94, 0.2); color: var(--rose); }
.service-tag.violet { background: rgba(139, 92, 246, 0.2); color: var(--violet); }

.new-badge {
    padding: 4px 8px;
    background: var(--gradient-cyan);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 5px;
}

.service-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
}

.service-title span {
    display: block;
}

.gradient-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.blue { background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; }
.gradient-text.purple { background: var(--gradient-purple); -webkit-background-clip: text; background-clip: text; }
.gradient-text.cyan { background: var(--gradient-cyan); -webkit-background-clip: text; background-clip: text; }
.gradient-text.green { background: var(--gradient-green); -webkit-background-clip: text; background-clip: text; }
.gradient-text.orange { background: var(--gradient-orange); -webkit-background-clip: text; background-clip: text; }
.gradient-text.pink { background: var(--gradient-pink); -webkit-background-clip: text; background-clip: text; }
.gradient-text.yellow { background: var(--gradient-yellow); -webkit-background-clip: text; background-clip: text; }
.gradient-text.teal { background: var(--gradient-teal); -webkit-background-clip: text; background-clip: text; }
.gradient-text.lime { background: var(--gradient-lime); -webkit-background-clip: text; background-clip: text; }
.gradient-text.indigo { background: var(--gradient-indigo); -webkit-background-clip: text; background-clip: text; }
.gradient-text.rose { background: var(--gradient-rose); -webkit-background-clip: text; background-clip: text; }
.gradient-text.violet { background: var(--gradient-violet); -webkit-background-clip: text; background-clip: text; }

.service-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Features Grid */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-card {
    padding: 20px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.feature-icon.blue { background: var(--gradient-blue); }
.feature-icon.purple { background: var(--gradient-purple); }
.feature-icon.cyan { background: var(--gradient-cyan); }
.feature-icon.green { background: var(--gradient-green); }
.feature-icon.orange { background: var(--gradient-orange); }
.feature-icon.pink { background: var(--gradient-pink); }
.feature-icon.yellow { background: var(--gradient-yellow); }

.feature-card h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

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

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.feature-list li i {
    color: var(--green);
    font-size: 1.1rem;
}

/* Price CTA Row */
.price-cta-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.price-amount.on-request {
    font-size: 1.3rem;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.btn-glow {
    padding: 16px 32px;
    background: var(--gradient-indigo);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

/* ====== VISUAL CONTAINERS ====== */
.service-visual {
    position: relative;
}

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

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 6s ease-in-out infinite;
    z-index: 10;
}

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

.floating-badge .stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}

.floating-badge .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.floating-badge i {
    font-size: 1.2rem;
    color: var(--indigo);
}

/* ====== BROWSER MOCKUP ====== */
.browser-mockup {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.browser-header {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .dot.red { background: #ff5f56; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #27c93f; }

.browser-url {
    flex: 1;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url i {
    color: var(--green);
}

.browser-screen {
    padding: 20px;
    min-height: 280px;
}

.website-mock {
    background: linear-gradient(180deg, #12122a 0%, #1a1a35 100%);
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
}

.mock-nav {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
}

.mock-hero {
    text-align: center;
    margin-bottom: 25px;
}

.mock-title {
    width: 70%;
    height: 20px;
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    border-radius: 4px;
    margin: 0 auto 10px;
}

.mock-subtitle {
    width: 50%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 auto 15px;
}

.mock-btn {
    width: 100px;
    height: 30px;
    background: var(--gradient-indigo);
    border-radius: 6px;
    margin: 0 auto;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Performance Score */
.performance-score {
    position: absolute;
    top: -30px;
    right: -30px;
    padding: 15px;
}

.score-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.score-circle svg {
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.score-fill {
    fill: none;
    stroke: var(--green);
    stroke-width: 3;
    stroke-linecap: round;
    animation: scoreGrow 2s ease-out forwards;
}

@keyframes scoreGrow {
    from { stroke-dasharray: 0, 100; }
}

.score-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green);
}

.score-label {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Floating Tech Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.tech-icon.float-1 { top: 20%; left: 0; color: #e34c26; animation: float1 4s ease-in-out infinite; }
.tech-icon.float-2 { top: 40%; left: -30px; color: #264de4; animation: float2 5s ease-in-out infinite; }
.tech-icon.float-3 { bottom: 30%; left: 10px; color: #f0db4f; animation: float3 4.5s ease-in-out infinite; }
.tech-icon.float-4 { bottom: 10%; left: 40px; color: #61dbfb; animation: float4 5.5s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(5deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(-5deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(3deg); } }
@keyframes float4 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(-3deg); } }

/* ====== CHAT INTERFACE ====== */
.chat-interface {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.chat-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.bot-avatar.pulse {
    animation: avatarPulse 2s infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
}

.bot-info {
    display: flex;
    flex-direction: column;
}

.bot-name {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.bot-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.green {
    background: var(--green);
}

.chat-messages {
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 85%;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.bot .message-content {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-bottom-left-radius: 4px;
}

.message.user .message-content {
    background: var(--gradient-indigo);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.message.typing .typing-dots {
    display: flex;
    gap: 4px;
    padding: 5px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

.chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-input button {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--gradient-indigo);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.chat-input button:hover {
    transform: scale(1.05);
}

.ai-stats {
    bottom: 40px;
    right: -40px;
}

.neural-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 25%);
    pointer-events: none;
}

/* ====== AI AGENT DEMO ====== */
.agent-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.capability-item:hover {
    transform: translateX(5px);
    border-color: var(--cyan);
}

.capability-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.capability-info h5 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 3px;
}

.capability-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.agent-demo {
    width: 100%;
    max-width: 400px;
    padding: 25px;
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.agent-avatar {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--gradient-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
}

.agent-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid var(--cyan);
    animation: agentPulse 2s infinite;
}

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

.agent-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

.agent-status {
    font-size: 0.85rem;
    color: var(--cyan);
}

.agent-tasks {
    margin-bottom: 20px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.task-item.completed {
    color: var(--green);
}

.task-item.completed i {
    color: var(--green);
}

.task-item.active {
    color: var(--cyan);
}

.task-item.pending {
    color: rgba(255, 255, 255, 0.4);
}

.agent-output {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
}

.output-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}

.output-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.output-preview i {
    color: #ef4444;
    font-size: 1.2rem;
}

.agent-efficiency {
    top: 40px;
    right: -30px;
}

/* ====== CODE EDITOR ====== */
.code-editor {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    background: #1e1e32;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.editor-header {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.editor-dots {
    display: flex;
    gap: 6px;
}

.editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.editor-dots span:nth-child(1) { background: #ff5f56; }
.editor-dots span:nth-child(2) { background: #ffbd2e; }
.editor-dots span:nth-child(3) { background: #27c93f; }

.editor-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.editor-content {
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    display: flex;
    gap: 20px;
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    min-width: 20px;
    text-align: right;
}

.keyword { color: #c678dd; }
.variable { color: #e06c75; }
.function { color: #61afef; }

.code-line.typing .cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.tech-stack {
    bottom: -20px;
    right: 30px;
    padding: 15px 20px;
}

.stack-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.stack-icons {
    display: flex;
    gap: 12px;
    font-size: 1.3rem;
}

.stack-icons i:nth-child(1) { color: #68a063; }
.stack-icons i:nth-child(2) { color: #3776ab; }
.stack-icons i:nth-child(3) { color: #61dbfb; }
.stack-icons i:nth-child(4) { color: #336791; }

/* Software Types */
.software-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.software-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.software-type:hover {
    border-color: var(--green);
    color: #fff;
}

.software-type i {
    color: var(--green);
}

/* ====== PHONE MOCKUP ====== */
.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a45, #1a1a30);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3),
        inset 0 3px 10px rgba(255, 255, 255, 0.05);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateY(5deg); }
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #0a0a15;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f0f1f;
    border-radius: 35px;
    overflow: hidden;
}

.app-mock {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 15px 15px;
}

.app-nav-icon, .app-title, .app-avatar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.app-nav-icon { width: 30px; height: 25px; }
.app-title { width: 100px; height: 20px; }
.app-avatar { width: 35px; height: 35px; border-radius: 50%; }

.app-hero-image {
    height: 150px;
    margin: 15px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    border-radius: 16px;
}

.app-content {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-card {
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-tab-bar {
    display: flex;
    justify-content: space-around;
    padding: 15px 10px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-tab-bar .tab {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
}

.app-tab-bar .tab.active {
    color: var(--orange);
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
}

.app-icon {
    font-size: 1.3rem;
}

.app-icon .fa-apple { color: #fff; }
.app-icon .fa-android { color: #a4c639; }
.app-icon .fa-react { color: #61dbfb; }

.app-store-badge {
    bottom: 50px;
    right: -20px;
    padding: 12px 16px;
}

.app-store-badge i {
    font-size: 1.4rem;
    color: #fff;
}

.badge-small {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

.badge-large {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* ====== 3D CONFIGURATOR ====== */
.configurator-demo {
    width: 100%;
    max-width: 400px;
    padding: 25px;
}

.config-viewport {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    perspective: 800px;
}

.product-3d-cube {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 15s linear infinite;
}

@keyframes rotateCube {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-indigo);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.cube-face.front { transform: translateZ(60px); }
.cube-face.back { transform: translateZ(-60px) rotateY(180deg); }
.cube-face.right { transform: translateX(60px) rotateY(90deg); }
.cube-face.left { transform: translateX(-60px) rotateY(-90deg); }
.cube-face.top { transform: translateY(-60px) rotateX(90deg); }
.cube-face.bottom { transform: translateY(60px) rotateX(-90deg); }

.config-panel {
    margin-bottom: 20px;
}

.config-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: var(--color);
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.color-btn.active,
.color-btn:hover {
    border-color: #fff;
    transform: scale(1.1);
}

.config-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.config-price-display span:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.config-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.conversion-badge {
    top: 30px;
    right: -20px;
}

/* ====== SHOP MOCKUP ====== */
.shop-mockup {
    width: 100%;
    max-width: 420px;
    padding: 0;
    overflow: hidden;
}

.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-yellow);
}

.shop-nav {
    width: 100px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.shop-cart {
    position: relative;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--yellow);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-products {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.shop-product {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px;
    position: relative;
}

.shop-product.featured {
    border-color: var(--yellow);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: var(--gradient-yellow);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
}

.product-img {
    height: 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 10px;
    margin-bottom: 12px;
}

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

.product-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.product-price {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.order-notification {
    bottom: 20px;
    left: -30px;
    padding: 12px 16px;
    animation: notificationPop 3s ease-in-out infinite;
}

@keyframes notificationPop {
    0%, 100% { transform: translateY(0) scale(1); }
    10% { transform: translateY(-5px) scale(1.02); }
    20% { transform: translateY(0) scale(1); }
}

.order-notification i {
    color: var(--yellow);
}

.notif-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.notif-amount {
    font-size: 1rem;
    color: var(--green);
    font-weight: 700;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.payment-icon.ideal::after { content: 'iDEAL'; }
.payment-icon.mastercard::after { content: 'MC'; }
.payment-icon.visa::after { content: 'VISA'; }
.payment-icon.paypal::after { content: 'PP'; }
.payment-icon.klarna::after { content: 'K'; }
.payment-icon.apple-pay::after { content: ''; }

/* ====== API DEMO ====== */
.api-demo {
    width: 100%;
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

.api-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.method-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.method-badge.get { background: rgba(16, 185, 129, 0.2); color: var(--green); }
.method-badge.post { background: rgba(249, 115, 22, 0.2); color: var(--orange); }

.api-endpoint {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.api-response {
    padding: 20px;
    background: #0f0f20;
}

.api-response pre {
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.api-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status-code {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-code.success { background: rgba(16, 185, 129, 0.2); color: var(--green); }

.response-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.uptime-badge {
    top: 30px;
    right: -30px;
}

/* API Types */
.api-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.api-type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.api-type i {
    color: var(--teal);
}

/* ====== SEO RESULTS ====== */
.seo-results-mock {
    width: 100%;
    max-width: 450px;
    padding: 25px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 25px;
    margin-bottom: 25px;
}

.google-g {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
}

.search-bar i {
    color: #5f6368;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.result.rank-1 {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.result.dim {
    opacity: 0.5;
}

.rank {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.result.rank-1 .rank {
    background: var(--gradient-indigo);
    color: #fff;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.result-url {
    font-size: 0.8rem;
    color: var(--green);
}

.result-title {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.traffic-badge {
    top: 30px;
    right: -20px;
}

.traffic-badge i {
    color: var(--green);
}

/* ====== WORKFLOW DEMO ====== */
.workflow-demo {
    width: 100%;
    max-width: 380px;
    padding: 0;
    overflow: hidden;
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-title {
    font-weight: 600;
    color: #fff;
}

.workflow-status {
    font-size: 0.85rem;
}

.workflow-status.online {
    color: var(--green);
}

.workflow-steps {
    padding: 25px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.workflow-step.success {
    border-color: var(--green);
    color: var(--green);
}

.workflow-step.success .step-icon {
    background: var(--gradient-green);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.workflow-arrow {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.3);
}

.time-saved-badge {
    top: 30px;
    right: -30px;
}

.integration-logos {
    position: absolute;
    bottom: 30px;
    left: -20px;
    display: flex;
    gap: 10px;
}

.int-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Automation Examples */
.automation-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.automation-example {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.automation-example i {
    color: var(--indigo);
}

/* ====== DASHBOARD MOCKUP ====== */
.dashboard-mock {
    width: 100%;
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-title {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.dash-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.dash-stat {
    text-align: center;
}

.dash-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.dash-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.dash-trend {
    display: inline-block;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.dash-trend.up {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
}

.dashboard-chart {
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
}

.bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(to top, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.6));
    border-radius: 4px 4px 0 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bar.active {
    background: var(--gradient-rose);
}

.bar:hover {
    transform: scaleY(1.05);
}

/* ====== CONTENT GENERATOR ====== */
.content-generator {
    width: 100%;
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

.generator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gen-title {
    font-weight: 600;
    color: #fff;
}

.gen-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.gen-status.generating {
    color: var(--violet);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--violet);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.generator-input,
.generator-output {
    padding: 20px;
}

.generator-input label,
.generator-output label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-preview {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.generator-output {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.output-text {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    min-height: 80px;
}

.output-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.typing-animation {
    overflow: hidden;
    animation: typing 3s steps(60, end) forwards;
}

@keyframes typing {
    from { max-height: 0; opacity: 0; }
    to { max-height: 200px; opacity: 1; }
}

.generator-actions {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gen-btn {
    flex: 1;
    padding: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.gen-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.words-badge {
    top: 40px;
    right: -20px;
}

/* Content Types */
.content-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.content-type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.content-type i {
    color: var(--violet);
}

/* ====== FINAL CTA SECTION ====== */
.final-cta-section {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-darker, #08081a);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-feature i {
    color: var(--green);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 20px 40px;
    background: var(--gradient-indigo);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
}

.btn-xl {
    font-size: 1.2rem;
}

.btn-cta-secondary {
    padding: 20px 35px;
    background: var(--glass-bg);
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--indigo);
}

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

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

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
    .service-section-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-section-grid.reverse {
        direction: ltr;
    }
    
    .service-content {
        max-width: 100%;
        text-align: center;
    }
    
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-cta-row {
        justify-content: center;
    }
    
    .visual-container {
        justify-content: center;
    }
    
    .floating-badge {
        display: none;
    }
    
    .agent-capabilities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .diensten-hero {
        padding: 120px 20px 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .services-grid-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-nav-card {
        padding: 20px;
    }
    
    .nav-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-section {
        padding: 80px 20px;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        text-align: left;
    }
    
    .feature-list li {
        justify-content: flex-start;
    }
    
    .browser-mockup,
    .chat-interface,
    .agent-demo,
    .code-editor,
    .phone-frame,
    .configurator-demo,
    .shop-mockup,
    .api-demo,
    .seo-results-mock,
    .workflow-demo,
    .dashboard-mock,
    .content-generator {
        max-width: 100%;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .software-types,
    .api-types,
    .automation-examples,
    .content-types,
    .app-features {
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid-nav {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .price-cta-row {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid-4 .feature-card {
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 12px;
    }
    
    .capability-item {
        flex-direction: column;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ====== DARK MODE ADJUSTMENTS ====== */
.diensten-page {
    background: var(--bg-dark, #0a0a1a);
    color: #fff;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--indigo);
    color: #fff;
}

/* Focus states for accessibility */
.service-nav-card:focus,
.btn-glow:focus,
.btn-hero-primary:focus,
.btn-hero-secondary:focus,
.btn-cta-primary:focus,
.btn-cta-secondary:focus {
    outline: 2px solid var(--indigo);
    outline-offset: 3px;
}
