        :root {
            --primary: #3b6cb5;
            --primary-dark: #2d5a9e;
            --primary-light: #5a8fd4;
            --accent: #f59e0b;
            --accent-light: #fbbf24;
            --text-dark: #0f172a;
            --text-medium: #475569;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --success: #10b981;
            --gradient-start: #eff6ff;
            --gradient-end: #dbeafe;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            /* Wylacz standardowe ligatury fi/fl/ff — niecharakterystyczne dla polskiej typografii */
            font-variant-ligatures: no-common-ligatures;
            font-feature-settings: "liga" 0, "clig" 0;
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(-2deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

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

        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-slide-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.1s; opacity: 0; }
        .delay-2 { animation-delay: 0.2s; opacity: 0; }
        .delay-3 { animation-delay: 0.3s; opacity: 0; }
        .delay-4 { animation-delay: 0.4s; opacity: 0; }
        .delay-5 { animation-delay: 0.5s; opacity: 0; }

        /* ==================== NAVIGATION ==================== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(59, 108, 181, 0.1);
            transition: all 0.2s ease;
        }

        nav.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.5rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--text-dark);
            flex-shrink: 0;
        }

        .logo-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon .logo-img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .footer-logo-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-icon .logo-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .logo-text span {
            color: var(--primary);
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-medium);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.2s ease;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white !important;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(59, 108, 181, 0.3);
            transition: all 0.2s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(59, 108, 181, 0.4);
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--text-dark);
            margin: 5px 0;
            border-radius: 2px;
            transition: all 0.2s ease;
        }

        /* Mobile menu open state */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-links.mobile-open {
            display: flex !important;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 0.5rem 1rem;
            gap: 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-top: 1px solid rgba(59, 108, 181, 0.1);
            z-index: 1001;
        }

        .nav-links.mobile-open li {
            border-bottom: 1px solid #e2e8f0;
        }

        .nav-links.mobile-open li:last-child {
            border-bottom: none;
        }

        .nav-links.mobile-open a {
            display: block;
            padding: 0.75rem 0;
            font-size: 1rem;
        }

        .nav-links.mobile-open .nav-cta {
            margin-top: 1rem;
            text-align: center;
        }

        /* ==================== SCROLL TO TOP ==================== */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(59, 108, 181, 0.35);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 9999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(59, 108, 181, 0.5);
        }

        /* ==================== LANGUAGE SWITCHER ==================== */
        .lang-switch {
            position: relative;
            flex-shrink: 0;
        }

        .lang-current {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.3rem 0.6rem;
            background: rgba(59, 108, 181, 0.06);
            border: 2px solid rgba(59, 108, 181, 0.15);
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.2s ease;
            user-select: none;
        }

        .lang-current:hover {
            border-color: var(--primary);
            background: rgba(59, 108, 181, 0.1);
        }

        .lang-current svg {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
        }

        .lang-current::after {
            content: '▾';
            font-size: 0.65rem;
            margin-left: 0.1rem;
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            border: 1px solid rgba(0,0,0,0.08);
            overflow: hidden;
            z-index: 1002;
        }

        .lang-dropdown.open {
            display: block;
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.75rem;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: background 0.2s ease;
            white-space: nowrap;
        }

        .lang-option:hover {
            background: rgba(59, 108, 181, 0.08);
        }

        .lang-option.active {
            background: rgba(59, 108, 181, 0.1);
            color: var(--primary);
        }

        .lang-option svg {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--bg-white) 50%, var(--gradient-end) 100%);
            background-size: 200% 200%;
            animation: gradientMove 15s ease infinite;
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem 4rem;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(59, 108, 181, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Floating parking icons background */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 2s; }
        .floating-icon:nth-child(4) { top: 60%; right: 8%; animation-delay: 3s; }
        .floating-icon:nth-child(5) { bottom: 15%; right: 25%; animation-delay: 4s; }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(59, 108, 181, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(59, 108, 181, 0.2);
        }

        .hero-badge::before {
            content: '🏘️';
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-medium);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-top: 0.25rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(59, 108, 181, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(59, 108, 181, 0.45);
        }

        .btn-secondary {
            background: white;
            color: var(--text-dark);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
        }

        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
        }

        /* Phone mockup */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            position: relative;
            width: 300px;
            height: 620px;
            background: linear-gradient(145deg, #0c2340 0%, #153e75 100%);
            border-radius: 45px;
            padding: 12px;
            box-shadow: 
                0 50px 100px rgba(0, 0, 0, 0.25),
                0 25px 50px rgba(0, 0, 0, 0.15),
                inset 0 -2px 5px rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: var(--bg-white);
            border-radius: 35px;
            overflow: hidden;
            position: relative;
        }

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

        .phone-content {
            padding: 40px 15px 15px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 120px, var(--bg-light) 120px);
        }

        .app-header {
            color: white;
            text-align: center;
            padding-bottom: 15px;
        }

        .app-title {
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.9;
        }

        .app-location {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .app-card {
            background: white;
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .app-card-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .app-spot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 8px;
        }

        .app-spot-name {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .app-spot-time {
            font-size: 0.7rem;
            color: var(--text-light);
        }

        .app-spot-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .app-status {
            font-size: 0.65rem;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .status-free {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
        }

        /* Floating elements around phone */
        .float-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 1rem 1.25rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 5s ease-in-out infinite;
        }

        .float-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .float-card-text {
            font-size: 0.8rem;
        }

        .float-card-title {
            font-weight: 700;
            color: var(--text-dark);
        }

        .float-card-subtitle {
            color: var(--text-light);
            font-size: 0.7rem;
        }

        .float-card-1 {
            top: 10%;
            right: -20px;
            animation-delay: 1s;
        }

        .float-card-1 .float-card-icon {
            background: rgba(16, 185, 129, 0.15);
        }

        .float-card-2 {
            bottom: 25%;
            left: -30px;
            animation-delay: 2s;
        }

        .float-card-2 .float-card-icon {
            background: rgba(245, 158, 11, 0.15);
        }

        .float-card-3 {
            bottom: 5%;
            right: 0;
            animation-delay: 0.5s;
        }

        .float-card-3 .float-card-icon {
            background: rgba(59, 108, 181, 0.15);
        }

        /* ==================== PROBLEM SECTION ==================== */
        .problem-section {
            padding: 6rem 2rem;
            background: var(--bg-white);
            position: relative;
        }

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

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

        .section-label {
            display: inline-block;
            background: rgba(59, 108, 181, 0.1);
            color: var(--primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .problem-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(239, 68, 68, 0.1);
            transition: transform 0.2s ease;
        }

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

        .problem-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .problem-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .problem-desc {
            color: var(--text-medium);
            font-size: 0.95rem;
        }

        .solution-card {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border: 1px solid rgba(59, 108, 181, 0.2);
        }

        /* ==================== FEATURES SECTION ==================== */
        .features-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(59, 108, 181, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(59, 108, 181, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            transition: all 0.25s ease;
        }

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

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .feature-desc {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ==================== COMMUNITY SECTION ==================== */
        .community-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
            position: relative;
        }

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

        .community-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.2s ease;
        }

        .community-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .community-card-wide {
            grid-column: span 2;
        }

        .community-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .community-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(59, 108, 181, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
        }

        .community-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .community-desc {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Ranks showcase */
        .ranks-showcase {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .rank-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.25rem;
            background: var(--bg-light);
            border-radius: 16px;
            transition: all 0.2s ease;
        }

        .rank-item:hover {
            transform: scale(1.05);
        }

        .rank-badge {
            font-size: 2rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .rank-1 { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
        .rank-2 { background: linear-gradient(135deg, #bfdbfe 0%, #a3cce8 100%); }
        .rank-3 { background: linear-gradient(135deg, #a3cce8 0%, #7ab3de 100%); }
        .rank-4 { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
        .rank-5 { background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%); box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }

        .rank-name {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-medium);
            text-align: center;
        }

        /* Alert examples */
        .alert-examples {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .alert-example {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: var(--bg-light);
            border-radius: 12px;
            font-size: 0.9rem;
            color: var(--text-dark);
            border-left: 3px solid var(--primary);
        }

        .alert-icon {
            font-size: 1.25rem;
        }

        /* Push notification demo */
        .push-demo {
            margin-top: 0.5rem;
        }

        .push-notification {
            background: #0c2340;
            border-radius: 16px;
            padding: 1rem;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .push-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .push-app {
            font-size: 0.75rem;
            font-weight: 600;
            opacity: 0.8;
        }

        .push-time {
            font-size: 0.7rem;
            opacity: 0.6;
        }

        .push-title {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .push-body {
            font-size: 0.85rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* ==================== REQUESTS SECTION ==================== */
        .requests-section {
            padding: 6rem 2rem;
            background: var(--bg-white);
        }

        .requests-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .request-type-card {
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            border-radius: 20px;
            padding: 1.75rem 1.25rem;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.2s ease;
            cursor: default;
        }

        .request-type-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(59, 108, 181, 0.15);
        }

        .request-type-card:nth-child(1):hover { border-color: #3b6cb5; }
        .request-type-card:nth-child(2):hover { border-color: #3b6cb5; }
        .request-type-card:nth-child(3):hover { border-color: #5a8fd4; }
        .request-type-card:nth-child(4):hover { border-color: #f59e0b; }
        .request-type-card:nth-child(5):hover { border-color: #5a8fd4; }

        .request-type-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .request-type-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .request-type-desc {
            font-size: 0.85rem;
            color: var(--text-medium);
            line-height: 1.5;
        }

        .requests-cta {
            text-align: center;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, rgba(59, 108, 181, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
            border-radius: 16px;
            color: var(--text-medium);
            font-size: 1.1rem;
        }

        .requests-cta strong {
            color: var(--text-dark);
        }

        /* ==================== HOW IT WORKS ==================== */
        .how-section {
            padding: 6rem 2rem;
            background: var(--bg-white);
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Mono', monospace;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 10px 30px rgba(59, 108, 181, 0.35);
            transition: all 0.2s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(59, 108, 181, 0.45);
        }

        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .step-desc {
            color: var(--text-medium);
            font-size: 0.95rem;
            max-width: 250px;
            margin: 0 auto;
        }

        /* ==================== FOR MANAGERS SECTION ==================== */
        .managers-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #1e3a5f 0%, #1a365d 50%, #153e75 100%);
            position: relative;
            overflow: hidden;
        }

        .managers-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .managers-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .managers-content {
            color: white;
        }

        .managers-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .managers-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .managers-desc {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .managers-benefits {
            list-style: none;
        }

        .managers-benefits li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .managers-benefits li::before {
            content: '✓';
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            flex-shrink: 0;
        }

        .managers-visual {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .manager-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 1.75rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease;
        }

        .manager-card:hover {
            transform: translateX(10px);
        }

        .manager-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(59, 108, 181, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            flex-shrink: 0;
        }

        .manager-card-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .manager-card-desc {
            font-size: 0.875rem;
            color: var(--text-medium);
        }

        /* ==================== VOTING HIGHLIGHT (within managers) ==================== */
        .voting-highlight {
            max-width: 1200px;
            margin: 4rem auto 0;
            position: relative;
            z-index: 1;
        }

        .voting-highlight-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .voting-highlight-badge {
            display: inline-block;
            background: rgba(72, 187, 120, 0.25);
            color: #68d391;
            padding: 0.4rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(72, 187, 120, 0.3);
        }

        .voting-highlight-title {
            color: white;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            margin-bottom: 0.75rem;
        }

        .voting-highlight-subtitle {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .voting-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .voting-feature-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 1.75rem;
            backdrop-filter: blur(10px);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .voting-feature-card:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-4px);
        }

        .voting-feature-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .voting-feature-title {
            color: white;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .voting-feature-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .voting-methods-row {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .voting-method-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 0.6rem 1.25rem;
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
            transition: background 0.2s ease;
        }

        .voting-method-pill:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        .voting-method-pill .pill-icon {
            font-size: 1.1rem;
        }

        .voting-legal-note {
            text-align: center;
            margin-top: 2rem;
            padding: 1rem 1.5rem;
            background: rgba(72, 187, 120, 0.1);
            border: 1px solid rgba(72, 187, 120, 0.2);
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .voting-legal-note strong {
            color: #68d391;
        }

        /* ==================== VIDEO SECTION ==================== */
        /* ==================== MULTIMEDIA SECTION ==================== */
        .media-section {
            padding: 6rem 2rem;
            background: var(--bg-light);
        }

        .media-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .media-tab {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .media-tab.active {
            background: var(--primary);
            color: white;
        }

        .media-tab:hover:not(.active) {
            background: rgba(59, 108, 181, 0.1);
        }

        .media-group {
            display: none;
        }

        .media-group.active {
            display: block;
        }

        .media-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .media-grid.single {
            grid-template-columns: 1fr;
            max-width: 700px;
        }

        .media-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .media-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .media-card-header {
            padding: 1.25rem 1.5rem;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .media-card-lang {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--primary);
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .media-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .media-card-body {
            padding: 1.5rem;
        }

        .media-card-body iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 12px;
        }

        .media-card-body img {
            width: 100%;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .media-card-body img:hover {
            transform: scale(1.02);
        }

        .media-card-body audio {
            width: 100%;
            margin-top: 0.5rem;
        }

        .media-card-body video {
            width: 100%;
            border-radius: 12px;
            background: #000;
        }

        .media-card-desc {
            font-size: 0.9rem;
            color: var(--text-medium);
            margin-top: 0.75rem;
            line-height: 1.6;
        }

        .media-download {
            display: inline-block;
            margin-top: 0.75rem;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .media-download:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Lightbox for infographics */
        .lightbox-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10001;
            cursor: pointer;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-overlay img {
            max-width: 95%;
            max-height: 95vh;
            object-fit: contain;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            background: none;
            border: none;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 10002;
            line-height: 1;
        }

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

            .media-card-body iframe {
                height: 280px;
            }

            .media-tabs {
                flex-wrap: wrap;
            }
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--bg-white);
        }

        .cta-box {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-radius: 32px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(59, 108, 181, 0.1);
        }

        .cta-box::before {
            content: '🅿️';
            position: absolute;
            font-size: 15rem;
            opacity: 0.05;
            top: -20%;
            right: -5%;
            pointer-events: none;
        }

        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .cta-desc {
            font-size: 1.125rem;
            color: var(--text-medium);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

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

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: white;
        }

        .footer-logo-text span {
            color: var(--primary-light);
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            gap: 4rem;
        }

        .footer-column h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: white;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-stats {
                justify-content: center;
            }

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

            .hero-visual {
                margin-top: 3rem;
            }

            .float-card {
                display: none;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .managers-container {
                grid-template-columns: 1fr;
            }

            .managers-content {
                text-align: center;
            }

            .managers-benefits {
                display: inline-block;
                text-align: left;
            }

            .voting-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .community-card-wide {
                grid-column: span 1;
            }

            .requests-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0.5rem 0.75rem;
                flex-wrap: nowrap;
                gap: 0.5rem;
            }

            .logo {
                order: 1;
                gap: 0.4rem;
                flex: 1;
                min-width: 0;
            }

            .nav-links {
                display: none;
                order: 4;
            }

            .lang-switch {
                order: 2;
                margin-left: auto;
                flex-shrink: 0;
            }

            .lang-current {
                padding: 0.15rem 0.35rem;
                font-size: 0.65rem;
                gap: 0.2rem;
                border-width: 1px;
                border-radius: 6px;
            }

            .lang-current svg {
                width: 14px;
                height: 10px;
            }

            .lang-current::after {
                font-size: 0.5rem;
                margin-left: 0;
            }

            .mobile-menu-btn {
                display: block;
                order: 3;
                margin-left: 0.3rem;
                padding: 0.3rem;
                flex-shrink: 0;
            }

            .logo-icon {
                width: 64px;
                height: 64px;
            }

            .logo-icon .logo-img {
                width: 64px;
                height: 64px;
            }

            .logo-text {
                font-size: 1.5rem;
            }

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

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

            .voting-features-grid {
                grid-template-columns: 1fr;
            }

            .voting-methods-row {
                gap: 0.75rem;
            }

            .voting-method-pill {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }

            .steps-container {
                flex-direction: column;
                align-items: center;
            }

            .steps-container::before {
                display: none;
            }

            .step {
                max-width: 300px;
            }

            .cta-box {
                padding: 2.5rem 1.5rem;
            }

            .footer-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .requests-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ranks-showcase {
                gap: 0.75rem;
            }

            .rank-item {
                padding: 0.75rem 1rem;
            }

            .rank-badge {
                font-size: 1.5rem;
                width: 50px;
                height: 50px;
            }

            .rank-name {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .phone-mockup {
                width: 260px;
                height: 540px;
            }

            .hero-stats {
                flex-direction: row;
                gap: 0.75rem;
            }
            
            .stat-item {
                padding: 0.5rem 0.75rem;
            }
            
            .stat-number {
                font-size: 1.25rem;
            }
            
            .stat-label {
                font-size: 0.65rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

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

            .request-type-card {
                padding: 1.25rem 1rem;
            }
        }

        /* Contact Form Styles */
        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0;
            text-align: left;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(59, 108, 181, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-submit {
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        .cta-alternative {
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .cta-alternative span {
            color: var(--text-light);
        }

        .form-message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 500;
        }

        .form-success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
            padding: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .form-error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }

        @media (max-width: 640px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .cta-alternative {
                flex-direction: column;
            }
        }

        /* ==================== AI ASSISTANT SECTION ==================== */
        .ai-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0c2340 0%, #153e75 50%, #1a4b8c 100%);
            position: relative;
            overflow: hidden;
        }

        .ai-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 108, 181, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 90, 158, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(90, 143, 212, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

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

        .ai-header {
            text-align: center;
            margin-bottom: 4rem;
            color: white;
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(59, 108, 181, 0.4) 0%, rgba(45, 90, 158, 0.4) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .ai-badge::before {
            content: '✨';
        }

        .ai-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #a3cce8 50%, #7ab3de 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .ai-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        .ai-visual {
            position: relative;
        }

        .ai-chat-mockup {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
        }

        .ai-chat-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 1rem;
        }

        .ai-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #5a8fd4 0%, #3b6cb5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .ai-chat-info {
            color: white;
        }

        .ai-chat-name {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .ai-chat-status {
            font-size: 0.8rem;
            opacity: 0.7;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .ai-chat-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
        }

        .ai-chat-messages {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ai-message {
            padding: 1rem 1.25rem;
            border-radius: 18px;
            font-size: 0.9rem;
            line-height: 1.5;
            max-width: 85%;
        }

        .ai-message-user {
            background: linear-gradient(135deg, #3b6cb5 0%, #5a8fd4 100%);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 6px;
        }

        .ai-message-bot {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            align-self: flex-start;
            border-bottom-left-radius: 6px;
        }

        .ai-chat-input {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ai-input-field {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 0.75rem 1.25rem;
            color: white;
            font-size: 0.9rem;
        }

        .ai-input-field::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .ai-voice-btn {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #5a8fd4 0%, #3b6cb5 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .ai-voice-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(59, 108, 181, 0.5);
        }

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

        .ai-feature {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 1.5rem;
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            transition: all 0.2s ease;
        }

        .ai-feature:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(10px);
            border-color: rgba(59, 108, 181, 0.5);
        }

        .ai-feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(59, 108, 181, 0.3) 0%, rgba(45, 90, 158, 0.3) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .ai-feature-content {
            color: white;
        }

        .ai-feature-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .ai-feature-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .ai-cta {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ai-cta-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .ai-cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
            border: 1px solid rgba(251, 191, 36, 0.4);
            color: #fbbf24;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        @media (max-width: 968px) {
            .ai-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .ai-visual {
                order: -1;
            }
        }

        /* ==================== BENEFITS SECTION ==================== */
        .benefits-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 50%, #ffffff 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(245, 158, 11, 0.1);
            border: 2px solid transparent;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0);
            transition: transform 0.2s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
            border-color: var(--accent-light);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .benefit-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .benefit-desc {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

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

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

        /* ==================== FAQ SECTION ==================== */
        .faq-section {
            padding: 6rem 2rem;
            background: var(--bg-light);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: white;
            border: 1px solid rgba(59, 108, 181, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: box-shadow 0.2s ease;
        }

        .faq-item[open] {
            box-shadow: 0 4px 20px rgba(59, 108, 181, 0.1);
            border-color: rgba(59, 108, 181, 0.2);
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary);
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .faq-item[open] .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.25rem;
        }

        .faq-answer p {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ==================== ACCESSIBILITY: REDUCED MOTION ==================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .hero {
                animation: none;
                background-size: 100% 100%;
            }

            .floating-icon {
                animation: none;
            }
        }

        /* ==================== ACCESSIBILITY: CURSOR POINTER ==================== */
        .nav-links a,
        .nav-cta,
        .btn,
        .btn-primary,
        .btn-secondary,
        .btn-submit,
        .scroll-top,
        .mobile-menu-btn,
        .lang-current,
        .lang-option,
        .media-tab,
        .lightbox-close,
        .feature-card:hover,
        .problem-card:hover,
        .community-card:hover,
        .request-type-card:hover,
        .benefit-card:hover,
        .manager-card:hover,
        .app-spot-btn {
            cursor: pointer;
        }

        /* ==================== ACCESSIBILITY: FOCUS STATES ==================== */
        *:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .nav-cta:focus-visible,
        .btn-primary:focus-visible,
        .btn-secondary:focus-visible,
        .btn-submit:focus-visible {
            outline: 2px solid var(--primary-dark);
            outline-offset: 3px;
            box-shadow: 0 0 0 4px rgba(59, 108, 181, 0.2);
        }

        .scroll-top:focus-visible {
            outline: 2px solid white;
            outline-offset: 3px;
        }

        /* Remove default outline for mouse users */
        *:focus:not(:focus-visible) {
            outline: none;
        }
