/* ============================================
   MARKETICK - Modern CRM Website Styles
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Red Color Palette */
    --primary-red: #EF4444;
    --secondary-red: #F87171;
    --accent-red: #DC2626;
    --red-light: #FEE2E2;
    --red-dark: #B91C1C;

    /* Gradient Colors - Red Theme */
    --gradient-1: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --gradient-2: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
    --gradient-3: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --gradient-4: linear-gradient(135deg, #EF4444 0%, #F87171 100%);

    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-dark: #111827;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(239, 68, 68, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Typography - Matching Xtract/Framer Style - Poppins */
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions - Smooth Xtract-style animations */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing - 8px grid system */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 3rem;     /* 48px */
    --spacing-2xl: 4rem;   /* 64px */
    --spacing-3xl: 6rem;   /* 96px */
    
    /* Blog Content Width - Reference Template */
    --blog-content-width: 720px;
    --blog-container-width: 1200px;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:not(svg):not(svg *) {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .service-title, .problem-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

body, p, span, a, .nav-link, .hero-subtitle, .service-description {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Xtract-style smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-1 {
    background: var(--gradient-1);
    color: white;
}

.gradient-2 {
    background: var(--gradient-2);
    color: white;
}

.gradient-3 {
    background: var(--gradient-3);
    color: white;
}

.gradient-4 {
    background: var(--gradient-4);
    color: white;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 2rem;
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform: translateY(0);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    height: 100%;
}

.logo-image {
    height: 48px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition-base);
    display: block;
}

.logo:hover .logo-image {
    opacity: 0.85;
    transform: translateY(-1px);
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-red);
    border-radius: 2px;
}

.nav-cta {
    margin-left: var(--spacing-md);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease-out;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: background-color 0.2s;
    border-radius: 0;
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(239, 68, 68, 0.05);
    color: var(--primary-red);
}

.dropdown-item:hover .dropdown-icon {
    color: var(--primary-red);
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.39);
    border: none;
}

.btn-primary:hover {
    background: var(--accent-red);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: var(--spacing-xl);
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--bg-primary);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-red);
    top: -300px;
    right: -300px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-red);
    bottom: -200px;
    left: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -50px) scale(1.1) rotate(90deg); }
    50% { transform: translate(-30px, 30px) scale(0.9) rotate(180deg); }
    75% { transform: translate(30px, 50px) scale(1.05) rotate(270deg); }
}

/* XTRACT-STYLE ANIMATED DOTS - ENHANCED */
.animated-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.animated-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.5;
    animation: dotMove 20s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
    will-change: transform, opacity;
}

/* Create more dots - 20 total with initial positions */
.animated-dot:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 15s; }
.animated-dot:nth-child(2) { top: 20%; left: 85%; animation-delay: 1s; animation-duration: 18s; }
.animated-dot:nth-child(3) { top: 40%; left: 15%; animation-delay: 2s; animation-duration: 16s; }
.animated-dot:nth-child(4) { top: 60%; left: 75%; animation-delay: 3s; animation-duration: 19s; }
.animated-dot:nth-child(5) { top: 80%; left: 25%; animation-delay: 4s; animation-duration: 17s; }
.animated-dot:nth-child(6) { top: 15%; left: 50%; animation-delay: 0.5s; animation-duration: 14s; }
.animated-dot:nth-child(7) { top: 35%; left: 90%; animation-delay: 1.5s; animation-duration: 20s; }
.animated-dot:nth-child(8) { top: 55%; left: 10%; animation-delay: 2.5s; animation-duration: 15s; }
.animated-dot:nth-child(9) { top: 75%; left: 60%; animation-delay: 3.5s; animation-duration: 18s; }
.animated-dot:nth-child(10) { top: 25%; left: 40%; animation-delay: 4.5s; animation-duration: 16s; }
.animated-dot:nth-child(11) { top: 45%; left: 70%; animation-delay: 0.3s; animation-duration: 17s; }
.animated-dot:nth-child(12) { top: 65%; left: 30%; animation-delay: 1.3s; animation-duration: 19s; }
.animated-dot:nth-child(13) { top: 5%; left: 65%; animation-delay: 2.3s; animation-duration: 15s; }
.animated-dot:nth-child(14) { top: 30%; left: 20%; animation-delay: 3.3s; animation-duration: 18s; }
.animated-dot:nth-child(15) { top: 50%; left: 80%; animation-delay: 4.3s; animation-duration: 16s; }
.animated-dot:nth-child(16) { top: 70%; left: 45%; animation-delay: 0.7s; animation-duration: 17s; }
.animated-dot:nth-child(17) { top: 90%; left: 55%; animation-delay: 1.7s; animation-duration: 19s; }
.animated-dot:nth-child(18) { top: 12%; left: 35%; animation-delay: 2.7s; animation-duration: 15s; }
.animated-dot:nth-child(19) { top: 42%; left: 95%; animation-delay: 3.7s; animation-duration: 18s; }
.animated-dot:nth-child(20) { top: 62%; left: 5%; animation-delay: 4.7s; animation-duration: 16s; }

@keyframes dotMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(50px, -60px) scale(1.3);
        opacity: 0.6;
    }
    50% {
        transform: translate(-40px, 50px) scale(0.7);
        opacity: 0.5;
    }
    75% {
        transform: translate(60px, 40px) scale(1.1);
        opacity: 0.7;
    }
}

/* 3D TRANSFORM EFFECTS */
/* Hero content 3D style moved to main .hero-content definition */

.service-card {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-3deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(239, 68, 68, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* LOADING ANIMATIONS */
.loading-dots {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: loadingBounce 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* PARALLAX SCROLL EFFECTS */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* CIRCLE ANIMATIONS */
.animated-circle {
    position: absolute;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: circlePulse 4s infinite ease-in-out;
}

.animated-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.animated-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.animated-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: calc(var(--spacing-xl) + 4rem) 0 var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-graphics {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero-animated-graphic {
    width: 100%;
    height: 100%;
}

.hero-graphics svg {
    filter: drop-shadow(0 10px 30px rgba(239, 68, 68, 0.1));
}

.hero-bar-animate {
    animation: heroBarGrow 2.5s ease-in-out infinite;
    transform-origin: bottom;
}

@keyframes heroBarGrow {
    0%, 100% {
        transform: scaleY(0.6);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.hero-pulse-dot {
    animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
}

.hero-flow-line {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: heroFlowLine 3s ease-in-out infinite;
}

@keyframes heroFlowLine {
    0% {
        stroke-dashoffset: 150;
    }
    100% {
        stroke-dashoffset: -150;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700 !important;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    animation: titleFadeIn 1s ease-out;
    letter-spacing: -0.03em;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.floating {
    animation: floating 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floating {
    0%, 100% { 
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(2deg);
    }
    50% { 
        transform: translateY(-25px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-15px) rotateZ(-2deg);
    }
}

/* ENHANCED CARD GLOW ANIMATION */
.card-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(20px);
    }
    50% {
        opacity: 0.5;
        filter: blur(25px);
    }
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-red);
    border-radius: var(--radius-2xl);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.3;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
}

.preview-content {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    height: 200px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    animation: grow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes grow {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

/* === SECTIONS === */
section {
    padding: var(--spacing-2xl) 0;
    margin-bottom: var(--spacing-xl);
}

section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.alt-bg {
    background-color: var(--bg-secondary);
}

/* === SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.service-card {
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition-base);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-lg);
    background: var(--primary-red);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s;
    z-index: -1;
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

/* Service Graphics */
.service-graphic {
    display: none;
}

.animated-graphic {
    width: 100%;
    height: 100%;
}

/* Bar Chart Animation */
.bar-animate {
    animation: barGrow 1.2s ease-in-out infinite;
    transform-origin: bottom;
}

@keyframes barGrow {
    0%, 100% {
        transform: scaleY(0.7);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Pulse Circle Animation */
.pulse-circle {
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Connecting Line Animation */
.connecting-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 3s ease-in-out infinite;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 100;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -100;
    }
}

/* Flow Line Animation */
.flow-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: flowLine 3s ease-in-out infinite;
}

@keyframes flowLine {
    0% {
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dashoffset: -200;
    }
}

.flow-dot {
    animation: flowDot 1.2s ease-in-out infinite;
}

@keyframes flowDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Signal Wave Animation */
.signal-wave {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: signalWave 2s ease-in-out infinite;
}

@keyframes signalWave {
    0% {
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dashoffset: -50;
    }
}

/* Data Box Animation */
.data-box {
    animation: dataPulse 2s ease-in-out infinite;
}

@keyframes dataPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.data-connection {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: dataConnect 2s ease-in-out infinite;
}

@keyframes dataConnect {
    0% {
        stroke-dashoffset: 30;
    }
    100% {
        stroke-dashoffset: -30;
    }
}

.service-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.service-description {
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.service-link {
    color: var(--primary-red);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--accent-red);
    transform: translateX(5px);
    display: inline-block;
}

/* === WHY CHOOSE US === */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (max-width: 968px) {
    .why-choose-content {
        grid-template-columns: 1fr;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    position: relative;
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: background-color 0.3s;
}

.benefit-item:hover {
    background-color: rgba(239, 68, 68, 0.02);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.benefit-item:hover .benefit-icon {
    background: var(--accent-red);
    transform: scale(1.1);
}

.benefit-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.benefit-item:hover .benefit-number {
    background: var(--accent-red);
}

.benefit-content h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    padding: var(--spacing-xl);
    width: 100%;
}

.metric-display {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.metric {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    padding: var(--spacing-xl);
}

.testimonial-rating {
    margin-bottom: var(--spacing-md);
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* === OUTCOMES SECTION === */
.outcomes-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
    width: 100%;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.outcome-card {
    padding: var(--spacing-lg);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.outcome-label-small {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9333EA;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.outcome-value,
.outcome-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.outcome-label,
.outcome-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.outcomes-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: var(--spacing-lg);
}

/* === FAQ SECTION === */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    transition: transform var(--transition-base);
    margin-left: var(--spacing-md);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0;
}

.faq-answer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 10px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* === RESOURCES LIBRARY SECTION === */
.resources-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    width: 100%;
}

.resources-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.resource-tab {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.resource-tab:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.resource-tab.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.resources-content {
    margin-bottom: var(--spacing-xl);
}

.resource-tab-content {
    display: none;
}

.resource-tab-content.active {
    display: block;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.resource-card {
    padding: var(--spacing-xl);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.resource-icon-wrapper {
    margin-bottom: var(--spacing-md);
}

.resource-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.resource-link {
    margin-top: auto;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    margin-top: var(--spacing-md);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    color: inherit;
}

.resource-card:hover .resource-link {
    transform: translateX(5px);
    transition: transform 0.2s;
}

.resource-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.resource-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.resources-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* === CASE STUDIES SECTION === */
.case-studies-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.case-study-card {
    padding: var(--spacing-xl);
    transition: var(--transition-base);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.case-study-tags {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.case-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-red);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.case-study-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: #fef2f2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fef2f2;
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.footer-content {
    margin-bottom: var(--spacing-lg);
}

.footer-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-main {
    display: flex;
    flex-direction: column;
}

.footer-bottom-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-contact-column {
    align-self: flex-start;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-red);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: white;
}

/* === NEW FOOTER STRUCTURE (for services, about, contact, case-studies) === */
/* Override footer-content for new structure - ensure it centers and has proper spacing */
.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-left-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.footer-right-section {
    display: flex;
    flex-direction: column;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact-item a:hover {
    color: white;
}

/* Responsive for new footer structure */
@media (max-width: 968px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-three-cols {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Blog page footer specific styling - uses different structure */
.blog-post-page .footer {
    margin-top: 36px;
    background: #0a1628;
    padding: 64px 24px 32px;
}

/* Blog footer grid layout - only for blog pages */
.blog-post-page .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.blog-post-page .footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.blog-post-page .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-page .footer-col li {
    margin-bottom: 12px;
}

.blog-post-page .footer-col a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.blog-post-page .footer-col a:hover {
    color: #ffffff;
}

.blog-post-page .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.blog-post-page .footer-bottom p {
    color: #a0aec0;
    font-size: 14px;
    margin: 0;
}

/* Mobile responsive for blog footer */
@media (max-width: 768px) {
    .blog-post-page .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .blog-post-page .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: white;
}

/* === PAGE HEADER === */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Content Section */
.legal-content-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.legal-intro {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--border);
}

.legal-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.legal-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.company-details {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.company-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.company-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-details li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.company-details li:last-child {
    border-bottom: none;
}

.company-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    padding-top: var(--spacing-md);
}

.legal-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.legal-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition-base);
}

.legal-section a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.contact-info {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--text-primary);
}

.legal-acknowledgment {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.legal-acknowledgment h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.legal-acknowledgment p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.legal-acknowledgment strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Mobile responsive for legal content */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 var(--spacing-md);
    }

    .legal-intro h2,
    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-intro p,
    .legal-section p {
        font-size: 0.9375rem;
    }
}

/* Animation styles moved to XTRACT-STYLE SCROLL ANIMATIONS section above */

/* === SERVICES PAGE === */
.service-detail {
    padding: var(--spacing-2xl) 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    max-width: 100%;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: ltr;
}

.service-icon-large {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-xl);
}

.service-detail-title,
.page-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
    font-weight: 600 !important;
    line-height: 1.1;
}

.service-detail-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.service-detail-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.subsection-title {
    font-size: 1.5rem;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-list li {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-list li svg {
    flex-shrink: 0;
    color: var(--primary-red);
    margin-top: 2px;
}

.feature-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-list p {
    color: var(--text-secondary);
}

/* Service Process */
.service-process {
    padding: var(--spacing-xl);
}

.service-process h4 {
    margin-bottom: var(--spacing-lg);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-base);
    position: relative;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.process-step {
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateX(8px);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.step-content h5 {
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Support Features */
.support-features {
    padding: var(--spacing-xl);
}

.support-features h4 {
    margin-bottom: var(--spacing-lg);
}

.support-tier {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-md);
    background: white;
    position: relative;
    transition: all var(--transition-base);
    cursor: pointer;
}

.support-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.support-tier.featured {
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
    }
}

.support-tier.featured {
    background: var(--gradient-1);
    color: white;
}

.support-tier.featured .tier-header h5,
.support-tier.featured .tier-header p {
    color: white;
}

.tier-header h5 {
    margin-bottom: 0.25rem;
}

.tier-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Consulting Benefits */
.consulting-benefits {
    padding: var(--spacing-xl);
}

.consulting-benefits h4 {
    margin-bottom: var(--spacing-lg);
}

.benefit-metric {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-metric:last-child {
    border-bottom: none;
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.benefit-metric {
    transition: all var(--transition-base);
}

.benefit-metric:hover {
    transform: translateX(8px);
}

.benefit-metric:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.metric-content h5 {
    margin-bottom: 0.25rem;
}

.metric-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Training Programs */
.training-programs {
    padding: var(--spacing-xl);
}

.training-programs h4 {
    margin-bottom: var(--spacing-lg);
}

.training-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.training-item:hover {
    transform: translateX(8px);
    padding-left: var(--spacing-sm);
}

.training-item:hover .training-icon {
    transform: scale(1.2) rotate(5deg);
}

.training-item:last-child {
    border-bottom: none;
}

.training-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.training-item h5 {
    margin-bottom: 0.25rem;
}

.training-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* === SPLIT CARDS SECTION === */
.split-cards-section {
    margin: var(--spacing-xl) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.cards-column {
    display: flex;
    flex-direction: column;
}

.cards-column .subsection-title {
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
}

/* Problem Cards (Left Column) */
.problem-column .problem-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(239, 68, 68, 0.1);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.problem-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.problem-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-red);
}

.problem-card .card-icon svg {
    width: 20px;
    height: 20px;
}

/* Outcome Cards (Right Column) */
.outcome-column .outcome-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-md);
    gap: var(--spacing-md);
    align-items: center;
}

.outcome-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.outcome-card:hover::before {
    opacity: 1;
}

.outcome-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.outcome-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}

.outcome-card .card-icon svg {
    width: 20px;
    height: 20px;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.outcome-card .card-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    flex-direction: row;
}

.outcome-card .card-content strong {
    margin: 0;
    line-height: 1.5;
}

.card-content strong {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.4;
}

/* Side Box Positioning */
.service-detail-visual {
    position: sticky;
    top: 100px;
    max-width: 100%;
    width: 100%;
    height: fit-content;
}

/* Interactive Service Visuals */
.service-visual-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.service-visual-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 1;
}

/* Dashboard Visual */
.dashboard-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.dashboard-stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(239, 68, 68, 0.05);
    border-radius: var(--radius-md);
}

.dashboard-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.dashboard-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.dashboard-chart {
    margin-top: var(--spacing-md);
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(239, 68, 68, 0.02);
    border-radius: var(--radius-md);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-height: 20px;
    animation: chartGrow 1s ease-out forwards;
    opacity: 0;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; height: 40%; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; height: 65%; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; height: 85%; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; height: 100%; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; height: 70%; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; height: 50%; }

@keyframes chartGrow {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* CRM Interface Visual */
.crm-interface {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.crm-header {
    display: flex;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.crm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.crm-dot:nth-child(1) { background: #ef4444; }
.crm-dot:nth-child(2) { background: #fbbf24; }
.crm-dot:nth-child(3) { background: #10b981; }

.crm-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.crm-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(239, 68, 68, 0.02);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-red);
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.crm-item:nth-child(1) { animation-delay: 0.1s; }
.crm-item:nth-child(2) { animation-delay: 0.2s; }
.crm-item:nth-child(3) { animation-delay: 0.3s; }
.crm-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.crm-item-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.crm-item-content {
    flex: 1;
}

.crm-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.crm-item-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Task Automation Visual */
.task-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.task-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(239, 68, 68, 0.02);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-red);
    animation: taskSlide 0.5s ease-out forwards;
    opacity: 0;
}

.task-item:nth-child(1) { animation-delay: 0.1s; }
.task-item:nth-child(2) { animation-delay: 0.2s; }
.task-item:nth-child(3) { animation-delay: 0.3s; }
.task-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes taskSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.task-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-item.completed .task-checkbox {
    background: var(--primary-red);
}

.task-item.completed .task-checkbox::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
}

.task-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.task-item.completed .task-text {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.task-progress {
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* Campaign Dashboard Visual */
.campaign-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.campaign-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.campaign-metric {
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
}

.campaign-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.campaign-metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.campaign-chart {
    margin-top: var(--spacing-md);
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.02);
    border-radius: var(--radius-md);
}

.campaign-bar {
    flex: 1;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-height: 20px;
    animation: chartGrow 1s ease-out forwards;
    opacity: 0;
}

.campaign-bar:nth-child(1) { animation-delay: 0.1s; height: 60%; }
.campaign-bar:nth-child(2) { animation-delay: 0.2s; height: 80%; }
.campaign-bar:nth-child(3) { animation-delay: 0.3s; height: 100%; }
.campaign-bar:nth-child(4) { animation-delay: 0.4s; height: 75%; }
.campaign-bar:nth-child(5) { animation-delay: 0.5s; height: 90%; }

/* Data Quality Visual */
.data-quality-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.data-quality-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.data-quality-metric {
    padding: var(--spacing-md);
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
}

.data-quality-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.data-quality-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.data-quality-chart {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.data-quality-bar {
    height: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.data-quality-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius-sm);
    animation: fillBar 1.5s ease-out forwards;
    width: 0;
}

.data-quality-fill:nth-child(1) { width: 94%; }
.data-quality-fill:nth-child(2) { width: 87%; }
.data-quality-fill:nth-child(3) { width: 92%; }

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--target-width, 100%);
    }
}

/* Ensure proper alignment for split cards */
.split-cards-section {
    width: 100%;
}

.cards-column {
    width: 100%;
}

/* Card animations */
.problem-card,
.outcome-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card.animated,
.outcome-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Split Cards */
@media (max-width: 968px) {
    .split-cards-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .problem-card,
    .outcome-card {
        padding: var(--spacing-md);
    }
    
    .card-content strong {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .split-cards-section {
        gap: var(--spacing-lg);
    }
    
    .cards-column .subsection-title {
        font-size: 1.125rem;
    }
    
    .problem-card,
    .outcome-card {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
    }
    
    .card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .card-content strong {
        font-size: 0.875rem;
    }
}

/* === ABOUT PAGE === */
.our-story {
    padding: var(--spacing-2xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.story-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.story-text {
    max-width: 100%;
}

.timeline-card {
    padding: var(--spacing-xl);
    position: sticky;
    top: 100px;
}

.timeline-card h3 {
    margin-bottom: var(--spacing-lg);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-left: 2px solid var(--primary-red);
    padding-left: var(--spacing-md);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-red);
}

.timeline-year {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.125rem;
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
/* Values */
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-xl);
}
.value-card {
padding: var(--spacing-xl);
text-align: center;
}
.value-icon {
width: 70px;
height: 70px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--spacing-md);
box-shadow: var(--shadow-lg);
}
.value-card h3 {
margin-bottom: var(--spacing-sm);
}
/* Team */
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: var(--spacing-xl);
}
.team-card {
padding: var(--spacing-xl);
text-align: center;
}
.team-avatar {
width: 120px;
height: 120px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--spacing-md);
box-shadow: var(--shadow-xl);
}
.avatar-initials {
font-size: 2rem;
font-weight: 700;
}
.team-name {
margin-bottom: 0.25rem;
}
.team-role {
color: var(--primary-red);
font-weight: 600;
margin-bottom: var(--spacing-sm);
}
.team-bio {
margin-bottom: var(--spacing-md);
}
.team-certifications {
display: flex;
gap: 0.5rem;
justify-content: center;
flex-wrap: wrap;
}
.cert-badge {
padding: 0.25rem 0.75rem;
background: rgba(37, 99, 235, 0.1);
color: var(--primary-red);
border-radius: 1rem;
font-size: 0.75rem;
font-weight: 600;
}
/* Stats Section */
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-xl);
}
.stat-card {
padding: var(--spacing-xl);
text-align: center;
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
}
.stat-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.stat-value {
font-size: 3rem;
font-weight: 700;
color: var(--primary-red);
line-height: 1;
margin-bottom: var(--spacing-sm);
}
.stat-label {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: var(--spacing-sm);
}
.stat-description {
font-size: 0.9375rem;
color: var(--text-secondary);
line-height: 1.6;
}
.stat-icon {
width: 70px;
height: 70px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--spacing-md);
box-shadow: var(--shadow-lg);
}
/* Certifications */
.certifications-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-xl);
}
.cert-item {
text-align: center;
}
.cert-logo {
width: 80px;
height: 80px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--spacing-md);
font-size: 1.5rem;
font-weight: 800;
box-shadow: var(--shadow-lg);
}
.cert-item h4 {
margin-bottom: 0.5rem;
}
.cert-item p {
color: var(--text-secondary);
}
/* === CONTACT PAGE === */
.contact-section {
padding: var(--spacing-2xl) 0;
}
.contact-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: var(--spacing-2xl);
}
.contact-form-wrapper {
min-width: 0;
}
.contact-form-wrapper .glass-card {
padding: var(--spacing-xl);
}
/* HubSpot Form Styling */
.hubspot-form-container {
margin-top: var(--spacing-lg);
}
.hubspot-form-container iframe {
width: 100% !important;
border: none !important;
}
/* Style HubSpot form elements to match website theme */
.hubspot-form-container .hs-form fieldset {
max-width: 100% !important;
}
.hubspot-form-container .hs-form .hs-form-field label {
color: var(--text-primary) !important;
font-family: 'Poppins', sans-serif !important;
font-weight: 500 !important;
margin-bottom: 0.5rem !important;
}
.hubspot-form-container .hs-form input[type="text"],
.hubspot-form-container .hs-form input[type="email"],
.hubspot-form-container .hs-form input[type="tel"],
.hubspot-form-container .hs-form select,
.hubspot-form-container .hs-form textarea {
width: 100% !important;
padding: 0.75rem 1rem !important;
border: 1px solid rgba(0, 0, 0, 0.1) !important;
border-radius: var(--radius-md) !important;
font-family: 'Poppins', sans-serif !important;
font-size: 1rem !important;
color: var(--text-primary) !important;
background: white !important;
transition: var(--transition-base) !important;
}
.hubspot-form-container .hs-form input[type="text"]:focus,
.hubspot-form-container .hs-form input[type="email"]:focus,
.hubspot-form-container .hs-form input[type="tel"]:focus,
.hubspot-form-container .hs-form select:focus,
.hubspot-form-container .hs-form textarea:focus {
outline: none !important;
border-color: var(--primary-red) !important;
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.hubspot-form-container .hs-form .hs-button {
background: var(--gradient-1) !important;
color: white !important;
border: none !important;
padding: 0.875rem 2rem !important;
border-radius: var(--radius-md) !important;
font-family: 'Poppins', sans-serif !important;
font-weight: 600 !important;
font-size: 1rem !important;
cursor: pointer !important;
transition: var(--transition-base) !important;
width: 100% !important;
margin-top: var(--spacing-md) !important;
}
.hubspot-form-container .hs-form .hs-button:hover {
transform: translateY(-2px) !important;
box-shadow: var(--shadow-lg) !important;
opacity: 0.95 !important;
}
.hubspot-form-container .hs-error-msgs label {
color: var(--primary-red) !important;
font-size: 0.875rem !important;
}
.hubspot-form-container .hs-form .hs-error-msgs {
list-style: none !important;
padding: 0 !important;
margin: 0.5rem 0 0 0 !important;
}
.form-title {
margin-bottom: var(--spacing-sm);
}
.form-subtitle {
color: var(--text-secondary);
margin-bottom: var(--spacing-xl);
}
.contact-form {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-md);
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group label {
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 0.75rem 1rem;
border: 2px solid #e2e8f0;
border-radius: var(--radius-md);
font-family: inherit;
font-size: 1rem;
transition: var(--transition-base);
background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-red);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.checkbox-group {
flex-direction: row;
align-items: center;
}
.checkbox-label {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
}
.checkbox-label span {
color: var(--text-secondary);
font-size: 0.875rem;
}
.checkbox-label a {
color: var(--primary-red);
}
.form-message {
padding: var(--spacing-md);
border-radius: var(--radius-md);
display: flex;
align-items: center;
gap: var(--spacing-sm);
margin-top: var(--spacing-md);
}
.success-message {
background: #d1fae5;
color: #065f46;
border: 1px solid #10b981;
}
.error-message {
background: #fee2e2;
color: #991b1b;
border: 1px solid #ef4444;
}
/* Contact Info */
.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.contact-info-card {
padding: var(--spacing-xl);
}
.contact-info-card h3 {
margin-bottom: var(--spacing-sm);
}
.contact-info-card > p {
color: var(--text-secondary);
margin-bottom: var(--spacing-xl);
}
.contact-info-item {
display: flex;
gap: var(--spacing-md);
padding: var(--spacing-md) 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-info-item:last-child {
border-bottom: none;
}
.contact-icon {
width: 50px;
height: 50px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.contact-info-content h4 {
margin-bottom: 0.25rem;
}
.contact-info-content p {
color: var(--text-secondary);
}
.contact-info-content a:hover {
color: var(--primary-red);
}
/* Quick Links */
.quick-links-card {
padding: var(--spacing-xl);
}
.quick-links-card h3 {
margin-bottom: var(--spacing-md);
}
.quick-links {
margin-bottom: var(--spacing-lg);
}
.quick-links li {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.quick-links a {
display: flex;
align-items: center;
gap: 0.5rem;
padding: var(--spacing-sm) 0;
color: var(--text-secondary);
transition: var(--transition-base);
}
.quick-links a:hover {
color: var(--primary-red);
padding-left: 0.5rem;
}
/* FAQ */
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-lg);
}
.faq-item {
padding: var(--spacing-lg);
}
.faq-question {
font-size: 1.125rem;
margin-bottom: var(--spacing-sm);
}
.faq-answer {
color: var(--text-secondary);
}
/* === CASE STUDIES PAGE === */
.featured-case-study {
padding: var(--spacing-2xl) 0;
background: var(--bg-secondary);
}
.featured-case-study.alt-bg {
background: var(--bg-primary);
}
.featured-study-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
align-items: start;
}
.case-study-header {
position: sticky;
top: 100px;
}
.case-study-badge {
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 2rem;
color: white;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: var(--spacing-md);
}
.featured-title {
font-size: clamp(1.75rem, 3.5vw, 2.5rem);
margin-bottom: var(--spacing-lg);
line-height: 1.2;
}
.featured-details {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
margin-top: var(--spacing-lg);
}
.detail-item {
padding: var(--spacing-md);
background: white;
border-radius: var(--radius-md);
border: 1px solid rgba(0, 0, 0, 0.05);
transition: all var(--transition-base);
}
.detail-item:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
border-color: rgba(239, 68, 68, 0.2);
}
.detail-item h4 {
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 0.5rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.detail-item p {
color: var(--text-primary);
font-weight: 600;
font-size: 1rem;
}
/* Case Study Content Cards */
.case-study-content {
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
}
.challenge-card,
.solution-card,
.results-card {
background: white;
border-radius: var(--radius-lg);
padding: var(--spacing-xl);
border: 1px solid rgba(0, 0, 0, 0.05);
transition: all var(--transition-base);
position: relative;
overflow: hidden;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.case-study-testimonial {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.challenge-card::before,
.solution-card::before,
.results-card::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
transition: opacity var(--transition-base);
}
.challenge-card::before {
background: var(--gradient-1);
opacity: 0;
}
.solution-card::before {
background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
opacity: 0;
}
.results-card::before {
background: linear-gradient(180deg, #10b981 0%, #059669 100%);
opacity: 0;
}
.challenge-card:hover,
.solution-card:hover,
.results-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
}
.challenge-card:hover::before,
.solution-card:hover::before,
.results-card:hover::before {
opacity: 1;
}
.challenge-card {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
border-color: rgba(239, 68, 68, 0.1);
}
.challenge-card .card-header {
display: flex;
align-items: center;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-md);
}
.challenge-card .card-header h3 {
color: var(--primary-red);
margin: 0;
font-size: 1.5rem;
}
.challenge-card .card-header svg {
width: 24px;
height: 24px;
color: var(--primary-red);
}
.solution-card {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
border-color: rgba(59, 130, 246, 0.1);
}
.solution-card .card-header {
display: flex;
align-items: center;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-md);
}
.solution-card .card-header h3 {
color: #3b82f6;
margin: 0;
font-size: 1.5rem;
}
.solution-card .card-header svg {
width: 24px;
height: 24px;
color: #3b82f6;
}
.results-card {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
border-color: rgba(16, 185, 129, 0.1);
}
.results-card .card-header {
display: flex;
align-items: center;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-md);
}
.results-card .card-header h3 {
color: #10b981;
margin: 0;
font-size: 1.5rem;
}
.results-card .card-header svg {
width: 24px;
height: 24px;
color: #10b981;
}
.challenge-card p,
.solution-card p,
.results-card p {
color: var(--text-primary);
line-height: 1.8;
font-size: 1rem;
margin: 0;
}
/* Testimonial Quote */
.case-study-testimonial {
margin-top: var(--spacing-xl);
padding: var(--spacing-xl);
background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
border-left: 4px solid var(--primary-red);
border-radius: var(--radius-lg);
position: relative;
}
.case-study-testimonial::before {
content: '"';
position: absolute;
top: var(--spacing-md);
left: var(--spacing-lg);
font-size: 4rem;
color: var(--primary-red);
opacity: 0.2;
font-family: Georgia, serif;
line-height: 1;
}
.case-study-testimonial p {
font-style: italic;
font-size: 1.125rem;
line-height: 1.8;
color: var(--text-primary);
margin-bottom: var(--spacing-md);
padding-left: var(--spacing-xl);
position: relative;
z-index: 1;
}
.case-study-testimonial .quote-author {
font-size: 0.9375rem;
color: var(--text-secondary);
font-weight: 600;
font-style: normal;
padding-left: var(--spacing-xl);
position: relative;
z-index: 1;
}
/* Case Studies Grid */
.studies-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: var(--spacing-xl);
}
.case-study-item {
padding: var(--spacing-xl);
}
.case-study-header {
margin-bottom: var(--spacing-md);
}
.industry-tag {
display: inline-block;
padding: 0.25rem 0.75rem;
background: var(--gradient-1);
color: white;
border-radius: 1rem;
font-size: 0.75rem;
font-weight: 600;
margin-bottom: var(--spacing-sm);
}
.case-study-title {
font-size: 1.25rem;
margin-bottom: var(--spacing-sm);
}
.case-study-summary {
margin-bottom: var(--spacing-md);
}
.case-study-metrics {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-md);
margin-bottom: var(--spacing-md);
}
.metric-item {
text-align: center;
padding: var(--spacing-sm);
background: rgba(37, 99, 235, 0.05);
border-radius: var(--radius-md);
}
.metric-item .metric-value {
display: block;
font-size: 1.75rem;
font-weight: 700;
color: var(--primary-red);
}
.metric-item .metric-label {
font-size: 0.75rem;
color: var(--text-secondary);
}
.case-study-tech {
display: flex;
gap: 0.5rem;
margin-bottom: var(--spacing-md);
flex-wrap: wrap;
}
.tech-badge {
padding: 0.25rem 0.75rem;
background: rgba(37, 99, 235, 0.1);
color: var(--primary-red);
border-radius: 1rem;
font-size: 0.75rem;
font-weight: 600;
}
.case-study-link {
color: var(--primary-red);
font-weight: 600;
}
.case-study-link:hover {
color: var(--primary-red);
}
/* Industries */
.industries-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--spacing-lg);
}
.industry-card {
padding: var(--spacing-lg);
text-align: center;
}
.industry-icon {
width: 60px;
height: 60px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--spacing-sm);
}
.industry-card h3 {
font-size: 1.125rem;
margin-bottom: 0.25rem;
}
.industry-card p {
font-size: 0.875rem;
color: var(--text-secondary);
}
/* === ABOUT PAGE === */
.who-we-are-section {
padding: var(--spacing-2xl) 0;
background: var(--bg-primary);
}
/* Story Content with Visual */
.story-content-with-visual {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
align-items: start;
}
.story-content-with-visual.reverse {
direction: rtl;
}
.story-content-with-visual.reverse > * {
direction: ltr;
}
.story-visual {
position: sticky;
top: 100px;
}
.visual-card {
background: white;
border-radius: var(--radius-xl);
padding: var(--spacing-xl);
box-shadow: var(--shadow-xl);
border: 1px solid rgba(0, 0, 0, 0.05);
}
/* Animated Stats */
.animated-stats {
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
}
.animated-stat-item {
text-align: center;
padding: var(--spacing-lg);
background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
border-radius: var(--radius-lg);
border: 1px solid rgba(239, 68, 68, 0.1);
transition: all var(--transition-base);
}
.animated-stat-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.stat-number-large {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-red);
line-height: 1;
margin-bottom: var(--spacing-sm);
}
.stat-label-small {
font-size: 0.875rem;
color: var(--text-secondary);
font-weight: 600;
}
/* Process Timeline */
.process-timeline {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.timeline-item {
display: flex;
align-items: flex-start;
gap: var(--spacing-md);
padding: var(--spacing-md);
background: rgba(239, 68, 68, 0.02);
border-radius: var(--radius-md);
border-left: 3px solid var(--primary-red);
transition: all var(--transition-base);
animation: slideInLeft 0.6s ease-out forwards;
opacity: 0;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.timeline-item:hover {
transform: translateX(5px);
background: rgba(239, 68, 68, 0.05);
}
.timeline-number {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--gradient-1);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.875rem;
}
.timeline-content h4 {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--text-primary);
}
.timeline-content p {
font-size: 0.875rem;
color: var(--text-secondary);
margin: 0;
}
/* Approach Steps */
.approach-steps {
display: flex;
flex-direction: column;
gap: var(--spacing-xl);
margin-top: var(--spacing-xl);
}
.approach-step {
padding: var(--spacing-lg);
background: rgba(239, 68, 68, 0.02);
border-radius: var(--radius-md);
border-left: 3px solid var(--primary-red);
transition: all var(--transition-base);
}
.approach-step:hover {
transform: translateX(5px);
background: rgba(239, 68, 68, 0.05);
box-shadow: var(--shadow-md);
}
.approach-step .subsection-title {
font-size: 1.25rem;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
}
.approach-step p {
color: var(--text-secondary);
line-height: 1.8;
margin: 0;
}
/* Who We Serve Section */
.who-we-serve-section {
padding: var(--spacing-2xl) 0;
background: var(--bg-secondary);
}
.serve-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
margin-top: var(--spacing-2xl);
}
.serve-column-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: var(--spacing-xl);
color: var(--text-primary);
}
.industry-cards-grid,
.platform-cards-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--spacing-md);
}
.industry-card-item,
.platform-card-item {
display: flex;
align-items: flex-start;
gap: var(--spacing-md);
padding: var(--spacing-lg);
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.industry-card-item:hover,
.platform-card-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
border-color: rgba(239, 68, 68, 0.2);
}
.industry-icon,
.platform-icon {
flex-shrink: 0;
width: 48px;
height: 48px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: var(--shadow-md);
}
.industry-card-item h4,
.platform-content h4 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--text-primary);
}
.industry-card-item p,
.platform-content p {
font-size: 0.875rem;
color: var(--text-secondary);
margin: 0;
line-height: 1.6;
}
.platform-content {
flex: 1;
}
/* Commitment List */
.commitment-list {
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
margin-top: var(--spacing-xl);
}
.commitment-item {
display: flex;
gap: var(--spacing-md);
padding: var(--spacing-lg);
background: rgba(239, 68, 68, 0.02);
border-radius: var(--radius-md);
border-left: 3px solid var(--primary-red);
transition: all var(--transition-base);
}
.commitment-item:hover {
transform: translateX(5px);
background: rgba(239, 68, 68, 0.05);
box-shadow: var(--shadow-md);
}
.commitment-icon {
flex-shrink: 0;
width: 48px;
height: 48px;
border-radius: var(--radius-md);
background: var(--gradient-1);
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: var(--shadow-md);
}
.commitment-content h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
}
.commitment-content p {
color: var(--text-secondary);
line-height: 1.8;
margin: 0;
}
/* Commitment Metrics */
.commitment-metrics {
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
}
.commitment-metric {
text-align: center;
padding: var(--spacing-lg);
background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
border-radius: var(--radius-lg);
border: 1px solid rgba(239, 68, 68, 0.1);
transition: all var(--transition-base);
}
.commitment-metric:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.metric-value-large {
font-size: 2rem;
font-weight: 700;
color: var(--primary-red);
line-height: 1;
margin-bottom: var(--spacing-sm);
}
.metric-label-large {
font-size: 0.875rem;
color: var(--text-secondary);
font-weight: 600;
}
.comparison-section {
padding: var(--spacing-2xl) 0;
background: var(--bg-secondary);
}
.comparison-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
margin-top: var(--spacing-2xl);
}
.comparison-column {
padding: var(--spacing-xl);
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
}
.comparison-column.marketick-column {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
border: 2px solid rgba(239, 68, 68, 0.2);
}
.comparison-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: var(--spacing-lg);
color: var(--text-primary);
}
.comparison-list {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.comparison-item {
display: flex;
align-items: center;
gap: var(--spacing-sm);
font-size: 1rem;
color: var(--text-primary);
}
.comparison-item svg {
flex-shrink: 0;
}
.values-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-xl);
margin-top: var(--spacing-2xl);
}
.value-card {
padding: var(--spacing-xl);
transition: all var(--transition-base);
}
.value-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
}
.value-icon {
width: 64px;
height: 64px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--spacing-md);
box-shadow: var(--shadow-md);
}
.value-card h3 {
font-size: 1.5rem;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}
.value-card p {
color: var(--text-secondary);
line-height: 1.8;
}
/* === TRUST BAR SECTION === */
.trust-bar {
padding: var(--spacing-md) 0;
background: var(--bg-secondary);
border-top: 1px solid rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
margin-top: var(--spacing-md);
}
.trust-bar-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--spacing-lg);
}
.trust-bar-content {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
gap: var(--spacing-md);
}
.trust-item {
display: flex;
align-items: center;
gap: var(--spacing-xs);
font-size: 0.9375rem;
color: var(--text-primary);
}
.trust-check {
color: var(--primary-red);
font-weight: 600;
font-size: 1.125rem;
}
.trust-text {
font-weight: 500;
}
/* === PROBLEM SECTION === */
.problem-section {
padding: var(--spacing-2xl) 0;
background: var(--bg-primary);
width: 100%;
}
.problem-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-xl);
margin-top: var(--spacing-xl);
}
.problem-card {
padding: var(--spacing-lg);
}
.problem-icon {
width: 64px;
height: 64px;
border-radius: var(--radius-lg);
background: rgba(239, 68, 68, 0.1);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-red);
margin-bottom: var(--spacing-md);
}
.problem-title {
font-family: 'Poppins', sans-serif !important;
font-size: 1.25rem;
font-weight: 600 !important;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
letter-spacing: -0.02em;
}
.problem-description {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: var(--spacing-md);
}
.problem-stat {
font-size: 1.125rem;
font-weight: 700;
color: var(--primary-red);
margin-top: var(--spacing-sm);
}
.problem-transition {
margin-top: var(--spacing-2xl);
text-align: center;
}
.transition-text {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--font-display);
}
/* === SOLUTION SECTION === */
.solution-section {
padding: var(--spacing-2xl) 0;
background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
width: 100%;
}
/* === XTRACT-STYLE SCROLL ANIMATIONS === */
.animate-on-scroll {
opacity: 0;
transform: translateY(50px) scale(0.95);
transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
will-change: opacity, transform, filter;
filter: blur(5px);
}
.animate-on-scroll.animated {
opacity: 1;
transform: translateY(0) scale(1);
filter: blur(0);
}
/* Stagger animation for cards with 3D effect */
.services-grid .animate-on-scroll.animated {
animation: cardSlideIn 0.6s ease-out forwards;
}
@keyframes cardSlideIn {
from {
opacity: 0;
transform: translateY(50px) rotateX(10deg) scale(0.9);
}
to {
opacity: 1;
transform: translateY(0) rotateX(0deg) scale(1);
}
}
/* Stagger animation for cards with 3D effect */
.services-grid .animate-on-scroll:nth-child(1) {
transition-delay: 0.1s;
animation-delay: 0.1s;
}
.services-grid .animate-on-scroll:nth-child(2) {
transition-delay: 0.2s;
animation-delay: 0.2s;
}
.services-grid .animate-on-scroll:nth-child(3) {
transition-delay: 0.3s;
animation-delay: 0.3s;
}
.services-grid .animate-on-scroll:nth-child(4) {
transition-delay: 0.4s;
animation-delay: 0.4s;
}
.testimonials-grid .animate-on-scroll:nth-child(1) {
transition-delay: 0.1s;
animation-delay: 0.1s;
}
.testimonials-grid .animate-on-scroll:nth-child(2) {
transition-delay: 0.2s;
animation-delay: 0.2s;
}
.testimonials-grid .animate-on-scroll:nth-child(3) {
transition-delay: 0.3s;
animation-delay: 0.3s;
}
/* Smooth reveal animation */
@keyframes smoothReveal {
from {
opacity: 0;
transform: translateY(60px) scale(0.9);
filter: blur(10px);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
filter: blur(0);
}
}
.animate-on-scroll.animated {
animation: smoothReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Fade in from left */
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* Fade in from right */
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* Scale in */
@keyframes scaleIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* === MOVING STRIPS === */
.moving-strip {
overflow: hidden;
padding: var(--spacing-lg) 0;
background: var(--bg-secondary);
position: relative;
margin: var(--spacing-xl) 0;
}
.moving-strip-content {
display: flex;
gap: var(--spacing-xl);
animation: scrollStrip 30s linear infinite;
white-space: nowrap;
}
.moving-strip-content.reverse {
animation: scrollStripReverse 30s linear infinite;
}
.moving-strip-item {
display: inline-flex;
align-items: center;
gap: var(--spacing-md);
padding: var(--spacing-md) var(--spacing-xl);
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
flex-shrink: 0;
font-weight: 600;
color: var(--text-primary);
}
.moving-strip-item img {
width: 32px;
height: 32px;
object-fit: contain;
}
@keyframes scrollStrip {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes scrollStripReverse {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0);
}
}
/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
.hero-container {
grid-template-columns: 1fr;
gap: var(--spacing-xl);
}
.hero-image {
    height: 400px;
}

.why-choose-content {
    grid-template-columns: 1fr;
}

.service-detail-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.service-detail-visual {
    position: static;
}

.service-visual-container {
    min-height: 300px;
}

.stats-grid {
    grid-template-columns: 1fr;
}

.comparison-grid {
    grid-template-columns: 1fr;
}

.values-grid {
    grid-template-columns: 1fr;
}

.story-content-with-visual {
    grid-template-columns: 1fr;
}

.story-visual {
    position: static;
    margin-top: var(--spacing-xl);
}

.serve-content-grid {
    grid-template-columns: 1fr;
}

.industry-cards-grid,
.platform-cards-grid {
    grid-template-columns: 1fr;
}

.story-content {
    grid-template-columns: 1fr;
}

.featured-study-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.case-study-header {
    position: static;
}

.featured-details {
    grid-template-columns: repeat(2, 1fr);
}

.case-study-content {
    gap: var(--spacing-md);
}

.challenge-card,
.solution-card,
.results-card {
    padding: var(--spacing-lg);
}

.contact-content {
    grid-template-columns: 1fr;
}

.problem-grid {
    grid-template-columns: repeat(2, 1fr);
}

.trust-bar-content {
    justify-content: center;
}

.services-grid {
    grid-template-columns: repeat(2, 1fr);
}

.outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
}

.resources-grid {
    grid-template-columns: repeat(2, 1fr);
}

.case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: var(--spacing-lg);
box-shadow: var(--shadow-lg);
transform: translateX(-100%);
transition: var(--transition-base);
}
.nav-menu.active {
    transform: translateX(0);
}

.mobile-menu-toggle {
    display: flex;
}

.hero-stats {
    grid-template-columns: 1fr;
}

.hero-buttons {
    flex-direction: column;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
}

.services-grid {
    grid-template-columns: 1fr;
}

.outcomes-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.outcome-card {
    padding: var(--spacing-md);
}

.outcome-number {
    font-size: 1.5rem;
}

.testimonials-grid {
    grid-template-columns: 1fr;
}

.trust-bar-content {
    flex-direction: column;
    text-align: center;
}

.problem-grid {
    grid-template-columns: 1fr;
}

.footer-top-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.footer-bottom-columns {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.footer-contact-column {
    margin-top: var(--spacing-lg);
}

.form-row {
    grid-template-columns: 1fr;
}

.featured-stats {
    grid-template-columns: 1fr;
}

.featured-details {
    grid-template-columns: 1fr;
}

.studies-grid {
    grid-template-columns: 1fr;
}

.cta-buttons {
    flex-direction: column;
    width: 100%;
}

.cta-buttons .btn {
    width: 100%;
}

.outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
:root {
--spacing-xl: 2rem;
--spacing-2xl: 3rem;
}
.section-badge {
    font-size: 0.75rem;
}

.page-header {
    padding: 120px 0 60px;
}

.case-study-metrics {
    grid-template-columns: 1fr;
}

.outcomes-grid {
    grid-template-columns: 1fr;
}

.resources-grid {
    grid-template-columns: 1fr;
}

.case-studies-grid {
    grid-template-columns: 1fr;
}
}
/* ============================================
   BLOG STYLES - FINAL REFINED VERSION
   - H2 top margin: 56px (reduced from 80px)
   - Section spacing: 64px (reduced from 80px)
   - CTA padding: 40px (reduced from 56px)
   - Button: Larger and more prominent
   Replace the blog section in styles.css with this
   ============================================ */

/* === BLOG LISTING PAGE === */
.blog-section {
    padding: 96px 0;
    background: var(--bg-primary);
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-categories-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.blog-category-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.blog-category-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-red);
}

.blog-listing-section {
    padding: 80px 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.blog-card-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.blog-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* === INDIVIDUAL BLOG POST PAGE === */
.blog-post-page {
    min-height: 100vh;
}

/* Blog Header */
.blog-post-header {
    padding: 140px 0 60px;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-post-header .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-post-breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-breadcrumb a:hover {
    color: var(--accent-red);
}

.blog-post-breadcrumb span {
    color: var(--text-light);
}

.blog-post-meta-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-category-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-red);
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
}

.blog-reading-time {
    color: var(--text-secondary);
}

.blog-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 32px 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.blog-post-excerpt {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Table of Contents */
.blog-toc {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-toc-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-toc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.blog-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-toc-list li {
    margin-bottom: 8px;
}

.blog-toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}

.blog-toc-list a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.blog-toc-list a:hover {
    color: var(--primary-red);
}

/* Blog Content Container */
.blog-content-wrapper {
    padding: 0;
    background: white;
}

.blog-content-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 10px 48px;
}

/* Blog Content Typography - REFINED SPACING */
.blog-content {
    font-size: 19px;
    line-height: 1.75;
    color: var(--text-primary);
}

/* Sections - 64px between major sections */
.blog-content section {
    margin-bottom: 10px;
}

.blog-content section:last-child {
    margin-bottom: 0;
}

/* Headings - H2 reduced to 56px (not excessive) */
.blog-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 0px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    scroll-margin-top: 30px;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* First element after heading - NO top margin */
.blog-content h2 + p,
.blog-content h2 + ul,
.blog-content h2 + ol,
.blog-content h3 + p,
.blog-content h3 + ul,
.blog-content h3 + ol {
    margin-top: 0;
}

/* Paragraphs */
.blog-content p {
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.blog-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin: 0 0 32px 0;
    padding-left: 40px;
    line-height: 1.75;
}

.blog-content li {
    margin-bottom: 14px;
    line-height: 1.75;
}

.blog-content li:last-child {
    margin-bottom: 0;
}

/* Nested lists */
.blog-content li ul,
.blog-content li ol {
    margin-top: 16px;
    margin-bottom: 0;
}

/* Strong text */
.blog-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid var(--primary-red);
    margin: 48px 0;
    padding: 28px 32px;
    background: var(--bg-secondary);
    font-style: italic;
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Images */
.blog-content img {
    width: 100%;
    margin: 56px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* CTA Section - TIGHTER, BIGGER BUTTON */
.blog-cta-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 24px 24px;
    border-radius: 16px;
    margin: 48px 0;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.blog-cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-primary);
}

.blog-cta-section p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

.blog-cta-section ul {
    text-align: left;
    max-width: 600px;
    margin: 24px auto;
}

/* LARGER, MORE PROMINENT BUTTON */
.blog-cta-section .btn,
.blog-cta-section .btn-primary {
    margin-top: 20px;
    margin-bottom: 20px; 
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    display: inline-block;
}

.blog-cta-section .btn:hover,
.blog-cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

/* FAQ Section */
.blog-faq-section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.blog-faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-primary);
}

.faq-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 120px 0 48px;
    }

    .blog-post-header .container,
    .blog-toc-content,
    .blog-content-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .blog-post-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .blog-post-excerpt {
        font-size: 19px;
    }

    .blog-content {
        font-size: 18px;
    }

    .blog-content h2 {
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .blog-content h3 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 16px;
    }

    .blog-content section {
        margin-bottom: 56px;
    }

    .blog-content p {
        margin-bottom: 16px;
    }

    .blog-content ul,
    .blog-content ol {
        margin-bottom: 28px;
        padding-left: 32px;
    }

    .blog-content li {
        margin-bottom: 12px;
    }

    .blog-content-container {
        padding: 48px 24px 72px;
    }

    .blog-cta-section {
        padding: 32px 24px;
        margin: 56px 0;
    }

    .blog-cta-section h2 {
        font-size: 28px;
    }

    .blog-cta-section .btn {
        padding: 16px 32px;
        font-size: 17px;
    }

    .blog-faq-section {
        margin-top: 64px;
        padding-top: 56px;
    }

    .blog-faq-section h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .faq-item {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .faq-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .blog-post-title {
        font-size: 32px;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}
/* FAQ Section */
.blog-faq-section {
    margin-top: 56px;
    padding-top: 56px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.blog-faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 32px 0;
    color: var(--text-primary);
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 100px 0 32px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-excerpt {
        font-size: 18px;
    }

    .blog-content {
        font-size: 17px;
    }

    .blog-content h2 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 16px;
    }

    .blog-content h3 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .blog-content section {
        margin-bottom: 48px;
    }

    .blog-content-container {
        padding: 40px 24px 60px;
    }

    .blog-cta-section {
        padding: 32px 24px;
    }

    .blog-faq-section {
        margin-top: 48px;
        padding-top: 48px;
    }
}

@media (max-width: 640px) {
    .blog-post-title {
        font-size: 28px;
    }

    .blog-content h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}
/* === SIMPLE FADE-IN ANIMATION (Reference Template) === */
.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === PRINT STYLES === */
@media print {
.navbar,
.mobile-menu-toggle,
.cta-section,
.footer {
display: none;
}
.hero {
    min-height: auto;
    padding-top: 0;
}
}
