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

        html {
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        html::-webkit-scrollbar {
            display: none;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1A1A1A;
            background: #FFFFFF;
            overflow-x: hidden;
        }

        /* Color system - LIGHT THEME */
        :root {
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8F8FA;
            --bg-tertiary: #F0F0F3;
            --text-primary: #1A1A1A;
            --text-secondary: #555555;
            --text-tertiary: #888888;
            --accent: #FFBB58;
            --accent-glow: rgba(255, 187, 88, 0.15);
            --border: rgba(0, 0, 0, 0.08);
        }

        /* Typography */
        h1 {
            font-size: clamp(48px, 7vw, 64px);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        h2 {
            font-size: clamp(32px, 5vw, 40px);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        /* Main features section heading */
        section:not(.hero) > .container > div > h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 28px 0;
        }

        h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        body, p, li {
            font-size: 17px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .label {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #FFD080;
        }

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

        section {
            padding: 72px 0;
            position: relative;
        }

        @media (max-width: 768px) {
            section {
                padding: 56px 0;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 40px 0;
            }
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.3s ease;
            padding: 24px 32px;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-sub {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-tertiary);
            display: block;
            margin-top: -4px;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

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

        /* Nav styling handled by global styles.css */

        .nav-cta {
            background: var(--accent);
            color: #FFFFFF;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: #FFD080;
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(255, 187, 88, 0.3);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #FFFFFF;
            box-shadow: 0 2px 16px rgba(255, 187, 88, 0.2);
        }

        .btn-primary:hover {
            background: #FFD080;
            color: #FFFFFF;
            box-shadow: 0 4px 24px rgba(255, 187, 88, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Hero Section - Light theme matching homepage */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 520px;
            padding: 140px 20px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(255,187,88,0.05) 0%, rgba(255,255,255,0) 100%);
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 480px;
                padding: 100px 16px 60px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 420px;
                padding: 80px 16px 48px;
            }
        }

        .hero-overlay {
            display: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            width: 100%;
        }

        .hero h1 {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            margin-top: 20px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

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

        /* Features Grid - Clean card design matching resource pages */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin-top: 60px;
        }

        .feature-card {
            padding: 40px;
            background: #FFFFFF;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            text-align: left;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-align: left;
        }

        .feature-lead {
            font-size: 15px;
            color: var(--text-secondary);
            font-style: italic;
            text-align: left;
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            font-size: 15px;
            color: var(--text-secondary);
            text-align: left;
            line-height: 1.7;
            margin-bottom: 14px;
            padding-left: 24px;
            position: relative;
        }

        .feature-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        .feature-list li:last-child {
            margin-bottom: 0;
        }

        /* CTA Section - Dark gradient style */
        .final-cta {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
            border-radius: 12px;
            border: none;
            margin: 80px 0;
        }

        .final-cta h2 {
            color: #ffffff;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        /* Footer */
        footer {
            background: var(--text-primary);
            color: #FFFFFF;
            padding: 60px 32px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
            color: var(--accent);
        }

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

        /* Footer link styling handled by global styles.css */

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations & Transitions */
        .reveal {
            opacity: 0;
        }

        .reveal.visible {
            opacity: 1;
            animation: slideInUp 0.6s ease forwards;
        }

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

        /* Screenshot Gallery */
        .gallery-section {
            margin: 80px 0;
        }

        .gallery-section h2 {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 20px;
            scroll-behavior: smooth;
        }

        .gallery-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .gallery-scroll::-webkit-scrollbar-track {
            background: var(--bg-secondary);
            border-radius: 10px;
        }

        .gallery-scroll::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        .gallery-item {
            flex: 0 0 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            background: white;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .gallery-label {
            padding: 12px 16px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            background: var(--bg-secondary);
        }

        /* Related Solutions Section - Clean white background */
        section[style*="F5F5F5"] {
            background-color: #FFFFFF !important;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        section[style*="F5F5F5"] h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        section[style*="F5F5F5"] p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            section {
                padding: 60px 0;
            }

            .nav-links {
                gap: 24px;
                font-size: 14px;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            section:not(.hero) > .container > div > h2 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

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

            .gallery-item {
                flex: 0 0 250px;
            }

            .final-cta .btn {
                display: block;
                width: 100%;
            }
        }