/* Base styles and custom properties */
:root {
    /* Dark Mode Colors */
    --bg-primary: #0a0a0b;
    --bg-secondary: #121212;
    --bg-tertiary: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --accent-primary: #8338ec;
    --accent-secondary: #9854f0;
    --accent-tertiary: #ad70f4;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-start: #8338ec;
    --gradient-end: #ad70f4;
}

[data-theme="light"] {
    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --accent-primary: #8338ec;
    --accent-secondary: #9854f0;
    --accent-tertiary: #ad70f4;
    --border-color: rgba(15, 23, 42, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(15, 23, 42, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.15);
    --gradient-start: #8338ec;
    --gradient-end: #ad70f4;
}

* {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Prevent zoom issues on mobile */
html {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Neural grid background */
.neural-grid {
    background-image: 
        radial-gradient(circle at 1px 1px, var(--border-color) 1px, transparent 0);
    background-size: 50px 50px;
}

/* Glass morphism cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.glass-card:hover {
    background: var(--glass-bg);
    border-color: var(--accent-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px var(--shadow-color);
}

/* Disable ALL hover effects for navigation - keep it completely static */
#main-navigation .glass-card:hover,
#main-navigation nav:hover,
.sticky-nav:hover {
    transform: none !important;
    border-color: transparent !important;
    border-bottom-color: var(--glass-border) !important;
    box-shadow: 0 8px 25px var(--shadow-color) !important;
}

[data-theme="light"] #main-navigation .glass-card:hover,
[data-theme="light"] #main-navigation nav:hover,
[data-theme="light"] .sticky-nav:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(15, 23, 42, 0.2) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Light mode enhancements for better visibility */
[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Apply glass-card shadows to all custom card classes in light mode */
[data-theme="light"] [class*="-card"],
[data-theme="light"] [class*="-info-card"],
[data-theme="light"] [class*="-comparison-card"],
[data-theme="light"] [class*="-approach-step"],
[data-theme="light"] [class*="-usecase-card"],
[data-theme="light"] [class*="-benefit-card"],
[data-theme="light"] [class*="-showcase-card"],
[data-theme="light"] [class*="-feature-card"],
[data-theme="light"] [class*="-process-step"],
[data-theme="light"] [class*="-tech-item"],
[data-theme="light"] [class*="-faq-item"],
[data-theme="light"] [class*="-integration-card"],
[data-theme="light"] [class*="-system-card"],
[data-theme="light"] [class*="-reason-card"],
[data-theme="light"] [class*="-suitable-card"],
[data-theme="light"] [class*="-compare-card"],
[data-theme="light"] [class*="-service-card"],
[data-theme="light"] [class*="-firebase-card"],
[data-theme="light"] [class*="-maintenance-card"],
[data-theme="light"] [class*="-experience-card"],
[data-theme="light"] [class*="-tender-card"] {
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Enhanced shadows for hover states in light mode */
[data-theme="light"] [class*="-card"]:hover,
[data-theme="light"] [class*="-info-card"]:hover,
[data-theme="light"] [class*="-comparison-card"]:hover,
[data-theme="light"] [class*="-approach-step"]:hover,
[data-theme="light"] [class*="-usecase-card"]:hover,
[data-theme="light"] [class*="-benefit-card"]:hover,
[data-theme="light"] [class*="-showcase-card"]:hover,
[data-theme="light"] [class*="-feature-card"]:hover,
[data-theme="light"] [class*="-process-step"]:hover,
[data-theme="light"] [class*="-tech-item"]:hover,
[data-theme="light"] [class*="-faq-item"]:hover,
[data-theme="light"] [class*="-integration-card"]:hover,
[data-theme="light"] [class*="-system-card"]:hover,
[data-theme="light"] [class*="-reason-card"]:hover,
[data-theme="light"] [class*="-suitable-card"]:hover,
[data-theme="light"] [class*="-compare-card"]:hover,
[data-theme="light"] [class*="-service-card"]:hover,
[data-theme="light"] [class*="-firebase-card"]:hover,
[data-theme="light"] [class*="-maintenance-card"]:hover,
[data-theme="light"] [class*="-experience-card"]:hover,
[data-theme="light"] [class*="-tender-card"]:hover {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* MacBook-style Laptop Mockup - Premium Design */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    perspective: 1200px;
    transition: transform 0.3s ease;
}

.laptop-mockup:hover {
    transform: translateY(-5px);
}

.laptop-screen {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000000;
    border-radius: 12px 12px 0 0;
    border: 6px solid #1a1a1a;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: rotateX(2deg);
    transform-style: preserve-3d;
}

/* Glossy screen effect */
.laptop-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Camera notch - MacBook style */
.laptop-screen::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(100, 100, 100, 0.5) 100%);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.laptop-screen iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 350%;
    height: 350%;
    border: none;
    background: white;
    transform: scale(0.285);
    transform-origin: 0 0;
    z-index: 1;
}

.laptop-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
    border-radius: 6px 6px 0 0;
}

/* Sleek keyboard base */
.laptop-bottom {
    width: 100%;
    height: 18px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 0 0 8px 8px / 0 0 4px 4px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotateX(-2deg);
    transform-style: preserve-3d;
}

/* Trackpad indicator */
.laptop-bottom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 10px;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 3px;
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ModernWeb logo on laptop */
.laptop-bottom::after {
    content: 'ModernWeb';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

/* Premium base stand */
.laptop-base {
    width: 105%;
    height: 8px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%) rotateX(-3deg);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
}

/* Small Laptop Mockup for Cards */
.laptop-mockup-small {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    perspective: 800px;
}

.laptop-screen-small {
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    background: #000000;
    border-radius: 8px 8px 0 0;
    border: 4px solid #1a1a1a;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: rotateX(2deg);
}

.laptop-screen-small::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(100, 100, 100, 0.5) 100%);
    border-radius: 50%;
    z-index: 3;
}

.laptop-screen-small iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 350%;
    height: 350%;
    border: none;
    background: white;
    transform: scale(0.285);
    transform-origin: 0 0;
    z-index: 1;
    pointer-events: none;
}

.laptop-screen-small img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.laptop-bottom-small {
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.laptop-base-small {
    width: 105%;
    height: 5px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Light mode for small laptop */
[data-theme="light"] .laptop-screen-small {
    border-color: #d4d4d4;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .laptop-bottom-small {
    background: linear-gradient(to bottom, #e8e8e8 0%, #d0d0d0 50%, #b8b8b8 100%);
}

[data-theme="light"] .laptop-base-small {
    background: linear-gradient(to bottom, #d0d0d0 0%, #a0a0a0 100%);
}

/* Laptop Mockup Styles - Light Mode (Silver MacBook) */
[data-theme="light"] .laptop-screen {
    background: #1a1a1a;
    border-color: #d4d4d4;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .laptop-screen::after {
    background: radial-gradient(circle, rgba(100, 100, 100, 0.4) 0%, rgba(150, 150, 150, 0.6) 100%);
}

[data-theme="light"] .laptop-bottom {
    background: linear-gradient(to bottom, #e8e8e8 0%, #d0d0d0 50%, #b8b8b8 100%);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .laptop-bottom::before {
    background: rgba(180, 180, 180, 0.6);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .laptop-bottom::after {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .laptop-base {
    background: linear-gradient(to bottom, #d0d0d0 0%, #b0b0b0 100%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Tech badge text - keep white in light mode */
[data-theme="light"] .text-purple-300 {
    color: white !important;
}

/* Category badge text - keep white in light mode */
[data-theme="light"] .bg-purple-600 .text-white {
    color: white !important;
}

/* New badge - keep white text in light mode */
[data-theme="light"] .new-badge,
[data-theme="light"] .new-badge * {
    color: white !important;
}

/* ===== PROJECT DETAIL PAGE STYLES ===== */

/* Project stat cards */
.project-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.project-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateY(-2px);
}

[data-theme="light"] .project-stat-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .project-stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Feature items */
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateY(-2px);
}

[data-theme="light"] .feature-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .feature-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Challenge cards */
.challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
}

[data-theme="light"] .challenge-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .challenge-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Tech badges */
.tech-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(131, 56, 236, 0.2);
    color: #a78bfa;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tech-badge:hover {
    background: rgba(131, 56, 236, 0.3);
    transform: translateY(-2px);
}

[data-theme="light"] .tech-badge {
    background: rgba(131, 56, 236, 0.15);
    color: #8338ec;
}

[data-theme="light"] .tech-badge:hover {
    background: rgba(131, 56, 236, 0.25);
}

/* Project info items */
.project-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

[data-theme="light"] .project-info-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* ===== END PROJECT DETAIL PAGE STYLES ===== */

[data-theme="light"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-primary);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(131, 56, 236, 0.1);
}

/* Light mode bento items */
[data-theme="light"] .bento-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.15);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .bento-item:hover,
[data-theme="light"] .hover-lift:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(131, 56, 236, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Light mode specific styles for ons-team page */
[data-theme="light"] .text-gray-300 {
    color: rgb(75 85 99) !important; /* gray-600 */
}

[data-theme="light"] .text-gray-400 {
    color: rgb(107 114 128) !important; /* gray-500 */
}

[data-theme="light"] .text-white {
    color: rgb(17 24 39) !important; /* gray-900 */
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(to right, #8338ec, #9854f0, #ad70f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .bg-gray-900 {
    background-color: rgb(243 244 246) !important; /* gray-100 */
}

[data-theme="light"] .border-purple-500 {
    border-color: rgb(168 85 247) !important;
}

[data-theme="light"] .bg-purple-500 {
    background-color: rgb(168 85 247) !important;
}

/* Light mode fixes for tech stack pills and buttons */
[data-theme="light"] .text-purple-300 {
    color: rgb(55 48 163) !important; /* indigo-700 for better contrast */
}

[data-theme="light"] .text-purple-400 {
    color: rgb(67 56 202) !important; /* indigo-600 */
}

[data-theme="light"] .bg-purple-500\/20 {
    background-color: rgba(168, 85, 247, 0.15) !important;
}

[data-theme="light"] .border-purple-500\/30 {
    border-color: rgba(168, 85, 247, 0.4) !important;
}

[data-theme="light"] .bg-purple-500\/10 {
    background-color: rgba(168, 85, 247, 0.08) !important;
}

[data-theme="light"] .hover\:bg-purple-500\/20:hover {
    background-color: rgba(168, 85, 247, 0.2) !important;
}

/* Light mode contact buttons */
[data-theme="light"] .bg-gray-800\/50 {
    background-color: rgba(243, 244, 246, 0.9) !important; /* gray-100 */
}

[data-theme="light"] .hover\:bg-gray-700\/50:hover {
    background-color: rgba(229, 231, 235, 1) !important; /* gray-200 */
}

[data-theme="light"] .border-gray-700 {
    border-color: rgb(209, 213, 219) !important; /* gray-300 */
}

[data-theme="light"] .hover\:border-gray-600:hover {
    border-color: rgb(156, 163, 175) !important; /* gray-400 */
}

/* Filter buttons styling */
.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1d5db;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 51, 234, 0.5);
}

.filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: #a855f7;
    color: white;
}

/* Light mode filter buttons */
[data-theme="light"] .filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(209, 213, 219, 0.8);
    color: rgb(75, 85, 99);
}

[data-theme="light"] .filter-btn:hover {
    background: rgba(243, 244, 246, 1);
    border-color: rgba(147, 51, 234, 0.4);
}

[data-theme="light"] .filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: #a855f7;
    color: white;
}

/* Light mode fixes for process numbers (01, 02, 03, etc.) */
[data-theme="light"] .text-white\/10 {
    color: rgba(15, 23, 42, 0.15) !important;
}

/* Light mode fixes for review text readability */
[data-theme="light"] .text-gray-300 {
    color: rgb(71, 85, 105) !important;
}

[data-theme="light"] .text-gray-400 {
    color: rgb(51, 65, 85) !important;
}

/* Light mode fixes for review author names */
[data-theme="light"] .text-white {
    color: rgb(15, 23, 42) !important;
}

/* Premium buttons */
.premium-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: 0;
    border-radius: 16px;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.premium-button:hover::before {
    left: 100%;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(131, 56, 236, 0.4);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Subtle hero float animation */
@keyframes hero-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-floating {
    animation: hero-float 4s ease-in-out infinite;
}

/* Gradient animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

/* Glow effect */
.glow-effect {
    box-shadow: 0 0 30px var(--accent-primary);
}

/* Broken grid layout - 2025 trend */
.broken-grid {
    display: grid;
    gap: 2rem;
}

.broken-grid-item {
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.broken-grid-item:nth-child(odd) {
    transform: rotate(-1deg) translateX(-10px);
}

.broken-grid-item:nth-child(even) {
    transform: rotate(1deg) translateX(10px);
}

.broken-grid-item:hover {
    transform: rotate(0) translateX(0) scale(1.05);
}

/* Asymmetric layouts */
.asymmetric-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: clamp(1rem, 3vw, 3rem);
}

.asymmetric-item {
    position: relative;
}

.asymmetric-item:nth-child(2n) {
    margin-top: 3rem;
}

.asymmetric-item:nth-child(3n) {
    margin-top: -2rem;
}

/* Bento grid - 2025 trend */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.bento-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.bento-item-large {
    grid-column: span 2;

}

.bento-item-wide {
    grid-column: span 2;
}

.bento-item-tall {
    grid-row: span 2;
}

/* Bento grid responsive */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .bento-item {
        padding: 1.5rem;
    }

    .bento-item-large,
    .bento-item-wide {
        grid-column: span 1;
    }

    .bento-item-tall {
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .bento-item {
        padding: 1.25rem;
        border-radius: 16px;
    }
}

/* Organic shapes */
.organic-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Text effects */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-primary);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-tertiary);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(20% 0 30% 0);
        transform: translate(-2px, 2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, -2px);
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animations */
.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Budget slider styling */
input[type="range"] {
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: var(--glass-border);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    cursor: pointer;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    cursor: pointer;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Simple Navigation styles */
.nav-link {
    position: relative;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== MEGA MENU STYLES ===== */

/* Mega menu wrapper */
.mega-menu-wrapper {
    position: relative;
}

/* Mega menu trigger button */
.mega-menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Remove underline animation for mega menu trigger */
.mega-menu-trigger::after {
    display: none;
}

/* Mega menu dropdown container */
.mega-menu-dropdown {
    z-index: 1000;
    padding-top: 0;
}

/* Add invisible bridge to prevent menu from closing */
.mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: transparent;
}

/* Show mega menu on hover */
.mega-menu-wrapper:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Rotate arrow when menu is shown */
.mega-menu-wrapper:hover .mega-menu-trigger svg {
    transform: rotate(180deg);
}

/* Mega menu content box - less transparent, more solid */
.mega-menu-content {
    background: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Light mode mega menu content */
[data-theme="light"] .mega-menu-content {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(15, 23, 42, 0.1);
}

/* Mega menu item */
.mega-menu-item {
    display: block;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.mega-menu-item:hover {
    background: rgba(131, 56, 236, 0.1);
}

/* Light mode mega menu item */
[data-theme="light"] .mega-menu-item:hover {
    background: rgba(131, 56, 236, 0.08);
}

/* Mega menu icon */
.mega-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(131, 56, 236, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mega-menu-item:hover .mega-menu-icon {
    background: rgba(131, 56, 236, 0.2);
    transform: scale(1.1);
}

/* Light mode mega menu icon */
[data-theme="light"] .mega-menu-icon {
    background: rgba(131, 56, 236, 0.1);
    color: #8338ec;
}

[data-theme="light"] .mega-menu-item:hover .mega-menu-icon {
    background: rgba(131, 56, 236, 0.2);
}

/* Mega menu title */
.mega-menu-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-title {
    color: #a78bfa;
}

/* Light mode mega menu title */
[data-theme="light"] .mega-menu-item:hover .mega-menu-title {
    color: #8338ec;
}

/* Active mega menu item (current page) */
.mega-menu-item.active {
    background: rgba(131, 56, 236, 0.15);
    border-left: 3px solid #a78bfa;
}

.mega-menu-item.active .mega-menu-title {
    color: #a78bfa;
}

.mega-menu-item.active .mega-menu-icon {
    background: rgba(131, 56, 236, 0.25);
    color: #a78bfa;
}

/* Light mode active mega menu item */
[data-theme="light"] .mega-menu-item.active {
    background: rgba(131, 56, 236, 0.12);
    border-left: 3px solid #8338ec;
}

[data-theme="light"] .mega-menu-item.active .mega-menu-title {
    color: #8338ec;
}

[data-theme="light"] .mega-menu-item.active .mega-menu-icon {
    background: rgba(131, 56, 236, 0.2);
    color: #8338ec;
}

/* Active nav-link for Mogelijkheden trigger */
.nav-link.active {
    color: #a78bfa !important;
}

[data-theme="light"] .nav-link.active {
    color: #8338ec !important;
}

/* Mega menu description */
.mega-menu-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

/* Mobile mega menu */
.mobile-mega-menu-trigger {
    text-align: left;
}

.mobile-mega-menu-trigger svg.rotate-180 {
    transform: rotate(180deg);
}

/* Mobile mega menu content animation */
.mobile-mega-menu-content {
    animation: mobileMenuSlide 0.3s ease-out;
    overflow: hidden;
}

.mobile-mega-menu-content.hidden {
    animation: none;
}

@keyframes mobileMenuSlide {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Code Editor in Mega Menu */
.code-editor-container {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 320px;
}

[data-theme="light"] .code-editor-container {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.1);
}

.code-editor-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .code-editor-header {
    background: #e0e0e0;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.code-editor-dots {
    display: flex;
    gap: 0.5rem;
}

.code-editor-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-editor-dots .dot.red {
    background: #ff5f57;
}

.code-editor-dots .dot.yellow {
    background: #ffbd2e;
}

.code-editor-dots .dot.green {
    background: #28ca42;
}

.code-editor-title {
    font-size: 0.75rem;
    color: #a0a0a0;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
}

[data-theme="light"] .code-editor-title {
    color: #666;
}

.code-editor-content {
    padding: 1.25rem;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #d4d4d4;
    position: relative;
    min-height: 260px;
}

[data-theme="light"] .code-editor-content {
    color: #333;
}

.code-block {
    margin: 0;
    padding: 0;
    white-space: pre;
    font-family: inherit;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #8338ec;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Syntax Highlighting Colors - ModernWeb Theme */
.code-keyword {
    color: #a78bfa;
    font-weight: 600;
}

[data-theme="light"] .code-keyword {
    color: #8338ec;
    font-weight: 600;
}

.code-class {
    color: #22d3ee;
    font-weight: 600;
}

[data-theme="light"] .code-class {
    color: #0891b2;
    font-weight: 600;
}

.code-function {
    color: #fbbf24;
}

[data-theme="light"] .code-function {
    color: #d97706;
}

.code-string {
    color: #f472b6;
}

[data-theme="light"] .code-string {
    color: #db2777;
}

.code-comment {
    color: #6ee7b7;
    font-style: italic;
    opacity: 0.8;
}

[data-theme="light"] .code-comment {
    color: #059669;
    opacity: 0.9;
}

.code-number {
    color: #c084fc;
}

[data-theme="light"] .code-number {
    color: #9333ea;
}

.code-variable {
    color: #e0e7ff;
}

[data-theme="light"] .code-variable {
    color: #4338ca;
}

/* ===== END MEGA MENU STYLES ===== */

/* Top Banner Styles */
.top-banner {
    background: linear-gradient(
        135deg,
        var(--accent-primary) 0%,
        var(--accent-secondary) 50%,
        var(--accent-tertiary) 100%
    );
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}

.banner-text {
    /* Animation removed for cleaner appearance */
}

/* Ensure banner text stays white in light mode */
[data-theme="light"] .top-banner {
    color: white !important;
}

[data-theme="light"] .top-banner .banner-text {
    color: white !important;
}

[data-theme="light"] .top-banner a {
    color: white !important;
}

/* Sticky Navigation */
.sticky-nav {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: fixed !important;
    width: 100%;
    z-index: 40;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

.sticky-nav.scrolled {
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Enhanced main navigation */
#main-navigation nav,
.main-nav {
    background: linear-gradient(
        180deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(59, 130, 246, 0.05);
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Add subtle top accent line */
#main-navigation nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-primary) 25%,
        var(--accent-secondary) 50%,
        var(--accent-tertiary) 75%,
        transparent 100%
    );
    opacity: 0.6;
}

/* Logo enhancement */
.nav-logo {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo .logo-icon {
    position: relative;
    overflow: hidden;
}

.nav-logo .logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-logo:hover .logo-icon::before {
    left: 100%;
}

/* Mobile navigation enhancements */
.mobile-nav-link {
    position: relative;
    color: var(--text-secondary);
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 4px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
    background: var(--glass-bg);
    transform: translateX(8px);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.3s ease;
    transform: translateY(-50%);
    border-radius: 1px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 4px;
}

/* Enhanced mobile menu toggle */
#mobile-menu-toggle {
    position: relative;
    transition: all 0.3s ease;
}

#mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Premium button enhancements in nav */
.nav-cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

/* Form styles */
.form-input {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Card hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

/* Team Section Specific Styles */
.team-photo {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.team-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.team-photo:hover::before {
    opacity: 1;
}

.team-photo:hover {
    transform: scale(1.1);
    border-color: var(--accent-primary);
}

/* Team card enhanced glow effect */
.team-card {
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    padding: 2px;
}

.team-card:hover::after {
    opacity: 0.3;
}

/* Stagger animation delay */
.stagger-child {
    animation-delay: 0.2s;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Floating Action Button (FAB) */
.fab-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
    z-index: 1000 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.fab-main {
    width: 60px;
    height: 60px;
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    background-color: #8338ec;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' viewBox='0 0 24 24' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(131, 56, 236, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fab-main:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(131, 56, 236, 0.4);
}

.fab-container.open .fab-main {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' viewBox='0 0 24 24' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

/* Hide SVG elements - using background-image instead */
.fab-main svg {
    display: none !important;
}

/* FAB Options - positioned ABOVE the button */
.fab-options {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.fab-container.open .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fab-option:hover {
    transform: translateX(-4px);
}

.fab-label {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fab-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.fab-option:hover .fab-icon {
    transform: scale(1.1);
}

.fab-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.fab-whatsapp .fab-icon {
    background: #25D366;
}

.fab-whatsapp:hover .fab-icon {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-call .fab-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.fab-call:hover .fab-icon {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Staggered animation for options */
.fab-container.open .fab-option:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-container.open .fab-option:nth-child(2) {
    transition-delay: 0.1s;
}

/* Mobile styles */
@media (max-width: 768px) {
    .fab-container {
        bottom: 15px;
        right: 15px;
    }

    .fab-main {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px;
        max-width: 54px;
        min-height: 54px;
        max-height: 54px;
    }

    .fab-main svg {
        width: 24px !important;
        height: 24px !important;
    }

    .fab-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px;
        max-width: 44px;
        min-height: 44px;
        max-height: 44px;
    }

    .fab-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .fab-label {
        font-size: 12px;
        padding: 6px 10px;
    }

    .fab-options {
        gap: 10px;
    }

    .fab-option {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .fab-container {
        bottom: 15px;
        right: 15px;
    }

    .fab-main {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px;
        max-width: 50px;
        min-height: 50px;
        max-height: 50px;
    }

    .fab-main svg {
        width: 22px !important;
        height: 22px !important;
    }

    .fab-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
    }

    .fab-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(131, 56, 236, 0.3);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.chat-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.chat-toggle:hover::before {
    left: 100%;
}

.chat-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(131, 56, 236, 0.4);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    color: white;
    transition: transform 0.3s ease;
}

.chat-toggle.open svg {
    transform: rotate(45deg);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 20px;
    color: white;
    position: relative;
}

.chat-header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.chat-header-info {
    flex: 1;
}

.chat-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.chat-status {
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.chat-messages {
    height: 340px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.bot .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--accent-primary);
}

.chat-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-message.bot .avatar svg {
    width: 16px;
    height: 16px;
    color: white;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message.bot .message-bubble {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.chat-input-area {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.chat-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(131, 56, 236, 0.1);
}

.chat-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(131, 56, 236, 0.3);
}

.chat-send svg {
    width: 16px;
    height: 16px;
    color: white;
}

/* Custom scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 2px;
}

/* Typing indicator */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    max-width: 70%;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots div {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots div:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Google Reviews Widget Styles */
.reviews-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.reviews-toggle {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 140px;
}

.reviews-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviews-rating {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
}

/* Reviews Sidebar */
.reviews-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 450px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
}

.reviews-sidebar.open {
    transform: translateX(0);
}

.reviews-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reviews-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.reviews-header {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.reviews-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.reviews-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.reviews-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.reviews-summary {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.reviews-average {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.reviews-summary-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.reviews-summary-stars .star {
    width: 20px;
    height: 20px;
}

.reviews-count {
    color: var(--text-secondary);
    font-size: 14px;
}

.reviews-list {
    padding: 24px;
}

.review-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.review-photo {
    background: none;
    border: 2px solid var(--glass-border);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Empty star styling */
.star.empty {
    fill: none;
    stroke: #fbbf24;
    stroke-width: 1;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 15px;
}

.review-date {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 2px 0 0 0;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    width: 16px;
    height: 16px;
}

.review-text {
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 14px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 12px;
}

.review-footer svg {
    width: 16px;
    height: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reviews-widget {
        bottom: 90px;
        left: 15px;
    }
    
    .reviews-toggle {
        padding: 12px 16px;
        min-width: 120px;
    }
    
    .reviews-rating {
        font-size: 16px;
    }
    
    .reviews-sidebar {
        width: calc(100vw - 30px);
        left: 15px;
        height: calc(100vh - 30px);
        top: 15px;
        border-radius: 16px;
        transform: translateX(-110%);
    }
    
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-window {
        width: calc(100vw - 30px);
        max-width: 350px;
        height: 450px;
        right: -15px;
    }
    
    .chat-toggle {
        width: 55px;
        height: 55px;
    }
    
    .chat-toggle svg {
        width: 24px;
        height: 24px;
    }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .asymmetric-container {
        grid-template-columns: 1fr;
    }
    
    .asymmetric-item:nth-child(n) {
        margin-top: 0;
    }
    
    .bento-item-large,
    .bento-item-wide {
        grid-column: span 1;
    }
    
    .broken-grid-item:nth-child(n) {
        transform: none;
    }
    
    /* Team photos smaller on mobile */
    .team-photo {
        width: 240px !important;
        height: 240px !important;
    }
}

/* ==========================================
   CLIENT LOGOS SECTION
   ========================================== */

/* Client logo containers - original */
.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo-container:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.02);
}

/* Minimal client logo containers */
.client-logo-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Base client logo styling */
.client-logo {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
}

/* Dark mode (default) - logos appear grayscale/desaturated */
[data-theme="dark"] .client-logo {
    filter: grayscale(100%) brightness(1.2) opacity(0.6);
}

[data-theme="dark"] .client-logo-container:hover .client-logo,
[data-theme="dark"] .client-logo-minimal:hover .client-logo {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.05);
}

/* Light mode - logos appear grayscale/desaturated */
[data-theme="light"] .client-logo {
    filter: grayscale(100%) brightness(0.8) opacity(0.7);
}

[data-theme="light"] .client-logo-container:hover .client-logo,
[data-theme="light"] .client-logo-minimal:hover .client-logo {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.05);
}

/* Client brand images styling */
.client-brand-img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
}

/* Dark mode - client brand images appear grayscale */
[data-theme="dark"] .client-brand-img {
    filter: grayscale(100%) brightness(1.2) opacity(0.6);
}

[data-theme="dark"] .client-brand-wrapper:hover .client-brand-img {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.05);
}

/* Light mode - client brand images appear grayscale */
[data-theme="light"] .client-brand-img {
    filter: grayscale(100%) brightness(0.5) opacity(0.7);
}

[data-theme="light"] .client-brand-wrapper:hover .client-brand-img {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.05);
}

/* Minimal version gets more subtle opacity */
[data-theme="dark"] .client-logo-minimal .client-logo {
    filter: grayscale(100%) brightness(1.2) opacity(0.5);
}

[data-theme="light"] .client-logo-minimal .client-logo {
    filter: grayscale(100%) brightness(0.8) opacity(0.6);
}

/* Auto theme (respects system preference) */
@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .client-logo {
        filter: grayscale(100%) brightness(1.2) opacity(0.6);
    }

    html:not([data-theme="light"]) .client-logo-minimal .client-logo {
        filter: grayscale(100%) brightness(1.2) opacity(0.5);
    }

    html:not([data-theme="light"]) .client-logo-container:hover .client-logo,
    html:not([data-theme="light"]) .client-logo-minimal:hover .client-logo {
        filter: grayscale(0%) brightness(1) opacity(1);
        transform: scale(1.05);
    }
}

@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) .client-logo {
        filter: grayscale(100%) brightness(0.8) opacity(0.7);
    }

    html:not([data-theme="dark"]) .client-logo-minimal .client-logo {
        filter: grayscale(100%) brightness(0.8) opacity(0.6);
    }

    html:not([data-theme="dark"]) .client-logo-container:hover .client-logo,
    html:not([data-theme="dark"]) .client-logo-minimal:hover .client-logo {
        filter: grayscale(0%) brightness(1) opacity(1);
        transform: scale(1.05);
    }
}

/* Special styling for placeholder logos */
.client-logo-container .client-logo:not(img) {
    filter: none !important;
    opacity: 0.7;
}

.client-logo-container:hover .client-logo:not(img) {
    opacity: 1;
    transform: scale(1.05);
}

/* Animation for smooth reveal */
.client-logo-container,
.client-logo-minimal {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

.client-logo-container:nth-child(1),
.client-logo-minimal:nth-child(1) { animation-delay: 0.05s; }
.client-logo-container:nth-child(2),
.client-logo-minimal:nth-child(2) { animation-delay: 0.1s; }
.client-logo-container:nth-child(3),
.client-logo-minimal:nth-child(3) { animation-delay: 0.15s; }
.client-logo-container:nth-child(4),
.client-logo-minimal:nth-child(4) { animation-delay: 0.2s; }
.client-logo-container:nth-child(5),
.client-logo-minimal:nth-child(5) { animation-delay: 0.25s; }
.client-logo-container:nth-child(6),
.client-logo-minimal:nth-child(6) { animation-delay: 0.3s; }
.client-logo-container:nth-child(7),
.client-logo-minimal:nth-child(7) { animation-delay: 0.35s; }
.client-logo-container:nth-child(8),
.client-logo-minimal:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for client logos */
@media (max-width: 768px) {
    .client-logo-container {
        padding: 0.75rem;
    }
    
    .client-logo-minimal {
        padding: 0.25rem;
    }
    
    .client-logo {
        height: 32px !important;
    }
}

@media (max-width: 480px) {
    .client-logo {
        height: 28px !important;
    }
    
    .client-logo-minimal {
        padding: 0.125rem;
    }
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 600px;
    width: calc(100% - 40px);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-popup.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.cookie-content {
    /* More transparent glassmorphism background */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    
    /* Layout */
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
    
    /* Subtle shadow */
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 10px 10px -5px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    /* Animation */
    animation: cookieSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dark theme adjustments */
[data-theme="dark"] .cookie-content {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.25),
        0 10px 10px -5px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cookie-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    letter-spacing: -0.025em;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    max-width: 500px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 90px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.cookie-settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Cookie popup animations */
@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive cookie popup */
@media (max-width: 768px) {
    .cookie-popup {
        bottom: 20px;
        max-width: none;
        width: calc(100% - 20px);
    }
    
    .cookie-content {
        padding: 20px;
        gap: 16px;
        border-radius: 16px;
    }
    
    .cookie-icon {
        width: 48px;
        height: 48px;
    }
    
    .cookie-text h3 {
        font-size: 1.125rem;
    }
    
    .cookie-text p {
        font-size: 0.875rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 16px;
        gap: 12px;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
    }
    
    .cookie-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Ensure cookie popup is above everything */
.cookie-popup {
    z-index: 99999;
}

/* ===== MODERN TEAM SECTION ===== */
.team-card-modern {
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card-content {
    /* Glassmorphism card */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    gap: 24px;
    
    position: relative;
    overflow: hidden;
    
    transition: all 0.4s ease;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-card-modern:hover .team-card-content {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.25),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark theme adjustments */
[data-theme="dark"] .team-card-content {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .team-card-modern:hover .team-card-content {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Team photo container */
.team-photo-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.team-photo-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.team-photo-modern {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 3;
    pointer-events: none;
}

.team-photo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-photo-glow-purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
}

.team-photo-glow-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
}

.team-card-modern:hover .team-photo-glow {
    opacity: 1;
}

.team-card-modern:hover .team-photo-modern {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Team info section */
.team-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 8px;
    width: fit-content;
    
    border: 1px solid;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-role-purple {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    color: #c084fc;
}

.team-role-blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.team-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.025em;
}

.team-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

/* Skills tags */
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.skill-tag {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.skill-tag-purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.skill-tag-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.skill-tag:hover {
    transform: translateY(-2px);
}

.skill-tag-purple:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.skill-tag-blue:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .team-photo-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .team-card-content {
        padding: 24px;
        gap: 20px;
    }
    
    .team-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .team-photo-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .team-card-content {
        padding: 20px;
        gap: 16px;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

@media (max-width: 640px) {
    .team-photo-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .team-skills {
        gap: 6px;
    }
}

/* ===== PROJECT DETAIL MOCKUP SHOWCASE ===== */
.mockup-showcase {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.mockup-showcase .laptop-mockup {
    max-width: 750px;
    margin: 0 auto;
}

.mockup-showcase .phone-showcase {
    position: absolute;
    bottom: -20px;
    right: -10px;
    z-index: 10;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: showcasePhoneFloat 6s ease-in-out infinite;
}

.mockup-showcase .phone-showcase .phone-frame {
    width: 200px;
    height: 420px;
    animation: none;
}

.mockup-showcase .phone-showcase .phone-screen {
    border-radius: 28px;
}

.mockup-showcase .phone-showcase .phone-screen iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
    border: none;
    background: white;
    transform: scale(0.667);
    transform-origin: 0 0;
    z-index: 1;
    pointer-events: none;
}

.mockup-showcase .phone-showcase .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* Glow effect behind the mockup showcase */
.mockup-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse at center,
        var(--showcase-glow, rgba(147, 51, 234, 0.15)) 0%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

@keyframes showcasePhoneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Responsive showcase */
@media (max-width: 1024px) {
    .mockup-showcase .laptop-mockup {
        max-width: 600px;
    }
    .mockup-showcase .phone-showcase {
        right: -5px;
    }
    .mockup-showcase .phone-showcase .phone-frame {
        width: 170px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .mockup-showcase {
        padding-bottom: 40px;
    }
    .mockup-showcase .laptop-mockup {
        max-width: 500px;
    }
    .mockup-showcase .phone-showcase {
        right: 0px;
        bottom: -10px;
    }
    .mockup-showcase .phone-showcase .phone-frame {
        width: 140px;
        height: 295px;
        border-radius: 28px;
        padding: 8px;
    }
    .mockup-showcase .phone-showcase .phone-screen {
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .mockup-showcase {
        padding-bottom: 20px;
    }
    .mockup-showcase .laptop-mockup {
        max-width: 100%;
    }
    .mockup-showcase .phone-showcase {
        position: relative;
        bottom: auto;
        right: auto;
        display: flex;
        justify-content: center;
        margin-top: 24px;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    }
    .mockup-showcase .phone-showcase .phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 36px;
        padding: 10px;
    }
    .mockup-showcase .phone-showcase .phone-screen {
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .mockup-showcase .phone-showcase .phone-frame {
        width: 180px;
        height: 380px;
        border-radius: 32px;
        padding: 9px;
    }
    .mockup-showcase .phone-showcase .phone-screen {
        border-radius: 26px;
    }
}

/* Light mode showcase */
[data-theme="light"] .mockup-showcase .phone-showcase .phone-frame {
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .mockup-showcase .phone-showcase .phone-button {
    background: linear-gradient(145deg, #cbd5e1, #94a3b8);
}

[data-theme="light"] .mockup-showcase .phone-showcase .phone-speaker {
    background: rgba(0, 0, 0, 0.1);
}

/* ===== PHONE MOCKUPS ===== */
.phone-mockups-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-back {
    right: 20px;
    z-index: 1;
    transform: rotate(8deg);
    opacity: 1;
}

.phone-mockup-front {
    left: 20px;
    z-index: 2;
    transform: rotate(-3deg);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup-back .phone-frame {
    animation: phoneFloatBack 7s ease-in-out infinite;
}

.phone-mockup-front .phone-frame {
    animation: phoneFloatFront 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* Phone hardware details */
.phone-button {
    position: absolute;
    right: -3px;
    top: 140px;
    width: 4px;
    height: 60px;
    background: linear-gradient(145deg, #334155, #1e293b);
    border-radius: 2px;
}

.phone-speaker {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.phone-camera {
    display: none !important;
}

/* Floating elements */
.floating-element {
    position: absolute;
    animation: floatElement 4s ease-in-out infinite;
}

.floating-element-1 {
    top: 80px;
    left: -80px;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 200px;
    right: -200px;
    animation-delay: 1.3s;
}

.floating-element-3 {
    bottom: 150px;
    left: -70px;
    animation-delay: 2.6s;
}

.mini-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 
        0 10px 25px -5px rgba(0, 0, 0, 0.2),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Dark theme adjustments */
[data-theme="dark"] .mini-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .mini-card:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes phoneFloatFront {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

@keyframes phoneFloatBack {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
}

/* Responsive phone mockup */
@media (max-width: 1024px) {
    .phone-mockups-container {
        height: 500px;
    }
    
    .phone-mockup-back {
        right: 10px;
    }
    
    .phone-mockup-front {
        left: 10px;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
        border-radius: 32px;
        padding: 10px;
    }
    
    .phone-screen {
        border-radius: 26px;
    }
    
    .phone-screenshot {
        border-radius: 26px;
    }
    
    /* Move floating elements more inside on tablet */
    .floating-element-1 {
        left: 20px;
        top: 60px;
    }

    .floating-element-2 {
        right: 20px;
        top: 180px;
    }

    .floating-element-3 {
        left: 20px;
        bottom: 120px;
    }

    /* Make mini cards smaller on tablet */
    .mini-card {
        padding: 8px 12px;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .phone-mockups-container {
        height: 500px;
        margin-top: 20px;
        margin-bottom: -20px;
    }

    .phone-mockup-back {
        right: 20px;
        transform: rotate(8deg);
    }

    .phone-mockup-front {
        left: 20px;
        transform: rotate(-3deg);
    }

    .phone-frame {
        width: 220px;
        height: 440px;
        border-radius: 32px;
        padding: 9px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .phone-screenshot {
        border-radius: 26px;
    }

    .floating-element {
        display: none; /* Hide floating elements on mobile for cleaner look */
    }
}

@media (max-width: 640px) {
    .phone-mockups-container {
        height: 460px;
        margin-top: 15px;
        margin-bottom: -15px;
    }

    /* Keep both phones visible on mobile - same as desktop */
    .phone-mockup-back {
        display: block !important;
        right: 15px;
        transform: rotate(6deg);
    }

    .phone-mockup-front {
        left: 15px;
        transform: rotate(-2deg);
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 30px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 24px;
    }

    .phone-screenshot {
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .phone-mockups-container {
        height: 420px;
        margin-top: 10px;
        margin-bottom: -10px;
    }

    .phone-mockup-back {
        display: block !important;
        right: 10px;
        transform: rotate(5deg);
    }

    .phone-mockup-front {
        left: 10px;
        transform: rotate(-2deg);
    }

    .phone-frame {
        width: 180px;
        height: 360px;
        border-radius: 28px;
        padding: 7px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .phone-screenshot {
        border-radius: 22px;
    }
}

@media (max-width: 360px) {
    .phone-mockups-container {
        height: 380px;
        margin-top: 8px;
        margin-bottom: -8px;
    }

    .phone-mockup-back {
        display: block !important;
        right: 8px;
        transform: rotate(4deg);
    }

    .phone-mockup-front {
        left: 8px;
        transform: rotate(-1deg);
    }

    .phone-frame {
        width: 160px;
        height: 320px;
        border-radius: 26px;
        padding: 6px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .phone-screenshot {
        border-radius: 20px;
    }
}

/* ===== APP STORE BUTTONS ===== */
.app-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid;
}

.app-store-btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(131, 56, 236, 0.3);
}

.app-store-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 56, 236, 0.4);
}

.app-store-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.app-store-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Dark theme adjustments */
[data-theme="dark"] .app-store-btn-secondary {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .app-store-btn-secondary:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Responsive app store buttons */
@media (max-width: 640px) {
    .app-store-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* ===== PLACEHOLDER SCREEN ===== */
.placeholder-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .placeholder-screen {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.placeholder-content {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.placeholder-header {
    width: 100%;
    height: 60px;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.placeholder-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

[data-theme="dark"] .placeholder-header {
    background: rgba(71, 85, 105, 0.3);
}

.placeholder-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.placeholder-line {
    height: 16px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.placeholder-line.short {
    width: 60%;
}

.placeholder-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
    animation-delay: 0.5s;
}

[data-theme="dark"] .placeholder-line {
    background: rgba(71, 85, 105, 0.2);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===============================
   MEGA DROPDOWN MENU STYLES
   =============================== */

/* Desktop Dropdown Container */
.dropdown-container {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    width: 100vw;
    max-width: 80rem;
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 50;
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-color);
    z-index: 51;
}

.mega-dropdown::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--bg-primary);
    z-index: 52;
}

/* Dropdown Categories */
.dropdown-category h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-item {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
    transform: translateX(4px);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.2s ease;
    border-radius: 1px;
}

.dropdown-item:hover::before {
    width: 3px;
}

/* Hover animations for dropdown items */
.dropdown-category:nth-child(1) .dropdown-item:hover {
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.dropdown-category:nth-child(2) .dropdown-item:hover {
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.dropdown-category:nth-child(3) .dropdown-item:hover {
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.dropdown-category:nth-child(4) .dropdown-item:hover {
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.mobile-dropdown-content {
    animation: slideDown 0.3s ease;
}

.mobile-dropdown-content.hidden {
    animation: slideUp 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Light theme adjustments */
[data-theme="light"] .mega-dropdown {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .mega-dropdown::after {
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .mega-dropdown {
        max-width: 90vw;
        left: -50%;
        transform: translateX(0) translateY(-16px);
    }
    
    .mega-dropdown::before,
    .mega-dropdown::after {
        left: 25%;
    }
}

@media (max-width: 768px) {
    .mega-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95vw;
        max-width: none;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mega-dropdown::before,
    .mega-dropdown::after {
        display: none;
    }
}

/* 11 inch screens (1041px - 1261px) */
@media (min-width: 1041px) and (max-width: 1261px) {
    /* Navigation adjustments for 11 inch screens */
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Adjust spacing between nav items */
    nav .space-x-8 {
        gap: 1.75rem;
    }
    
    /* Premium button adjustments */
    .premium-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }
    
    /* Hero text adjustments for 11 inch screens */
    .text-5xl {
        font-size: 3.25rem !important;
    }
    
    .text-4xl {
        font-size: 2.75rem !important;
    }
    
    /* Specific hero section adjustments */
    h1.text-5xl.md\\:text-7xl {
        font-size: 4rem !important;
    }
    
    h1 .text-4xl.md\\:text-6xl {
        font-size: 3rem !important;
    }
    
    /* Paragraph text */
    .text-xl {
        font-size: 1.2rem;
    }
    
    /* Stats section */
    .text-3xl {
        font-size: 2rem;
    }
    
    /* Container padding */
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        max-width: 1200px;
    }
    
    /* Phone mockup adjustments */
    .phone-mockups-container,
    .organic-shape {
        transform: scale(0.9);
    }
    
    /* Broken grid adjustments */
    .broken-grid-item {
        padding: 1.75rem;
    }
    
    /* Grid gap adjustments */
    .gap-8 {
        gap: 1.5rem;
    }
}

/* Tablet-specific styles (768px - 1040px) */
@media (min-width: 768px) and (max-width: 1040px) {
    /* Navigation adjustments for tablets */
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Smaller spacing between nav items on tablets */
    nav .space-x-8 {
        gap: 1.5rem;
    }
    
    /* Adjust premium button size */
    .premium-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Hero text adjustments for tablets */
    .text-5xl {
        font-size: 3rem !important;
    }
    
    .text-4xl {
        font-size: 2.5rem !important;
    }
    
    /* Specific adjustments for hero section */
    h1.text-5xl.md\\:text-7xl {
        font-size: 3.5rem !important;
    }
    
    h1 .text-4xl.md\\:text-6xl {
        font-size: 2.75rem !important;
    }
    
    /* Adjust paragraph text on tablets */
    .text-xl {
        font-size: 1.125rem;
    }
    
    /* Stats section on tablets */
    .text-3xl {
        font-size: 1.875rem;
    }
    
    /* Container padding adjustments */
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Phone mockup adjustments */
    .phone-mockups-container,
    .organic-shape {
        transform: scale(0.85);
    }
    
    /* Broken grid adjustments */
    .broken-grid-item {
        padding: 1.5rem;
    }
}

/* Dropdown option styling for both dark and light modes */
select.form-input option {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 0.5rem;
}

[data-theme="light"] select.form-input option {
    background-color: #ffffff;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

[data-theme="light"] select.form-input {
    background-color: #ffffff;
    color: #1f2937;
    border-color: #d1d5db;
}

[data-theme="dark"] select.form-input {
    background-color: rgba(17, 24, 39, 0.8);
    color: #f9fafb;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Ensure dropdown options are visible in all browsers */
select.form-input option:checked,
select.form-input option:hover {
    background-color: #6366f1 !important;
    color: #ffffff !important;
}

[data-theme="light"] select.form-input option:checked,
[data-theme="light"] select.form-input option:hover {
    background-color: #6366f1 !important;
    color: #ffffff !important;
}

/* Light mode iOS icon fix - ensure iOS icon background and icon stay dark in light mode */
[data-theme="light"] .ios-icon-bg {
    background: linear-gradient(to bottom right, #374151, #111827) !important;
}

[data-theme="light"] .ios-icon {
    color: #ffffff !important;
}

/* Additional dropdown styling improvements */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

[data-theme="dark"] select.form-input {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
}

/* Make sure select options have proper contrast */
[data-theme="dark"] select.form-input option {
    background-color: #1f2937;
    color: #f9fafb;
}

[data-theme="light"] select.form-input option {
    background-color: #ffffff;
    color: #1f2937;
}

/* Ensure Co-Founder badge text stays white in light mode */
[data-theme="light"] .bg-purple-500 span.text-white {
    color: #ffffff !important;
}

/* More specific rule for Co-Founder badges */
[data-theme="light"] .bg-purple-500 .text-white {
    color: #ffffff !important;
}

/* ===== BLOG DETAIL PAGE STYLES ===== */

/* Article category tags in hero */
.article-category-tag {
    padding: 0.5rem 1rem;
    background: rgba(131, 56, 236, 0.2);
    border: 1px solid rgba(131, 56, 236, 0.3);
    color: #c4b5fd;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-category-tag:hover {
    background: rgba(131, 56, 236, 0.3);
    border-color: rgba(131, 56, 236, 0.5);
}

/* Light mode article category tags */
[data-theme="light"] .article-category-tag {
    background: rgba(131, 56, 236, 0.15);
    border-color: rgba(131, 56, 236, 0.3);
    color: rgb(109, 40, 217);
}

[data-theme="light"] .article-category-tag:hover {
    background: rgba(131, 56, 236, 0.2);
    border-color: rgba(131, 56, 236, 0.4);
}

/* Featured image container */
.article-featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light mode featured image */
[data-theme="light"] .article-featured-image {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

/* Article content typography */
.article-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.article-content .article-lead {
    font-size: 1.375rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.article-content ul li {
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content ul li::marker {
    color: #8b5cf6;
}

.article-content ol li::marker {
    color: #8b5cf6;
    font-weight: 600;
}

.article-content a {
    color: #8b5cf6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #a855f7;
}

.article-content code {
    background: rgba(131, 56, 236, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: #c4b5fd;
}

/* Article highlight boxes */
.article-highlight {
    background: rgba(131, 56, 236, 0.05);
    border: 1px solid rgba(131, 56, 236, 0.2);
    border-left: 4px solid #8b5cf6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.article-highlight:hover {
    background: rgba(131, 56, 236, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Light mode article highlight */
[data-theme="light"] .article-highlight {
    background: rgba(131, 56, 236, 0.05);
    border-color: rgba(131, 56, 236, 0.2);
}

[data-theme="light"] .article-highlight:hover {
    background: rgba(131, 56, 236, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Article quote blocks */
.article-quote {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(168, 85, 247, 0.05));
    border-left: 4px solid #8b5cf6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
}

.article-quote p {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-quote cite {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-style: normal;
    font-weight: 600;
}

/* Light mode quote */
[data-theme="light"] .article-quote {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.08), rgba(168, 85, 247, 0.04));
}

/* Article tags */
.article-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: rgba(131, 56, 236, 0.2);
    border-color: rgba(131, 56, 236, 0.3);
    color: #c4b5fd;
    transform: translateY(-2px);
}

/* Light mode tags */
[data-theme="light"] .article-tag {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
    color: rgb(75, 85, 99);
}

[data-theme="light"] .article-tag:hover {
    background: rgba(131, 56, 236, 0.1);
    border-color: rgba(131, 56, 236, 0.3);
    color: rgb(109, 40, 217);
}

/* Share buttons */
.article-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.article-share-btn:hover {
    background: rgba(131, 56, 236, 0.2);
    border-color: rgba(131, 56, 236, 0.3);
    color: #c4b5fd;
    transform: translateY(-4px);
}

/* Light mode share buttons */
[data-theme="light"] .article-share-btn {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
    color: rgb(75, 85, 99);
}

[data-theme="light"] .article-share-btn:hover {
    background: rgba(131, 56, 236, 0.1);
    border-color: rgba(131, 56, 236, 0.3);
    color: rgb(109, 40, 217);
}

/* Sidebar cards - match project detail page glass-card styling */
.article-sidebar-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px var(--shadow-color);
}

/* Light mode sidebar cards */
[data-theme="light"] .article-sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Table of contents */
.article-toc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-toc li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: block;
    padding: 0.75rem 0.875rem;
    border-radius: 0.5rem;
}

.article-toc a:hover {
    color: #8b5cf6;
    background: rgba(131, 56, 236, 0.1);
    padding-left: 1.25rem;
}

/* Light mode TOC */
[data-theme="light"] .article-toc a:hover {
    color: rgb(109, 40, 217);
    background: rgba(131, 56, 236, 0.08);
}

/* Light mode article content text colors */
[data-theme="light"] .article-content p,
[data-theme="light"] .article-content ul li,
[data-theme="light"] .article-content ol li {
    color: rgb(75, 85, 99);
}

[data-theme="light"] .article-content .article-lead {
    color: rgb(15, 23, 42);
}

[data-theme="light"] .article-content code {
    background: rgba(131, 56, 236, 0.1);
    color: rgb(109, 40, 217);
}

/* ===== END BLOG DETAIL PAGE STYLES ===== */

/* ===== SYSTEMEN PAGE STYLES ===== */

/* Systems info cards */
.systems-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.systems-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateY(-4px);
}

[data-theme="light"] .systems-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .systems-info-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Systems info icon */
.systems-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.systems-info-card:hover .systems-info-icon {
    transform: scale(1.1) rotate(5deg);
}

[data-theme="light"] .systems-info-icon {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(168, 85, 247, 0.08));
    color: #8338ec;
}

/* Systems comparison cards */
.systems-comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.systems-comparison-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateY(-4px);
}

[data-theme="light"] .systems-comparison-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .systems-comparison-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Systems comparison icon */
.systems-comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Systems feature list */
.systems-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.systems-feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.systems-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.2rem;
}

[data-theme="light"] .systems-feature-list li {
    color: rgb(75, 85, 99);
}

/* Systems comparison table */
.systems-comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

[data-theme="light"] .systems-comparison-table {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

.systems-comparison-table table {
    border-collapse: collapse;
}

.systems-comparison-table td,
.systems-comparison-table th {
    color: var(--text-secondary);
}

[data-theme="light"] .systems-comparison-table td,
[data-theme="light"] .systems-comparison-table th {
    color: rgb(75, 85, 99);
}

/* Systems approach steps */
.systems-approach-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.systems-approach-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateX(8px);
}

[data-theme="light"] .systems-approach-step {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .systems-approach-step:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Systems step number */
.systems-step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

/* Systems use case cards */
.systems-usecase-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.systems-usecase-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateY(-4px);
}

[data-theme="light"] .systems-usecase-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .systems-usecase-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Systems use case icon */
.systems-usecase-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(131, 56, 236, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.systems-usecase-card:hover .systems-usecase-icon {
    background: rgba(131, 56, 236, 0.2);
    transform: scale(1.1);
}

[data-theme="light"] .systems-usecase-icon {
    background: rgba(131, 56, 236, 0.1);
    color: #8338ec;
}

[data-theme="light"] .systems-usecase-card:hover .systems-usecase-icon {
    background: rgba(131, 56, 236, 0.2);
}

/* Systems tech badges */
.systems-tech-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.systems-tech-badge:hover {
    background: rgba(131, 56, 236, 0.1);
    border-color: rgba(131, 56, 236, 0.3);
    transform: translateY(-4px) scale(1.05);
}

[data-theme="light"] .systems-tech-badge {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .systems-tech-badge:hover {
    background: rgba(131, 56, 236, 0.08);
    border-color: rgba(131, 56, 236, 0.3);
}

/* ===== END SYSTEMEN PAGE STYLES ===== */

/* ===== APPS PAGE STYLES ===== */

/* Hero Section */
.app-hero-gradient {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.app-hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.2), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

/* Benefits Section */
.app-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.app-benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.5);
    box-shadow: 0 8px 32px rgba(131, 56, 236, 0.2);
}

[data-theme="light"] .app-benefit-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .app-benefit-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 0 8px 32px rgba(131, 56, 236, 0.15);
}

.app-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.1));
    margin-bottom: 1.5rem;
}

.app-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #8b5cf6;
}

.app-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.app-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* App Showcase Section */
.app-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.app-showcase-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.5);
    box-shadow: 0 12px 40px rgba(131, 56, 236, 0.2);
}

[data-theme="light"] .app-showcase-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .app-showcase-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 0 12px 40px rgba(131, 56, 236, 0.15);
}

.app-showcase-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.15));
    border: 2px solid rgba(131, 56, 236, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.app-showcase-card:hover .app-showcase-icon {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(168, 85, 247, 0.2));
    border-color: rgba(131, 56, 236, 0.5);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.4);
}

.app-showcase-icon svg {
    width: 40px;
    height: 40px;
    color: #a78bfa;
    flex-shrink: 0;
}

.app-showcase-card:hover .app-showcase-icon svg {
    color: #c4b5fd;
}

.app-showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.app-showcase-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.app-showcase-card .text-xs {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(131, 56, 236, 0.2);
    border-radius: 9999px;
    color: #a78bfa;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Dashboard Integration Section */
.app-dashboard-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .app-dashboard-section {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

.app-dashboard-features {
    display: grid;
    gap: 1rem;
}

.app-dashboard-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.app-dashboard-features li svg {
    width: 20px;
    height: 20px;
    color: #8b5cf6;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.app-dashboard-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .app-dashboard-visual {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.app-dashboard-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(131, 56, 236, 0.1), transparent 70%);
}

/* Development Process Section */
.app-process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.5);
}

[data-theme="light"] .app-process-step {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .app-process-step:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
}

.app-process-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.app-process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.app-process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Technology Stack Section */
.app-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.app-tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.app-tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(131, 56, 236, 0.5);
    transform: translateY(-2px);
}

[data-theme="light"] .app-tech-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .app-tech-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(131, 56, 236, 0.3);
}

.app-tech-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(131, 56, 236, 0.2);
    border-radius: 9999px;
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.95rem;
}

.app-tech-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .app-hero-gradient {
        padding: 2rem;
    }

    .app-dashboard-section,
    .app-webapp-comparison {
        padding: 2rem;
    }

    .app-dashboard-visual {
        min-height: 200px;
        padding: 2rem;
    }

    .app-process-number {
        font-size: 2rem;
    }

    .app-tech-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.app-faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.app-faq-item:hover {
    border-color: rgba(131, 56, 236, 0.3);
}

[data-theme="light"] .app-faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .app-faq-item:hover {
    border-color: rgba(131, 56, 236, 0.3);
}

.app-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.app-faq-question:hover {
    background: rgba(131, 56, 236, 0.05);
}

.app-faq-icon {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.app-faq-item.active .app-faq-icon {
    transform: rotate(180deg);
}

.app-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.app-faq-item.active .app-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ===== END APPS PAGE STYLES ===== */

/* ===== WEBSHOPS PAGE STYLES ===== */

/* Comparison Cards */
.webshop-comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.webshop-comparison-card:hover {
    transform: translateY(-8px);
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 0 20px 60px rgba(131, 56, 236, 0.2);
}

[data-theme="light"] .webshop-comparison-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .webshop-comparison-card:hover {
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 0 20px 60px rgba(131, 56, 236, 0.15);
}

/* Platform Icon */
.webshop-platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.15));
    border: 2px solid rgba(131, 56, 236, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.webshop-comparison-card:hover .webshop-platform-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(168, 85, 247, 0.2));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.4);
}

.webshop-platform-icon svg {
    width: 40px;
    height: 40px;
    color: #a78bfa;
}

/* Feature List */
.webshop-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.webshop-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
}

[data-theme="light"] .webshop-feature-list li {
    color: #4b5563;
}

.webshop-feature-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #8b5cf6;
}

.webshop-feature-list li.warning {
    color: #fbbf24;
}

[data-theme="light"] .webshop-feature-list li.warning {
    color: #d97706;
}

.webshop-feature-list li.warning svg {
    color: #fbbf24;
}

[data-theme="light"] .webshop-feature-list li.warning svg {
    color: #d97706;
}

/* Integration Showcase */
.webshop-integration-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    margin-bottom: 3rem;
}

[data-theme="light"] .webshop-integration-showcase {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Integration List */
.webshop-integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.webshop-integration-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #e5e7eb;
    line-height: 1.6;
}

[data-theme="light"] .webshop-integration-list li {
    color: #4b5563;
}

.webshop-integration-list li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Integration Visual Diagram */
.webshop-integration-visual {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    min-height: 450px;
}

[data-theme="light"] .webshop-integration-visual {
    background: rgba(0, 0, 0, 0.02);
}

.webshop-integration-visual .relative {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Center Webshop Hub */
.webshop-integration-visual .absolute.top-1\/2 {
    position: static;
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: none !important;
}

.webshop-integration-visual .absolute.top-1\/2 > div:first-child {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(131, 56, 236, 0.4);
    }
    50% {
        box-shadow: 0 8px 48px rgba(131, 56, 236, 0.7);
    }
}

/* Connected Systems Positioning */
.webshop-integration-visual .absolute.top-0 {
    position: static;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transform: none !important;
}

.webshop-integration-visual .absolute.bottom-0 {
    position: static;
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform: none !important;
}

.webshop-integration-visual .absolute.left-0 {
    position: static;
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: none !important;
}

.webshop-integration-visual .absolute.right-0 {
    position: static;
    grid-column: 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: none !important;
}

/* Connection Lines - Hide on complex layouts, rely on visual spacing */
.webshop-connection-line {
    display: none;
}

/* Connected Systems */
.webshop-connected-system {
    width: 120px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.webshop-connected-system:hover {
    transform: scale(1.05);
    border-color: rgba(131, 56, 236, 0.5);
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.3);
}

[data-theme="light"] .webshop-connected-system {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .webshop-connected-system:hover {
    border-color: rgba(131, 56, 236, 0.5);
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.2);
}

.webshop-connected-system svg {
    width: 28px;
    height: 28px;
    color: #a78bfa;
    margin: 0 auto 0.5rem;
    display: block;
}

.webshop-connected-system span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e5e7eb;
}

[data-theme="light"] .webshop-connected-system span {
    color: #1f2937;
}

/* Integration Benefit */
.webshop-integration-benefit {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.webshop-integration-benefit:hover {
    border-color: rgba(131, 56, 236, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

[data-theme="light"] .webshop-integration-benefit {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .webshop-integration-benefit:hover {
    border-color: rgba(131, 56, 236, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.webshop-integration-benefit svg {
    width: 40px;
    height: 40px;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

/* Feature Cards */
.webshop-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.webshop-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow: 0 16px 48px rgba(131, 56, 236, 0.25);
}

[data-theme="light"] .webshop-feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .webshop-feature-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow: 0 16px 48px rgba(131, 56, 236, 0.2);
}

/* Feature Icon */
.webshop-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.15));
    border: 2px solid rgba(131, 56, 236, 0.3);
    transition: all 0.3s ease;
}

.webshop-feature-card:hover .webshop-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(168, 85, 247, 0.2));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.4);
}

.webshop-feature-icon svg {
    width: 32px;
    height: 32px;
    color: #a78bfa;
}

/* Pricing Info */
.webshop-pricing-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    margin-top: 2rem;
}

[data-theme="light"] .webshop-pricing-info {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

.webshop-pricing-info h4 {
    color: #a78bfa;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

[data-theme="light"] .webshop-pricing-info h4 {
    color: #7c3aed;
}

.webshop-pricing-info p {
    color: #e5e7eb;
    line-height: 1.7;
}

[data-theme="light"] .webshop-pricing-info p {
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .webshop-integration-visual {
        min-height: 400px;
    }

    .webshop-connected-system {
        width: 120px;
        padding: 1rem;
    }

    .webshop-connected-system svg {
        width: 28px;
        height: 28px;
    }

    .webshop-connected-system span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .webshop-comparison-card,
    .webshop-integration-showcase,
    .webshop-pricing-info {
        padding: 1.5rem;
    }

    .webshop-integration-visual {
        min-height: 300px;
    }

    .webshop-connected-system {
        width: 100px;
        padding: 0.75rem;
    }

    .webshop-connected-system svg {
        width: 24px;
        height: 24px;
    }

    .webshop-connected-system span {
        font-size: 0.625rem;
    }

    .webshop-integration-list {
        grid-template-columns: 1fr;
    }

    .webshop-feature-card {
        padding: 1.5rem;
    }

    .webshop-feature-icon {
        width: 56px;
        height: 56px;
    }

    .webshop-feature-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Maintenance Cards */
.webshop-maintenance-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.webshop-maintenance-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

/* ===== END WEBSHOPS PAGE STYLES ===== */

/* ===== WEBSITES PAGE STYLES ===== */

/* Comparison Cards */
.website-comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.website-comparison-card:hover {
    transform: translateY(-8px);
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 0 20px 60px rgba(131, 56, 236, 0.2);
}

[data-theme="light"] .website-comparison-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .website-comparison-card:hover {
    border-color: rgba(131, 56, 236, 0.3);
    box-shadow: 0 20px 60px rgba(131, 56, 236, 0.15);
}

/* Platform Icon */
.website-platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border: 2px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.website-comparison-card:hover .website-platform-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.website-platform-icon svg {
    color: #60a5fa;
}

/* Feature List - Same as webshops */
.website-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.website-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
}

[data-theme="light"] .website-feature-list li {
    color: #4b5563;
}

.website-feature-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #8b5cf6;
}

.website-feature-list li.warning {
    color: #fbbf24;
}

[data-theme="light"] .website-feature-list li.warning {
    color: #d97706;
}

.website-feature-list li.warning svg {
    color: #fbbf24;
}

[data-theme="light"] .website-feature-list li.warning svg {
    color: #d97706;
}

/* API Showcase */
.website-api-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
}

[data-theme="light"] .website-api-showcase {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

/* API List */
.website-api-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.website-api-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #e5e7eb;
    line-height: 1.6;
}

[data-theme="light"] .website-api-list li {
    color: #4b5563;
}

.website-api-list li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* API Benefits */
.website-api-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.website-api-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.website-api-benefit-card:hover {
    border-color: rgba(131, 56, 236, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

[data-theme="light"] .website-api-benefit-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .website-api-benefit-card:hover {
    border-color: rgba(131, 56, 236, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

/* CMS Showcase */
.website-cms-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
}

[data-theme="light"] .website-cms-showcase {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

/* CMS Visual */
.website-cms-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-cms-mockup {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
}

[data-theme="light"] .website-cms-mockup {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.1);
}

.website-cms-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .website-cms-header {
    background: #e0e0e0;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.website-cms-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.website-cms-header .dot.red {
    background: #ff5f57;
}

.website-cms-header .dot.yellow {
    background: #ffbd2e;
}

.website-cms-header .dot.green {
    background: #28ca42;
}

.website-cms-content {
    padding: 1.5rem;
}

.website-cms-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.website-cms-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(131, 56, 236, 0.3);
}

[data-theme="light"] .website-cms-item {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .website-cms-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(131, 56, 236, 0.3);
}

/* Pricing Info */
.website-pricing-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
}

[data-theme="light"] .website-pricing-info {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

.website-pricing-info h4 {
    color: #a78bfa;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

[data-theme="light"] .website-pricing-info h4 {
    color: #7c3aed;
}

.website-pricing-info p {
    color: #e5e7eb;
    line-height: 1.7;
}

[data-theme="light"] .website-pricing-info p {
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .website-cms-mockup {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .website-comparison-card,
    .website-api-showcase,
    .website-cms-showcase,
    .website-pricing-info {
        padding: 1.5rem;
    }

    .website-cms-content {
        padding: 1rem;
    }

    .website-cms-item {
        padding: 0.75rem;
    }
}

/* Platform Icon */
.website-platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.15));
    border: 2px solid rgba(131, 56, 236, 0.3);
    transition: all 0.3s ease;
}

.website-comparison-card:hover .website-platform-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(168, 85, 247, 0.2));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.4);
}

.website-platform-icon svg {
    color: #a78bfa;
}

/* Maintenance Cards */
.website-maintenance-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.website-maintenance-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

/* ===== END WEBSITES PAGE STYLES ===== */

/* ===== FLUTTER PAGE STYLES ===== */

/* Flutter Info Cards */
.flutter-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.flutter-info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

/* Light mode - Flutter Info Cards */
[data-theme="light"] .flutter-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .flutter-info-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Flutter Reason Cards */
.flutter-reason-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.flutter-reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

/* Light mode - Flutter Reason Cards */
[data-theme="light"] .flutter-reason-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .flutter-reason-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 15px 40px rgba(131, 56, 236, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.flutter-reason-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(131, 56, 236, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.flutter-reason-card:hover .flutter-reason-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(168, 85, 247, 0.2));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.3);
}

/* Light mode - Flutter Reason Icon Wrapper */
[data-theme="light"] .flutter-reason-icon-wrapper {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(131, 56, 236, 0.25);
}

[data-theme="light"] .flutter-reason-card:hover .flutter-reason-icon-wrapper {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.25), rgba(168, 85, 247, 0.15));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.2);
}

/* Flutter Comparison Cards */
.flutter-compare-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.flutter-compare-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

/* Light mode - Flutter Comparison Cards */
[data-theme="light"] .flutter-compare-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .flutter-compare-card:hover {
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.flutter-compare-icon-old {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.15));
    border: 2px solid rgba(251, 146, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flutter-compare-card:hover .flutter-compare-icon-old {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.3);
}

/* Light mode - Flutter Compare Icon Old */
[data-theme="light"] .flutter-compare-icon-old {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(251, 146, 60, 0.25);
}

[data-theme="light"] .flutter-compare-card:hover .flutter-compare-icon-old {
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.2);
}

.flutter-compare-icon-new {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(168, 85, 247, 0.15));
    border: 2px solid rgba(131, 56, 236, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flutter-compare-card:hover .flutter-compare-icon-new {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.3), rgba(168, 85, 247, 0.2));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.4);
}

/* Light mode - Flutter Compare Icon New */
[data-theme="light"] .flutter-compare-icon-new {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(131, 56, 236, 0.25);
}

[data-theme="light"] .flutter-compare-card:hover .flutter-compare-icon-new {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.25), rgba(168, 85, 247, 0.15));
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.3);
}

/* Flutter Suitable Cards */
.flutter-suitable-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.flutter-suitable-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

/* Light mode - Flutter Suitable Cards */
[data-theme="light"] .flutter-suitable-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .flutter-suitable-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 15px 40px rgba(131, 56, 236, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===== END FLUTTER PAGE STYLES ===== */


/* ===== GOOGLE CLOUD PAGE STYLES ===== */

/* GCP Info Cards */
.gcp-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gcp-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

/* Light mode - GCP Info Cards */
[data-theme="light"] .gcp-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .gcp-info-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* GCP Service Cards */
.gcp-service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gcp-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

/* Light mode - GCP Service Cards */
[data-theme="light"] .gcp-service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .gcp-service-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 15px 40px rgba(131, 56, 236, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* GCP Service Icon Wrapper */
.gcp-service-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Light mode - GCP Service Icon Wrapper */
[data-theme="light"] .gcp-service-icon-wrapper {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
}

/* GCP Firebase Cards */
.gcp-firebase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gcp-firebase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 15px 40px rgba(251, 146, 60, 0.15);
}

/* Light mode - GCP Firebase Cards */
[data-theme="light"] .gcp-firebase-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .gcp-firebase-card:hover {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow:
        0 15px 40px rgba(251, 146, 60, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* GCP Firebase Icon Wrapper */
.gcp-firebase-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(249, 115, 22, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Light mode - GCP Firebase Icon Wrapper */
[data-theme="light"] .gcp-firebase-icon-wrapper {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(249, 115, 22, 0.1));
}

/* GCP Benefit Cards */
.gcp-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gcp-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

/* Light mode - GCP Benefit Cards */
[data-theme="light"] .gcp-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .gcp-benefit-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 15px 40px rgba(131, 56, 236, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===== END GOOGLE CLOUD PAGE STYLES ===== */

/* ===== AI TECHNOLOGIE PAGE STYLES ===== */

/* AI Info Cards */
.ai-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.ai-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .ai-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ai-info-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* AI Integration Cards */
.ai-integration-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.ai-integration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .ai-integration-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ai-integration-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* AI Integration Icons */
.ai-integration-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ai-integration-card:hover .ai-integration-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
}

[data-theme="light"] .ai-integration-icon {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(219, 39, 119, 0.15));
}

[data-theme="light"] .ai-integration-card:hover .ai-integration-icon {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.25), rgba(219, 39, 119, 0.25));
}

/* AI Benefit Cards */
.ai-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.ai-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .ai-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ai-benefit-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 15px 40px rgba(131, 56, 236, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* AI Experience Cards */
.ai-experience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.ai-experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .ai-experience-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .ai-experience-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== END AI TECHNOLOGIE PAGE STYLES ===== */

/* ===== AANBESTEDINGEN PAGE STYLES ===== */

/* Tender Info Cards */
.tender-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.tender-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .tender-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .tender-info-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tender Benefit Cards */
.tender-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.tender-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .tender-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .tender-benefit-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 15px 40px rgba(131, 56, 236, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Tender System Cards */
.tender-system-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.tender-system-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .tender-system-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .tender-system-card:hover {
    border-color: rgba(131, 56, 236, 0.4);
    box-shadow:
        0 20px 60px rgba(131, 56, 236, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tender System Icons */
.tender-system-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.tender-system-card:hover .tender-system-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
}

[data-theme="light"] .tender-system-icon {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(219, 39, 119, 0.15));
}

[data-theme="light"] .tender-system-card:hover .tender-system-icon {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.25), rgba(219, 39, 119, 0.25));
}

/* ===== END AANBESTEDINGEN PAGE STYLES ===== */

/* ===== OFF-CANVAS MOBILE NAVIGATION ===== */

/* Off-Canvas Overlay */
.nav-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.nav-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Off-Canvas Menu */
.nav-offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.98) 0%, rgba(30, 30, 50, 0.98) 100%);
    backdrop-filter: blur(30px);
    border-right: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav-offcanvas.active {
    left: 0;
}

/* Gradient overlay for depth */
.nav-offcanvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Off-Canvas Header */
.nav-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Off-Canvas Content */
.nav-offcanvas-content {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    padding-bottom: 0;
    min-height: 0;
}

.nav-offcanvas-content::-webkit-scrollbar {
    width: 6px;
}

.nav-offcanvas-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.nav-offcanvas-content::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 3px;
}

.nav-offcanvas-content::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

/* Off-Canvas Menu Items */
.nav-offcanvas-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

.nav-offcanvas-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-offcanvas-link:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #ffffff;
    transform: translateX(5px);
}

.nav-offcanvas-link svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: rgba(139, 92, 246, 0.8);
    transition: all 0.3s ease;
}

.nav-offcanvas-link:hover svg {
    color: rgb(139, 92, 246);
    transform: scale(1.1);
}

/* Off-Canvas Accordion */
.nav-offcanvas-accordion {
    margin: 0.5rem 0;
}

.nav-offcanvas-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.nav-offcanvas-accordion-trigger:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #ffffff;
}

.nav-offcanvas-accordion-trigger svg {
    color: rgba(139, 92, 246, 0.8);
}

.nav-offcanvas-accordion-icon {
    transition: transform 0.3s ease;
}

.nav-offcanvas-accordion.active .nav-offcanvas-accordion-icon {
    transform: rotate(180deg);
}

.nav-offcanvas-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding-left: 1rem;
}

.nav-offcanvas-accordion.active .nav-offcanvas-accordion-content {
    max-height: 500px;
}

.nav-offcanvas-sublink {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.nav-offcanvas-sublink:hover {
    background: rgba(139, 92, 246, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-left-color: rgb(139, 92, 246);
    transform: translateX(3px);
}

/* Active mobile sublink (current page) */
.nav-offcanvas-sublink.active {
    color: #a78bfa !important;
    background: rgba(139, 92, 246, 0.1);
    border-left-color: rgb(139, 92, 246);
}

/* Off-Canvas Footer */
.nav-offcanvas-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
    position: relative;
    width: 100%;
    z-index: 10;
    flex-shrink: 0;
}

.nav-offcanvas-footer .premium-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Theme Toggle Button in Off-Canvas */
.nav-offcanvas-theme-toggle {
    position: relative;
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 400px) {
    .nav-offcanvas {
        max-width: 90vw;
    }

    .nav-offcanvas-theme-toggle {
        width: 48px;
        height: 48px;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 20px;
        height: 20px;
    }

    .nav-offcanvas-footer {
        padding: 0.75rem;
    }

    .nav-offcanvas-footer .flex {
        gap: 0.5rem !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .nav-offcanvas-footer .premium-button svg {
        width: 0.875rem;
        height: 0.875rem;
    }
}

@media (max-width: 360px) {
    .nav-offcanvas {
        max-width: 92vw;
    }

    .nav-offcanvas-header {
        padding: 1rem;
    }

    .nav-offcanvas-theme-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-offcanvas-footer {
        padding: 0.5rem;
    }

    .nav-offcanvas-footer .flex {
        gap: 0.375rem !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }

    .nav-offcanvas-footer .premium-button svg {
        width: 0.75rem;
        height: 0.75rem;
    }

    .nav-offcanvas-menu {
        gap: 0.375rem;
    }

    .nav-offcanvas-link {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
}

.nav-offcanvas-theme-toggle:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.nav-offcanvas-theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    position: absolute;
}

/* Sun icon - visible in dark mode */
.nav-offcanvas-theme-toggle .theme-icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #fbbf24;
}

/* Moon icon - hidden in dark mode */
.nav-offcanvas-theme-toggle .theme-icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
    color: #8b5cf6;
}

/* Light mode - show moon, hide sun */
[data-theme="light"] .nav-offcanvas-theme-toggle .theme-icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="light"] .nav-offcanvas-theme-toggle .theme-icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Light mode button styling */
[data-theme="light"] .nav-offcanvas-theme-toggle {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

[data-theme="light"] .nav-offcanvas-theme-toggle:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Hamburger/Close Icon Toggle */
#mobile-menu-toggle .hamburger-icon,
#mobile-menu-toggle .close-icon {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#mobile-menu-toggle.active .hamburger-icon {
    opacity: 0;
    transform: rotate(90deg);
    position: absolute;
}

#mobile-menu-toggle.active .close-icon {
    display: block !important;
    opacity: 1;
    transform: rotate(0deg);
}

/* Prevent body scroll when menu is open */
body.nav-offcanvas-open {
    overflow: hidden;
}

/* Light Mode Adjustments */
[data-theme="light"] .nav-offcanvas {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    border-right-color: rgba(139, 92, 246, 0.3);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-offcanvas::before {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
}

[data-theme="light"] .nav-offcanvas-header {
    border-bottom-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.05);
}

[data-theme="light"] .nav-offcanvas-theme-label {
    color: rgba(0, 0, 0, 0.9);
}

[data-theme="light"] .nav-offcanvas-link {
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .nav-offcanvas-link:hover {
    background: rgba(131, 56, 236, 0.1);
    color: rgba(0, 0, 0, 0.9);
}

[data-theme="light"] .nav-offcanvas-accordion-trigger {
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .nav-offcanvas-accordion-trigger:hover {
    background: rgba(131, 56, 236, 0.1);
    color: rgba(0, 0, 0, 0.9);
}

[data-theme="light"] .nav-offcanvas-sublink {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .nav-offcanvas-sublink:hover {
    background: rgba(131, 56, 236, 0.08);
    color: rgba(0, 0, 0, 0.9);
    border-left-color: rgb(131, 56, 236);
}

[data-theme="light"] .nav-offcanvas-sublink.active {
    color: #8338ec !important;
    background: rgba(131, 56, 236, 0.1);
    border-left-color: rgb(131, 56, 236);
}

[data-theme="light"] .nav-offcanvas-footer {
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* Animation on Menu Items */
.nav-offcanvas.active .nav-offcanvas-link,
.nav-offcanvas.active .nav-offcanvas-accordion {
    animation: slideInRight 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(1),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(2),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(2) {
    animation-delay: 0.1s;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(3),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(3) {
    animation-delay: 0.15s;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(4),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(4) {
    animation-delay: 0.2s;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(5),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(5) {
    animation-delay: 0.25s;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(6),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(6) {
    animation-delay: 0.3s;
}

.nav-offcanvas.active .nav-offcanvas-link:nth-child(7),
.nav-offcanvas.active .nav-offcanvas-accordion:nth-child(7) {
    animation-delay: 0.35s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== END OFF-CANVAS MOBILE NAVIGATION ===== */
/* ============================================
   MOBILE RESPONSIVE OPTIMIZATIONS FOR INDEX.PHP
   ============================================ */

/* Hero Section Mobile Optimization */
@media (max-width: 768px) {
    /* Hero titles */
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    h1 .text-4xl {
        font-size: 2rem !important;
    }

    /* Hero paragraph */
    section p.text-xl {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    /* Stats grid */
    .grid.grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .grid.grid-cols-3 .text-3xl {
        font-size: 1.75rem;
    }

    .grid.grid-cols-3 .text-sm {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem !important;
    }

    h1 .text-4xl {
        font-size: 1.75rem !important;
    }

    section p.text-xl {
        font-size: 1rem;
    }

    .grid.grid-cols-3 .text-3xl {
        font-size: 1.5rem;
    }
}

/* Team Section - Mike & Kaja Photos */
@media (max-width: 1024px) {
    /* Team photos smaller on tablet */
    .w-96.h-96 {
        width: 20rem !important;
        height: 20rem !important;
    }
}

@media (max-width: 768px) {
    /* Team section title */
    h2.text-4xl.md\:text-6xl {
        font-size: 2rem !important;
    }

    /* Team photos mobile size */
    .w-96.h-96 {
        width: 16rem !important;
        height: 16rem !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Team names */
    h3.text-3xl {
        font-size: 1.75rem;
    }

    /* Team role */
    p.text-xl.font-semibold {
        font-size: 1.125rem;
    }

    /* Team description */
    p.text-lg {
        font-size: 1rem;
    }

    /* Tech stack badges smaller */
    .flex.flex-wrap.gap-3 span {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 640px) {
    h2.text-4xl.md\:text-6xl {
        font-size: 1.75rem !important;
    }

    /* Team photos even smaller on mobile */
    .w-96.h-96 {
        width: 14rem !important;
        height: 14rem !important;
    }

    h3.text-3xl {
        font-size: 1.5rem;
    }

    p.text-xl.font-semibold {
        font-size: 1rem;
    }

    p.text-lg {
        font-size: 0.9375rem;
    }

    /* Tech stack even smaller */
    .flex.flex-wrap.gap-3 {
        gap: 0.5rem;
    }

    .flex.flex-wrap.gap-3 span {
        font-size: 0.7rem;
        padding: 0.25rem 0.625rem;
    }
}

@media (max-width: 480px) {
    /* Very small phones */
    .w-96.h-96 {
        width: 12rem !important;
        height: 12rem !important;
    }

    h3.text-3xl {
        font-size: 1.375rem;
    }
}

/* Section Padding Mobile */
@media (max-width: 768px) {
    section.py-32 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    section.py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Client Logos */
@media (max-width: 768px) {
    .grid.grid-cols-3.md\:grid-cols-6 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .client-brand-img {
        height: 2rem !important;
    }
}

@media (max-width: 480px) {
    .grid.grid-cols-3.md\:grid-cols-6 {
        gap: 0.75rem;
    }

    .client-brand-img {
        height: 1.75rem !important;
    }
}

/* Buttons Mobile */
@media (max-width: 640px) {
    .premium-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    a.px-8.py-4 {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Cards and Glass Effects */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 640px) {
    .glass-card {
        padding: 1rem !important;
    }
}

/* Phone Mockup in Hero */
@media (max-width: 768px) {
    .w-64.h-\[500px\] {
        width: 12rem;
        height: 22rem;
    }
}

@media (max-width: 480px) {
    .w-64.h-\[500px\] {
        width: 10rem;
        height: 18rem;
    }
}

/* Floating Icons near phone */
@media (max-width: 768px) {
    .floating {
        width: 3rem;
        height: 3rem;
    }

    .floating svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* App Showcase & Portfolio Items */
@media (max-width: 768px) {
    .grid.grid-cols-1.lg\:grid-cols-2 {
        gap: 3rem;
    }
}

/* Contact buttons in team section - side by side, centered, narrower */
@media (max-width: 768px) {
    .flex.justify-center.gap-4 {
        display: flex !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }

    .flex.justify-center.gap-4 a {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: 45% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .flex.justify-center.gap-4 a div.flex {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .flex.justify-center.gap-4 a span {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .flex.justify-center.gap-4 a {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 48% !important;
    }

    .flex.justify-center.gap-4 a span {
        font-size: 0.8125rem !important;
    }

    .flex.justify-center.gap-4 a svg {
        width: 1rem !important;
        height: 1rem !important;
    }
}

@media (max-width: 360px) {
    .flex.justify-center.gap-4 {
        gap: 0.5rem !important;
    }

    .flex.justify-center.gap-4 a {
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important;
    }

    .flex.justify-center.gap-4 a span {
        font-size: 0.75rem !important;
    }
}

/* Generic text sizing for all sections */
@media (max-width: 640px) {
    .text-5xl {
        font-size: 2rem;
    }

    .text-4xl {
        font-size: 1.75rem;
    }

    .text-3xl {
        font-size: 1.5rem;
    }

    .text-2xl {
        font-size: 1.375rem;
    }

    .text-xl {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .text-5xl {
        font-size: 1.75rem;
    }

    .text-4xl {
        font-size: 1.5rem;
    }

    .text-3xl {
        font-size: 1.375rem;
    }

    .text-2xl {
        font-size: 1.25rem;
    }
}

/* Hero Section Specific - Premium Apps Title */
@media (max-width: 768px) {
    /* Target the main hero h1 specifically */
    section h1.text-5xl.md\:text-7xl {
        font-size: 2rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 640px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 1.75rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.5rem !important;
    }

    /* Glitch text smaller on mobile */
    .glitch-text {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 480px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.375rem !important;
    }

    .glitch-text {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 360px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 1.375rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.25rem !important;
    }

    .glitch-text {
        font-size: 1.375rem !important;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Hero section min-height adjustment */
    section.relative.flex.items-center {
        min-height: 100vh !important;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Reduce spacing between flex items */
    .flex.flex-wrap.gap-4 {
        gap: 0.75rem;
    }
}

/* Team member cards - prevent overflow */
@media (max-width: 768px) {
    /* Ensure team photos stay within bounds */
    .relative.group {
        max-width: 100%;
        overflow: visible;
    }

    /* Decorative elements smaller on mobile */
    .absolute.-top-10.-right-10,
    .absolute.bottom-0.-left-10,
    .absolute.-bottom-4.-left-4,
    .absolute.-bottom-4.-right-4,
    .absolute.-top-4.-right-8,
    .absolute.-top-4.-left-8 {
        transform: scale(0.7);
    }

    /* Status badges */
    .absolute.-top-2.-right-2,
    .absolute.-top-2.-left-2 {
        font-size: 0.7rem;
        padding: 0.375rem 0.625rem;
    }
}

/* Broken grid items on mobile */
@media (max-width: 1024px) {
    .broken-grid-item {
        width: 100%;
        max-width: 100%;
    }

    .lg\:ml-20 {
        margin-left: 0 !important;
    }
}

/* Organic shape background */
@media (max-width: 768px) {
    .organic-shape {
        padding: 2rem 1rem;
    }
}

/* Stats section mobile */
@media (max-width: 480px) {
    .grid.grid-cols-3.gap-8 {
        gap: 0.5rem;
    }

    .grid.grid-cols-3 > div {
        padding: 0.5rem;
    }
}

/* Animated background blobs - keep within bounds */
@media (max-width: 768px) {
    .absolute.top-20.left-10,
    .absolute.bottom-20.right-10,
    .absolute.top-1\/4.-left-20,
    .absolute.bottom-1\/4.-right-20,
    .absolute.top-1\/4.-left-32,
    .absolute.bottom-1\/4.-right-32 {
        width: 12rem;
        height: 12rem;
    }
}

/* Fix header overlap on mobile */
@media (max-width: 768px) {
    /* Adjust hero section to account for header */
    section.relative.flex.items-center.overflow-hidden {
        padding-top: 8rem !important;
        min-height: calc(100vh - 2rem) !important;
    }
}

@media (max-width: 640px) {
    section.relative.flex.items-center.overflow-hidden {
        padding-top: 7rem !important;
    }
}

@media (max-width: 480px) {
    section.relative.flex.items-center.overflow-hidden {
        padding-top: 6rem !important;
    }

    /* Reduce hero text margins */
    section h1 {
        margin-bottom: 1rem !important;
    }

    section p.text-xl {
        margin-bottom: 1.5rem !important;
    }
}

/* Mobile Header Height Optimization */
@media (max-width: 768px) {
    /* Top banner smaller on mobile */
    #top-banner {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 0.75rem;
    }

    #top-banner .banner-text {
        font-size: 0.75rem;
    }

    #top-banner a {
        padding: 0.375rem 0.75rem;
        font-size: 0.625rem;
    }

    /* Sticky nav smaller on mobile */
    #sticky-nav {
        top: 36px !important;
    }

    #sticky-nav .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    /* Logo smaller */
    #sticky-nav img {
        height: 2.5rem;
    }

    /* Spacer adjustment */
    .h-32 {
        height: 6rem !important;
    }
}

@media (max-width: 640px) {
    #top-banner {
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
    }

    #sticky-nav {
        top: 32px !important;
    }

    #sticky-nav .container {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }

    #sticky-nav img {
        height: 2.25rem;
    }

    .h-32 {
        height: 5rem !important;
    }

    /* Hero section adjustment for smaller header */
    section.relative.flex.items-center.overflow-hidden {
        padding-top: 5.5rem !important;
    }
}

@media (max-width: 480px) {
    #top-banner {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    #sticky-nav {
        top: 28px !important;
    }

    #sticky-nav .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #sticky-nav img {
        height: 2rem;
    }

    .h-32 {
        height: 4.5rem !important;
    }

    section.relative.flex.items-center.overflow-hidden {
        padding-top: 5rem !important;
    }
}

@media (max-width: 360px) {
    #sticky-nav img {
        height: 1.875rem;
    }

    .h-32 {
        height: 4rem !important;
    }

    section.relative.flex.items-center.overflow-hidden {
        padding-top: 4.5rem !important;
    }
}

/* Nav offcanvas header smaller on mobile */
@media (max-width: 768px) {
    .nav-offcanvas-header {
        padding: 1rem 1.5rem;
    }

    .nav-offcanvas-header img {
        height: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header {
        padding: 0.875rem 1rem;
    }

    .nav-offcanvas-header img {
        height: 1.875rem;
    }
}

/* Hero Title Size Adjustment - Make it bigger but still responsive */
@media (max-width: 768px) {
    /* Override previous smaller sizes with larger ones */
    section h1.text-5xl.md\:text-7xl {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 2.125rem !important;
    }

    .glitch-text {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 640px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 2.25rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.875rem !important;
    }

    .glitch-text {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 2rem !important;
        margin-bottom: 1.5rem;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.75rem !important;
    }

    .glitch-text {
        font-size: 1.875rem !important;
    }
}

@media (max-width: 360px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 1.75rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.5rem !important;
    }

    .glitch-text {
        font-size: 1.625rem !important;
    }
}

/* Hero Title - Even Bigger */
@media (max-width: 768px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 2.75rem !important;
        line-height: 1.1;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 2.375rem !important;
    }

    .glitch-text {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 640px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 2.5rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 2.125rem !important;
    }

    .glitch-text {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 480px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 2.25rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.875rem !important;
    }

    .glitch-text {
        font-size: 2rem !important;
    }
}

@media (max-width: 360px) {
    section h1.text-5xl.md\:text-7xl {
        font-size: 2rem !important;
    }

    section h1.text-5xl.md\:text-7xl .text-4xl.md\:text-6xl {
        font-size: 1.75rem !important;
    }

    .glitch-text {
        font-size: 1.875rem !important;
    }
}

/* ModernWeb Logo Bigger on Mobile */
@media (max-width: 768px) {
    #sticky-nav img {
        height: 3rem !important;
    }
}

@media (max-width: 640px) {
    #sticky-nav img {
        height: 2.75rem !important;
    }
}

@media (max-width: 480px) {
    #sticky-nav img {
        height: 2.5rem !important;
    }
}

@media (max-width: 360px) {
    #sticky-nav img {
        height: 2.25rem !important;
    }
}

/* Offcanvas logo also bigger */
@media (max-width: 768px) {
    .nav-offcanvas-header img {
        height: 2.5rem !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header img {
        height: 2.25rem !important;
    }
}

/* Reduce padding on mobile - sides, top and bottom */
@media (max-width: 768px) {
    /* Container horizontal padding - comfortable spacing from edges */
    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Section vertical padding smaller */
    section.py-32 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    section.py-16 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Hero section padding adjustment */
    section.relative.flex.items-center.overflow-hidden {
        padding-top: 5rem !important;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    section.py-32 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    section.py-16 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    section.relative.flex.items-center.overflow-hidden {
        padding-top: 4.5rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    section.py-32 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    section.py-16 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    section.relative.flex.items-center.overflow-hidden {
        padding-top: 4rem !important;
    }

    /* Hero title margins smaller */
    section h1 {
        margin-bottom: 1rem !important;
    }

    section p.text-xl {
        margin-bottom: 1.25rem !important;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 0.875rem !important;
        padding-right: 0.875rem !important;
    }

    section.py-32 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }
}

/* Team section specific padding adjustments */
@media (max-width: 768px) {
    .text-center.mb-20 {
        margin-bottom: 2.5rem !important;
    }

    /* More natural spacing between Mike and Kaja on mobile */
    .grid.gap-16 {
        gap: 4rem !important;
    }
}

@media (max-width: 640px) {
    .text-center.mb-20 {
        margin-bottom: 2rem !important;
    }

    /* More spacing between team members */
    .grid.gap-16 {
        gap: 3.5rem !important;
    }
}

@media (max-width: 480px) {
    .grid.gap-16 {
        gap: 3rem !important;
    }
}

/* Header padding adjustments - less padding on sides, top and bottom */
@media (max-width: 768px) {
    /* Top banner padding smaller */
    #top-banner {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    #top-banner .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    /* Sticky nav padding smaller */
    #sticky-nav .container {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

@media (max-width: 640px) {
    #top-banner {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    #top-banner .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    #sticky-nav .container {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    #top-banner {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        padding-left: 0.375rem !important;
        padding-right: 0.375rem !important;
    }

    #top-banner .container {
        padding-left: 0.375rem !important;
        padding-right: 0.375rem !important;
    }

    #sticky-nav .container {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        padding-left: 0.375rem !important;
        padding-right: 0.375rem !important;
    }
}

@media (max-width: 360px) {
    #top-banner {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    #top-banner .container {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    #sticky-nav .container {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
}

/* Google Review Widget Positioning - Bottom Left */
@media (max-width: 768px) {
    /* Find and position Google review widget */
    .absolute.bottom-20,
    .absolute.-bottom-10 {
        bottom: 1.5rem !important;
        left: 1rem !important;
        right: auto !important;
    }

    /* If there's a Google review badge/widget, position it bottom left */
    [class*="google"] img,
    img[alt*="Google"],
    img[src*="google"] {
        position: fixed !important;
        bottom: 1.5rem !important;
        left: 1rem !important;
        z-index: 40 !important;
    }
}

/* Chat widget stays bottom right */
@media (max-width: 768px) {
    /* Ensure chat button stays bottom right */
    #chatToggle,
    .chat-widget,
    [class*="chat"] {
        position: fixed !important;
        bottom: 1.5rem !important;
        right: 1rem !important;
        left: auto !important;
        z-index: 50 !important;
    }
}

/* Google review widget specific styling */
.google-review-widget,
[class*="review-badge"] {
    position: fixed !important;
    bottom: 1.5rem !important;
    left: 1rem !important;
    z-index: 40 !important;
}

@media (max-width: 640px) {
    .google-review-widget,
    [class*="review-badge"] {
        bottom: 1.25rem !important;
        left: 0.75rem !important;
    }

    #chatToggle,
    .chat-widget {
        bottom: 1.25rem !important;
        right: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .google-review-widget,
    [class*="review-badge"] {
        bottom: 1rem !important;
        left: 0.5rem !important;
        max-width: 120px !important;
        transform: scale(0.9);
    }

    #chatToggle,
    .chat-widget {
        bottom: 1rem !important;
        right: 0.5rem !important;
    }
}

/* Google Review Badge - Fixed Bottom Left */
.google-review-badge {
    position: fixed;
    bottom: 1.5rem;
    left: 1rem;
    z-index: 40;
    background: white;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.google-review-badge .google-logo {
    width: 1.5rem;
    height: 1.5rem;
}

.google-review-badge .rating {
    font-weight: 700;
    font-size: 1.125rem;
    color: #202124;
}

.google-review-badge .stars {
    color: #fbbc04;
    display: flex;
    gap: 0.125rem;
}

.google-review-badge .stars svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

@media (max-width: 640px) {
    .google-review-badge {
        bottom: 1.25rem;
        left: 0.75rem;
        padding: 0.625rem 0.875rem;
        border-radius: 0.875rem;
    }

    .google-review-badge .google-logo {
        width: 1.25rem;
        height: 1.25rem;
    }

    .google-review-badge .rating {
        font-size: 1rem;
    }

    .google-review-badge .stars svg {
        width: 0.875rem;
        height: 0.875rem;
    }
}

@media (max-width: 480px) {
    .google-review-badge {
        bottom: 1rem;
        left: 0.5rem;
        padding: 0.5rem 0.75rem;
        border-radius: 0.75rem;
        transform: scale(0.9);
    }
}

/* Google Review Badge - Force Bottom Left Position */
.reviews-toggle,
[class*="reviews-toggle"] {
    position: fixed !important;
    bottom: 1.5rem !important;
    left: 1rem !important;
    right: auto !important;
    top: auto !important;
    z-index: 40 !important;
}

/* Ensure chat widget stays bottom right */
#chatToggle,
.chat-toggle,
[id*="chat"],
[class*="chat-toggle"] {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 50 !important;
}

@media (max-width: 640px) {
    .reviews-toggle,
    [class*="reviews-toggle"] {
        bottom: 1.25rem !important;
        left: 0.75rem !important;
        transform: scale(0.95);
    }

    #chatToggle,
    .chat-toggle,
    [id*="chat"],
    [class*="chat-toggle"] {
        bottom: 1.25rem !important;
        right: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .reviews-toggle,
    [class*="reviews-toggle"] {
        bottom: 1rem !important;
        left: 0.5rem !important;
        transform: scale(0.9);
    }

    #chatToggle,
    .chat-toggle,
    [id*="chat"],
    [class*="chat-toggle"] {
        bottom: 1rem !important;
        right: 0.5rem !important;
    }
}

@media (max-width: 360px) {
    .reviews-toggle,
    [class*="reviews-toggle"] {
        bottom: 0.875rem !important;
        left: 0.375rem !important;
        transform: scale(0.85);
    }

    #chatToggle,
    .chat-toggle,
    [id*="chat"],
    [class*="chat-toggle"] {
        bottom: 0.875rem !important;
        right: 0.375rem !important;
    }
}

/* Hide banner on scroll and move header up - Mobile optimization */
@media (max-width: 768px) {
    /* When banner is hidden, move sticky nav to top */
    #sticky-nav.scrolled {
        top: 0 !important;
        transition: top 0.3s ease;
    }

    /* Smooth transition for banner */
    #top-banner {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hide banner when scrolled */
    #top-banner.hidden {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
}

/* Ensure smooth header transition */
#sticky-nav {
    transition: top 0.3s ease;
}

/* Remove gap when banner is hidden */
@media (max-width: 768px) {
    body.banner-hidden #sticky-nav {
        top: 0 !important;
    }
}

/* ModernWeb Logo Even Bigger on Mobile */
@media (max-width: 768px) {
    #sticky-nav img {
        height: 3.5rem !important;
    }
}

@media (max-width: 640px) {
    #sticky-nav img {
        height: 3.25rem !important;
    }
}

@media (max-width: 480px) {
    #sticky-nav img {
        height: 3rem !important;
    }
}

@media (max-width: 360px) {
    #sticky-nav img {
        height: 2.75rem !important;
    }
}

/* Offcanvas logo also bigger */
@media (max-width: 768px) {
    .nav-offcanvas-header img {
        height: 3rem !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header img {
        height: 2.75rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header img {
        height: 2.5rem !important;
    }
}

/* Fix offcanvas header to accommodate larger logo on mobile */
@media (max-width: 768px) {
    .nav-offcanvas-header {
        padding: 0.75rem 1.5rem !important;
    }

    /* Adjust close button size */
    .nav-offcanvas-close {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header {
        padding: 0.625rem 1rem !important;
    }

    .nav-offcanvas-close {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header {
        padding: 0.5rem 0.875rem !important;
    }

    .nav-offcanvas-close {
        width: 2rem;
        height: 2rem;
    }
}

/* Ensure offcanvas content and footer still fit properly */
@media (max-width: 768px) {
    .nav-offcanvas-content {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-offcanvas-footer {
        flex-shrink: 0;
    }
}

/* Force offcanvas to fit screen properly on mobile with larger logo */
@media (max-width: 768px) {
    .nav-offcanvas {
        height: 100vh !important;
        height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .nav-offcanvas-header {
        flex-shrink: 0 !important;
        padding: 0.625rem 1rem !important;
    }

    .nav-offcanvas-content {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 1rem !important;
        padding-bottom: 0 !important;
    }

    .nav-offcanvas-footer {
        flex-shrink: 0 !important;
        padding: 0.625rem !important;
        min-height: auto !important;
    }

    /* Make menu items more compact */
    .nav-offcanvas-menu {
        gap: 0.375rem !important;
        padding-bottom: 0.5rem !important;
    }

    .nav-offcanvas-link {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-accordion-trigger {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.5rem 0.75rem !important;
        padding-left: 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header {
        padding: 0.5rem 0.875rem !important;
    }

    .nav-offcanvas-content {
        padding: 0.875rem !important;
        padding-bottom: 0 !important;
    }

    .nav-offcanvas-footer {
        padding: 0.5rem !important;
    }

    .nav-offcanvas-link,
    .nav-offcanvas-accordion-trigger {
        padding: 0.5rem 0.625rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.375rem 0.625rem !important;
        padding-left: 1.25rem !important;
        font-size: 0.8125rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header {
        padding: 0.375rem 0.75rem !important;
    }

    .nav-offcanvas-content {
        padding: 0.75rem !important;
        padding-bottom: 0 !important;
    }

    .nav-offcanvas-footer {
        padding: 0.375rem 0.5rem !important;
    }
}

/* Make offcanvas logo smaller to fit everything better */
@media (max-width: 768px) {
    .nav-offcanvas-header img {
        height: 2.25rem !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header img {
        height: 2rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header img {
        height: 1.875rem !important;
    }
}

@media (max-width: 360px) {
    .nav-offcanvas-header img {
        height: 1.75rem !important;
    }
}

/* Make everything more compact in offcanvas */
@media (max-width: 768px) {
    .nav-offcanvas-header {
        padding: 0.5rem 1rem !important;
        min-height: auto !important;
    }

    .nav-offcanvas-close {
        width: 2rem !important;
        height: 2rem !important;
    }

    .nav-offcanvas-content {
        padding: 0.75rem !important;
        padding-bottom: 0 !important;
    }

    .nav-offcanvas-footer {
        padding: 0.5rem 0.75rem !important;
    }

    .nav-offcanvas-menu {
        gap: 0.25rem !important;
        padding-bottom: 0.375rem !important;
    }

    .nav-offcanvas-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-accordion-trigger {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-accordion-content {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.375rem 0.75rem !important;
        padding-left: 1.5rem !important;
        font-size: 0.8125rem !important;
    }

    /* Footer buttons smaller */
    .nav-offcanvas-footer .premium-button {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8125rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 44px !important;
        height: 44px !important;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header {
        padding: 0.375rem 0.875rem !important;
    }

    .nav-offcanvas-content {
        padding: 0.625rem !important;
        padding-bottom: 0 !important;
    }

    .nav-offcanvas-footer {
        padding: 0.375rem 0.625rem !important;
    }

    .nav-offcanvas-link,
    .nav-offcanvas-accordion-trigger {
        padding: 0.375rem 0.625rem !important;
        font-size: 0.8125rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.3125rem 0.625rem !important;
        padding-left: 1.25rem !important;
        font-size: 0.75rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 18px !important;
        height: 18px !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.375rem 0.625rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header {
        padding: 0.3125rem 0.75rem !important;
    }

    .nav-offcanvas-content {
        padding: 0.5rem !important;
        padding-bottom: 0 !important;
    }

    .nav-offcanvas-footer {
        padding: 0.3125rem 0.5rem !important;
    }

    .nav-offcanvas-close {
        width: 1.75rem !important;
        height: 1.75rem !important;
    }
}

/* Make offcanvas content bigger/more readable while keeping it compact */
@media (max-width: 768px) {
    .nav-offcanvas-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }

    .nav-offcanvas-accordion-trigger {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.625rem 1rem !important;
        padding-left: 2rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-menu {
        gap: 0.5rem !important;
    }

    /* Footer buttons bigger */
    .nav-offcanvas-footer .premium-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 48px !important;
        height: 48px !important;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-link,
    .nav-offcanvas-accordion-trigger {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.5rem 0.875rem !important;
        padding-left: 1.75rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 44px !important;
        height: 44px !important;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 20px !important;
        height: 20px !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-link,
    .nav-offcanvas-accordion-trigger {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.4375rem 0.75rem !important;
        padding-left: 1.5rem !important;
        font-size: 0.8125rem !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8125rem !important;
    }
}

/* Make offcanvas logo bigger */
@media (max-width: 768px) {
    .nav-offcanvas-header img {
        height: 2.75rem !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header img {
        height: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header img {
        height: 2.25rem !important;
    }
}

@media (max-width: 360px) {
    .nav-offcanvas-header img {
        height: 2rem !important;
    }
}

/* Make menu items bigger */
@media (max-width: 768px) {
    .nav-offcanvas-link {
        padding: 0.875rem 1.125rem !important;
        font-size: 1.0625rem !important;
    }

    .nav-offcanvas-accordion-trigger {
        padding: 0.875rem 1.125rem !important;
        font-size: 1.0625rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.75rem 1.125rem !important;
        padding-left: 2.25rem !important;
        font-size: 1rem !important;
    }

    .nav-offcanvas-menu {
        gap: 0.625rem !important;
    }

    /* Footer buttons bigger */
    .nav-offcanvas-footer .premium-button {
        padding: 0.875rem 1.125rem !important;
        font-size: 1rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 52px !important;
        height: 52px !important;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-link,
    .nav-offcanvas-accordion-trigger {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.625rem 1rem !important;
        padding-left: 2rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 48px !important;
        height: 48px !important;
    }

    .nav-offcanvas-theme-toggle svg {
        width: 22px !important;
        height: 22px !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.9375rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-link,
    .nav-offcanvas-accordion-trigger {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.9375rem !important;
    }

    .nav-offcanvas-sublink {
        padding: 0.5rem 0.875rem !important;
        padding-left: 1.75rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-footer .premium-button {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.875rem !important;
    }

    .nav-offcanvas-theme-toggle {
        width: 44px !important;
        height: 44px !important;
    }
}

/* Make offcanvas logo much bigger */
@media (max-width: 768px) {
    .nav-offcanvas-header img {
        height: 3.5rem !important;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas-header img {
        height: 3.25rem !important;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas-header img {
        height: 3rem !important;
    }
}

@media (max-width: 360px) {
    .nav-offcanvas-header img {
        height: 2.75rem !important;
    }
}

/* Add purple banner above offcanvas header */
.nav-offcanvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    z-index: 1;
    flex-shrink: 0;
}

/* Adjust offcanvas header to account for banner */
@media (max-width: 768px) {
    .nav-offcanvas-header {
        margin-top: 36px;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 640px) {
    .nav-offcanvas::before {
        height: 32px;
    }

    .nav-offcanvas-header {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas::before {
        height: 28px;
    }

    .nav-offcanvas-header {
        margin-top: 28px;
    }
}

/* Add some text or icon to the banner if needed */
.nav-offcanvas::after {
    content: 'Menu';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 2;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .nav-offcanvas::after {
        height: 32px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .nav-offcanvas::after {
        height: 28px;
        font-size: 0.75rem;
    }
}

/* Remove purple banner from offcanvas */
.nav-offcanvas::before {
    display: none !important;
}

.nav-offcanvas::after {
    display: none !important;
}

/* Reset header margin */
@media (max-width: 768px) {
    .nav-offcanvas-header {
        margin-top: 0 !important;
    }
}

/* FAQ Section - Better proportion between Q icons and titles */
/* Make Q icons bigger and titles smaller for better balance */
.glass-card h3.text-xl.font-bold.mb-4.flex.items-center .w-8.h-8 {
    width: 3rem !important;
    height: 3rem !important;
    min-width: 3rem !important;
}

.glass-card h3.text-xl.font-bold.mb-4.flex.items-center {
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    /* On mobile: slightly smaller Q icons but still bigger than before */
    .glass-card h3.text-xl.font-bold.mb-4.flex.items-center .w-8.h-8 {
        width: 2.75rem !important;
        height: 2.75rem !important;
        min-width: 2.75rem !important;
    }

    .glass-card h3.text-xl.font-bold.mb-4.flex.items-center {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 640px) {
    .glass-card h3.text-xl.font-bold.mb-4.flex.items-center .w-8.h-8 {
        width: 2.5rem !important;
        height: 2.5rem !important;
        min-width: 2.5rem !important;
    }

    .glass-card h3.text-xl.font-bold.mb-4.flex.items-center {
        font-size: 0.9375rem !important;
    }
}

@media (max-width: 480px) {
    .glass-card h3.text-xl.font-bold.mb-4.flex.items-center .w-8.h-8 {
        width: 2.25rem !important;
        height: 2.25rem !important;
        min-width: 2.25rem !important;
    }

    .glass-card h3.text-xl.font-bold.mb-4.flex.items-center {
        font-size: 0.875rem !important;
    }
}

/* Hero Phone Mockup and Floating Cards - Mobile Optimization */
@media (max-width: 768px) {
    /* Allow glow to extend beyond hero section - prevent cutoff */
    section.relative.flex.items-center.overflow-hidden {
        overflow: visible !important;
        padding-bottom: 6rem !important;
        margin-bottom: -3rem !important;
    }

    /* Ensure next section doesn't cover the glow */
    section.py-16.relative {
        position: relative !important;
        z-index: 1 !important;
    }

    /* Make phone smaller on mobile */
    .w-64.h-\[500px\] {
        width: 14rem !important;
        height: 400px !important;
    }

    /* Adjust floating cards to stay within screen bounds */
    .absolute.-top-10.-right-10 {
        top: -0.5rem !important;
        right: 0.5rem !important;
    }

    .absolute.bottom-0.-left-10 {
        bottom: 0.5rem !important;
        left: 0.5rem !important;
    }

    /* Make floating cards smaller on mobile */
    .absolute.-top-10.-right-10.w-20.h-20 {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }

    .absolute.bottom-0.-left-10.w-16.h-16 {
        width: 3rem !important;
        height: 3rem !important;
    }

    /* Scale down icons in floating cards */
    .absolute.-top-10.-right-10 svg {
        width: 1.75rem !important;
        height: 1.75rem !important;
    }

    .absolute.bottom-0.-left-10 svg {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    /* Ensure organic shape container fits well */
    .organic-shape {
        padding: 1.5rem !important;
    }
}

@media (max-width: 640px) {
    /* Even smaller phone on small mobile */
    .w-64.h-\[500px\] {
        width: 12rem !important;
        height: 350px !important;
    }

    /* Tighter positioning for floating cards */
    .absolute.-top-10.-right-10 {
        top: 0rem !important;
        right: 0.25rem !important;
    }

    .absolute.bottom-0.-left-10 {
        bottom: 0.25rem !important;
        left: 0.25rem !important;
    }

    /* Smaller floating cards */
    .absolute.-top-10.-right-10.w-20.h-20 {
        width: 3rem !important;
        height: 3rem !important;
    }

    .absolute.bottom-0.-left-10.w-16.h-16 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    /* Smaller icons */
    .absolute.-top-10.-right-10 svg {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    .absolute.bottom-0.-left-10 svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    .organic-shape {
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Compact phone for very small screens */
    .w-64.h-\[500px\] {
        width: 10rem !important;
        height: 300px !important;
    }

    /* Keep cards well within bounds */
    .absolute.-top-10.-right-10.w-20.h-20 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .absolute.bottom-0.-left-10.w-16.h-16 {
        width: 2rem !important;
        height: 2rem !important;
    }

    .absolute.-top-10.-right-10 svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    .absolute.bottom-0.-left-10 svg {
        width: 1rem !important;
        height: 1rem !important;
    }
}

/* CTA Buttons Side by Side on Mobile */
@media (max-width: 640px) {
    /* Make buttons horizontal on mobile for CTA sections */
    .flex.flex-col.sm\:flex-row.gap-4.justify-center {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    /* Make buttons smaller to fit side by side */
    .flex.flex-col.sm\:flex-row.gap-4.justify-center a {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
        flex: 1 1 0 !important;
    }

    .flex.flex-col.sm\:flex-row.gap-4.justify-center a svg {
        width: 1rem !important;
        height: 1rem !important;
    }
}

@media (max-width: 480px) {
    .flex.flex-col.sm\:flex-row.gap-4.justify-center {
        gap: 0.5rem !important;
    }

    .flex.flex-col.sm\:flex-row.gap-4.justify-center a {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        font-size: 0.8125rem !important;
    }
}

@media (max-width: 360px) {
    .flex.flex-col.sm\:flex-row.gap-4.justify-center a {
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important;
        font-size: 0.75rem !important;
    }

    .flex.flex-col.sm\:flex-row.gap-4.justify-center a svg {
        width: 0.875rem !important;
        height: 0.875rem !important;
    }
}

/* Light Mode - Keep Icons and Text WHITE in Colored Backgrounds */
[data-theme="light"] {
    /* Icons in gradient backgrounds - keep white */
    .bg-gradient-to-br svg,
    .w-16.h-16.bg-gradient-to-br svg,
    .w-14.h-14.bg-gradient-to-br svg {
        color: white !important;
    }

    /* Purple icons in hero section - keep white in light mode */
    .text-purple-500 {
        color: white !important;
    }

    /* Review circles - keep letters WHITE */
    .bg-purple-600 span,
    .bg-green-600 span,
    .bg-blue-600 span,
    .bg-orange-600 span,
    .bg-teal-600 span,
    .bg-indigo-600 span {
        color: white !important;
    }

    /* FAQ Q letters - keep WHITE in colored circles */
    .bg-gradient-to-br.from-blue-500 span,
    .bg-gradient-to-br.from-emerald-500 span,
    .bg-gradient-to-br.from-purple-500 span,
    .bg-gradient-to-br.from-orange-500 span,
    .bg-gradient-to-br.from-indigo-500 span,
    .bg-gradient-to-br.from-red-500 span,
    .bg-gradient-to-br.from-cyan-500 span,
    .bg-gradient-to-br.from-green-500 span {
        color: white !important;
    }

    /* All gradient backgrounds with icons - force white */
    [class*="bg-gradient-to-br"] svg {
        color: white !important;
    }

    /* Specific icon containers */
    .rounded-2xl.bg-gradient-to-br svg,
    .rounded-xl.bg-gradient-to-br svg {
        color: white !important;
    }
}

/* ons-team.php Mobile Optimizations */
/* Hero Banner Section */
@media (max-width: 768px) {
    /* Hero title */
    header.relative.pt-32.pb-24 h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    /* Hero subtitle */
    header.relative.pt-32.pb-24 p.text-xl {
        font-size: 1.125rem !important;
        line-height: 1.6 !important;
    }

    /* Stats grid - 2 columns on mobile */
    header.relative.pt-32.pb-24 .grid.grid-cols-2.md\:grid-cols-4 {
        gap: 1.5rem !important;
    }

    header.relative.pt-32.pb-24 .grid.grid-cols-2.md\:grid-cols-4 .text-4xl {
        font-size: 2rem !important;
    }
}

@media (max-width: 640px) {
    header.relative.pt-32.pb-24 h1 {
        font-size: 2rem !important;
    }

    header.relative.pt-32.pb-24 p.text-xl {
        font-size: 1rem !important;
    }

    header.relative.pt-32.pb-24 .grid.grid-cols-2.md\:grid-cols-4 {
        gap: 1rem !important;
    }

    header.relative.pt-32.pb-24 .grid.grid-cols-2.md\:grid-cols-4 .text-4xl {
        font-size: 1.75rem !important;
    }
}

/* Founders Section - Profile Photos */
@media (max-width: 1024px) {
    /* Stack profiles vertically on tablet */
    section .grid.grid-cols-1.lg\:grid-cols-2.gap-16 {
        gap: 3rem !important;
    }

    /* Profile photo size */
    section .w-96.h-96 {
        width: 20rem !important;
        height: 20rem !important;
    }
}

@media (max-width: 768px) {
    /* Smaller profile photos on mobile */
    section .w-96.h-96 {
        width: 16rem !important;
        height: 16rem !important;
    }

    /* Profile names */
    section .text-3xl.font-bold {
        font-size: 1.75rem !important;
    }

    /* Role titles */
    section .text-xl.font-semibold {
        font-size: 1.125rem !important;
    }

    /* Description text */
    section .text-gray-300.leading-relaxed.text-lg {
        font-size: 1rem !important;
    }

    /* Tech stack badges */
    section .flex.flex-wrap.justify-center.gap-3 span {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
    }

    /* Contact buttons side by side */
    section .flex.justify-center.gap-4 {
        display: flex !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }

    section .flex.justify-center.gap-4 a {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: 48% !important;
        padding: 0.625rem 1.25rem !important;
    }

    section .flex.justify-center.gap-4 a span {
        font-size: 0.875rem !important;
    }

    /* Section titles */
    section h2.text-4xl.md\:text-6xl {
        font-size: 2rem !important;
    }

    section h2.text-4xl.md\:text-5xl {
        font-size: 1.875rem !important;
    }

    /* Section descriptions */
    section p.text-xl.text-gray-400 {
        font-size: 1rem !important;
    }
}

@media (max-width: 640px) {
    /* Even smaller on small mobile */
    section .w-96.h-96 {
        width: 14rem !important;
        height: 14rem !important;
    }

    section .text-3xl.font-bold {
        font-size: 1.5rem !important;
    }

    section .text-xl.font-semibold {
        font-size: 1rem !important;
    }

    section h2.text-4xl.md\:text-6xl {
        font-size: 1.75rem !important;
    }

    section h2.text-4xl.md\:text-5xl {
        font-size: 1.625rem !important;
    }
}

@media (max-width: 480px) {
    section .w-96.h-96 {
        width: 12rem !important;
        height: 12rem !important;
    }

    /* Smaller badges */
    section .absolute.-top-2.-right-2,
    section .absolute.-top-2.-left-2 {
        padding: 0.25rem 0.625rem !important;
    }

    section .absolute.-top-2.-right-2 span,
    section .absolute.-top-2.-left-2 span {
        font-size: 0.625rem !important;
    }
}

/* Our Story Section */
@media (max-width: 768px) {
    /* Story title */
    section .broken-grid-item h2 {
        font-size: 1.875rem !important;
    }

    /* Story description */
    section .broken-grid-item p.text-xl {
        font-size: 1rem !important;
    }

    /* Story items */
    section .flex.items-start.space-x-4 .w-12.h-12 {
        width: 2.5rem !important;
        height: 2.5rem !important;
        min-width: 2.5rem !important;
    }

    section .flex.items-start.space-x-4 .w-12.h-12 svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    section .flex.items-start.space-x-4 h3.text-xl {
        font-size: 1rem !important;
    }

    section .flex.items-start.space-x-4 p.text-gray-400 {
        font-size: 0.875rem !important;
    }

    /* Story buttons */
    section .flex.flex-wrap.gap-4 a {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }

    /* Team photo */
    section img.w-full.h-80 {
        height: 16rem !important;
    }

    /* Floating stats */
    section .glass-card.p-4 {
        padding: 0.75rem !important;
    }

    section .glass-card.p-4 .text-2xl {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 640px) {
    section .broken-grid-item h2 {
        font-size: 1.625rem !important;
    }

    section img.w-full.h-80 {
        height: 14rem !important;
    }
}

/* What We Do Section */
@media (max-width: 768px) {
    /* Service cards */
    section .glass-card.p-8 {
        padding: 1.5rem !important;
    }

    section .glass-card.p-8 .w-20.h-20 {
        width: 4rem !important;
        height: 4rem !important;
        margin-bottom: 1rem !important;
    }

    section .glass-card.p-8 .w-20.h-20 svg {
        width: 2rem !important;
        height: 2rem !important;
    }

    section .glass-card.p-8 h3.text-xl {
        font-size: 1.125rem !important;
        margin-bottom: 0.75rem !important;
    }

    section .glass-card.p-8 p.text-sm {
        font-size: 0.875rem !important;
    }
}

/* Why Choose Us Section */
@media (max-width: 768px) {
    /* Value cards */
    section .text-center .w-20.h-20 {
        width: 4rem !important;
        height: 4rem !important;
        margin-bottom: 1rem !important;
    }

    section .text-center .w-20.h-20 svg {
        width: 2rem !important;
        height: 2rem !important;
    }

    section .text-center h3.text-xl {
        font-size: 1.125rem !important;
        margin-bottom: 0.75rem !important;
    }

    section .text-center p.text-sm {
        font-size: 0.875rem !important;
    }
}

/* Contact CTA Section */
@media (max-width: 768px) {
    /* CTA card */
    section .glass-card.p-12 {
        padding: 2rem !important;
    }

    section .glass-card h2 {
        font-size: 1.875rem !important;
    }

    section .glass-card p.text-xl {
        font-size: 1rem !important;
    }

    /* Contact info grid */
    section .grid.grid-cols-1.md\:grid-cols-3.gap-8 {
        gap: 1.5rem !important;
    }
}

@media (max-width: 640px) {
    /* CTA buttons side by side */
    section .flex.flex-col.sm\:flex-row.gap-4 {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    section .flex.flex-col.sm\:flex-row.gap-4 a {
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
        flex: 1 1 0 !important;
    }

    section .glass-card.p-12 {
        padding: 1.5rem !important;
    }

    section .glass-card h2 {
        font-size: 1.625rem !important;
    }
}
