/* DIGITAL-MARKETING - Complete CSS from static HTML */


        /* --- SOPHISTICATED B2B DESIGN SYSTEM --- */
        :root {
            /* Primary Colors */
            --primary-navy: #0A1628;
            --accent-blue: #2E5BFF;
            --accent-gold: #C59D5F;
            --growth-green: #10b981;
            
            /* 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: #10b981;
            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-growth {
            background: #10b981;
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        }

        .btn-growth:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }

        .btn-outline:hover {
            background: #FFFFFF;
            color: #0A1628;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
            color: #FFFFFF;
            padding: 120px 0 140px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 2px, transparent 2px);
            background-size: 30px 30px;
        }

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

        .hero-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid #10b981;
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 30px;
        }

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

        .hero h1 .highlight {
            color: #10b981;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .hero-note {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 20px;
        }

        /* Authority Bar */
        .authority-bar {
            background: #0A1628;
            padding: 30px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .partner-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .partner-badge {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .partner-badge:hover {
            color: #10b981;
        }

        /* 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: #FFFFFF;
            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: 40px;
            line-height: 1.8;
        }

        .pain-card {
            background: #fef2f2;
            border-left: 4px solid #ef4444;
            padding: 30px;
            border-radius: 4px;
            margin-bottom: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pain-card:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .pain-card h4 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #b91c1c;
            margin-bottom: 10px;
        }

        .pain-card p {
            font-size: 1rem;
            color: #991b1b;
            margin: 0;
        }

        .problem-conclusion {
            font-weight: 600;
            font-size: 1.1rem;
            color: #0A1628;
            margin-top: 30px;
        }

        .visual-box {
            background: #F8F7F5;
            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;
        }

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

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

        .step-card {
            background: #FFFFFF;
            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;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

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

        .step-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            display: block;
        }

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

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

        /* Offer/Spy Section */
        .offer-section {
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
            color: #FFFFFF;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .offer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .offer-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .offer-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px;
            border-radius: 4px;
        }

        .offer-box h2 {
            color: #FFFFFF;
            margin-bottom: 20px;
        }

        .offer-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
        }

        .spy-benefits {
            list-style: none;
            padding: 0;
            margin: 40px auto;
            max-width: 600px;
            text-align: left;
        }

        .spy-benefits li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .spy-benefits li:last-child {
            border-bottom: none;
        }

        .spy-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .form-box {
            background: #FFFFFF;
            padding: 50px;
            border-radius: 4px;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-box h3 {
            color: #0A1628;
            margin-bottom: 30px;
            text-align: center;
        }

        .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: #10b981;
        }

        .form-note {
            font-size: 0.85rem;
            color: #8B8680;
            text-align: center;
            margin-top: 15px;
        }

        /* 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: #10b981;
        }

        .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: #10b981;
        }

        .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,
            .pain-card,
            .offer-box,
            .form-box {
                padding: 30px;
            }

            .partner-badges {
                gap: 15px;
                font-size: 0.75rem;
            }
        }
    