/* GOOGLE-WORKSPACE - Complete CSS from static HTML */


        /* --- SOPHISTICATED B2B DESIGN SYSTEM --- */
        :root {
            /* Primary Colors */
            --primary-navy: #0A1628;
            --accent-blue: #2E5BFF;
            --accent-gold: #C59D5F;
            --google-blue: #4285F4;
            --google-red: #EA4335;
            --google-yellow: #FBBC05;
            --google-green: #34A853;
            
            /* Neutrals */
            --warm-grey: #8B8680;
            --light-bg: #F8F7F5;
            --white: #FFFFFF;
            --border-subtle: #E5E3DF;
            
            /* Status Colors */
            --success: #10b981;
            --danger: #ef4444;
            
            /* Typography */
            --font-serif: 'DM Serif Display', Georgia, serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Transitions */
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #0A1628;
            line-height: 1.7;
            background: #FFFFFF;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: 'DM Serif Display', Georgia, serif;
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

        p {
            color: #8B8680;
            line-height: 1.7;
        }

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

        /* Navigation */
        .nav-bar {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid #E5E3DF;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            color: #0A1628;
            font-style: italic;
        }

        .logo span {
            color: #4285F4;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: #8B8680;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: #2E5BFF;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 32px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .btn-primary {
            background: #2E5BFF;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(46, 91, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(46, 91, 255, 0.4);
        }

        .btn-google {
            background: #4285F4;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
        }

        .btn-google:hover {
            background: #3367d6;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(66, 133, 244, 0.4);
        }

        /* Hero Section */
        .hero {
            background: #FFFFFF;
            padding: 120px 0;
            text-align: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #FFFFFF;
            border: 2px solid #E5E3DF;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            color: #0A1628;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .google-logo-letters {
            display: flex;
            gap: 2px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .hero h1 {
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero h1 .highlight {
            color: #4285F4;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #8B8680;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* Section Styling */
        .section {
            padding: 120px 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #2E5BFF;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #8B8680;
            margin-top: 20px;
        }

        /* Problem Section */
        .problem-section {
            background: #F8F7F5;
            padding: 120px 0;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .problem-content h2 {
            margin-bottom: 25px;
        }

        .problem-intro {
            font-size: 1.1rem;
            color: #8B8680;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .pain-list {
            list-style: none;
            padding: 0;
            margin-top: 40px;
        }

        .pain-list li {
            padding: 18px 0;
            padding-left: 40px;
            position: relative;
            font-size: 1.05rem;
            color: #0A1628;
            border-bottom: 1px solid #E5E3DF;
        }

        .pain-list li:last-child {
            border-bottom: none;
        }

        .pain-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ef4444;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .pain-list strong {
            color: #0A1628;
        }

        .visual-box {
            background: #FFFFFF;
            border: 2px dashed #E5E3DF;
            height: 400px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }

        .visual-box-content {
            color: #8B8680;
        }

        /* Process Section */
        .process-section {
            background: #FFFFFF;
            padding: 120px 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .step-card {
            background: #F8F7F5;
            padding: 50px;
            border-radius: 4px;
            border-top: 4px solid #0A1628;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-top-color: #4285F4;
        }

        .step-number {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 3rem;
            color: #4285F4;
            display: block;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .step-card h3 {
            margin-bottom: 15px;
            color: #0A1628;
            font-size: 1.5rem;
        }

        .step-card p {
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Offer Section */
        .offer-section {
            background: linear-gradient(135deg, #4285F4 0%, #3367d6 100%);
            color: #FFFFFF;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .offer-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: movePattern 20s linear infinite;
        }

        @keyframes movePattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .offer-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .offer-box {
            background: #FFFFFF;
            padding: 60px;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .offer-box h2 {
            color: #0A1628;
            margin-bottom: 20px;
            text-align: center;
        }

        .offer-box > p {
            color: #8B8680;
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .form-container {
            max-width: 500px;
            margin: 40px auto 0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #E5E3DF;
            border-radius: 4px;
            font-size: 1rem;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-group input:focus {
            outline: none;
            border-color: #4285F4;
        }

        /* Footer */
        footer {
            background: #0A1628;
            color: rgba(255, 255, 255, 0.6);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .footer-brand span {
            color: #4285F4;
        }

        .footer-tagline {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-section h4 {
            color: #FFFFFF;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

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

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-section a:hover {
            color: #4285F4;
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
            padding-top: 30px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .problem-grid,
            .steps-grid,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .nav-links {
                display: none;
            }

            .container {
                padding: 0 20px;
            }
        }

        @media (max-width: 640px) {
            .step-card,
            .offer-box {
                padding: 30px;
            }
        }
    