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

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --dark-bg: #0f0f1e;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: #b0b0c0;
            --accent-color: #667eea;
            --header-bg: rgba(15, 15, 30, 0.8);
            --drawer-bg: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(30, 30, 50, 0.95) 100%);
            --soft-accent-bg: rgba(102, 126, 234, 0.1);
            --soft-accent-border: rgba(102, 126, 234, 0.3);
            --chip-text: #ffffff;
            --page-section-bg: rgba(255, 255, 255, 0.02);
            --input-bg: rgba(255, 255, 255, 0.05);
            --hero-overlay: linear-gradient(135deg, rgba(10, 10, 20, 0.99), rgba(15, 10, 30, 0.98));
        }

        html[data-theme='light'] {
            --dark-bg: #f4f7fb;
            --card-bg: rgba(255, 255, 255, 0.78);
            --border-color: rgba(15, 23, 42, 0.12);
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --accent-color: #4f46e5;
            --header-bg: rgba(255, 255, 255, 0.82);
            --drawer-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 242, 255, 0.98) 100%);
            --soft-accent-bg: rgba(79, 70, 229, 0.08);
            --soft-accent-border: rgba(79, 70, 229, 0.2);
            --chip-text: #0f172a;
            --page-section-bg: rgba(255, 255, 255, 0.56);
            --input-bg: rgba(255, 255, 255, 0.92);
            --hero-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(236, 242, 255, 0.92));
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            transition: background-color 0.25s ease, color 0.25s ease;
        }

        #hero,
        #logos,
        #workflow,
        #features,
        #cta {
            scroll-margin-top: 104px;
        }

        /* ========== HEADER & NAVIGATION ========== */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.5rem 3rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: var(--header-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }

        .header-left,
        .header-right,
        .nav-links {
            display: flex;
            align-items: center;
        }

        .header-left,
        .header-right {
            gap: 1rem;
        }

        .nav-links {
            gap: 1.2rem;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--text-primary);
        }

        .header-left {
            min-width: 0;
            flex: 1;
        }

        .nav-links {
            min-width: 0;
            flex-wrap: nowrap;
        }

        .theme-toggle-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--text-primary);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.25s ease;
        }

        .theme-toggle-btn:hover {
            border-color: var(--accent-color);
            transform: translateY(-1px);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .nav-toggle {
            width: 50px;
            height: 50px;
            border: none;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .nav-toggle:hover {
            background: rgba(102, 126, 234, 0.1);
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .nav-toggle span {
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ========== SIDE DRAWER PANEL ========== */
        .side-drawer {
            position: fixed;
            left: -400px;
            top: 0;
            width: 400px;
            height: 100vh;
            background: var(--drawer-bg);
            backdrop-filter: blur(20px);
            border-right: 1px solid var(--border-color);
            z-index: 999;
            transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            padding: 2rem;
            overflow-y: auto;
            box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
        }

        .side-drawer.active {
            left: 0;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }

        .drawer-header h2 {
            font-size: 1.5rem;
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .drawer-close {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .drawer-close:hover {
            color: var(--accent-color);
            transform: rotate(90deg);
        }

        /* ========== SEARCH IN DRAWER ========== */
        .drawer-search-container {
            margin-bottom: 2rem;
        }

        .drawer-search-box {
            display: flex;
            align-items: center;
            background: var(--input-bg);
            border: 1.5px solid var(--border-color);
            border-radius: 14px;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            gap: 1rem;
        }

        .drawer-search-box:focus-within {
            border-color: var(--accent-color);
            background: rgba(102, 126, 234, 0.05);
            box-shadow: 0 0 30px rgba(102, 126, 234, 0.2);
        }

        .drawer-search-box input {
            flex: 1;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1rem;
            outline: none;
            font-family: inherit;
        }

        .drawer-search-box input::placeholder {
            color: var(--text-secondary);
        }

        .search-icon {
            color: var(--text-secondary);
            font-size: 1.2rem;
        }

        .drawer-search-box:focus-within .search-icon {
            color: var(--accent-color);
        }

        /* ========== DRAWER CATEGORIES ========== */
        .drawer-categories {
            margin-bottom: 2.5rem;
        }

        .drawer-categories h3 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .category-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .category-chip {
            padding: 0.9rem 1rem;
            background: rgba(102, 126, 234, 0.14);
            border: 1px solid rgba(102, 126, 234, 0.25);
            border-radius: 14px;
            color: var(--chip-text);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
        }

        .category-chip:hover {
            background: rgba(102, 126, 234, 0.2);
            border-color: var(--accent-color);
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .category-chip.active {
            background: var(--primary-gradient);
            border-color: transparent;
            color: #ffffff;
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.28);
        }

        .category-chip::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: currentColor;
            border-radius: 50%;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .category-chip.active::before,
        .category-chip:hover::before {
            opacity: 1;
        }

        /* ========== DRAWER FEATURES ========== */
        .drawer-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--soft-accent-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: var(--text-primary);
        }

        .feature-text p {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* ========== OVERLAY ========== */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 998;
        }

        .overlay.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ========== MAIN CONTENT ========== */
        main {
            margin-top: 80px;
            min-height: 100vh;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            overflow: hidden;
            background-image: var(--hero-overlay), url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=2829&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 87, 108, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(30px);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            text-align: center;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .pre-headline {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background: var(--soft-accent-bg);
            border: 1px solid var(--soft-accent-border);
            border-radius: 50px;
            color: var(--text-primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        .hero h1 .gradient-text {
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .floating-brand {
            position: absolute;
            z-index: 1;
            opacity: 0.35;
            transition: all 0.5s ease;
        }

        .hero:hover .floating-brand {
            opacity: 0.6;
            transform: scale(1.05);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-primary);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
        }

        /* ========== CTA BUTTON ========== */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.5rem;
            background: var(--primary-gradient);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 60px rgba(102, 126, 234, 0.4);
        }

        .cta-button:active {
            transform: translateY(-2px);
        }

        /* ========== QUICK LINKS ========== */
        .quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
            margin-top: 1.5rem;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
        }

        .quick-link {
            padding: 0.6rem 1.2rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .quick-link:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            background: rgba(102, 126, 234, 0.05);
        }

        /* ========== TRUST BAR ========== */
        .trust-bar {
            margin-top: 4rem;
            padding: 2rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trust-avatars {
            display: flex;
            gap: -10px;
        }

        .avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary-gradient);
            border: 2px solid var(--dark-bg);
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .trust-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .trust-text strong {
            color: var(--text-primary);
        }

        /* ========== VALUE PROPOSITION GRID ========== */
        .value-grid {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logos-section {
            padding: 2rem 2rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logos-shell {
            background: var(--page-section-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 2rem;
            backdrop-filter: blur(12px);
        }

        .logos-header {
            text-align: center;
            margin-bottom: 1.75rem;
        }

        .logos-header h2 {
            font-size: clamp(1.9rem, 4vw, 2.8rem);
            margin-bottom: 0.75rem;
        }

        .logos-header p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .logo-filter-bar {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 0.85rem;
            margin-bottom: 1rem;
        }

        .grid-search-input,
        .clear-filters-btn {
            height: 48px;
            border-radius: 14px;
            border: 1px solid var(--border-color);
            background: var(--input-bg);
            color: var(--text-primary);
            font: inherit;
        }

        .grid-search-input {
            padding: 0 1rem;
        }

        .grid-search-input::placeholder {
            color: var(--text-secondary);
        }

        .clear-filters-btn {
            padding: 0 1rem;
            font-weight: 600;
            cursor: pointer;
        }

        .grid-filter-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .grid-filter-chip {
            padding: 0.7rem 1rem;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--text-primary);
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .grid-filter-chip:hover,
        .grid-filter-chip.active {
            background: var(--primary-gradient);
            border-color: transparent;
            color: #ffffff;
            transform: translateY(-1px);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
        }

        .logo-grid-card {
            min-height: 170px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-grid-card:hover {
            transform: translateY(-3px);
            border-color: var(--accent-color);
            background: rgba(102, 126, 234, 0.08);
        }

        .logo-grid-card img {
            height: 54px;
            width: auto;
            max-width: 88%;
            object-fit: contain;
            margin-bottom: 0.85rem;
        }

        .logo-grid-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.2rem;
        }

        .logo-grid-meta {
            font-size: 0.76rem;
            color: var(--text-secondary);
        }

        .logo-grid-award {
            background: rgba(245, 158, 11, 0.16);
            border: 1px solid rgba(245, 158, 11, 0.45);
            color: #fbbf24;
            font-size: 0.68rem;
            font-weight: 700;
        }

        .logo-grid-empty {
            grid-column: 1 / -1;
            padding: 2rem 1rem;
            border-radius: 18px;
            border: 1px dashed var(--border-color);
            text-align: center;
            color: var(--text-secondary);
        }

        .value-grid-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .value-grid-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .value-grid-title p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

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

        .grid-card {
            padding: 2rem;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            position: relative;
        }

        .grid-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--secondary-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .grid-card:hover {
            border-color: var(--accent-color);
            background: rgba(102, 126, 234, 0.05);
            transform: translateY(-8px);
        }

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

        .grid-card-icon {
            width: 60px;
            height: 60px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .grid-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .grid-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ========== FEATURES SECTION ========== */
        .features-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

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

        .features-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

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

        .feature-row {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            padding: 0.85rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .feature-row:last-child {
            border-bottom: none;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            background: rgba(102, 126, 234, 0.2);
            border: 1px solid var(--accent-color);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent-color);
            font-size: 1rem;
            font-weight: bold;
        }

        .feature-row h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .feature-row p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .features-image {
            aspect-ratio: 4 / 3;
            background: linear-gradient(135deg, var(--card-bg), rgba(245, 87, 108, 0.1));
            border: 1px solid var(--border-color);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--text-secondary);
        }

        /* ========== CTA SECTION ========== */
        .final-cta {
            padding: 6rem 2rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .final-cta p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .final-cta .cta-button {
            animation: none;
        }

        /* ========== FOOTER ========== */
        footer {
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            .header-left {
                gap: 0.75rem;
            }

            .nav-links {
                display: flex;
                gap: 0.7rem;
                overflow-x: auto;
                padding-bottom: 0.25rem;
                scrollbar-width: none;
            }

            .nav-links::-webkit-scrollbar {
                display: none;
            }

            .nav-link {
                white-space: nowrap;
                font-size: 0.8rem;
            }

            .side-drawer {
                width: 100%;
                left: -100%;
            }

            .hero {
                min-height: 80vh;
                padding: 2rem 1rem 3rem;
            }

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

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

            .logos-section,
            .value-grid,
            .features-section,
            .final-cta,
            footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .logos-shell {
                padding: 1.25rem;
            }

            .logo-filter-bar {
                grid-template-columns: 1fr;
            }

            .logo-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 0.5rem;
            }

            .logo-grid-card {
                min-height: 112px;
                padding: 0.6rem 0.35rem;
                border-radius: 14px;
            }

            .logo-grid-card img {
                height: 28px;
                margin-bottom: 0.5rem;
            }

            .logo-grid-name {
                font-size: 0.68rem;
                line-height: 1.15;
            }

            .logo-grid-award {
                top: 6px;
                right: 6px;
                padding: 0.14rem 0.36rem;
                font-size: 0.56rem;
            }

            .grid-filter-chips,
            .category-chips {
                gap: 0.6rem;
            }

            .value-grid {
                padding: 3rem 1rem;
            }

            .features-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-content h2 {
                font-size: 1.9rem;
                margin-bottom: 1.4rem;
            }

            .features-list {
                gap: 0.4rem;
            }

            .feature-row {
                gap: 0.9rem;
                padding: 0.9rem 0;
            }

            .feature-check {
                width: 20px;
                height: 20px;
                font-size: 0.82rem;
            }

            .feature-row h4 {
                font-size: 0.92rem;
            }

            .feature-row p {
                font-size: 0.84rem;
                line-height: 1.55;
            }

            .features-image {
                order: -1;
                min-height: 220px;
                font-size: 2rem;
            }

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

            .trust-bar {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 520px) {
            header {
                padding: 0.9rem 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .header-right {
                gap: 0.55rem;
            }

            .theme-toggle-btn,
            .nav-toggle {
                width: 38px;
                height: 38px;
            }

            .nav-links {
                gap: 0.55rem;
                max-width: calc(100vw - 150px);
            }

            .nav-link {
                font-size: 0.72rem;
            }

            .hero {
                min-height: auto;
                padding-top: 2rem;
            }

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

            .pre-headline {
                font-size: 0.75rem;
                padding: 0.5rem 0.9rem;
            }

            .hero h1 {
                font-size: 1.85rem;
                line-height: 1.15;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
                padding: 0.95rem 1.15rem;
            }

            .quick-links {
                gap: 0.55rem;
            }

            .quick-link,
            .grid-filter-chip,
            .category-chip {
                font-size: 0.82rem;
            }

            .logo-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 0.4rem;
            }

            .logo-grid-card {
                min-height: 98px;
                padding: 0.48rem 0.28rem;
            }

            .logo-grid-card img {
                height: 22px;
                margin-bottom: 0.4rem;
            }

            .logo-grid-name {
                font-size: 0.61rem;
            }

            .features-section {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .features-content h2 {
                font-size: 1.6rem;
                line-height: 1.25;
            }

            .features-image {
                min-height: 180px;
                font-size: 1.5rem;
            }

            .drawer-search-box {
                padding: 0.9rem 1rem;
            }
        }
