/* ==========================================================================
   SERVICES PAGE - COMPLETE STYLES (Including SEO Services)
   ========================================================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --primary-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
    
    /* Secondary Colors */
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    
    /* Accent Colors */
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-rose: #f43f5e;
    --accent-violet: #8b5cf6;
    --accent-orange: #f97316;
    --accent-teal: #14b8a6;
    
    /* Neutral Colors */
    --dark-color: #0f172a;
    --dark-secondary: #1e293b;
    --dark-tertiary: #334155;
    --text-color: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --light-bg: #f8fafc;
    --lighter-bg: #f1f5f9;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.4);
    --shadow-glow-lg: 0 0 60px rgba(99, 102, 241, 0.5);
    --shadow-glow-success: 0 0 40px rgba(16, 185, 129, 0.4);
    --shadow-glow-danger: 0 0 40px rgba(239, 68, 68, 0.3);
    
    /* Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* ==========================================================================
   BREADCRUMB SECTION
   ========================================================================== */
.service-breadcrumb {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 7rem;
}

.service-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.service-breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
    color: var(--text-light);
}

.service-breadcrumb .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-light);
}

.service-breadcrumb .breadcrumb-item.active {
    color: var(--white);
    font-weight: 500;
}

.service-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--text-muted);
    padding-right: 0.75rem;
}

/* ==========================================================================
   SERVICE HERO SECTION
   ========================================================================== */
.service-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    padding: 5rem 0 6rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 40% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 60% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-200px) translateX(100px); }
}

.min-vh-60 {
    min-height: 60vh;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.service-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-primary-service {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(99, 102, 241, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    color: var(--white);
}

.btn-primary-service:hover::before {
    left: 100%;
}

.btn-primary-service i {
    transition: var(--transition-normal);
}

.btn-primary-service:hover i {
    transform: translateX(5px);
}

.btn-secondary-service {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.btn-secondary-service:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-secondary-service i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--accent-emerald);
    font-size: 1rem;
}

/* Hero Visual */
.service-hero-visual {
    position: relative;
    z-index: 2;
}

.service-hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
}

.floating-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.floating-stats .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.75rem;
    text-align: center;
    transition: var(--transition-normal);
    min-width: 120px;
}

.floating-stats .stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.floating-stats .stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-stats .stat-card p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================================================
   SEO AUDIT BANNER
   ========================================================================== */
.seo-audit-banner {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.seo-audit-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.seo-audit-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatBubble 10s ease-in-out infinite;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.audit-content {
    position: relative;
    z-index: 1;
}

.audit-content h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.audit-content h3 i {
    font-size: 1.5rem;
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-10deg); }
    75% { transform: scale(1.1) rotate(10deg); }
}

.btn-audit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.btn-audit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

.btn-audit i {
    transition: var(--transition-normal);
}

.btn-audit:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   SERVICE OVERVIEW SECTION
   ========================================================================== */
.service-overview {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.overview-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.overview-content .lead {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.overview-content > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.overview-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-item > i {
    font-size: 1.5rem;
    color: var(--accent-emerald);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.highlight-item h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--light-bg);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.overview-image-wrapper {
    position: relative;
    padding: 2rem;
}

.overview-image-wrapper img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-normal);
}

.overview-image-wrapper:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.experience-badge {
    position: absolute;
    bottom: 3rem;
    left: 0;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* ==========================================================================
   SERVICES OFFERED SECTION
   ========================================================================== */
.services-offered {
    background: var(--light-bg);
    position: relative;
}

.services-offered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        linear-gradient(180deg, var(--white) 0%, transparent 5%),
        linear-gradient(0deg, var(--white) 0%, transparent 5%);
    pointer-events: none;
}

.service-offered-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-offered-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-offered-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-offered-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-offered-card:hover::before {
    transform: scaleX(1);
}

.service-offered-card:hover::after {
    opacity: 1;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.service-offered-card:hover .service-icon-wrapper {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.service-offered-card:hover .service-icon-wrapper i {
    color: var(--white);
}

.service-offered-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-offered-card > p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-color);
    border-top: 1px solid var(--border-light);
}

.service-features-list li:first-child {
    border-top: none;
}

.service-features-list li i {
    color: var(--accent-emerald);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ==========================================================================
   SEO PROCESS TIMELINE
   ========================================================================== */
.seo-process {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.seo-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.seo-process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.seo-process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-violet), 
        var(--accent-rose), 
        var(--accent-orange),
        var(--accent-teal),
        var(--accent-emerald)
    );
    border-radius: var(--radius-full);
    z-index: 0;
}

.process-phase {
    position: relative;
    z-index: 1;
}

.process-phase .phase-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.process-phase:nth-child(1) .phase-icon { border-color: var(--primary-color); }
.process-phase:nth-child(2) .phase-icon { border-color: var(--accent-violet); }
.process-phase:nth-child(3) .phase-icon { border-color: var(--accent-rose); }
.process-phase:nth-child(4) .phase-icon { border-color: var(--accent-orange); }
.process-phase:nth-child(5) .phase-icon { border-color: var(--accent-teal); }
.process-phase:nth-child(6) .phase-icon { border-color: var(--accent-emerald); }

.process-phase:hover .phase-icon {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.process-phase:nth-child(1):hover .phase-icon { background: var(--primary-color); }
.process-phase:nth-child(2):hover .phase-icon { background: var(--accent-violet); }
.process-phase:nth-child(3):hover .phase-icon { background: var(--accent-rose); }
.process-phase:nth-child(4):hover .phase-icon { background: var(--accent-orange); }
.process-phase:nth-child(5):hover .phase-icon { background: var(--accent-teal); }
.process-phase:nth-child(6):hover .phase-icon { background: var(--accent-emerald); }

.process-phase .phase-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.process-phase:nth-child(1) .phase-icon i { color: var(--primary-color); }
.process-phase:nth-child(2) .phase-icon i { color: var(--accent-violet); }
.process-phase:nth-child(3) .phase-icon i { color: var(--accent-rose); }
.process-phase:nth-child(4) .phase-icon i { color: var(--accent-orange); }
.process-phase:nth-child(5) .phase-icon i { color: var(--accent-teal); }
.process-phase:nth-child(6) .phase-icon i { color: var(--accent-emerald); }

.process-phase:hover .phase-icon i {
    color: var(--white);
}

.process-phase .phase-number {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 3;
}

.process-phase .phase-content {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.process-phase:hover .phase-content {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.process-phase .phase-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.process-phase .phase-content > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.process-phase .phase-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-phase .phase-content ul li {
    font-size: 0.8125rem;
    color: var(--text-color);
    padding: 0.375rem 0;
    border-top: 1px solid var(--border-color);
}

.process-phase .phase-content ul li:first-child {
    border-top: none;
}

/* ==========================================================================
   COMPARISON CARDS (What Makes Us Different)
   ========================================================================== */
.seo-difference {
    background: var(--light-bg);
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.comparison-card.bad {
    border: 2px solid var(--danger-color);
    border-top-width: 5px;
}

.comparison-card.good {
    border: 2px solid var(--accent-emerald);
    border-top-width: 5px;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.comparison-card.bad:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow-danger);
}

.comparison-card.good:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow-success);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-card.bad .comparison-header i {
    font-size: 2rem;
    color: var(--danger-color);
}

.comparison-card.good .comparison-header i {
    font-size: 2rem;
    color: var(--accent-emerald);
}

.comparison-header h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    transform: translateX(5px);
}

.comparison-card.bad .comparison-list li i {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.comparison-card.good .comparison-list li i {
    color: var(--accent-emerald);
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

/* ==========================================================================
   SEO RESULTS SECTION
   ========================================================================== */
.seo-results {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.seo-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.seo-results::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatBubble 15s ease-in-out infinite;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition-normal);
}

.result-card:hover .result-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.result-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.result-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ==========================================================================
   SEO TOOLS SECTION
   ========================================================================== */
.seo-tools {
    background: var(--white);
    position: relative;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.tool-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.tool-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.tool-item:hover img {
    transform: scale(1.15);
}

.tool-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* ==========================================================================
   INDUSTRIES GRID
   ========================================================================== */
.seo-industries {
    background: var(--light-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    cursor: default;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--primary-gradient);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.industry-item:hover i {
    color: var(--white);
    transform: scale(1.15);
}

.industry-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    transition: var(--transition-normal);
}

.industry-item:hover span {
    color: var(--white);
}

/* ==========================================================================
   RANKING GUARANTEE SECTION
   ========================================================================== */
.ranking-guarantee {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.ranking-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-image {
    position: relative;
}

.guarantee-image img {
    max-width: 100%;
    height: auto;
    animation: heroImageFloat 6s ease-in-out infinite;
}

.guarantee-content {
    position: relative;
    z-index: 1;
}

.guarantee-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.guarantee-content .lead {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.guarantee-points {
    margin-bottom: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.guarantee-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-emerald);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: var(--accent-emerald);
    flex-shrink: 0;
}

.guarantee-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.guarantee-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-teal) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.btn-guarantee:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-success);
    color: var(--white);
}

.btn-guarantee i {
    transition: var(--transition-normal);
}

.btn-guarantee:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   SEO REPORTING SECTION
   ========================================================================== */
.seo-reporting {
    background: var(--light-bg);
}

.reporting-content {
    position: relative;
}

.reporting-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reporting-content .lead {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.reporting-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.dashboard-preview {
    position: relative;
}

.dashboard-preview img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: var(--transition-normal);
}

.dashboard-preview:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

/* ==========================================================================
   SEO STATS IN BENEFITS
   ========================================================================== */
.seo-stats {
    margin-top: 2rem;
}

.seo-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.seo-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.seo-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.seo-stats .stat-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.service-benefits {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 10% 50%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 30%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 90%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    position: relative;
    z-index: 1;
}

.benefits-header .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-light);
}

.benefits-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefits-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) translateX(5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.benefit-content h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-service {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-service::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.why-choose-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.why-choose-card .icon-box i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-card h4 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.why-choose-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.service-process {
    background: var(--light-bg);
    position: relative;
}

.process-timeline {
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

/* Connector Line */
.process-step::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-violet));
    z-index: 0;
}

.process-step:last-child::after,
.col-lg-3:last-child .process-step::after,
.col-lg-2:last-child .process-step::after {
    display: none;
}

.step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg), 0 0 0 8px var(--light-bg);
    transition: var(--transition-normal);
}

.process-step:hover .step-icon {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl), var(--shadow-glow), 0 0 0 8px var(--light-bg);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   TECHNOLOGIES SECTION
   ========================================================================== */
.technologies-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.tech-category {
    background: var(--light-bg);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.tech-category:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.tech-category h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    min-width: 80px;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tech-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.tech-item:hover img {
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--border-color);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    background: var(--primary-gradient);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::before {
    background: var(--primary-gradient);
    height: 5px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.pricing-header > p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price .period {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
    font-weight: 500;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i.fa-check {
    color: var(--accent-emerald);
    font-size: 0.875rem;
}

.pricing-features li i.fa-times {
    color: var(--text-light);
    font-size: 0.875rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: auto;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--white);
}

/* SEO Add-ons */
.seo-addons {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.addon-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    height: 100%;
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.addon-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.addon-price {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================================================
   CASE STUDIES / PORTFOLIO SECTION
   ========================================================================== */
.case-studies-section {
    background: var(--white);
    position: relative;
}

.portfolio-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.btn-view {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--white);
    color: var(--dark-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.portfolio-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.portfolio-content h4 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.portfolio-content > p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Portfolio Results for SEO */
.portfolio-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.portfolio-results span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--accent-emerald);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.portfolio-results span i {
    font-size: 0.625rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--dark-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.btn-view-all:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-view-all i {
    transition: var(--transition-normal);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(99, 102, 241, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.125rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.service-faq,
.faqs-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-faq::before,
.faqs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header-side {
    position: relative;
    z-index: 1;
    padding-right: 2rem;
}

.faq-header-side h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-header-side p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.btn-faq-contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--white);
}

.btn-faq-contact i {
    transition: var(--transition-normal);
}

.btn-faq-contact:hover i {
    transform: translateX(5px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-question h3,
.faq-question h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    padding-right: 1rem;
    line-height: 1.5;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer.show {
    max-height: 500px;
}

.faq-answer > div,
.faq-answer > p {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   RELATED SERVICES SECTION
   ========================================================================== */
.related-services {
    background: var(--light-bg);
    position: relative;
}

.related-service-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition-normal);
    height: 100%;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.related-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition-normal);
}

.related-service-card:hover .related-service-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
}

.related-service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.related-service-card:hover .related-service-icon i {
    color: var(--white);
}

.related-service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.related-service-card:hover .explore-link {
    gap: 0.75rem;
}

.explore-link i {
    transition: var(--transition-normal);
}

.related-service-card:hover .explore-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.service-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 100%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: ctaGradientPulse 10s ease-in-out infinite;
}

@keyframes ctaGradientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
    color: var(--white);
}

.btn-cta-primary i {
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: var(--white);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.contact-item:hover {
    color: var(--white);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-light);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1199.98px) {
    .service-hero-title {
        font-size: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .process-step::after {
        right: -30%;
        width: 60%;
    }
    
    .seo-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-process-timeline::before {
        display: none;
    }
    
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991.98px) {
    .service-hero-section {
        padding: 4rem 0 5rem;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-description {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .overview-content h2,
    .benefits-header h2,
    .faq-header-side h2,
    .guarantee-content h2,
    .reporting-content h2 {
        font-size: 1.875rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .faq-header-side {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content > p {
        font-size: 1.0625rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .seo-process-timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .service-breadcrumb {
        padding: 0.75rem 0;
    }
    
    .service-hero-section {
        padding: 3rem 0 4rem;
        min-height: auto;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-service,
    .btn-secondary-service {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .floating-stats {
        gap: 0.75rem;
    }
    
    .floating-stats .stat-card {
        padding: 1rem 1.25rem;
        min-width: 100px;
    }
    
    .floating-stats .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .overview-content h2,
    .benefits-header h2,
    .faq-header-side h2,
    .guarantee-content h2,
    .reporting-content h2 {
        font-size: 1.5rem;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .price .amount {
        font-size: 2.25rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-card h3 {
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .seo-audit-banner .row {
        text-align: center;
    }
    
    .seo-audit-banner .col-lg-4 {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-offered-card,
    .why-choose-card,
    .pricing-card,
    .related-service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question h3,
    .faq-question h5 {
        font-size: 0.9375rem;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tool-item {
        padding: 1rem 0.5rem;
    }
    
    .tool-item img {
        width: 36px;
        height: 36px;
    }
    
    .guarantee-item,
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .portfolio-results {
        justify-content: center;
    }
}

/* ==========================================================================
   ANIMATION KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Loading Animation */
.img-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* AOS Custom Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-violet));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.2);
    color: var(--dark-color);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles,
    .hero-gradient,
    .service-hero-img,
    .experience-badge {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .service-hero-section,
    .service-cta-section,
    .seo-results,
    .seo-audit-banner {
        background: #f8fafc !important;
        color: #000 !important;
    }
    
    .service-hero-title,
    .section-header h2 {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .pricing-card,
    .service-offered-card,
    .why-choose-card,
    .comparison-card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
    
    .btn-primary-service,
    .btn-secondary-service,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-audit,
    .btn-guarantee {
        display: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --dark-color: #000000;
        --text-color: #000000;
        --border-color: #000000;
    }
}


/* ==========================================================================
   APP TYPES SECTION
   ========================================================================== */
.app-types-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.app-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* SVG Decorative Pattern */
.app-types-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200 50 L350 150 L350 300 L200 350 L50 300 L50 150 Z' fill='none' stroke='%236366f1' stroke-opacity='0.05' stroke-width='2'/%3E%3Cpath d='M200 80 L320 160 L320 280 L200 320 L80 280 L80 160 Z' fill='none' stroke='%238b5cf6' stroke-opacity='0.03' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

.app-type-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Top Border Gradient on Hover */
.app-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background Glow Effect */
.app-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.app-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.app-type-card:hover::before {
    transform: scaleX(1);
}

.app-type-card:hover::after {
    opacity: 1;
}

/* App Type Icon */
.app-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SVG Ring Animation */
.app-type-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

/* Decorative Dots */
.app-type-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='2' fill='%236366f1' opacity='0.15'/%3E%3Ccircle cx='30' cy='6' r='1.5' fill='%238b5cf6' opacity='0.1'/%3E%3Ccircle cx='54' cy='6' r='1' fill='%23a855f7' opacity='0.08'/%3E%3Ccircle cx='6' cy='30' r='1' fill='%23a855f7' opacity='0.08'/%3E%3Ccircle cx='54' cy='30' r='2' fill='%236366f1' opacity='0.15'/%3E%3Ccircle cx='6' cy='54' r='1.5' fill='%238b5cf6' opacity='0.1'/%3E%3Ccircle cx='30' cy='54' r='1' fill='%23a855f7' opacity='0.08'/%3E%3Ccircle cx='54' cy='54' r='1.5' fill='%238b5cf6' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.app-type-card:hover .app-type-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(99, 102, 241, 0.4),
        0 0 0 4px rgba(99, 102, 241, 0.1);
}

.app-type-card:hover .app-type-icon::before {
    opacity: 1;
    transform: scale(1);
    animation: iconRingPulse 2s ease-in-out infinite;
}

.app-type-card:hover .app-type-icon::after {
    opacity: 1;
    animation: iconDotsRotate 15s linear infinite;
}

@keyframes iconRingPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes iconDotsRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.app-type-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.app-type-card:hover .app-type-icon i {
    color: var(--white);
    transform: scale(1.1);
}

/* App Type Title */
.app-type-card h5 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

/* Underline Effect */
.app-type-card h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: transform 0.3s ease;
}

.app-type-card:hover h5 {
    color: var(--primary-color);
}

.app-type-card:hover h5::after {
    transform: translateX(-50%) scaleX(1);
}

/* App Type Description */
.app-type-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.app-type-card:hover p {
    color: var(--text-color);
}

/* ==========================================================================
   APP TYPE CARD COLOR VARIATIONS
   ========================================================================== */

/* E-commerce - Shopping Bag */
.app-type-card:nth-child(1) .app-type-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.2) 100%);
}
.app-type-card:nth-child(1) .app-type-icon i {
    color: var(--accent-orange);
}
.app-type-card:nth-child(1):hover .app-type-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* Food Delivery - Utensils */
.app-type-card:nth-child(2) .app-type-icon {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(244, 63, 94, 0.2) 100%);
}
.app-type-card:nth-child(2) .app-type-icon i {
    color: var(--accent-rose);
}
.app-type-card:nth-child(2):hover .app-type-icon {
    background: linear-gradient(135deg, var(--accent-rose) 0%, #e11d48 100%);
    box-shadow: 0 15px 30px rgba(244, 63, 94, 0.4);
}

/* Healthcare - Heartbeat */
.app-type-card:nth-child(3) .app-type-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
}
.app-type-card:nth-child(3) .app-type-icon i {
    color: var(--accent-emerald);
}
.app-type-card:nth-child(3):hover .app-type-icon {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* Education - Graduation Cap */
.app-type-card:nth-child(4) .app-type-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
}
.app-type-card:nth-child(4) .app-type-icon i {
    color: var(--primary-color);
}
.app-type-card:nth-child(4):hover .app-type-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

/* FinTech - University/Bank */
.app-type-card:nth-child(5) .app-type-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.2) 100%);
}
.app-type-card:nth-child(5) .app-type-icon i {
    color: var(--accent-cyan);
}
.app-type-card:nth-child(5):hover .app-type-icon {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0891b2 100%);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
}

/* On-Demand - Taxi */
.app-type-card:nth-child(6) .app-type-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
}
.app-type-card:nth-child(6) .app-type-icon i {
    color: var(--secondary-color);
}
.app-type-card:nth-child(6):hover .app-type-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

/* Social Media - Comments */
.app-type-card:nth-child(7) .app-type-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
}
.app-type-card:nth-child(7) .app-type-icon i {
    color: var(--accent-violet);
}
.app-type-card:nth-child(7):hover .app-type-icon {
    background: linear-gradient(135deg, var(--accent-violet) 0%, #7c3aed 100%);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* Gaming - Gamepad */
.app-type-card:nth-child(8) .app-type-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.2) 100%);
}
.app-type-card:nth-child(8) .app-type-icon i {
    color: var(--accent-teal);
}
.app-type-card:nth-child(8):hover .app-type-icon {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #0d9488 100%);
    box-shadow: 0 15px 30px rgba(20, 184, 166, 0.4);
}

/* ==========================================================================
   APP FEATURES SECTION
   ========================================================================== */
.app-features-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* SVG Background Pattern */
.app-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating Gradient Orb */
.app-features-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: featureOrbFloat 20s ease-in-out infinite;
}

@keyframes featureOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 20px) scale(1.05); }
    50% { transform: translate(-20px, -30px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Feature Card */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: default;
    z-index: 1;
}

/* SVG Decorative Pattern */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%236366f1' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Top Border Gradient */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-card i {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* SVG Ring Animation */
.feature-card i::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.3));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Dots */
.feature-card i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='2' fill='%236366f1' opacity='0.2'/%3E%3Ccircle cx='20' cy='4' r='1.5' fill='%238b5cf6' opacity='0.15'/%3E%3Ccircle cx='36' cy='4' r='1' fill='%23a855f7' opacity='0.1'/%3E%3Ccircle cx='4' cy='20' r='1' fill='%23a855f7' opacity='0.1'/%3E%3Ccircle cx='36' cy='20' r='2' fill='%236366f1' opacity='0.2'/%3E%3Ccircle cx='4' cy='36' r='1.5' fill='%238b5cf6' opacity='0.15'/%3E%3Ccircle cx='20' cy='36' r='1' fill='%23a855f7' opacity='0.1'/%3E%3Ccircle cx='36' cy='36' r='1.5' fill='%238b5cf6' opacity='0.15'/%3E%3C/svg%3E");
    background-size: cover;
    border-radius: var(--radius-xl);
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.feature-card:hover i {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 10px 30px rgba(99, 102, 241, 0.4),
        0 0 0 4px rgba(99, 102, 241, 0.1);
}

.feature-card:hover i::before {
    opacity: 1;
    transform: scale(1);
    animation: featureRingPulse 2s ease-in-out infinite;
}

.feature-card:hover i::after {
    opacity: 1;
    transform: scale(2);
    animation: featureDotsRotate 10s linear infinite;
}

@keyframes featureRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes featureDotsRotate {
    from { transform: scale(2) rotate(0deg); }
    to { transform: scale(2) rotate(360deg); }
}

/* Feature Title */
.feature-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    position: relative;
}

/* Title Underline */
.feature-card h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: transform 0.3s ease;
}

.feature-card:hover h5 {
    color: var(--primary-color);
}

.feature-card:hover h5::after {
    transform: translateX(-50%) scaleX(1);
}

/* ==========================================================================
   PORTFOLIO TECH TAGS
   ========================================================================== */
.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.portfolio-tech span {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.12) 100%);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.portfolio-tech span:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ==========================================================================
   STAGGER ANIMATIONS FOR CARDS
   ========================================================================== */

/* App Types Stagger */
.app-types-section .row > [class*="col-"]:nth-child(1) .app-type-card { animation-delay: 0.05s; }
.app-types-section .row > [class*="col-"]:nth-child(2) .app-type-card { animation-delay: 0.1s; }
.app-types-section .row > [class*="col-"]:nth-child(3) .app-type-card { animation-delay: 0.15s; }
.app-types-section .row > [class*="col-"]:nth-child(4) .app-type-card { animation-delay: 0.2s; }
.app-types-section .row > [class*="col-"]:nth-child(5) .app-type-card { animation-delay: 0.25s; }
.app-types-section .row > [class*="col-"]:nth-child(6) .app-type-card { animation-delay: 0.3s; }
.app-types-section .row > [class*="col-"]:nth-child(7) .app-type-card { animation-delay: 0.35s; }
.app-types-section .row > [class*="col-"]:nth-child(8) .app-type-card { animation-delay: 0.4s; }

.app-types-section .app-type-card {
    animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Features Stagger */
.app-features-section .row > [class*="col-"]:nth-child(1) .feature-card { animation-delay: 0.05s; }
.app-features-section .row > [class*="col-"]:nth-child(2) .feature-card { animation-delay: 0.08s; }
.app-features-section .row > [class*="col-"]:nth-child(3) .feature-card { animation-delay: 0.11s; }
.app-features-section .row > [class*="col-"]:nth-child(4) .feature-card { animation-delay: 0.14s; }
.app-features-section .row > [class*="col-"]:nth-child(5) .feature-card { animation-delay: 0.17s; }
.app-features-section .row > [class*="col-"]:nth-child(6) .feature-card { animation-delay: 0.2s; }
.app-features-section .row > [class*="col-"]:nth-child(7) .feature-card { animation-delay: 0.23s; }
.app-features-section .row > [class*="col-"]:nth-child(8) .feature-card { animation-delay: 0.26s; }
.app-features-section .row > [class*="col-"]:nth-child(9) .feature-card { animation-delay: 0.29s; }
.app-features-section .row > [class*="col-"]:nth-child(10) .feature-card { animation-delay: 0.32s; }
.app-features-section .row > [class*="col-"]:nth-child(11) .feature-card { animation-delay: 0.35s; }
.app-features-section .row > [class*="col-"]:nth-child(12) .feature-card { animation-delay: 0.38s; }

.app-features-section .feature-card {
    animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .app-type-card {
        padding: 1.75rem 1.25rem;
    }
    
    .app-type-icon {
        width: 70px;
        height: 70px;
    }
    
    .app-type-icon i {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-card i {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .app-type-card {
        padding: 1.5rem 1rem;
    }
    
    .app-type-icon {
        width: 64px;
        height: 64px;
    }
    
    .app-type-icon i {
        font-size: 1.5rem;
    }
    
    .app-type-card h5 {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card i {
        width: 60px;
        height: 60px;
        font-size: 1.375rem;
    }
    
    .feature-card h5 {
        font-size: 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .app-type-card {
        padding: 1.25rem 1rem;
    }
    
    .app-type-card:hover {
        transform: translateY(-8px);
    }
    
    .app-type-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .app-type-icon i {
        font-size: 1.375rem;
    }
    
    .app-type-card h5 {
        font-size: 0.9375rem;
    }
    
    .app-type-card p {
        font-size: 0.8125rem;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .feature-card:hover {
        transform: translateY(-8px);
    }
    
    .feature-card i {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .feature-card h5 {
        font-size: 0.8125rem;
    }
    
    .portfolio-tech {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .app-type-card {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }
    
    .app-type-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-type-icon i {
        font-size: 1.25rem;
    }
    
    .app-type-card h5 {
        font-size: 0.875rem;
    }
    
    .app-type-card p {
        font-size: 0.75rem;
        display: none; /* Hide description on very small screens */
    }
    
    .app-type-card:hover .app-type-icon {
        transform: scale(1.05) rotate(3deg);
    }
    
    .feature-card {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .feature-card i {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .feature-card h5 {
        font-size: 0.75rem;
    }
    
    .feature-card:hover i {
        transform: scale(1.05) rotate(3deg);
    }
    
    .portfolio-tech span {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .app-type-card,
    .app-type-icon,
    .app-type-icon::before,
    .app-type-icon::after,
    .feature-card,
    .feature-card i,
    .feature-card i::before,
    .feature-card i::after,
    .feature-card h5::after,
    .app-type-card h5::after,
    .portfolio-tech span {
        transition: none;
        animation: none;
    }
    
    .app-type-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    .app-type-card:hover .app-type-icon,
    .feature-card:hover i {
        transform: none;
    }
    
    .app-features-section::after,
    .app-types-section::after {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.app-types-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.app-types-section.dark-theme .app-type-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-types-section.dark-theme .app-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
}

.app-types-section.dark-theme .app-type-card h5 {
    color: var(--white);
}

.app-types-section.dark-theme .app-type-card p {
    color: rgba(255, 255, 255, 0.6);
}

.app-features-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.app-features-section.dark-theme .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-features-section.dark-theme .feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
}

.app-features-section.dark-theme .feature-card h5 {
    color: var(--white);
}

.app-features-section.dark-theme .feature-card:hover h5 {
    color: var(--primary-light);
}

.app-features-section.dark-theme .feature-card i {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
}

/* ==========================================================================
   CLOUD PLATFORMS SECTION
   ========================================================================== */
.cloud-platforms {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.cloud-platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, var(--white) 0%, transparent 5%),
        linear-gradient(0deg, var(--white) 0%, transparent 5%);
    pointer-events: none;
}

/* Cloud Platform Card Base */
.cloud-platform-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Platform-specific Top Border */
.cloud-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--border-color);
    transition: all 0.4s ease;
}

/* Decorative Background Pattern */
.cloud-platform-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cloud-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.cloud-platform-card:hover::after {
    opacity: 1;
}

/* AWS Specific Styling */
.cloud-platform-card.aws::before {
    background: linear-gradient(90deg, #FF9900 0%, #FF6600 100%);
}

.cloud-platform-card.aws:hover {
    border-color: #FF9900;
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
}

/* Azure Specific Styling */
.cloud-platform-card.azure::before {
    background: linear-gradient(90deg, #0078D4 0%, #00BCF2 100%);
}

.cloud-platform-card.azure:hover {
    border-color: #0078D4;
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.2);
}

/* GCP Specific Styling */
.cloud-platform-card.gcp::before {
    background: linear-gradient(90deg, #4285F4 0%, #34A853 50%, #FBBC04 75%, #EA4335 100%);
}

.cloud-platform-card.gcp:hover {
    border-color: #4285F4;
    box-shadow: 0 20px 40px rgba(66, 133, 244, 0.2);
}

/* Platform Logo */
.platform-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.cloud-platform-card:hover .platform-logo {
    transform: scale(1.1);
}

.platform-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cloud-platform-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.cloud-platform-card > p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Platform Services Tags */
.platform-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.platform-services span {
    display: inline-flex;
    padding: 0.375rem 0.875rem;
    background: var(--light-bg);
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cloud-platform-card.aws:hover .platform-services span {
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.3);
    color: #CC7A00;
}

.cloud-platform-card.azure:hover .platform-services span {
    background: rgba(0, 120, 212, 0.1);
    border-color: rgba(0, 120, 212, 0.3);
    color: #0078D4;
}

.cloud-platform-card.gcp:hover .platform-services span {
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.3);
    color: #4285F4;
}

/* Certification Badge */
.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
    color: var(--accent-emerald);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.certification-badge i {
    font-size: 0.875rem;
}

/* ==========================================================================
   CLOUD TECHNOLOGIES SECTION
   ========================================================================== */
.cloud-technologies {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.cloud-technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Tech Card */
.tech-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.tech-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover::after {
    opacity: 1;
}

.tech-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.tech-card:hover img {
    transform: scale(1.15) rotate(5deg);
}

.tech-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.tech-card:hover h5 {
    color: var(--primary-color);
}

.tech-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   MIGRATION APPROACH SECTION
   ========================================================================== */
.migration-approach {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.migration-approach::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Migration Phases Container */
.migration-phases {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

/* Phase Item */
.phase-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.phase-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
    z-index: 2;
}

/* Phase Number Badge */
.phase-item .phase-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

/* Phase Icon */
.phase-item .phase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.25rem;
    transition: all 0.4s ease;
    position: relative;
}

/* Decorative Ring */
.phase-item .phase-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), transparent, rgba(139, 92, 246, 0.3));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.phase-item:hover .phase-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.phase-item:hover .phase-icon::before {
    opacity: 1;
    animation: phaseRingPulse 2s ease-in-out infinite;
}

@keyframes phaseRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.phase-item .phase-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.phase-item:hover .phase-icon i {
    color: var(--white);
}

/* Phase Content */
.phase-item .phase-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.phase-item .phase-content > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.phase-item .phase-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.phase-item .phase-content ul li {
    font-size: 0.8125rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phase-item .phase-content ul li::before {
    content: '→';
    color: var(--primary-color);
    font-weight: 600;
}

.phase-item .phase-content ul li:first-child {
    border-top: none;
}

/* Phase Connector Arrow */
.phase-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.phase-item:hover + .phase-connector {
    opacity: 1;
    transform: translateX(5px);
}

.phase-connector i {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ==========================================================================
   CLOUD USE CASES SECTION
   ========================================================================== */
.cloud-use-cases {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cloud-use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Use Case Card */
.use-case-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Pattern */
.use-case-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

.use-case-card:hover::after {
    opacity: 1;
}

/* Use Case Icon */
.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
    position: relative;
}

/* Icon Ring Animation */
.use-case-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.use-case-card:hover .use-case-icon::before {
    opacity: 1;
    animation: useCaseRingPulse 2s ease-in-out infinite;
}

@keyframes useCaseRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.use-case-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-icon i {
    color: var(--white);
}

.use-case-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.use-case-card:hover h4 {
    color: var(--primary-color);
}

.use-case-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   SLA & SUPPORT SECTION
   ========================================================================== */
.sla-support {
    position: relative;
    overflow: hidden;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.sla-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 40% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.sla-support::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: slaOrbFloat 20s ease-in-out infinite;
}

@keyframes slaOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.2); }
}

/* SLA Card */
.sla-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sla-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sla-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sla-card:hover::before {
    transform: scaleX(1);
}

/* SLA Icon */
.sla-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
}

.sla-card:hover .sla-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.sla-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.sla-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sla-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Managed Services Features */
.managed-services-features {
    position: relative;
    z-index: 1;
}

.managed-services-features .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.managed-services-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.managed-services-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
}

.managed-services-features .feature-item i {
    color: var(--accent-emerald);
    font-size: 1rem;
    flex-shrink: 0;
}

.managed-services-features .feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   CERTIFICATIONS SECTION
   ========================================================================== */
.certifications {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Certification Item */
.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: var(--white);
}

.cert-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.cert-item:hover img {
    transform: scale(1.15);
}

.cert-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
}

/* ==========================================================================
   CLOUD STATS (Similar to SEO Stats)
   ========================================================================== */
.cloud-stats {
    margin-top: 2rem;
}

.cloud-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cloud-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.cloud-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
}

.cloud-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   ADDITIONAL PRICING OPTIONS
   ========================================================================== */
.additional-pricing {
    position: relative;
    z-index: 1;
}

.pricing-options-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 2px solid var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-options-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.pricing-options-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.pricing-options-card h4 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pricing-options-card > p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Pricing Options Grid */
.pricing-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.option-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-color);
}

.option-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .migration-phases {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .phase-connector {
        display: none;
    }
    
    .phase-item {
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
    
    .managed-services-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .cloud-platform-card {
        padding: 2rem 1.5rem;
    }
    
    .platform-logo {
        width: 80px;
        height: 80px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .managed-services-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sla-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .cloud-platform-card {
        padding: 1.5rem 1.25rem;
    }
    
    .platform-logo {
        width: 70px;
        height: 70px;
    }
    
    .cloud-platform-card h4 {
        font-size: 1.25rem;
    }
    
    .phase-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .tech-card {
        padding: 1.5rem 1rem;
    }
    
    .tech-card img {
        width: 48px;
        height: 48px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cert-item {
        padding: 1.5rem 1rem;
    }
    
    .cert-item img {
        width: 60px;
        height: 60px;
    }
    
    .pricing-options-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-options-card {
        padding: 2rem 1.5rem;
    }
    
    .managed-services-features .features-grid {
        grid-template-columns: 1fr;
    }
    
    .sla-card {
        padding: 1.5rem 1rem;
    }
    
    .sla-card h3 {
        font-size: 1.75rem;
    }
    
    .use-case-card {
        padding: 1.5rem 1.25rem;
    }
    
    .use-case-icon {
        width: 64px;
        height: 64px;
    }
    
    .use-case-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .cloud-platform-card {
        padding: 1.25rem 1rem;
    }
    
    .platform-logo {
        width: 60px;
        height: 60px;
    }
    
    .cloud-platform-card h4 {
        font-size: 1.125rem;
    }
    
    .platform-services span {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
    
    .certification-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .tech-card {
        padding: 1.25rem 0.875rem;
    }
    
    .tech-card img {
        width: 40px;
        height: 40px;
    }
    
    .tech-card h5 {
        font-size: 0.875rem;
    }
    
    .phase-item {
        padding: 1.5rem 1rem;
    }
    
    .phase-item .phase-icon {
        width: 64px;
        height: 64px;
    }
    
    .phase-item .phase-icon i {
        font-size: 1.5rem;
    }
    
    .phase-item .phase-content h4 {
        font-size: 1.125rem;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-item {
        padding: 1.25rem 0.75rem;
    }
    
    .cert-item img {
        width: 50px;
        height: 50px;
    }
    
    .cert-item span {
        font-size: 0.75rem;
    }
    
    .cloud-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cloud-stats .stat-number {
        min-width: auto;
    }
    
    .sla-icon {
        width: 56px;
        height: 56px;
    }
    
    .sla-icon i {
        font-size: 1.5rem;
    }
    
    .sla-card h3 {
        font-size: 1.5rem;
    }
    
    .sla-card p {
        font-size: 0.8125rem;
    }
    
    .use-case-card {
        padding: 1.25rem 1rem;
    }
    
    .use-case-icon {
        width: 56px;
        height: 56px;
    }
    
    .use-case-icon i {
        font-size: 1.25rem;
    }
    
    .use-case-card h4 {
        font-size: 1rem;
    }
    
    .use-case-card p {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   STAGGER ANIMATIONS
   ========================================================================== */

/* Tech Cards Stagger */
.cloud-technologies .row > [class*="col-"]:nth-child(1) .tech-card { animation-delay: 0.05s; }
.cloud-technologies .row > [class*="col-"]:nth-child(2) .tech-card { animation-delay: 0.1s; }
.cloud-technologies .row > [class*="col-"]:nth-child(3) .tech-card { animation-delay: 0.15s; }
.cloud-technologies .row > [class*="col-"]:nth-child(4) .tech-card { animation-delay: 0.2s; }
.cloud-technologies .row > [class*="col-"]:nth-child(5) .tech-card { animation-delay: 0.25s; }
.cloud-technologies .row > [class*="col-"]:nth-child(6) .tech-card { animation-delay: 0.3s; }
.cloud-technologies .row > [class*="col-"]:nth-child(7) .tech-card { animation-delay: 0.35s; }
.cloud-technologies .row > [class*="col-"]:nth-child(8) .tech-card { animation-delay: 0.4s; }
.cloud-technologies .row > [class*="col-"]:nth-child(9) .tech-card { animation-delay: 0.45s; }
.cloud-technologies .row > [class*="col-"]:nth-child(10) .tech-card { animation-delay: 0.5s; }
.cloud-technologies .row > [class*="col-"]:nth-child(11) .tech-card { animation-delay: 0.55s; }
.cloud-technologies .row > [class*="col-"]:nth-child(12) .tech-card { animation-delay: 0.6s; }

.cloud-technologies .tech-card {
    animation: techCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes techCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Certifications Stagger */
.certifications-grid .cert-item:nth-child(1) { animation-delay: 0.05s; }
.certifications-grid .cert-item:nth-child(2) { animation-delay: 0.1s; }
.certifications-grid .cert-item:nth-child(3) { animation-delay: 0.15s; }
.certifications-grid .cert-item:nth-child(4) { animation-delay: 0.2s; }
.certifications-grid .cert-item:nth-child(5) { animation-delay: 0.25s; }
.certifications-grid .cert-item:nth-child(6) { animation-delay: 0.3s; }
.certifications-grid .cert-item:nth-child(7) { animation-delay: 0.35s; }
.certifications-grid .cert-item:nth-child(8) { animation-delay: 0.4s; }

.certifications-grid .cert-item {
    animation: certIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes certIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .cloud-platform-card,
    .tech-card,
    .phase-item,
    .use-case-card,
    .sla-card,
    .cert-item,
    .option-item,
    .phase-item .phase-icon,
    .use-case-icon,
    .platform-logo,
    .tech-card img,
    .cert-item img,
    .phase-connector i {
        transition: none;
        animation: none;
    }
    
    .cloud-platform-card:hover,
    .tech-card:hover,
    .phase-item:hover,
    .use-case-card:hover,
    .sla-card:hover,
    .cert-item:hover,
    .option-item:hover {
        transform: none;
    }
    
    .sla-support::after {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS (Optional)
   ========================================================================== */
.cloud-platforms.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.cloud-platforms.dark-theme .cloud-platform-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.cloud-platforms.dark-theme .cloud-platform-card h4 {
    color: var(--white);
}

.cloud-platforms.dark-theme .cloud-platform-card > p {
    color: rgba(255, 255, 255, 0.7);
}

.cloud-technologies.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.cloud-technologies.dark-theme .tech-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.cloud-technologies.dark-theme .tech-card h5 {
    color: var(--white);
}

.cloud-technologies.dark-theme .tech-card p {
    color: rgba(255, 255, 255, 0.6);
}



/* ==========================================================================
   CONTENT TYPES SECTION
   ========================================================================== */
.content-types {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.content-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Content Type Card */
.content-type-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.content-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.content-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.content-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.content-type-card:hover::before {
    transform: scaleX(1);
}

.content-type-card:hover::after {
    opacity: 1;
}

/* Content Icon */
.content-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.content-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.content-type-card:hover .content-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.content-type-card:hover .content-icon::before {
    opacity: 1;
    animation: contentIconPulse 2s ease-in-out infinite;
}

@keyframes contentIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.content-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.content-type-card:hover .content-icon i {
    color: var(--white);
}

.content-type-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.content-type-card:hover h5 {
    color: var(--primary-color);
}

.content-type-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   CONTENT MARKETING FUNNEL SECTION
   ========================================================================== */
.content-funnel {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.content-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, var(--white) 0%, transparent 5%),
        linear-gradient(0deg, var(--white) 0%, transparent 5%);
    pointer-events: none;
}

/* Funnel Wrapper */
.funnel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Funnel Stage */
.funnel-stage {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
}

/* Stage-specific widths for funnel effect */
.funnel-stage.awareness {
    width: 100%;
    border-color: var(--primary-color);
}

.funnel-stage.consideration {
    width: 85%;
    border-color: var(--accent-violet);
}

.funnel-stage.decision {
    width: 70%;
    border-color: var(--accent-emerald);
}

/* Top Border Colors */
.funnel-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.funnel-stage.awareness::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.funnel-stage.consideration::before {
    background: linear-gradient(90deg, var(--accent-violet), #a855f7);
}

.funnel-stage.decision::before {
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-teal));
}

/* Hover Effects */
.funnel-stage:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.funnel-stage.awareness:hover {
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.funnel-stage.consideration:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.funnel-stage.decision:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

/* Stage Header */
.stage-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.stage-header h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.funnel-stage.awareness .stage-header h4 {
    color: var(--primary-color);
}

.funnel-stage.consideration .stage-header h4 {
    color: var(--accent-violet);
}

.funnel-stage.decision .stage-header h4 {
    color: var(--accent-emerald);
}

.stage-header h4 i {
    font-size: 1.125rem;
}

.stage-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* Stage Content */
.stage-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-content ul li {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.funnel-stage.awareness:hover .stage-content ul li {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
}

.funnel-stage.consideration:hover .stage-content ul li {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--accent-violet);
}

.funnel-stage.decision:hover .stage-content ul li {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--accent-emerald);
}

/* Funnel Connector */
.funnel-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 1.5rem;
    color: var(--text-light);
}

.funnel-connector i {
    animation: funnelArrowBounce 2s ease-in-out infinite;
}

@keyframes funnelArrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ==========================================================================
   WRITING PROCESS SECTION
   ========================================================================== */
.writing-process {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.writing-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Process Timeline for Writing */
.writing-process .process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
}

/* Connecting Line */
.writing-process .process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color),
        var(--accent-violet),
        var(--accent-rose),
        var(--accent-orange),
        var(--accent-teal),
        var(--accent-emerald)
    );
    border-radius: var(--radius-full);
    z-index: 0;
}

/* Process Item */
.writing-process .process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.writing-process .process-number {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    z-index: 3;
}

.writing-process .process-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
}

/* Different border colors for each step */
.writing-process .process-item:nth-child(1) .process-icon { border-color: var(--primary-color); }
.writing-process .process-item:nth-child(2) .process-icon { border-color: var(--accent-violet); }
.writing-process .process-item:nth-child(3) .process-icon { border-color: var(--accent-rose); }
.writing-process .process-item:nth-child(4) .process-icon { border-color: var(--accent-orange); }
.writing-process .process-item:nth-child(5) .process-icon { border-color: var(--accent-teal); }
.writing-process .process-item:nth-child(6) .process-icon { border-color: var(--accent-emerald); }

.writing-process .process-item:hover .process-icon {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.writing-process .process-item:nth-child(1):hover .process-icon { background: var(--primary-color); }
.writing-process .process-item:nth-child(2):hover .process-icon { background: var(--accent-violet); }
.writing-process .process-item:nth-child(3):hover .process-icon { background: var(--accent-rose); }
.writing-process .process-item:nth-child(4):hover .process-icon { background: var(--accent-orange); }
.writing-process .process-item:nth-child(5):hover .process-icon { background: var(--accent-teal); }
.writing-process .process-item:nth-child(6):hover .process-icon { background: var(--accent-emerald); }

.writing-process .process-icon i {
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.writing-process .process-item:nth-child(1) .process-icon i { color: var(--primary-color); }
.writing-process .process-item:nth-child(2) .process-icon i { color: var(--accent-violet); }
.writing-process .process-item:nth-child(3) .process-icon i { color: var(--accent-rose); }
.writing-process .process-item:nth-child(4) .process-icon i { color: var(--accent-orange); }
.writing-process .process-item:nth-child(5) .process-icon i { color: var(--accent-teal); }
.writing-process .process-item:nth-child(6) .process-icon i { color: var(--accent-emerald); }

.writing-process .process-item:hover .process-icon i {
    color: var(--white);
}

.writing-process .process-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.writing-process .process-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   CONTENT STATS
   ========================================================================== */
.content-stats {
    margin-top: 2rem;
}

.content-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.content-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.content-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.content-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   QUALITY CARDS SECTION
   ========================================================================== */
.content-samples {
    background: var(--light-bg);
    position: relative;
}

.quality-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.quality-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card:hover::after {
    opacity: 1;
}

/* Quality Icon */
.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring */
.quality-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.quality-card:hover .quality-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.quality-card:hover .quality-icon::before {
    opacity: 1;
    animation: qualityIconPulse 2s ease-in-out infinite;
}

@keyframes qualityIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.quality-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.quality-card:hover .quality-icon i {
    color: var(--white);
}

.quality-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.quality-card:hover h4 {
    color: var(--primary-color);
}

.quality-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   RESULTS SHOWCASE WITH GRADIENT
   ========================================================================== */
.results-showcase {
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.results-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.results-showcase::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: resultsOrbFloat 15s ease-in-out infinite;
}

@keyframes resultsOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.2); }
}

/* ==========================================================================
   INDIVIDUAL PRICING SECTION
   ========================================================================== */
.individual-pricing {
    position: relative;
    z-index: 1;
}

.individual-pricing .section-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* ==========================================================================
   STAGGER ANIMATIONS
   ========================================================================== */

/* Content Type Cards Stagger */
.content-types .row > [class*="col-"]:nth-child(1) .content-type-card { animation-delay: 0.05s; }
.content-types .row > [class*="col-"]:nth-child(2) .content-type-card { animation-delay: 0.08s; }
.content-types .row > [class*="col-"]:nth-child(3) .content-type-card { animation-delay: 0.11s; }
.content-types .row > [class*="col-"]:nth-child(4) .content-type-card { animation-delay: 0.14s; }
.content-types .row > [class*="col-"]:nth-child(5) .content-type-card { animation-delay: 0.17s; }
.content-types .row > [class*="col-"]:nth-child(6) .content-type-card { animation-delay: 0.2s; }
.content-types .row > [class*="col-"]:nth-child(7) .content-type-card { animation-delay: 0.23s; }
.content-types .row > [class*="col-"]:nth-child(8) .content-type-card { animation-delay: 0.26s; }
.content-types .row > [class*="col-"]:nth-child(9) .content-type-card { animation-delay: 0.29s; }
.content-types .row > [class*="col-"]:nth-child(10) .content-type-card { animation-delay: 0.32s; }
.content-types .row > [class*="col-"]:nth-child(11) .content-type-card { animation-delay: 0.35s; }
.content-types .row > [class*="col-"]:nth-child(12) .content-type-card { animation-delay: 0.38s; }

.content-types .content-type-card {
    animation: contentCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes contentCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Quality Cards Stagger */
.content-samples .row > [class*="col-"]:nth-child(1) .quality-card { animation-delay: 0.1s; }
.content-samples .row > [class*="col-"]:nth-child(2) .quality-card { animation-delay: 0.15s; }
.content-samples .row > [class*="col-"]:nth-child(3) .quality-card { animation-delay: 0.2s; }
.content-samples .row > [class*="col-"]:nth-child(4) .quality-card { animation-delay: 0.25s; }
.content-samples .row > [class*="col-"]:nth-child(5) .quality-card { animation-delay: 0.3s; }
.content-samples .row > [class*="col-"]:nth-child(6) .quality-card { animation-delay: 0.35s; }

.content-samples .quality-card {
    animation: qualityCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes qualityCardIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .content-type-card {
        padding: 1.5rem 1rem;
    }
    
    .content-icon {
        width: 56px;
        height: 56px;
    }
    
    .content-icon i {
        font-size: 1.25rem;
    }
    
    .writing-process .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .writing-process .process-timeline::before {
        display: none;
    }
    
    .quality-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .content-type-card {
        padding: 1.25rem 0.875rem;
    }
    
    .content-icon {
        width: 50px;
        height: 50px;
    }
    
    .content-icon i {
        font-size: 1.125rem;
    }
    
    .content-type-card h5 {
        font-size: 0.875rem;
    }
    
    .funnel-stage {
        padding: 1.5rem;
    }
    
    .funnel-stage.awareness,
    .funnel-stage.consideration,
    .funnel-stage.decision {
        width: 100%;
    }
    
    .writing-process .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .writing-process .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .writing-process .process-icon i {
        font-size: 1.5rem;
    }
    
    .quality-card {
        padding: 1.5rem 1rem;
    }
    
    .quality-icon {
        width: 64px;
        height: 64px;
    }
    
    .quality-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .content-type-card {
        padding: 1rem 0.75rem;
    }
    
    .content-type-card:hover {
        transform: translateY(-5px);
    }
    
    .content-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
    
    .content-icon i {
        font-size: 1rem;
    }
    
    .content-type-card h5 {
        font-size: 0.8125rem;
    }
    
    .content-type-card p {
        font-size: 0.75rem;
    }
    
    .funnel-stage {
        padding: 1.25rem;
    }
    
    .stage-header h4 {
        font-size: 1.125rem;
    }
    
    .stage-content ul {
        gap: 0.5rem;
    }
    
    .stage-content ul li {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .funnel-connector {
        height: 40px;
        font-size: 1.25rem;
    }
    
    .writing-process .process-timeline {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .writing-process .process-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }
    
    .writing-process .process-number {
        top: 75px;
    }
    
    .quality-card {
        padding: 1.5rem 1rem;
    }
    
    .quality-card:hover {
        transform: translateY(-5px);
    }
    
    .quality-icon {
        width: 56px;
        height: 56px;
    }
    
    .quality-icon i {
        font-size: 1.375rem;
    }
    
    .quality-card h4 {
        font-size: 1rem;
    }
    
    .quality-card p {
        font-size: 0.875rem;
    }
    
    .content-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .content-stats .stat-number {
        min-width: auto;
    }
}

@media (max-width: 575.98px) {
    .content-type-card {
        padding: 0.875rem 0.5rem;
    }
    
    .content-icon {
        width: 40px;
        height: 40px;
    }
    
    .content-icon i {
        font-size: 0.875rem;
    }
    
    .content-type-card h5 {
        font-size: 0.75rem;
    }
    
    .content-type-card p {
        display: none;
    }
    
    .funnel-stage {
        padding: 1rem;
    }
    
    .stage-header h4 {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stage-header p {
        font-size: 0.8125rem;
    }
    
    .stage-content ul li {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .writing-process .process-icon {
        width: 56px;
        height: 56px;
    }
    
    .writing-process .process-icon i {
        font-size: 1.25rem;
    }
    
    .writing-process .process-content h4 {
        font-size: 0.9375rem;
    }
    
    .writing-process .process-content p {
        font-size: 0.75rem;
    }
    
    .quality-card {
        padding: 1.25rem 0.875rem;
    }
    
    .quality-icon {
        width: 50px;
        height: 50px;
    }
    
    .quality-icon i {
        font-size: 1.25rem;
    }
    
    .quality-card h4 {
        font-size: 0.9375rem;
    }
    
    .quality-card p {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .content-type-card,
    .content-icon,
    .content-icon::before,
    .funnel-stage,
    .funnel-connector i,
    .writing-process .process-icon,
    .quality-card,
    .quality-icon,
    .quality-icon::before,
    .content-stats .stat-item {
        transition: none;
        animation: none;
    }
    
    .content-type-card:hover,
    .funnel-stage:hover,
    .quality-card:hover {
        transform: none;
    }
    
    .content-type-card:hover .content-icon,
    .quality-card:hover .quality-icon,
    .writing-process .process-item:hover .process-icon {
        transform: none;
    }
    
    .results-showcase::after {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.content-types.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.content-types.dark-theme .content-type-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-types.dark-theme .content-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-types.dark-theme .content-type-card h5 {
    color: var(--white);
}

.content-types.dark-theme .content-type-card p {
    color: rgba(255, 255, 255, 0.6);
}

.content-funnel.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.content-funnel.dark-theme .funnel-stage {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-funnel.dark-theme .stage-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.content-funnel.dark-theme .stage-header p {
    color: rgba(255, 255, 255, 0.6);
}

.content-funnel.dark-theme .stage-content ul li {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.content-funnel.dark-theme .funnel-connector {
    color: rgba(255, 255, 255, 0.4);
}

.writing-process.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.writing-process.dark-theme .process-icon {
    background: rgba(255, 255, 255, 0.05);
}

.writing-process.dark-theme .process-content h4 {
    color: var(--white);
}

.writing-process.dark-theme .process-content p {
    color: rgba(255, 255, 255, 0.6);
}

.content-samples.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.content-samples.dark-theme .quality-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-samples.dark-theme .quality-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-samples.dark-theme .quality-card h4 {
    color: var(--white);
}

.content-samples.dark-theme .quality-card p {
    color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================================
   MARKETING CHANNELS SECTION
   ========================================================================== */
.marketing-channels {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.marketing-channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Channel Card */
.channel-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.channel-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.channel-card:hover::before {
    transform: scaleX(1);
}

.channel-card:hover::after {
    opacity: 1;
}

.channel-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.channel-card:hover img {
    transform: scale(1.15);
}

.channel-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.channel-card:hover h5 {
    color: var(--primary-color);
}

/* Platform-specific hover colors */
.channel-card:nth-child(1):hover { border-color: #4285F4; }
.channel-card:nth-child(1):hover h5 { color: #4285F4; }

.channel-card:nth-child(2):hover { border-color: #1877F2; }
.channel-card:nth-child(2):hover h5 { color: #1877F2; }

.channel-card:nth-child(3):hover { border-color: #E4405F; }
.channel-card:nth-child(3):hover h5 { color: #E4405F; }

.channel-card:nth-child(4):hover { border-color: #0A66C2; }
.channel-card:nth-child(4):hover h5 { color: #0A66C2; }

.channel-card:nth-child(5):hover { border-color: #FF0000; }
.channel-card:nth-child(5):hover h5 { color: #FF0000; }

.channel-card:nth-child(6):hover { border-color: #1DA1F2; }
.channel-card:nth-child(6):hover h5 { color: #1DA1F2; }

/* ==========================================================================
   SEO DETAILS SECTION
   ========================================================================== */
.seo-details {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.seo-details::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* SEO Service Card */
.seo-service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Pattern */
.seo-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.seo-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.seo-service-card:hover::before {
    transform: scaleX(1);
}

.seo-service-card:hover::after {
    opacity: 1;
}

/* SEO Icon */
.seo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.seo-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.seo-service-card:hover .seo-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.seo-service-card:hover .seo-icon::before {
    opacity: 1;
    animation: seoIconPulse 2s ease-in-out infinite;
}

@keyframes seoIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.seo-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.seo-service-card:hover .seo-icon i {
    color: var(--white);
}

.seo-service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.seo-service-card:hover h4 {
    color: var(--primary-color);
}

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.seo-service-card ul li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text-color);
    border-top: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.seo-service-card ul li:first-child {
    border-top: none;
}

.seo-service-card ul li::before {
    content: '✓';
    color: var(--accent-emerald);
    font-weight: 700;
    font-size: 0.75rem;
}

.seo-service-card:hover ul li {
    transform: translateX(5px);
}

/* Color variations for each SEO card */
.seo-service-card:nth-child(1) .seo-icon { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.2) 100%); }
.seo-service-card:nth-child(1) .seo-icon i { color: var(--primary-color); }
.seo-service-card:nth-child(1):hover .seo-icon { background: var(--primary-gradient); }

.seo-service-card:nth-child(2) .seo-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%); }
.seo-service-card:nth-child(2) .seo-icon i { color: var(--accent-violet); }
.seo-service-card:nth-child(2):hover .seo-icon { background: linear-gradient(135deg, var(--accent-violet), #7c3aed); }

.seo-service-card:nth-child(3) .seo-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%); }
.seo-service-card:nth-child(3) .seo-icon i { color: var(--accent-emerald); }
.seo-service-card:nth-child(3):hover .seo-icon { background: linear-gradient(135deg, var(--accent-emerald), #059669); }

.seo-service-card:nth-child(4) .seo-icon { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.2) 100%); }
.seo-service-card:nth-child(4) .seo-icon i { color: var(--accent-orange); }
.seo-service-card:nth-child(4):hover .seo-icon { background: linear-gradient(135deg, var(--accent-orange), #ea580c); }

/* ==========================================================================
   TOOLS SECTION
   ========================================================================== */
.tools-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, var(--white) 0%, transparent 5%),
        linear-gradient(0deg, var(--white) 0%, transparent 5%);
    pointer-events: none;
}

/* Tools Categories */
.tools-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Tool Category */
.tool-category {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.tool-category:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.tool-category h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.tool-category h5 i {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

/* Tools Grid */
.tool-category .tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Tool Item */
.tool-category .tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tool-category .tool-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--white);
}

.tool-category .tool-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tool-category .tool-item:hover img {
    transform: scale(1.15);
}

.tool-category .tool-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* ==========================================================================
   REPORTING SECTION
   ========================================================================== */
.reporting-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.reporting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.reporting-content {
    position: relative;
    z-index: 1;
}

.reporting-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reporting-content .lead {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Reporting Features */
.reporting-features {
    display: grid;
    gap: 1rem;
}

.reporting-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reporting-features .feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--white);
}

.reporting-features .feature-item > i {
    font-size: 1.25rem;
    color: var(--accent-emerald);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.reporting-features .feature-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.reporting-features .feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
}

.dashboard-preview img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: all 0.4s ease;
}

.dashboard-preview:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

/* Floating Elements on Dashboard */
.dashboard-preview::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    opacity: 0.1;
    animation: dashboardFloat 4s ease-in-out infinite;
}

.dashboard-preview::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-teal));
    border-radius: var(--radius-xl);
    opacity: 0.1;
    animation: dashboardFloat 4s ease-in-out infinite reverse;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ==========================================================================
   MARKETING STATS
   ========================================================================== */
.marketing-stats {
    margin-top: 2rem;
}

.marketing-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.marketing-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.marketing-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.marketing-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   RESULTS SECTION (Enhancement for Digital Marketing)
   ========================================================================== */
.results-section {
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.results-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: resultsOrbFloat 15s ease-in-out infinite;
}

@keyframes resultsOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.2); }
}

/* ==========================================================================
   STAGGER ANIMATIONS
   ========================================================================== */

/* Channel Cards Stagger */
.marketing-channels .row > [class*="col-"]:nth-child(1) .channel-card { animation-delay: 0.05s; }
.marketing-channels .row > [class*="col-"]:nth-child(2) .channel-card { animation-delay: 0.1s; }
.marketing-channels .row > [class*="col-"]:nth-child(3) .channel-card { animation-delay: 0.15s; }
.marketing-channels .row > [class*="col-"]:nth-child(4) .channel-card { animation-delay: 0.2s; }
.marketing-channels .row > [class*="col-"]:nth-child(5) .channel-card { animation-delay: 0.25s; }
.marketing-channels .row > [class*="col-"]:nth-child(6) .channel-card { animation-delay: 0.3s; }

.marketing-channels .channel-card {
    animation: channelCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes channelCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* SEO Service Cards Stagger */
.seo-details .row > [class*="col-"]:nth-child(1) .seo-service-card { animation-delay: 0.1s; }
.seo-details .row > [class*="col-"]:nth-child(2) .seo-service-card { animation-delay: 0.2s; }
.seo-details .row > [class*="col-"]:nth-child(3) .seo-service-card { animation-delay: 0.3s; }
.seo-details .row > [class*="col-"]:nth-child(4) .seo-service-card { animation-delay: 0.4s; }

.seo-details .seo-service-card {
    animation: seoCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes seoCardIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .channel-card {
        padding: 1.5rem 1rem;
    }
    
    .channel-card img {
        width: 48px;
        height: 48px;
    }
    
    .tools-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-category .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .seo-service-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .channel-card {
        padding: 1.25rem 0.875rem;
    }
    
    .channel-card img {
        width: 44px;
        height: 44px;
    }
    
    .channel-card h5 {
        font-size: 0.8125rem;
    }
    
    .tools-categories {
        grid-template-columns: 1fr;
    }
    
    .tool-category {
        padding: 1.5rem;
    }
    
    .tool-category .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .seo-service-card {
        padding: 1.5rem 1rem;
    }
    
    .seo-icon {
        width: 60px;
        height: 60px;
    }
    
    .seo-icon i {
        font-size: 1.5rem;
    }
    
    .reporting-content h2 {
        font-size: 1.875rem;
    }
    
    .marketing-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .marketing-stats .stat-number {
        min-width: auto;
    }
}

@media (max-width: 767.98px) {
    .channel-card {
        padding: 1rem 0.75rem;
    }
    
    .channel-card:hover {
        transform: translateY(-5px);
    }
    
    .channel-card img {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .channel-card h5 {
        font-size: 0.75rem;
    }
    
    .tool-category {
        padding: 1.25rem;
    }
    
    .tool-category h5 {
        font-size: 1rem;
    }
    
    .tool-category .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-category .tool-item {
        padding: 0.875rem 0.5rem;
    }
    
    .tool-category .tool-item img {
        width: 32px;
        height: 32px;
    }
    
    .seo-service-card {
        padding: 1.5rem 1rem;
    }
    
    .seo-service-card:hover {
        transform: translateY(-5px);
    }
    
    .seo-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .seo-icon i {
        font-size: 1.375rem;
    }
    
    .seo-service-card h4 {
        font-size: 1.125rem;
    }
    
    .seo-service-card ul li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .reporting-content h2 {
        font-size: 1.5rem;
    }
    
    .reporting-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-preview::before,
    .dashboard-preview::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .channel-card {
        padding: 0.875rem 0.5rem;
    }
    
    .channel-card img {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .channel-card h5 {
        font-size: 0.6875rem;
    }
    
    .tool-category {
        padding: 1rem;
    }
    
    .tool-category h5 {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
    
    .tool-category h5 i {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .tool-category .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .tool-category .tool-item {
        padding: 0.75rem 0.375rem;
    }
    
    .tool-category .tool-item img {
        width: 28px;
        height: 28px;
    }
    
    .tool-category .tool-item span {
        font-size: 0.6875rem;
    }
    
    .seo-service-card {
        padding: 1.25rem 0.875rem;
    }
    
    .seo-icon {
        width: 50px;
        height: 50px;
    }
    
    .seo-icon i {
        font-size: 1.25rem;
    }
    
    .seo-service-card h4 {
        font-size: 1rem;
    }
    
    .seo-service-card ul li {
        font-size: 0.8125rem;
    }
    
    .reporting-features .feature-item {
        padding: 1rem;
    }
    
    .reporting-features .feature-item h5 {
        font-size: 0.9375rem;
    }
    
    .reporting-features .feature-item p {
        font-size: 0.8125rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .channel-card,
    .channel-card img,
    .seo-service-card,
    .seo-icon,
    .seo-icon::before,
    .seo-service-card ul li,
    .tool-category,
    .tool-category .tool-item,
    .tool-category .tool-item img,
    .reporting-features .feature-item,
    .dashboard-preview img,
    .marketing-stats .stat-item {
        transition: none;
        animation: none;
    }
    
    .channel-card:hover,
    .seo-service-card:hover,
    .tool-category:hover,
    .dashboard-preview:hover img {
        transform: none;
    }
    
    .seo-service-card:hover .seo-icon,
    .seo-service-card:hover ul li {
        transform: none;
    }
    
    .dashboard-preview::before,
    .dashboard-preview::after,
    .results-section::after {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.marketing-channels.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.marketing-channels.dark-theme .channel-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.marketing-channels.dark-theme .channel-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.marketing-channels.dark-theme .channel-card h5 {
    color: var(--white);
}

.seo-details.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.seo-details.dark-theme .seo-service-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.seo-details.dark-theme .seo-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.seo-details.dark-theme .seo-service-card h4 {
    color: var(--white);
}

.seo-details.dark-theme .seo-service-card ul li {
    color: rgba(255, 255, 255, 0.8);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.tools-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.tools-section.dark-theme .tool-category {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tools-section.dark-theme .tool-category h5 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.tools-section.dark-theme .tool-category .tool-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tools-section.dark-theme .tool-category .tool-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tools-section.dark-theme .tool-category .tool-item span {
    color: rgba(255, 255, 255, 0.8);
}

.reporting-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.reporting-section.dark-theme .reporting-content h2 {
    color: var(--white);
}

.reporting-section.dark-theme .reporting-content .lead {
    color: rgba(255, 255, 255, 0.8);
}

.reporting-section.dark-theme .reporting-features .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.reporting-section.dark-theme .reporting-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.reporting-section.dark-theme .reporting-features .feature-item h5 {
    color: var(--white);
}

.reporting-section.dark-theme .reporting-features .feature-item p {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   PLATFORMS SECTION
   ========================================================================== */
.platforms-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Platform Card */
.platform-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.platform-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card:hover::after {
    opacity: 1;
}

.platform-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.platform-card:hover img {
    transform: scale(1.15);
}

.platform-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.platform-card:hover h5 {
    color: var(--primary-color);
}

/* Platform-specific Colors */
.platform-card:nth-child(1):hover { border-color: #96bf48; } /* Shopify */
.platform-card:nth-child(2):hover { border-color: #7f54b3; } /* WooCommerce */
.platform-card:nth-child(3):hover { border-color: #f26322; } /* Magento */
.platform-card:nth-child(4):hover { border-color: #34313f; } /* BigCommerce */
.platform-card:nth-child(5):hover { border-color: #2fb5d2; } /* OpenCart */
.platform-card:nth-child(6):hover { border-color: #df0067; } /* PrestaShop */

/* ==========================================================================
   E-COMMERCE FEATURES SECTION
   ========================================================================== */
.ecommerce-features {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.ecommerce-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, var(--white) 0%, transparent 5%),
        linear-gradient(0deg, var(--white) 0%, transparent 5%);
    pointer-events: none;
}

/* Feature Item */
.ecommerce-features .feature-item {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.ecommerce-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.ecommerce-features .feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.ecommerce-features .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.ecommerce-features .feature-item:hover::before {
    transform: scaleX(1);
}

.ecommerce-features .feature-item:hover::after {
    opacity: 1;
}

.ecommerce-features .feature-item i {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ecommerce-features .feature-item:hover i {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.ecommerce-features .feature-item h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.ecommerce-features .feature-item:hover h5 {
    color: var(--primary-color);
}

.ecommerce-features .feature-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   BUSINESS TYPES SECTION
   ========================================================================== */
.business-types {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.business-types::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Business Type Card */
.business-type-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.business-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Pattern */
.business-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.business-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.business-type-card:hover::before {
    transform: scaleX(1);
}

.business-type-card:hover::after {
    opacity: 1;
}

/* Business Icon */
.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.business-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.business-type-card:hover .business-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.business-type-card:hover .business-icon::before {
    opacity: 1;
    animation: businessIconPulse 2s ease-in-out infinite;
}

@keyframes businessIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.business-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.business-type-card:hover .business-icon i {
    color: var(--white);
}

.business-type-card h5 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.business-type-card:hover h5 {
    color: var(--primary-color);
}

.business-type-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Color variations for business types */
.business-type-card:nth-child(1) .business-icon { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.2) 100%); }
.business-type-card:nth-child(1) .business-icon i { color: #ec4899; }
.business-type-card:nth-child(1):hover .business-icon { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4); }

.business-type-card:nth-child(2) .business-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%); }
.business-type-card:nth-child(2) .business-icon i { color: #3b82f6; }
.business-type-card:nth-child(2):hover .business-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4); }

.business-type-card:nth-child(3) .business-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%); }
.business-type-card:nth-child(3) .business-icon i { color: #f59e0b; }
.business-type-card:nth-child(3):hover .business-icon { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4); }

.business-type-card:nth-child(4) .business-icon { background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(244, 63, 94, 0.2) 100%); }
.business-type-card:nth-child(4) .business-icon i { color: #f43f5e; }
.business-type-card:nth-child(4):hover .business-icon { background: linear-gradient(135deg, #f43f5e, #e11d48); box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4); }

.business-type-card:nth-child(5) .business-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%); }
.business-type-card:nth-child(5) .business-icon i { color: #10b981; }
.business-type-card:nth-child(5):hover .business-icon { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); }

.business-type-card:nth-child(6) .business-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%); }
.business-type-card:nth-child(6) .business-icon i { color: #8b5cf6; }
.business-type-card:nth-child(6):hover .business-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4); }

.business-type-card:nth-child(7) .business-icon { background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.2) 100%); }
.business-type-card:nth-child(7) .business-icon i { color: #06b6d4; }
.business-type-card:nth-child(7):hover .business-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4); }

.business-type-card:nth-child(8) .business-icon { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.2) 100%); }
.business-type-card:nth-child(8) .business-icon i { color: #f97316; }
.business-type-card:nth-child(8):hover .business-icon { background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4); }

/* ==========================================================================
   INTEGRATIONS SECTION
   ========================================================================== */
.integrations-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Integration Categories */
.integration-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Integration Category */
.integration-category {
    background: var(--light-bg);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.integration-category:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.integration-category h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.integration-category h5 i {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

/* Integration Logos */
.integration-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Integration Logo */
.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 80px;
    flex: 1;
}

.integration-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.integration-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.integration-logo:hover img {
    transform: scale(1.15);
}

.integration-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* ==========================================================================
   SUCCESS METRICS SECTION
   ========================================================================== */
.success-metrics {
    position: relative;
    overflow: hidden;
}

.bg-gradient {
    background: var(--primary-gradient);
}

.success-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.success-metrics::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: metricsOrbFloat 15s ease-in-out infinite;
}

@keyframes metricsOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.2); }
}

/* Metric Card */
.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

/* Metric Icon */
.metric-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
}

.metric-card:hover .metric-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.metric-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.metric-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ==========================================================================
   BENEFIT STATS
   ========================================================================== */
.benefit-stats {
    margin-top: 2rem;
}

.benefit-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.benefit-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.benefit-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   PORTFOLIO STATS (Inside Portfolio Card)
   ========================================================================== */
.portfolio-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.portfolio-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.portfolio-stats span:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.portfolio-stats span i {
    font-size: 0.625rem;
}

/* ==========================================================================
   STAGGER ANIMATIONS
   ========================================================================== */

/* Platform Cards Stagger */
.platforms-section .row > [class*="col-"]:nth-child(1) .platform-card { animation-delay: 0.05s; }
.platforms-section .row > [class*="col-"]:nth-child(2) .platform-card { animation-delay: 0.1s; }
.platforms-section .row > [class*="col-"]:nth-child(3) .platform-card { animation-delay: 0.15s; }
.platforms-section .row > [class*="col-"]:nth-child(4) .platform-card { animation-delay: 0.2s; }
.platforms-section .row > [class*="col-"]:nth-child(5) .platform-card { animation-delay: 0.25s; }
.platforms-section .row > [class*="col-"]:nth-child(6) .platform-card { animation-delay: 0.3s; }

.platforms-section .platform-card {
    animation: platformCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes platformCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* E-commerce Features Stagger */
.ecommerce-features .row > [class*="col-"]:nth-child(1) .feature-item { animation-delay: 0.05s; }
.ecommerce-features .row > [class*="col-"]:nth-child(2) .feature-item { animation-delay: 0.08s; }
.ecommerce-features .row > [class*="col-"]:nth-child(3) .feature-item { animation-delay: 0.11s; }
.ecommerce-features .row > [class*="col-"]:nth-child(4) .feature-item { animation-delay: 0.14s; }
.ecommerce-features .row > [class*="col-"]:nth-child(5) .feature-item { animation-delay: 0.17s; }
.ecommerce-features .row > [class*="col-"]:nth-child(6) .feature-item { animation-delay: 0.2s; }
.ecommerce-features .row > [class*="col-"]:nth-child(7) .feature-item { animation-delay: 0.23s; }
.ecommerce-features .row > [class*="col-"]:nth-child(8) .feature-item { animation-delay: 0.26s; }
.ecommerce-features .row > [class*="col-"]:nth-child(9) .feature-item { animation-delay: 0.29s; }
.ecommerce-features .row > [class*="col-"]:nth-child(10) .feature-item { animation-delay: 0.32s; }
.ecommerce-features .row > [class*="col-"]:nth-child(11) .feature-item { animation-delay: 0.35s; }
.ecommerce-features .row > [class*="col-"]:nth-child(12) .feature-item { animation-delay: 0.38s; }

.ecommerce-features .feature-item {
    animation: featureItemIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes featureItemIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Business Type Cards Stagger */
.business-types .row > [class*="col-"]:nth-child(1) .business-type-card { animation-delay: 0.1s; }
.business-types .row > [class*="col-"]:nth-child(2) .business-type-card { animation-delay: 0.15s; }
.business-types .row > [class*="col-"]:nth-child(3) .business-type-card { animation-delay: 0.2s; }
.business-types .row > [class*="col-"]:nth-child(4) .business-type-card { animation-delay: 0.25s; }
.business-types .row > [class*="col-"]:nth-child(5) .business-type-card { animation-delay: 0.3s; }
.business-types .row > [class*="col-"]:nth-child(6) .business-type-card { animation-delay: 0.35s; }
.business-types .row > [class*="col-"]:nth-child(7) .business-type-card { animation-delay: 0.4s; }
.business-types .row > [class*="col-"]:nth-child(8) .business-type-card { animation-delay: 0.45s; }

.business-types .business-type-card {
    animation: businessCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes businessCardIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .platform-card {
        padding: 1.5rem 1rem;
    }
    
    .platform-card img {
        width: 48px;
        height: 48px;
    }
    
    .integration-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-type-card {
        padding: 1.75rem 1.25rem;
    }
    
    .business-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 991.98px) {
    .platform-card {
        padding: 1.25rem 0.875rem;
    }
    
    .platform-card img {
        width: 44px;
        height: 44px;
    }
    
    .platform-card h5 {
        font-size: 0.8125rem;
    }
    
    .integration-categories {
        grid-template-columns: 1fr;
    }
    
    .integration-category {
        padding: 1.5rem;
    }
    
    .ecommerce-features .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .ecommerce-features .feature-item i {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .business-type-card {
        padding: 1.5rem 1rem;
    }
    
    .business-icon {
        width: 64px;
        height: 64px;
    }
    
    .business-icon i {
        font-size: 1.5rem;
    }
    
    .metric-card h3 {
        font-size: 2rem;
    }
    
    .benefit-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-stats .stat-number {
        min-width: auto;
    }
}

@media (max-width: 767.98px) {
    .platform-card {
        padding: 1rem 0.75rem;
    }
    
    .platform-card:hover {
        transform: translateY(-5px);
    }
    
    .platform-card img {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .platform-card h5 {
        font-size: 0.75rem;
    }
    
    .ecommerce-features .feature-item {
        padding: 1.25rem 1rem;
    }
    
    .ecommerce-features .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .ecommerce-features .feature-item i {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .ecommerce-features .feature-item h5 {
        font-size: 0.875rem;
    }
    
    .ecommerce-features .feature-item p {
        font-size: 0.75rem;
    }
    
    .business-type-card {
        padding: 1.25rem 1rem;
    }
    
    .business-type-card:hover {
        transform: translateY(-5px);
    }
    
    .business-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .business-icon i {
        font-size: 1.375rem;
    }
    
    .business-type-card h5 {
        font-size: 0.9375rem;
    }
    
    .business-type-card p {
        font-size: 0.8125rem;
    }
    
    .integration-category {
        padding: 1.25rem;
    }
    
    .integration-category h5 {
        font-size: 1rem;
    }
    
    .integration-logos {
        gap: 0.75rem;
    }
    
    .integration-logo {
        min-width: 70px;
        padding: 0.75rem 0.5rem;
    }
    
    .integration-logo img {
        width: 32px;
        height: 32px;
    }
    
    .integration-logo span {
        font-size: 0.6875rem;
    }
    
    .metric-card {
        padding: 1.5rem 1rem;
    }
    
    .metric-card h3 {
        font-size: 1.75rem;
    }
    
    .metric-icon {
        width: 56px;
        height: 56px;
    }
    
    .metric-icon i {
        font-size: 1.5rem;
    }
    
    .portfolio-stats {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .platform-card {
        padding: 0.875rem 0.5rem;
    }
    
    .platform-card img {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .platform-card h5 {
        font-size: 0.6875rem;
    }
    
    .ecommerce-features .feature-item {
        padding: 1rem 0.75rem;
    }
    
    .ecommerce-features .feature-item i {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .ecommerce-features .feature-item h5 {
        font-size: 0.8125rem;
    }
    
    .ecommerce-features .feature-item p {
        display: none;
    }
    
    .business-type-card {
        padding: 1rem 0.75rem;
    }
    
    .business-icon {
        width: 50px;
        height: 50px;
    }
    
    .business-icon i {
        font-size: 1.25rem;
    }
    
    .business-type-card h5 {
        font-size: 0.875rem;
    }
    
    .business-type-card p {
        font-size: 0.75rem;
    }
    
    .integration-category {
        padding: 1rem;
    }
    
    .integration-category h5 {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
    
    .integration-category h5 i {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .integration-logo {
        min-width: 60px;
        padding: 0.625rem 0.375rem;
    }
    
    .integration-logo img {
        width: 28px;
        height: 28px;
    }
    
    .integration-logo span {
        font-size: 0.625rem;
    }
    
    .metric-card {
        padding: 1.25rem 0.875rem;
    }
    
    .metric-card h3 {
        font-size: 1.5rem;
    }
    
    .metric-card p {
        font-size: 0.8125rem;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-icon i {
        font-size: 1.25rem;
    }
    
    .portfolio-stats span {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .platform-card,
    .platform-card img,
    .ecommerce-features .feature-item,
    .ecommerce-features .feature-item i,
    .business-type-card,
    .business-icon,
    .business-icon::before,
    .integration-category,
    .integration-logo,
    .integration-logo img,
    .metric-card,
    .metric-icon,
    .benefit-stats .stat-item,
    .portfolio-stats span {
        transition: none;
        animation: none;
    }
    
    .platform-card:hover,
    .ecommerce-features .feature-item:hover,
    .business-type-card:hover,
    .integration-category:hover,
    .integration-logo:hover,
    .metric-card:hover {
        transform: none;
    }
    
    .ecommerce-features .feature-item:hover i,
    .business-type-card:hover .business-icon,
    .metric-card:hover .metric-icon {
        transform: none;
    }
    
    .success-metrics::after {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.platforms-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.platforms-section.dark-theme .platform-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.platforms-section.dark-theme .platform-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.platforms-section.dark-theme .platform-card h5 {
    color: var(--white);
}

.ecommerce-features.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.ecommerce-features.dark-theme .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.ecommerce-features.dark-theme .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ecommerce-features.dark-theme .feature-item h5 {
    color: var(--white);
}

.ecommerce-features.dark-theme .feature-item p {
    color: rgba(255, 255, 255, 0.6);
}

.business-types.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.business-types.dark-theme .business-type-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.business-types.dark-theme .business-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.business-types.dark-theme .business-type-card h5 {
    color: var(--white);
}

.business-types.dark-theme .business-type-card p {
    color: rgba(255, 255, 255, 0.6);
}

.integrations-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.integrations-section.dark-theme .integration-category {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.integrations-section.dark-theme .integration-category h5 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.integrations-section.dark-theme .integration-logo {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.integrations-section.dark-theme .integration-logo:hover {
    background: rgba(255, 255, 255, 0.1);
}

.integrations-section.dark-theme .integration-logo span {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   DESIGN CATEGORIES GALLERY
   ========================================================================== */
.design-gallery {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.design-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Design Category Card */
.design-category-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.design-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.design-category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.design-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.design-category-card:hover::before {
    transform: scaleX(1);
}

.design-category-card:hover::after {
    opacity: 1;
}

/* Category Icon */
.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.category-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.design-category-card:hover .category-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.design-category-card:hover .category-icon::before {
    opacity: 1;
    animation: categoryIconPulse 2s ease-in-out infinite;
}

@keyframes categoryIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.design-category-card:hover .category-icon i {
    color: var(--white);
}

.design-category-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.design-category-card:hover h5 {
    color: var(--primary-color);
}

.design-category-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   DESIGN STYLES SECTION
   ========================================================================== */
.design-styles {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.design-styles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Style Card */
.style-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
}

/* Style Preview Circles */
.style-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
}

.style-card:hover .style-preview {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Specific Style Backgrounds */
.style-preview.minimalist {
    background: #f8fafc;
    background-image: 
        radial-gradient(#94a3b8 1px, transparent 1px),
        radial-gradient(#94a3b8 1px, transparent 1px);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.style-preview.modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.style-preview.vintage {
    background: #fef3c7;
    background-image: repeating-linear-gradient(45deg, #d97706 0, #d97706 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
}

.style-preview.playful {
    background: #fff;
    background-image: 
        radial-gradient(circle at 20% 20%, #f43f5e 10%, transparent 10%),
        radial-gradient(circle at 80% 80%, #f59e0b 10%, transparent 10%),
        radial-gradient(circle at 50% 50%, #10b981 10%, transparent 10%);
}

.style-preview.corporate {
    background: #1e293b;
    background-image: linear-gradient(#334155 1px, transparent 1px);
    background-size: 100% 10px;
}

.style-preview.luxury {
    background: #000;
    border: 3px solid #fbbf24;
}

.style-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s ease;
}

.style-card:hover h5 {
    color: var(--primary-color);
}

/* ==========================================================================
   DESIGN PROCESS TIMELINE
   ========================================================================== */
.design-process-section {
    position: relative;
    overflow: hidden;
}

.design-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line */
.design-process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
    z-index: 0;
}

/* Process Row */
.process-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.process-row:last-child {
    margin-bottom: 0;
}

/* Process Card */
.process-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.process-card .process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   FILE FORMATS SECTION
   ========================================================================== */
.file-formats {
    background: var(--white);
    position: relative;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.format-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.format-item:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.format-icon {
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--white);
    border-radius: 4px;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 70% 100%, 0 100%);
}

.format-item:hover .format-icon {
    transform: scale(1.1);
}

/* Format Colors */
.format-icon.ai { background: #ff9a00; }
.format-icon.psd { background: #31a8ff; }
.format-icon.pdf { background: #f40f02; }
.format-icon.png { background: #47bc57; }
.format-icon.jpg { background: #0075ff; }
.format-icon.svg { background: #ffb13b; }
.format-icon.eps { background: #6f42c1; }
.format-icon.figma { background: #0acf83; }

.format-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-color);
}

.format-item small {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   DESIGN STATS
   ========================================================================== */
.design-stats {
    margin-top: 2rem;
}

.design-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.design-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.design-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.design-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   TURNAROUND SECTION
   ========================================================================== */
.turnaround-section {
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.turnaround-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Turnaround Times Grid */
.turnaround-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.turnaround-times .time-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.turnaround-times .time-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.turnaround-times .time-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.turnaround-times .time-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Rush Service Card */
.rush-service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.rush-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.rush-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #f59e0b;
    font-size: 2rem;
    animation: rushIconPulse 2s ease-in-out infinite;
}

@keyframes rushIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

.rush-service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.rush-service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-rush {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-rush:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

/* ==========================================================================
   PORTFOLIO TAGS
   ========================================================================== */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.portfolio-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.portfolio-tags span:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .design-category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .formats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-card {
        padding: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .design-category-card {
        padding: 1.25rem 0.875rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.125rem;
    }
    
    .design-category-card h5 {
        font-size: 0.875rem;
    }
    
    .design-process-timeline::before {
        display: none;
    }
    
    .process-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .process-card {
        margin-bottom: 0;
    }
    
    .turnaround-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .turnaround-times {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .design-category-card {
        padding: 1rem 0.75rem;
    }
    
    .design-category-card:hover {
        transform: translateY(-5px);
    }
    
    .category-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .design-category-card h5 {
        font-size: 0.8125rem;
    }
    
    .design-category-card p {
        font-size: 0.75rem;
    }
    
    .style-card h5 {
        font-size: 0.875rem;
    }
    
    .style-preview {
        width: 70px;
        height: 70px;
    }
    
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .design-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .design-stats .stat-number {
        min-width: auto;
    }
    
    .turnaround-times {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .design-category-card {
        padding: 0.875rem 0.5rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 0.875rem;
    }
    
    .design-category-card h5 {
        font-size: 0.75rem;
    }
    
    .design-category-card p {
        display: none;
    }
    
    .style-preview {
        width: 50px;
        height: 50px;
        background-size: 10px 10px;
    }
    
    .style-card h5 {
        font-size: 0.75rem;
    }
    
    .process-card {
        padding: 1.25rem 1rem;
    }
    
    .process-number {
        top: -12px;
        font-size: 0.75rem;
    }
    
    .rush-service-card {
        padding: 1.5rem;
    }
    
    .rush-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .rush-service-card h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .design-category-card,
    .category-icon,
    .category-icon::before,
    .style-card,
    .style-preview,
    .process-card,
    .process-icon,
    .format-item,
    .format-icon,
    .rush-icon {
        transition: none;
        animation: none;
    }
    
    .design-category-card:hover,
    .style-card:hover,
    .style-card:hover .style-preview,
    .process-card:hover,
    .process-card:hover .process-icon,
    .format-item:hover,
    .format-item:hover .format-icon {
        transform: none;
    }
    
    .design-category-card:hover .category-icon::before {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.design-gallery.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-gallery.dark-theme .design-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.design-gallery.dark-theme .design-category-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.design-gallery.dark-theme .design-category-card h5 {
    color: var(--white);
}

.design-gallery.dark-theme .design-category-card p {
    color: rgba(255, 255, 255, 0.6);
}

.design-styles.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-styles.dark-theme .style-card h5 {
    color: var(--white);
}

.file-formats.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.file-formats.dark-theme .format-item span {
    color: var(--white);
}

.file-formats.dark-theme .format-item small {
    color: rgba(255, 255, 255, 0.6);
}

.file-formats.dark-theme .format-item:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================================
   DESIGN CATEGORIES GALLERY
   ========================================================================== */
.design-gallery {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.design-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Design Category Card */
.design-category-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.design-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.design-category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.design-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.design-category-card:hover::before {
    transform: scaleX(1);
}

.design-category-card:hover::after {
    opacity: 1;
}

/* Category Icon */
.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.category-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.design-category-card:hover .category-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.design-category-card:hover .category-icon::before {
    opacity: 1;
    animation: categoryIconPulse 2s ease-in-out infinite;
}

@keyframes categoryIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.design-category-card:hover .category-icon i {
    color: var(--white);
}

.design-category-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.design-category-card:hover h5 {
    color: var(--primary-color);
}

.design-category-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   DESIGN STYLES SECTION
   ========================================================================== */
.design-styles {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.design-styles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Style Card */
.style-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
}

/* Style Preview Circles */
.style-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
}

.style-card:hover .style-preview {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Specific Style Backgrounds */
.style-preview.minimalist {
    background: #f8fafc;
    background-image: 
        radial-gradient(#94a3b8 1px, transparent 1px),
        radial-gradient(#94a3b8 1px, transparent 1px);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.style-preview.modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.style-preview.vintage {
    background: #fef3c7;
    background-image: repeating-linear-gradient(45deg, #d97706 0, #d97706 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
}

.style-preview.playful {
    background: #fff;
    background-image: 
        radial-gradient(circle at 20% 20%, #f43f5e 10%, transparent 10%),
        radial-gradient(circle at 80% 80%, #f59e0b 10%, transparent 10%),
        radial-gradient(circle at 50% 50%, #10b981 10%, transparent 10%);
}

.style-preview.corporate {
    background: #1e293b;
    background-image: linear-gradient(#334155 1px, transparent 1px);
    background-size: 100% 10px;
}

.style-preview.luxury {
    background: #000;
    border: 3px solid #fbbf24;
}

.style-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s ease;
}

.style-card:hover h5 {
    color: var(--primary-color);
}

/* ==========================================================================
   DESIGN PROCESS TIMELINE
   ========================================================================== */
.design-process-section {
    position: relative;
    overflow: hidden;
}

.design-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line */
.design-process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
    z-index: 0;
}

/* Process Row */
.process-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.process-row:last-child {
    margin-bottom: 0;
}

/* Process Card */
.process-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.process-card .process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   FILE FORMATS SECTION
   ========================================================================== */
.file-formats {
    background: var(--white);
    position: relative;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.format-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.format-item:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.format-icon {
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--white);
    border-radius: 4px;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 70% 100%, 0 100%);
}

.format-item:hover .format-icon {
    transform: scale(1.1);
}

/* Format Colors */
.format-icon.ai { background: #ff9a00; }
.format-icon.psd { background: #31a8ff; }
.format-icon.pdf { background: #f40f02; }
.format-icon.png { background: #47bc57; }
.format-icon.jpg { background: #0075ff; }
.format-icon.svg { background: #ffb13b; }
.format-icon.eps { background: #6f42c1; }
.format-icon.figma { background: #0acf83; }

.format-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-color);
}

.format-item small {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   DESIGN STATS
   ========================================================================== */
.design-stats {
    margin-top: 2rem;
}

.design-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.design-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.design-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.design-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   TURNAROUND SECTION
   ========================================================================== */
.turnaround-section {
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.turnaround-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Turnaround Times Grid */
.turnaround-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.turnaround-times .time-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.turnaround-times .time-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.turnaround-times .time-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.turnaround-times .time-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Rush Service Card */
.rush-service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.rush-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.rush-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #f59e0b;
    font-size: 2rem;
    animation: rushIconPulse 2s ease-in-out infinite;
}

@keyframes rushIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

.rush-service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.rush-service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-rush {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-rush:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

/* ==========================================================================
   PORTFOLIO TAGS
   ========================================================================== */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.portfolio-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.portfolio-tags span:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .design-category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .formats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-card {
        padding: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .design-category-card {
        padding: 1.25rem 0.875rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.125rem;
    }
    
    .design-category-card h5 {
        font-size: 0.875rem;
    }
    
    .design-process-timeline::before {
        display: none;
    }
    
    .process-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .process-card {
        margin-bottom: 0;
    }
    
    .turnaround-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .turnaround-times {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .design-category-card {
        padding: 1rem 0.75rem;
    }
    
    .design-category-card:hover {
        transform: translateY(-5px);
    }
    
    .category-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .design-category-card h5 {
        font-size: 0.8125rem;
    }
    
    .design-category-card p {
        font-size: 0.75rem;
    }
    
    .style-card h5 {
        font-size: 0.875rem;
    }
    
    .style-preview {
        width: 70px;
        height: 70px;
    }
    
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .design-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .design-stats .stat-number {
        min-width: auto;
    }
    
    .turnaround-times {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .design-category-card {
        padding: 0.875rem 0.5rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 0.875rem;
    }
    
    .design-category-card h5 {
        font-size: 0.75rem;
    }
    
    .design-category-card p {
        display: none;
    }
    
    .style-preview {
        width: 50px;
        height: 50px;
        background-size: 10px 10px;
    }
    
    .style-card h5 {
        font-size: 0.75rem;
    }
    
    .process-card {
        padding: 1.25rem 1rem;
    }
    
    .process-number {
        top: -12px;
        font-size: 0.75rem;
    }
    
    .rush-service-card {
        padding: 1.5rem;
    }
    
    .rush-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .rush-service-card h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .design-category-card,
    .category-icon,
    .category-icon::before,
    .style-card,
    .style-preview,
    .process-card,
    .process-icon,
    .format-item,
    .format-icon,
    .rush-icon {
        transition: none;
        animation: none;
    }
    
    .design-category-card:hover,
    .style-card:hover,
    .style-card:hover .style-preview,
    .process-card:hover,
    .process-card:hover .process-icon,
    .format-item:hover,
    .format-item:hover .format-icon {
        transform: none;
    }
    
    .design-category-card:hover .category-icon::before {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.design-gallery.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-gallery.dark-theme .design-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.design-gallery.dark-theme .design-category-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.design-gallery.dark-theme .design-category-card h5 {
    color: var(--white);
}

.design-gallery.dark-theme .design-category-card p {
    color: rgba(255, 255, 255, 0.6);
}

.design-styles.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-styles.dark-theme .style-card h5 {
    color: var(--white);
}

.file-formats.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.file-formats.dark-theme .format-item span {
    color: var(--white);
}

.file-formats.dark-theme .format-item small {
    color: rgba(255, 255, 255, 0.6);
}

.file-formats.dark-theme .format-item:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================================
   CONTENT TYPES SHOWCASE SECTION
   ========================================================================== */
.content-types {
    position: relative;
    overflow: hidden;
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
}

.content-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Text Content Area */
.content-showcase-text {
    position: relative;
    z-index: 2;
}

.content-showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-showcase-text > p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Content List */
.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.content-list .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.content-list li:hover .icon {
    background: var(--primary-gradient);
    transform: rotate(5deg);
}

.content-list .icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.content-list li:hover .icon i {
    color: var(--white);
}

.content-list h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.content-list p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Showcase Grid */
.showcase-grid {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-img {
    position: absolute;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    border: 8px solid var(--white);
}

/* Image Positioning */
.grid-img.img-1 {
    width: 280px;
    height: auto;
    z-index: 1;
    transform: translateX(-140px) translateY(40px) rotate(-5deg);
    top: 10%;
    left: 50%;
}

.grid-img.img-2 {
    width: 300px;
    height: auto;
    z-index: 2;
    transform: translateX(-50%) translateY(0) rotate(0deg);
    top: 5%;
    left: 50%;
}

.grid-img.img-3 {
    width: 280px;
    height: auto;
    z-index: 3;
    transform: translateX(40px) translateY(80px) rotate(5deg);
    top: 15%;
    left: 50%;
}

/* Hover Effects on Grid */
.showcase-grid:hover .grid-img.img-1 {
    transform: translateX(-180px) translateY(40px) rotate(-8deg) scale(1.05);
    z-index: 4;
}

.showcase-grid:hover .grid-img.img-2 {
    transform: translateX(-50%) translateY(-20px) scale(1.05);
}

.showcase-grid:hover .grid-img.img-3 {
    transform: translateX(80px) translateY(80px) rotate(8deg) scale(1.05);
    z-index: 4;
}

/* Floating Elements Animation */
.showcase-grid::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    animation: floatBubble 8s ease-in-out infinite;
    pointer-events: none;
}

.showcase-grid::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    animation: floatBubble 10s ease-in-out infinite reverse;
    pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991.98px) {
    .content-showcase-text {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .content-showcase-text h2 {
        font-size: 2rem;
    }
    
    .content-list {
        text-align: left;
    }
    
    .showcase-grid {
        height: 500px;
    }
    
    .grid-img.img-1 { width: 220px; }
    .grid-img.img-2 { width: 240px; }
    .grid-img.img-3 { width: 220px; }
}

@media (max-width: 767.98px) {
    .showcase-grid {
        height: 400px;
    }
    
    .grid-img.img-1 { 
        width: 180px;
        transform: translateX(-100px) translateY(20px) rotate(-5deg);
    }
    .grid-img.img-2 { 
        width: 200px;
    }
    .grid-img.img-3 { 
        width: 180px;
        transform: translateX(20px) translateY(60px) rotate(5deg);
    }
}

@media (max-width: 575.98px) {
    .content-showcase-text h2 {
        font-size: 1.75rem;
    }
    
    .content-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .showcase-grid {
        height: 350px;
    }
    
    .grid-img {
        border-width: 4px;
    }
    
    .grid-img.img-1 { 
        width: 140px;
        transform: translateX(-80px) translateY(20px) rotate(-5deg);
    }
    .grid-img.img-2 { 
        width: 160px;
    }
    .grid-img.img-3 { 
        width: 140px;
        transform: translateX(10px) translateY(50px) rotate(5deg);
    }
}

/* ==========================================================================
   DARK THEME SUPPORT
   ========================================================================== */
.content-types.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.content-types.dark-theme .content-showcase-text h2 {
    color: var(--white);
}

.content-types.dark-theme .content-showcase-text > p {
    color: rgba(255, 255, 255, 0.8);
}

.content-types.dark-theme .content-list li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-types.dark-theme .content-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.content-types.dark-theme .content-list h5 {
    color: var(--white);
}

.content-types.dark-theme .content-list p {
    color: rgba(255, 255, 255, 0.6);
}

.content-types.dark-theme .content-list .icon {
    background: rgba(99, 102, 241, 0.2);
}

.content-types.dark-theme .content-list li:hover .icon {
    background: var(--primary-gradient);
}


/* ==========================================================================
   WHY MAINTENANCE MATTERS SECTION
   ========================================================================== */
.why-maintenance {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-maintenance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Risk Card */
.risk-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.risk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.risk-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.risk-card:hover::before {
    transform: scaleX(1);
}

/* Risk Icon */
.risk-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.risk-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.risk-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.risk-card:hover .risk-icon.danger {
    background: #ef4444;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.risk-card:hover .risk-icon.warning {
    background: #f59e0b;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.risk-card:hover .risk-icon.danger ~ h4::before {
    background: #ef4444;
}

.risk-card:hover .risk-icon.warning ~ h4::before {
    background: #f59e0b;
}

.risk-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.risk-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   MONITORING DASHBOARD PREVIEW
   ========================================================================== */
.monitoring-preview {
    position: relative;
    overflow: hidden;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.monitoring-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Monitoring Stats */
.monitoring-stats {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-emerald);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Monitoring Features */
.monitoring-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.monitoring-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.monitoring-features .feature i {
    color: var(--accent-emerald);
    font-size: 1.125rem;
}

/* Dashboard Preview Image */
.monitoring-dashboard-preview {
    position: relative;
}

.monitoring-dashboard-preview img {
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.monitoring-dashboard-preview:hover img {
    transform: translateY(-10px) scale(1.02);
}

/* Floating Elements */
.monitoring-dashboard-preview::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    opacity: 0.2;
    animation: monitoringFloat 4s ease-in-out infinite;
}

@keyframes monitoringFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   WHAT'S INCLUDED SECTION
   ========================================================================== */
.whats-included {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.whats-included::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.included-item {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.included-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.included-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.included-item:hover i {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.included-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

/* ==========================================================================
   PLATFORM SUPPORT SECTION
   ========================================================================== */
.platform-support {
    background: var(--light-bg);
    position: relative;
}

/* Platform Card (Reuse from other pages but with maintenance context) */
.platform-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.platform-card:hover img {
    transform: scale(1.15);
}

.platform-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

/* ==========================================================================
   SLA & RESPONSE TIMES
   ========================================================================== */
.sla-section {
    background: var(--white);
    position: relative;
}

.sla-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.sla-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Priority Colors */
.sla-card.critical { border-top: 4px solid #ef4444; }
.sla-card.high { border-top: 4px solid #f59e0b; }
.sla-card.normal { border-top: 4px solid #3b82f6; }

.sla-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--light-bg);
}

.priority-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.sla-card.critical .priority-badge { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.sla-card.high .priority-badge { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.sla-card.normal .priority-badge { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.sla-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.sla-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.response-time, .resolution-time {
    display: flex;
    flex-direction: column;
}

.time {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sla-card.critical .time { color: #ef4444; }
.sla-card.high .time { color: #f59e0b; }
.sla-card.normal .time { color: #3b82f6; }

.label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sla-footer {
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-top: 1px solid var(--border-light);
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uptime-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-emerald);
}

/* ==========================================================================
   HOW IT WORKS (Horizontal Steps)
   ========================================================================== */
.how-it-works {
    background: var(--light-bg);
}

.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.step-item:hover .step-number {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.5s ease;
}

.process-steps-horizontal:hover .step-connector::after {
    width: 100%;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   EMERGENCY SUPPORT SECTION
   ========================================================================== */
.emergency-support {
    position: relative;
    overflow: hidden;
}

.bg-danger-light {
    background: #fef2f2;
    border-top: 1px solid #fee2e2;
    border-bottom: 1px solid #fee2e2;
}

.emergency-content h2 {
    color: #b91c1c;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-content p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.emergency-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.emergency-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
    font-weight: 500;
}

.emergency-features li i {
    color: #ef4444;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #dc2626;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.btn-emergency:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

.btn-emergency i {
    animation: phoneShake 2s ease-in-out infinite;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.emergency-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MAINTENANCE STATS
   ========================================================================== */
.maintenance-stats {
    margin-top: 2rem;
}

.maintenance-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.maintenance-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.maintenance-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.maintenance-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   ANNUAL SAVINGS & ONE-TIME SERVICES
   ========================================================================== */
.savings-card {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.savings-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.savings-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.savings-content {
    flex: 1;
}

.savings-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.savings-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.btn-savings {
    background: var(--white);
    color: #059669;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-savings:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #047857;
}

/* One-time Services */
.onetime-services {
    margin-top: 4rem;
}

.addon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.addon-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.addon-price {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991.98px) {
    .monitoring-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .monitoring-features {
        text-align: left;
    }
    
    .process-steps-horizontal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-connector::after {
        width: 100%;
        height: 0;
        top: 0;
        transition: height 0.5s ease;
    }
    
    .process-steps-horizontal:hover .step-connector::after {
        height: 100%;
        width: 100%;
    }
    
    .emergency-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .emergency-content h2 {
        justify-content: center;
    }
    
    .emergency-features {
        text-align: left;
        display: inline-grid;
    }
    
    .savings-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .stat-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }
    
    .monitoring-features {
        grid-template-columns: 1fr;
    }
    
    .emergency-features {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 1rem 0.75rem;
    }
    
    .platform-card img {
        width: 40px;
        height: 40px;
    }
    
    .platform-card h5 {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.why-maintenance.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.why-maintenance.dark-theme .risk-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-maintenance.dark-theme .risk-card h4 {
    color: var(--white);
}

.why-maintenance.dark-theme .risk-card p {
    color: rgba(255, 255, 255, 0.6);
}

.whats-included.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.whats-included.dark-theme .included-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.whats-included.dark-theme .included-item h5 {
    color: var(--white);
}

.whats-included.dark-theme .included-item i {
    background: rgba(255, 255, 255, 0.1);
}

.sla-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.sla-section.dark-theme .sla-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.sla-section.dark-theme .sla-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sla-section.dark-theme .sla-header h4,
.sla-section.dark-theme .time {
    color: var(--white);
}

.sla-section.dark-theme .label {
    color: rgba(255, 255, 255, 0.6);
}

.sla-section.dark-theme .sla-footer {
    background: rgba(255, 255, 255, 0.02);
    border-top-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.how-it-works.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.how-it-works.dark-theme .step-number {
    background: var(--dark-color);
    border-color: var(--primary-color);
}

.how-it-works.dark-theme .step-content h4 {
    color: var(--white);
}

.how-it-works.dark-theme .step-content p {
    color: rgba(255, 255, 255, 0.6);
}

.emergency-support.dark-theme .bg-danger-light {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.emergency-support.dark-theme .emergency-content p,
.emergency-support.dark-theme .emergency-features li {
    color: rgba(255, 255, 255, 0.9);
}


/* ==========================================================================
   DESIGN CATEGORIES GALLERY
   ========================================================================== */
.design-gallery {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.design-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Design Category Card */
.design-category-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.design-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.design-category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.design-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.design-category-card:hover::before {
    transform: scaleX(1);
}

.design-category-card:hover::after {
    opacity: 1;
}

/* Category Icon */
.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.category-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.design-category-card:hover .category-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.design-category-card:hover .category-icon::before {
    opacity: 1;
    animation: categoryIconPulse 2s ease-in-out infinite;
}

@keyframes categoryIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.design-category-card:hover .category-icon i {
    color: var(--white);
}

.design-category-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.design-category-card:hover h5 {
    color: var(--primary-color);
}

.design-category-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   DESIGN STYLES SECTION
   ========================================================================== */
.design-styles {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.design-styles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Style Card */
.style-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
}

/* Style Preview Circles */
.style-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
}

.style-card:hover .style-preview {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Specific Style Backgrounds */
.style-preview.minimalist {
    background: #f8fafc;
    background-image: 
        radial-gradient(#94a3b8 1px, transparent 1px),
        radial-gradient(#94a3b8 1px, transparent 1px);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.style-preview.modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.style-preview.vintage {
    background: #fef3c7;
    background-image: repeating-linear-gradient(45deg, #d97706 0, #d97706 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
}

.style-preview.playful {
    background: #fff;
    background-image: 
        radial-gradient(circle at 20% 20%, #f43f5e 10%, transparent 10%),
        radial-gradient(circle at 80% 80%, #f59e0b 10%, transparent 10%),
        radial-gradient(circle at 50% 50%, #10b981 10%, transparent 10%);
}

.style-preview.corporate {
    background: #1e293b;
    background-image: linear-gradient(#334155 1px, transparent 1px);
    background-size: 100% 10px;
}

.style-preview.luxury {
    background: #000;
    border: 3px solid #fbbf24;
}

.style-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    transition: color 0.3s ease;
}

.style-card:hover h5 {
    color: var(--primary-color);
}

/* ==========================================================================
   DESIGN PROCESS TIMELINE
   ========================================================================== */
.design-process-section {
    position: relative;
    overflow: hidden;
}

.design-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line */
.design-process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
    z-index: 0;
}

/* Process Row */
.process-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.process-row:last-child {
    margin-bottom: 0;
}

/* Process Card */
.process-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.process-card .process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   FILE FORMATS SECTION
   ========================================================================== */
.file-formats {
    background: var(--white);
    position: relative;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.format-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.format-item:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.format-icon {
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--white);
    border-radius: 4px;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 70% 100%, 0 100%);
}

.format-item:hover .format-icon {
    transform: scale(1.1);
}

/* Format Colors */
.format-icon.ai { background: #ff9a00; }
.format-icon.psd { background: #31a8ff; }
.format-icon.pdf { background: #f40f02; }
.format-icon.png { background: #47bc57; }
.format-icon.jpg { background: #0075ff; }
.format-icon.svg { background: #ffb13b; }
.format-icon.eps { background: #6f42c1; }
.format-icon.figma { background: #0acf83; }

.format-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-color);
}

.format-item small {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   DESIGN STATS
   ========================================================================== */
.design-stats {
    margin-top: 2rem;
}

.design-stats .stat-item {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.design-stats .stat-item:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.4);
}

.design-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.design-stats .stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* ==========================================================================
   TURNAROUND SECTION
   ========================================================================== */
.turnaround-section {
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.turnaround-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Turnaround Times Grid */
.turnaround-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.turnaround-times .time-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.turnaround-times .time-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.turnaround-times .time-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.turnaround-times .time-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Rush Service Card */
.rush-service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.rush-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.rush-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #f59e0b;
    font-size: 2rem;
    animation: rushIconPulse 2s ease-in-out infinite;
}

@keyframes rushIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

.rush-service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.rush-service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-rush {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-rush:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

/* ==========================================================================
   PORTFOLIO TAGS
   ========================================================================== */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.portfolio-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.portfolio-tags span:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .design-category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .formats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-card {
        padding: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .design-category-card {
        padding: 1.25rem 0.875rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.125rem;
    }
    
    .design-category-card h5 {
        font-size: 0.875rem;
    }
    
    .design-process-timeline::before {
        display: none;
    }
    
    .process-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .process-card {
        margin-bottom: 0;
    }
    
    .turnaround-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .turnaround-times {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .design-category-card {
        padding: 1rem 0.75rem;
    }
    
    .design-category-card:hover {
        transform: translateY(-5px);
    }
    
    .category-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .design-category-card h5 {
        font-size: 0.8125rem;
    }
    
    .design-category-card p {
        font-size: 0.75rem;
    }
    
    .style-card h5 {
        font-size: 0.875rem;
    }
    
    .style-preview {
        width: 70px;
        height: 70px;
    }
    
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .design-stats .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .design-stats .stat-number {
        min-width: auto;
    }
    
    .turnaround-times {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .design-category-card {
        padding: 0.875rem 0.5rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 0.875rem;
    }
    
    .design-category-card h5 {
        font-size: 0.75rem;
    }
    
    .design-category-card p {
        display: none;
    }
    
    .style-preview {
        width: 50px;
        height: 50px;
        background-size: 10px 10px;
    }
    
    .style-card h5 {
        font-size: 0.75rem;
    }
    
    .process-card {
        padding: 1.25rem 1rem;
    }
    
    .process-number {
        top: -12px;
        font-size: 0.75rem;
    }
    
    .rush-service-card {
        padding: 1.5rem;
    }
    
    .rush-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .rush-service-card h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .design-category-card,
    .category-icon,
    .category-icon::before,
    .style-card,
    .style-preview,
    .process-card,
    .process-icon,
    .format-item,
    .format-icon,
    .rush-icon {
        transition: none;
        animation: none;
    }
    
    .design-category-card:hover,
    .style-card:hover,
    .style-card:hover .style-preview,
    .process-card:hover,
    .process-card:hover .process-icon,
    .format-item:hover,
    .format-item:hover .format-icon {
        transform: none;
    }
    
    .design-category-card:hover .category-icon::before {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.design-gallery.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-gallery.dark-theme .design-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.design-gallery.dark-theme .design-category-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.design-gallery.dark-theme .design-category-card h5 {
    color: var(--white);
}

.design-gallery.dark-theme .design-category-card p {
    color: rgba(255, 255, 255, 0.6);
}

.design-styles.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-styles.dark-theme .style-card h5 {
    color: var(--white);
}

.file-formats.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.file-formats.dark-theme .format-item span {
    color: var(--white);
}

.file-formats.dark-theme .format-item small {
    color: rgba(255, 255, 255, 0.6);
}

.file-formats.dark-theme .format-item:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================================
   BRAND ELEMENTS SECTION
   ========================================================================== */
.brand-elements {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.brand-elements::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Brand Element Card */
.brand-element-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.brand-element-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.brand-element-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.brand-element-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.brand-element-card:hover::before {
    transform: scaleX(1);
}

.brand-element-card:hover::after {
    opacity: 1;
}

/* Element Icon */
.element-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.element-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.brand-element-card:hover .element-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.brand-element-card:hover .element-icon::before {
    opacity: 1;
    animation: elementIconPulse 2s ease-in-out infinite;
}

@keyframes elementIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.element-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-element-card:hover .element-icon i {
    color: var(--white);
}

.brand-element-card h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-element-card:hover h5 {
    color: var(--primary-color);
}

.brand-element-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Stagger Animation */
.brand-elements .row > [class*="col-"]:nth-child(1) .brand-element-card { animation-delay: 0.05s; }
.brand-elements .row > [class*="col-"]:nth-child(2) .brand-element-card { animation-delay: 0.1s; }
.brand-elements .row > [class*="col-"]:nth-child(3) .brand-element-card { animation-delay: 0.15s; }
.brand-elements .row > [class*="col-"]:nth-child(4) .brand-element-card { animation-delay: 0.2s; }
.brand-elements .row > [class*="col-"]:nth-child(5) .brand-element-card { animation-delay: 0.25s; }
.brand-elements .row > [class*="col-"]:nth-child(6) .brand-element-card { animation-delay: 0.3s; }
.brand-elements .row > [class*="col-"]:nth-child(7) .brand-element-card { animation-delay: 0.35s; }
.brand-elements .row > [class*="col-"]:nth-child(8) .brand-element-card { animation-delay: 0.4s; }

.brand-element-card {
    animation: elementCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes elementCardIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .brand-element-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 991.98px) {
    .brand-element-card {
        padding: 1.25rem 0.875rem;
    }
    
    .element-icon {
        width: 56px;
        height: 56px;
    }
    
    .element-icon i {
        font-size: 1.25rem;
    }
    
    .brand-element-card h5 {
        font-size: 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .brand-element-card {
        padding: 1rem 0.75rem;
    }
    
    .brand-element-card:hover {
        transform: translateY(-5px);
    }
    
    .element-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .element-icon i {
        font-size: 1.125rem;
    }
    
    .brand-element-card h5 {
        font-size: 0.8125rem;
    }
    
    .brand-element-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .brand-element-card {
        padding: 0.875rem 0.5rem;
    }
    
    .element-icon {
        width: 40px;
        height: 40px;
    }
    
    .element-icon i {
        font-size: 1rem;
    }
    
    .brand-element-card h5 {
        font-size: 0.75rem;
    }
    
    .brand-element-card p {
        display: none;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .brand-element-card,
    .element-icon,
    .element-icon::before,
    .element-icon i,
    .brand-element-card h5 {
        transition: none;
        animation: none;
    }
    
    .brand-element-card:hover {
        transform: none;
    }
    
    .brand-element-card:hover .element-icon {
        transform: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.brand-elements.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.brand-elements.dark-theme .brand-element-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.brand-elements.dark-theme .brand-element-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.brand-elements.dark-theme .brand-element-card h5 {
    color: var(--white);
}

.brand-elements.dark-theme .brand-element-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   BRAND TYPES SECTION
   ========================================================================== */
.brand-types {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.brand-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Brand Type Card Base */
.brand-type-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Type-specific Colors */
.brand-type-card.startup { --card-color: #f59e0b; }
.brand-type-card.corporate { --card-color: #3b82f6; }
.brand-type-card.rebrand { --card-color: #10b981; }

/* Top Border */
.brand-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.brand-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-color), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.brand-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.brand-type-card:hover::before {
    transform: scaleX(1);
}

.brand-type-card:hover::after {
    opacity: 0.05;
}

/* Icon Styles */
.brand-type-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

/* Startup Icon */
.brand-type-card.startup .brand-type-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.brand-type-card.startup:hover .brand-type-icon {
    background: #f59e0b;
    color: var(--white);
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Corporate Icon */
.brand-type-card.corporate .brand-type-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.brand-type-card.corporate:hover .brand-type-icon {
    background: #3b82f6;
    color: var(--white);
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Rebrand Icon */
.brand-type-card.rebrand .brand-type-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.brand-type-card.rebrand:hover .brand-type-icon {
    background: #10b981;
    color: var(--white);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Card Content */
.brand-type-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.brand-type-card:hover h4 {
    color: var(--card-color);
}

.brand-type-card > p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature List */
.brand-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.brand-type-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

.brand-type-card ul li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
    background: var(--card-color);
    flex-shrink: 0;
}

/* Stagger Animation */
.brand-types .row > [class*="col-"]:nth-child(1) .brand-type-card { animation-delay: 0.1s; }
.brand-types .row > [class*="col-"]:nth-child(2) .brand-type-card { animation-delay: 0.2s; }
.brand-types .row > [class*="col-"]:nth-child(3) .brand-type-card { animation-delay: 0.3s; }

.brand-type-card {
    animation: typeCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes typeCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .brand-type-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .brand-type-card {
        padding: 1.5rem;
    }
    
    .brand-type-card:hover {
        transform: translateY(-5px);
    }
    
    .brand-type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .brand-type-card h4 {
        font-size: 1.25rem;
    }
    
    .brand-type-card > p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .brand-type-card ul {
        padding-top: 1rem;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .brand-type-card,
    .brand-type-icon,
    .brand-type-card h4 {
        transition: none;
        animation: none;
    }
    
    .brand-type-card:hover {
        transform: none;
    }
    
    .brand-type-card:hover .brand-type-icon {
        transform: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.brand-types.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.brand-types.dark-theme .brand-type-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.brand-types.dark-theme .brand-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.brand-types.dark-theme .brand-type-card h4 {
    color: var(--white);
}

.brand-types.dark-theme .brand-type-card > p {
    color: rgba(255, 255, 255, 0.8);
}

.brand-types.dark-theme .brand-type-card ul {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.brand-types.dark-theme .brand-type-card ul li {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   BRAND PROCESS SECTION
   ========================================================================== */
.brand-process {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.brand-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Timeline Container */
.brand-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 3rem;
}

/* Connecting Line */
.brand-process-timeline::before {
    content: '';
    position: absolute;
    top: 60px; /* Aligns with icon center */
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-violet), 
        var(--accent-rose), 
        var(--accent-orange)
    );
    border-radius: var(--radius-full);
    z-index: 0;
}

/* Process Phase */
.process-phase {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Phase Number Badge */
.process-phase .phase-number {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 3;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Phase Icon Container */
.process-phase .phase-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

/* Unique Colors per Phase */
.process-phase:nth-child(1) .phase-icon { border-color: var(--primary-color); }
.process-phase:nth-child(2) .phase-icon { border-color: var(--accent-violet); }
.process-phase:nth-child(3) .phase-icon { border-color: var(--accent-rose); }
.process-phase:nth-child(4) .phase-icon { border-color: var(--accent-orange); }

.process-phase:hover .phase-icon {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.process-phase:nth-child(1):hover .phase-icon { background: var(--primary-color); }
.process-phase:nth-child(2):hover .phase-icon { background: var(--accent-violet); }
.process-phase:nth-child(3):hover .phase-icon { background: var(--accent-rose); }
.process-phase:nth-child(4):hover .phase-icon { background: var(--accent-orange); }

/* Icon Styles */
.process-phase .phase-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-phase:nth-child(1) .phase-icon i { color: var(--primary-color); }
.process-phase:nth-child(2) .phase-icon i { color: var(--accent-violet); }
.process-phase:nth-child(3) .phase-icon i { color: var(--accent-rose); }
.process-phase:nth-child(4) .phase-icon i { color: var(--accent-orange); }

.process-phase:hover .phase-icon i {
    color: var(--white);
    transform: scale(1.1);
}

/* Phase Content Card */
.process-phase .phase-content {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

/* Connecting line to card */
.process-phase .phase-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--border-color);
    transform: translateX(-50%);
    z-index: -1;
    transition: background 0.4s ease;
}

.process-phase:hover .phase-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: transparent;
}

.process-phase:nth-child(1):hover .phase-content { border-top: 4px solid var(--primary-color); }
.process-phase:nth-child(2):hover .phase-content { border-top: 4px solid var(--accent-violet); }
.process-phase:nth-child(3):hover .phase-content { border-top: 4px solid var(--accent-rose); }
.process-phase:nth-child(4):hover .phase-content { border-top: 4px solid var(--accent-orange); }

.process-phase:nth-child(1):hover .phase-content::before { background: var(--primary-color); }
.process-phase:nth-child(2):hover .phase-content::before { background: var(--accent-violet); }
.process-phase:nth-child(3):hover .phase-content::before { background: var(--accent-rose); }
.process-phase:nth-child(4):hover .phase-content::before { background: var(--accent-orange); }

/* Typography */
.process-phase h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.process-phase > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Activity List */
.phase-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.phase-activities li {
    font-size: 0.8125rem;
    color: var(--text-color);
    padding: 0.375rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phase-activities li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 0;
}

.process-phase:nth-child(2) .phase-activities li::before { color: var(--accent-violet); }
.process-phase:nth-child(3) .phase-activities li::before { color: var(--accent-rose); }
.process-phase:nth-child(4) .phase-activities li::before { color: var(--accent-orange); }

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .brand-process-timeline {
        gap: 1.5rem;
    }
    
    .process-phase .phase-icon {
        width: 80px;
        height: 80px;
    }
    
    .brand-process-timeline::before {
        top: 55px;
    }
    
    .process-phase .phase-number {
        top: 75px;
    }
}

@media (max-width: 991.98px) {
    .brand-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .brand-process-timeline::before {
        display: none; /* Hide horizontal line on tablet */
    }
    
    /* Create vertical connecting lines for tablet grid */
    .process-phase:nth-child(1)::after,
    .process-phase:nth-child(2)::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        width: 2px;
        height: 2rem;
        background: var(--border-color);
        transform: translateX(-50%);
        z-index: 0;
    }
}

@media (max-width: 575.98px) {
    .brand-process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Vertical connecting line for all items */
    .process-phase:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -3rem;
        left: 50%;
        width: 2px;
        height: 3rem;
        background: var(--border-color);
        transform: translateX(-50%);
        z-index: 0;
    }
    
    .process-phase .phase-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .process-phase .phase-number {
        top: 65px;
    }
    
    .process-phase .phase-icon i {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.brand-process.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.brand-process.dark-theme .process-phase .phase-icon {
    background: var(--dark-secondary);
    border-width: 2px;
}

.brand-process.dark-theme .process-phase:hover .phase-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.brand-process.dark-theme .process-phase .phase-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.brand-process.dark-theme .process-phase:hover .phase-content {
    background: rgba(255, 255, 255, 0.1);
}

.brand-process.dark-theme .process-phase h4 {
    color: var(--white);
}

.brand-process.dark-theme .process-phase > p,
.brand-process.dark-theme .phase-activities li {
    color: rgba(255, 255, 255, 0.7);
}

.brand-process.dark-theme .phase-activities {
    border-top-color: rgba(255, 255, 255, 0.1);
}



/* ==========================================================================
   DESIGN PROCESS SECTION (Timeline)
   ========================================================================== */
.design-process-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.design-process-wrapper {
    position: relative;
    padding: 2rem 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
    z-index: 0;
}

/* Process Item */
.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 1rem;
}

/* Process Icons */
.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-icon.empathize { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.process-icon.define { background: linear-gradient(135deg, #ec4899, #d946ef); }
.process-icon.ideate { background: linear-gradient(135deg, #f59e0b, #d97706); }
.process-icon.prototype { background: linear-gradient(135deg, #10b981, #059669); }
.process-icon.test { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.process-item:hover .process-icon {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Process Content */
.process-content {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.process-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(5px);
}

.process-item:hover .process-content::before {
    background: var(--white);
    border-color: transparent;
}

.process-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Connectors */
.process-connector {
    flex: 0 0 20px;
    height: 4px;
    background: transparent;
    position: relative;
    top: 40px;
}

.process-connector::after {
    content: '→';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-light);
    background: var(--white);
    padding: 0 0.5rem;
}

/* ==========================================================================
   WHAT WE DESIGN SECTION
   ========================================================================== */
.what-we-design {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.what-we-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Design Type Card */
.design-type-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Top Border Gradient */
.design-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background Glow */
.design-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.design-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: transparent;
}

.design-type-card:hover::before {
    transform: scaleX(1);
}

.design-type-card:hover::after {
    opacity: 1;
}

/* Design Icon */
.design-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Icon Ring Animation */
.design-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent, rgba(139, 92, 246, 0.4));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
}

.design-type-card:hover .design-icon {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.design-type-card:hover .design-icon::before {
    opacity: 1;
    animation: designIconPulse 2s ease-in-out infinite;
}

@keyframes designIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.design-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.design-type-card:hover .design-icon i {
    color: var(--white);
}

.design-type-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.design-type-card:hover h5 {
    color: var(--primary-color);
}

.design-type-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   DESIGN PRINCIPLES SECTION
   ========================================================================== */
.design-principles {
    background: var(--light-bg);
    position: relative;
}

/* Principle Card */
.principle-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.principle-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.principle-card:hover .principle-number {
    color: rgba(99, 102, 241, 0.2);
    transform: translateX(10px);
}

.principle-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.principle-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   HOURLY RATES SECTION
   ========================================================================== */
.hourly-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 2px solid var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hourly-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.hourly-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hourly-card h4 i {
    color: var(--primary-color);
}

.hourly-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.rate-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rate-item {
    flex: 1;
    min-width: 200px;
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.rate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--primary-color);
}

.rate-type {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rate-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ==========================================================================
   STAGGER ANIMATIONS
   ========================================================================== */

/* Design Process Stagger */
.process-timeline .process-item:nth-child(1) { animation-delay: 0.1s; }
.process-timeline .process-item:nth-child(3) { animation-delay: 0.2s; }
.process-timeline .process-item:nth-child(5) { animation-delay: 0.3s; }
.process-timeline .process-item:nth-child(7) { animation-delay: 0.4s; }
.process-timeline .process-item:nth-child(9) { animation-delay: 0.5s; }

.process-item {
    animation: processIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes processIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Design Type Cards Stagger */
.what-we-design .row > [class*="col-"]:nth-child(1) .design-type-card { animation-delay: 0.05s; }
.what-we-design .row > [class*="col-"]:nth-child(2) .design-type-card { animation-delay: 0.1s; }
.what-we-design .row > [class*="col-"]:nth-child(3) .design-type-card { animation-delay: 0.15s; }
.what-we-design .row > [class*="col-"]:nth-child(4) .design-type-card { animation-delay: 0.2s; }
.what-we-design .row > [class*="col-"]:nth-child(5) .design-type-card { animation-delay: 0.25s; }
.what-we-design .row > [class*="col-"]:nth-child(6) .design-type-card { animation-delay: 0.3s; }
.what-we-design .row > [class*="col-"]:nth-child(7) .design-type-card { animation-delay: 0.35s; }
.what-we-design .row > [class*="col-"]:nth-child(8) .design-type-card { animation-delay: 0.4s; }

.what-we-design .design-type-card {
    animation: designCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes designCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .design-type-card {
        padding: 1.75rem 1.25rem;
    }
    
    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-item {
        flex: 0 0 30%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 991.98px) {
    .process-item {
        flex: 0 0 45%;
    }
    
    .design-type-card {
        padding: 1.5rem 1rem;
    }
    
    .design-icon {
        width: 56px;
        height: 56px;
    }
    
    .design-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .design-type-card {
        padding: 1.25rem 1rem;
    }
    
    .design-type-card:hover {
        transform: translateY(-8px);
    }
    
    .design-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .design-icon i {
        font-size: 1.25rem;
    }
    
    .design-type-card h5 {
        font-size: 0.9375rem;
    }
    
    .design-type-card p {
        font-size: 0.8125rem;
    }
    
    .process-item {
        flex: 0 0 100%;
    }
    
    .hourly-card {
        padding: 1.5rem;
    }
    
    .rate-options {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .design-type-card {
        padding: 1rem 0.75rem;
    }
    
    .design-icon {
        width: 40px;
        height: 40px;
    }
    
    .design-icon i {
        font-size: 1rem;
    }
    
    .design-type-card h5 {
        font-size: 0.8125rem;
    }
    
    .design-type-card p {
        display: none;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .design-type-card,
    .design-icon,
    .design-icon::before,
    .process-item,
    .process-icon,
    .principle-card,
    .principle-number,
    .rate-item {
        transition: none;
        animation: none;
    }
    
    .design-type-card:hover,
    .process-item:hover .process-icon,
    .principle-card:hover,
    .rate-item:hover {
        transform: none;
    }
    
    .design-type-card:hover .design-icon::before {
        animation: none;
    }
}

/* ==========================================================================
   DARK THEME VARIANTS
   ========================================================================== */
.design-process-section.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-process-section.dark-theme .process-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.design-process-section.dark-theme .process-item:hover .process-content {
    background: rgba(255, 255, 255, 0.1);
}

.design-process-section.dark-theme .process-content h4 {
    color: var(--white);
}

.design-process-section.dark-theme .process-content p {
    color: rgba(255, 255, 255, 0.6);
}

.what-we-design.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.what-we-design.dark-theme .design-type-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.what-we-design.dark-theme .design-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.what-we-design.dark-theme .design-type-card h5 {
    color: var(--white);
}

.what-we-design.dark-theme .design-type-card p {
    color: rgba(255, 255, 255, 0.6);
}

.design-principles.dark-theme {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
}

.design-principles.dark-theme .principle-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.design-principles.dark-theme .principle-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.design-principles.dark-theme .principle-card h4 {
    color: var(--white);
}

.design-principles.dark-theme .principle-card p {
    color: rgba(255, 255, 255, 0.6);
}
