
    
        /* ========== DIGITAL MARKETING SPECIFIC STYLES ========== */
        
        /* Hero Section */
        .dm-hero {
            background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .dm-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-blue-50) 0%, transparent 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }

        .dm-hero-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .dm-hero-content {
            padding-right: 40px;
        }

        .dm-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(245, 158, 11, 0.1);
            padding: 12px 24px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-amber);
            margin-bottom: 30px;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        .dm-hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--accent-amber);
            border-radius: 50%;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .dm-hero-title {
            font-size: 3.5rem;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .dm-hero-description {
            font-size: 1.125rem;
            color: var(--neutral-600);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .dm-hero-description strong {
            color: var(--neutral-900);
            font-weight: 600;
        }

        .dm-hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .dm-hero-features {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .dm-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dm-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
        }

        .dm-feature-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--neutral-800);
        }

        /* Hero Visual */
        .dm-hero-visual {
            position: relative;
        }

        .dm-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .dm-stat-card {
            background: var(--white);
            padding: 32px 24px;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: all var(--transition-base);
            border: 1px solid var(--neutral-200);
        }

        .dm-stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .dm-stat-card.featured {
            background: var(--gradient-primary);
            color: var(--white);
            grid-column: span 2;
        }

        .dm-stat-card.featured .dm-stat-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .dm-stat-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-blue-50);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: var(--primary-blue);
        }

        .dm-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 8px;
            font-family: 'Clash Grotesk', sans-serif;
        }

        .dm-stat-card.featured .dm-stat-value {
            color: var(--white);
        }

        .dm-stat-label {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* Floating Badges */
        .dm-floating-badge {
            position: absolute;
            background: var(--white);
            padding: 20px 24px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            display: flex;
            align-items: center;
            gap: 16px;
            animation: float 6s ease-in-out infinite;
            border: 1px solid var(--neutral-200);
            backdrop-filter: blur(10px);
        }

        .dm-badge-1 {
            top: -20px;
            right: 40px;
            animation-delay: 0s;
        }

        .dm-badge-2 {
            bottom: 60px;
            left: -40px;
            animation-delay: 3s;
        }

        .dm-badge-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
        }

        .dm-badge-icon.success {
            background: var(--gradient-accent);
        }

        .dm-badge-icon.primary {
            background: var(--gradient-primary);
        }

        .dm-badge-text {
            display: flex;
            flex-direction: column;
        }

        .dm-badge-text strong {
            font-size: 16px;
            font-weight: 700;
            color: var(--neutral-900);
        }

        .dm-badge-text span {
            font-size: 13px;
            color: var(--neutral-500);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        /* Services Section */
        .dm-services {
            background: var(--neutral-50);
        }

        .dm-services-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .dm-services-pill {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 12px 28px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .dm-services-header h2 {
            font-size: 3rem;
            margin-bottom: 24px;
        }

        .dm-services-header p {
            font-size: 1.125rem;
            color: var(--neutral-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .dm-services-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .dm-service-card {
            background: var(--white);
            border-radius: var(--radius-2xl);
            padding: 48px 40px;
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: all var(--transition-base);
            border: 1px solid var(--neutral-200);
            overflow: hidden;
        }

        .dm-service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-2xl);
        }

        .dm-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .dm-service-card.big {
            grid-row: span 2;
        }

        .dm-service-card.big::before {
            height: 6px;
        }

        .dm-service-card .badge {
            position: absolute;
            top: 24px;
            right: 24px;
        }

        .dm-icon-box {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            font-size: 28px;
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .dm-icon-box.blue { background: var(--gradient-primary); }
        .dm-icon-box.green { background: var(--gradient-accent); }
        .dm-icon-box.orange { background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light)); }
        .dm-icon-box.purple { background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light)); }
        .dm-icon-box.teal { background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light)); }

        .dm-service-card h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
            color: var(--neutral-900);
        }

        .dm-service-card p {
            color: var(--neutral-600);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .dm-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 32px 0;
        }

        .dm-features span {
            background: var(--primary-blue-50);
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-blue);
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .dm-features.small span {
            font-size: 13px;
            padding: 8px 16px;
        }

        .dm-service-stats {
            display: flex;
            gap: 40px;
            margin: 40px 0;
            padding: 32px 0;
            border-top: 1px solid var(--neutral-200);
            border-bottom: 1px solid var(--neutral-200);
        }

        .dm-service-stats div {
            text-align: center;
        }

        .dm-service-stats strong {
            font-size: 2rem;
            font-weight: 800;
            display: block;
            color: var(--neutral-900);
            font-family: 'Clash Grotesk', sans-serif;
        }

        .dm-service-stats span {
            font-size: 14px;
            color: var(--neutral-500);
        }

        .dm-service-guarantee {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--secondary-green-50);
            padding: 20px 24px;
            border-radius: var(--radius-xl);
            margin: 32px 0;
            color: var(--secondary-green-dark);
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .dm-service-guarantee i {
            color: var(--secondary-green);
            font-size: 20px;
        }

        .dm-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid var(--neutral-200);
        }

        .dm-card-footer strong {
            font-size: 1.25rem;
            color: var(--neutral-900);
        }

        .dm-card-footer .btn {
            padding: 12px 28px;
        }

        /* Industry Solutions */
        .industry-solutions {
            background: var(--neutral-900);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .industry-solutions::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
        }

        .industry-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 80px;
        }

        .industry-pill {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gradient-accent);
            padding: 12px 28px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .industry-header h2 {
            font-size: 3rem;
            margin-bottom: 24px;
            color: var(--white);
        }

        .industry-header p {
            font-size: 1.125rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            position: relative;
            z-index: 1;
        }

        .industry-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-2xl);
            padding: 48px 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .industry-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-12px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .industry-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform var(--transition-base);
        }

        .industry-card:hover::after {
            transform: scaleX(1);
        }

        .industry-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            font-size: 28px;
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .industry-tourism { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)); }
        .industry-ecommerce { background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light)); }
        .industry-social { background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-dark)); }

        .industry-card h3 {
            font-size: 1.75rem;
            margin-bottom: 16px;
            color: var(--white);
        }

        .industry-card p {
            opacity: 0.8;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .industry-services {
            margin-top: 32px;
        }

        .industry-services h4 {
            font-size: 1.125rem;
            margin-bottom: 20px;
            color: var(--white);
            opacity: 0.9;
        }

        .industry-services-list {
            list-style: none;
        }

        .industry-services-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .industry-services-list li:last-child {
            border-bottom: none;
        }

        .industry-services-list li i {
            color: var(--accent-teal-light);
            font-size: 14px;
            flex-shrink: 0;
        }

        .industry-services-list li span {
            opacity: 0.8;
            font-size: 15px;
        }

        /* Process Section */
        .dm-process {
            position: relative;
        }

        .dm-section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .dm-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 28px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .dm-section-title {
            font-size: 3rem;
            margin-bottom: 24px;
        }

        .dm-section-description {
            font-size: 1.125rem;
            color: var(--neutral-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .dm-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .dm-process-card {
            background: var(--white);
            padding: 48px 40px;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: all var(--transition-base);
            border: 1px solid var(--neutral-200);
            text-align: center;
        }

        .dm-process-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-2xl);
        }

        .dm-process-number {
            font-size: 4rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            font-family: 'Clash Grotesk', sans-serif;
            line-height: 1;
        }

        .dm-process-card h4 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--neutral-900);
        }

        .dm-process-card p {
            color: var(--neutral-600);
            line-height: 1.7;
        }

        /* Results Section */
        .dm-results {
            background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
        }

        .dm-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .dm-result-card {
            background: var(--white);
            padding: 48px 32px;
            border-radius: var(--radius-2xl);
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
            border: 1px solid var(--neutral-200);
        }

        .dm-result-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-2xl);
        }

        .dm-result-value {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            font-family: 'Clash Grotesk', sans-serif;
            line-height: 1;
        }

        .dm-result-label {
            font-size: 1.125rem;
            color: var(--neutral-800);
            font-weight: 600;
        }

        /* CTA Section */
        .dm-cta {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .dm-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .dm-cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .dm-cta-title {
            font-size: 3rem;
            margin-bottom: 24px;
            color: var(--white);
        }

        .dm-cta-description {
            font-size: 1.125rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }

        .dm-cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Team ByteCastle Section */
        .team-bytecastle {
            background: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-card {
            background: var(--white);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
            border: 1px solid var(--neutral-200);
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-2xl);
        }

        .team-card-header {
            padding: 48px 40px 0;
            position: relative;
        }

        .team-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 40px;
            color: var(--white);
            box-shadow: var(--shadow-xl);
        }

        .team-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--neutral-900);
        }

        .team-role {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-card-body {
            padding: 0 40px 40px;
        }

        .team-card-body p {
            color: var(--neutral-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .team-skill {
            background: var(--primary-blue-50);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 500;
            color: var(--primary-blue);
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .dm-hero-container {
                gap: 60px;
            }
            
            .dm-hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .dm-hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .dm-hero-content {
                padding-right: 0;
                text-align: center;
            }
            
            .dm-hero-actions {
                justify-content: center;
            }
            
            .dm-hero-features {
                justify-content: center;
            }
            
            .dm-services-grid {
                grid-template-columns: 1fr;
            }
            
            .dm-service-card.big {
                grid-row: auto;
            }
            
            .dm-floating-badge {
                position: relative;
                margin: 32px auto;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .dm-hero-title {
                font-size: 2.5rem;
            }
            
            .dm-section-title,
            .dm-cta-title {
                font-size: 2.5rem;
            }
            
            .dm-services-header h2,
            .industry-header h2 {
                font-size: 2.5rem;
            }
            
            .dm-hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .dm-stats-grid {
                grid-template-columns: 1fr;
            }
            
            .dm-stat-card.featured {
                grid-column: auto;
            }
            
            .industry-grid {
                grid-template-columns: 1fr;
            }
            
            .dm-process-grid,
            .dm-results-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .dm-cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .dm-service-card,
            .industry-card,
            .dm-process-card,
            .dm-result-card,
            .team-card {
                padding: 40px 32px;
            }
        }

        @media (max-width: 480px) {
            .dm-hero-title {
                font-size: 2rem;
            }
            
            .section {
                padding: 64px 0;
            }
            
            .dm-section-title,
            .dm-cta-title,
            .dm-services-header h2,
            .industry-header h2 {
                font-size: 2rem;
            }
            
            .dm-service-card,
            .industry-card,
            .dm-process-card,
            .dm-result-card,
            .team-card {
                padding: 32px 24px;
            }
            
            .container {
                padding: 0 20px;
            }
        }
   