* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            padding: 0 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 75px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #000;
            text-decoration: none;
        }
        .logo-dot {
            color: #4A90E2;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            color: #333;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.2s;
        }
        .nav-link:hover {
            color: #4A90E2;
        }
        .arrow {
            font-size: 10px;
            transition: transform 0.2s;
        }
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 20px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-item {
            padding: 12px 28px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.2s;
        }
        .dropdown-item:hover {
            background: #f8f9fb;
            color: #4A90E2;
            padding-left: 32px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .sign-in {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }
        .sign-in:hover {
            color: #4A90E2;
        }
        .btn-cta {
            background: #000;
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-transform: uppercase;
        }
        .btn-cta:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Hero Section */
        .work-hero {
            background: linear-gradient(135deg, #e8f1fb 0%, #f5f8fc 100%);
            padding: 120px 60px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .work-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .badge {
            display: inline-block;
            background: #4A90E2;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 32px;
        }
        .work-hero h1 {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #000;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        .sub-headline {
            font-size: 20px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 48px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        .hero-button {
            background: #000;
            color: white;
            padding: 16px 36px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            transition: all 0.3s;
            display: inline-block;
            text-transform: uppercase;
            margin-right: 20px;
        }
        .hero-button:hover {
            background: #4A90E2;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
        }
        .btn-link {
            color: #4A90E2;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-link:hover {
            color: #000;
        }

        /* Trusted Section */
        .trusted-section {
            background: white;
            padding: 60px 60px;
            text-align: center;
        }
        .trusted-section h3 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #666;
            margin-bottom: 40px;
            font-weight: 600;
        }
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }
        .logo-placeholder {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
            transition: opacity 0.3s;
        }
        .logo-placeholder:hover {
            opacity: 1;
        }
        .logo-img {
            max-width: 100%;
            height: auto;
            max-height: 50px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .logo-img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Key Features Section */
        .key-features-section {
            background: #f8f9fb;
            padding: 100px 60px;
        }
        .key-features-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }
        .key-features-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
        }
        .key-features-header p {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
        }
        .key-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .key-feature-card {
            background: white;
            padding: 40px 32px;
            border-radius: 12px;
            transition: all 0.3s;
        }
        .key-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }
        .icon {
            font-size: 48px;
            margin-bottom: 24px;
        }
        .key-feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #000;
        }
        .key-feature-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 24px;
        }
        .key-feature-card ul {
            list-style: none;
        }
        .key-feature-card li {
            padding-left: 28px;
            position: relative;
            margin-bottom: 12px;
            font-size: 14px;
            color: #555;
        }
        .key-feature-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4A90E2;
            font-weight: 700;
            font-size: 16px;
        }

        /* Benefits Section */
        .benefits-section {
            background: white;
            padding: 100px 60px;
        }
        .benefits-header {
            text-align: center;
            margin-bottom: 80px;
        }
        .benefits-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #000;
        }
        .benefit-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto 100px;
            align-items: center;
        }
        .benefit-block:nth-child(even) {
            direction: rtl;
        }
        .benefit-block:nth-child(even) > * {
            direction: ltr;
        }
        .benefit-content h3 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
        }
        .benefit-content p {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 32px;
        }
        .benefit-content ul {
            list-style: none;
        }
        .benefit-content li {
            padding-left: 32px;
            position: relative;
            margin-bottom: 16px;
            font-size: 16px;
            color: #555;
        }
        .benefit-content li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #4A90E2;
            font-weight: 700;
            font-size: 18px;
        }
        .benefit-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }
        .benefit-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gale CTA Section */
        .gale-cta-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 100px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .gale-cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            right: -100px;
            transform: translateY(-50%);
        }
        .gale-cta-content {
            position: relative;
            z-index: 1;
        }
        .gale-cta-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
        }
        .gale-cta-content p {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255,255,255,0.9);
            margin-bottom: 40px;
        }
        .gale-cta-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            position: relative;
            z-index: 1;
        }
        .gale-cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Final CTA Section */
        .final-cta-section {
            background: linear-gradient(135deg, #4A90E2 0%, #87B4E6 100%);
            padding: 100px 60px;
            text-align: center;
            color: white;
        }
        .final-cta-section h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .final-cta-section p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 48px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .final-cta-section .hero-button {
            background: white;
            color: #4A90E2;
        }
        .final-cta-section .hero-button:hover {
            background: #000;
            color: white;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 60px 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }
        .footer-column h4 {
            color: white;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 12px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-column a:hover {
            color: #4A90E2;
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            font-size: 14px;
            color: #888;
        }