/* ============================================
   PROFESSIONAL DESIGN SYSTEM
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --primary-lighter: #66A3FF;
    --primary-gradient: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #0047B3 100%);
    --primary-gradient-light: linear-gradient(135deg, #3385FF 0%, #0066FF 100%);
    
    /* Neutral Colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Accent Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--gray-800);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 50%, #FFFFFF 100%);
    background-attachment: fixed;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px -5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: all var(--transition-base);
}

header:hover {
    box-shadow: 0 4px 30px -5px rgba(0, 102, 255, 0.15);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

nav ul li a:hover {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
}

nav ul li a:hover::after {
    width: 100%;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 25%, #0047B3 50%, #003D99 75%, #003399 100%);
    color: white;
    border-radius: var(--radius-xl);
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px -15px rgba(0, 102, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.hero a:not(.cta-button) {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-fast);
}

.hero a:not(.cta-button):hover {
    color: #FFFFFF;
    text-decoration-thickness: 2px;
}

/* Hero CTA Container */
.hero-cta-container {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Hero Primary CTA Button - Enhanced Visibility */
.hero-primary-cta {
    background: #FFFFFF !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    padding: 1.25rem 3rem !important;
    box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.3), 0 6px 15px -3px rgba(0, 0, 0, 0.2) !important;
    border: 3px solid #FFFFFF !important;
    text-shadow: none;
    min-width: 240px;
}

.hero-primary-cta:hover {
    background: #FFFFFF !important;
    color: var(--primary-dark) !important;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -5px rgba(0, 0, 0, 0.35), 0 8px 20px -4px rgba(0, 0, 0, 0.25) !important;
    border-color: #FFFFFF !important;
}

/* Hero Secondary CTA Button */
.hero-secondary-cta {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    font-size: 1.0625rem !important;
    padding: 1.125rem 2.5rem !important;
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.hero-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #FFFFFF;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all var(--transition-base);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.25), 0 6px 15px -4px rgba(0, 0, 0, 0.15);
    border: 3px solid #FFFFFF;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 45px -8px rgba(0, 0, 0, 0.35), 0 8px 20px -5px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
    color: var(--primary-dark);
}

.cta-button:active {
    transform: translateY(0);
}

/* Button Variants */
.cta-button[style*="background: rgba(255,255,255,0.1)"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    box-shadow: none;
}

.cta-button[style*="background: rgba(255,255,255,0.1)"]:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button[style*="background: var(--primary)"] {
    background: var(--primary) !important;
    color: white !important;
    border: 2px solid var(--primary) !important;
}

.cta-button[style*="background: var(--primary)"]:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

.cta-button[style*="background: transparent"] {
    background: transparent !important;
}

.cta-button[style*="background: transparent"]:hover {
    background: var(--gray-50) !important;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    margin-bottom: 5rem;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 3rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.feature:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.15), var(--shadow-lg);
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.feature p {
    color: var(--gray-600);
    line-height: 1.7;
}

.feature a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F7FF 30%, #FFFFFF 60%, #FAFBFC 100%);
    padding: 6rem 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 5rem;
    border: 2px solid var(--gray-200);
    box-shadow: 0 15px 40px -10px rgba(0, 102, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stats h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat {
    padding: 1.5rem;
}

.stat-number {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 102, 255, 0.2);
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 1.125rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F7FF 30%, #FFFFFF 60%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 5rem;
    border: 2px solid var(--gray-200);
    box-shadow: 0 15px 40px -10px rgba(0, 102, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    text-align: center;
    padding: 5rem 2rem 4rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 50%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px -10px rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Services Page Header */
.services-page-header {
    padding: 6rem 2rem 5rem;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F7FF 30%, #FFFFFF 70%, #FAFBFC 100%);
    position: relative;
}

.services-page-header .header-content {
    position: relative;
    z-index: 1;
}

.services-quick-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px -5px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.service-nav-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px -8px rgba(0, 102, 255, 0.25);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
    color: var(--primary);
}

.nav-icon {
    font-size: 2rem;
    line-height: 1;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.about-content, .services-content {
    margin-bottom: 4rem;
}

.about-content h2, .services-content h2 {
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gray-200);
}

.about-content p, .services-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-content ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.about-content ul li {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-content ul li strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service {
    margin-bottom: 5rem;
    padding: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
    z-index: 1;
}

.service:hover::before {
    transform: scaleX(1);
}

.service-content-wrapper {
    padding: 3rem;
}

.service:hover {
    box-shadow: 0 25px 50px -10px rgba(0, 102, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

/* Service Header */
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 0;
    padding: 4rem 3rem 3rem;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F7FF 50%, #FFFFFF 100%);
    border-bottom: 3px solid var(--gray-200);
    position: relative;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: width var(--transition-slow);
}

.service:hover .service-header::after {
    width: 100%;
}

.service-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 82, 204, 0.08) 100%);
    border-radius: var(--radius-xl);
    border: 3px solid rgba(0, 102, 255, 0.25);
    box-shadow: 0 8px 20px -5px rgba(0, 102, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 12px 30px -8px rgba(0, 102, 255, 0.3);
}

.service-title-section {
    flex: 1;
}

.service-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-top: 0.75rem;
}

/* Service Visual */
.service-visual {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
}

.service-image-container,
.service-video-container {
    width: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.service-image,
.video-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: all var(--transition-slow);
    filter: brightness(1) saturate(1);
}

.service:hover .service-image,
.service:hover .video-thumbnail {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.image-overlay,
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: transform var(--transition-base);
}

.service:hover .image-overlay,
.service:hover .video-overlay {
    transform: translateY(0);
}

.image-overlay p,
.video-overlay p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

/* Video Placeholder */
.video-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 255, 0.1);
    z-index: 1;
    transition: background var(--transition-base);
}

.video-placeholder:hover::before {
    background: rgba(0, 102, 255, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service h2 {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 2.25rem;
    line-height: 1.2;
}

.service h3 {
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.service > p,
.service-content-wrapper > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.service-content-wrapper {
    padding: 0 3rem 3rem;
}

.service-content-wrapper .cta-button {
    margin-top: 2rem;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.service-content-wrapper .cta-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 102, 255, 0.3);
}

.service ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.service ul li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.service ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.service ul li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.service p strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ============================================
   BLOG
   ============================================ */

.blog-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post {
    padding: 3rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.1);
}

.blog-post:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.01);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.blog-post h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.blog-post h2:hover {
    color: var(--primary);
}

.blog-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-post p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-base);
}

.read-more:hover {
    gap: 0.75rem;
}

.read-more::after {
    content: '→';
    transition: transform var(--transition-base);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* ============================================
   BLOG POST FULL
   ============================================ */

.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap var(--transition-base);
}

.back-link:hover {
    gap: 0.75rem;
}

.back-link::before {
    content: '←';
}

.blog-post-full h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.blog-post-full h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.blog-post-full h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.blog-post-full p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.blog-post-full ul,
.blog-post-full ol {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.blog-post-full ul li,
.blog-post-full ol li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.blog-post-full ul li strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    box-shadow: 0 10px 30px -10px rgba(0, 102, 255, 0.15);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.contact-form:hover {
    box-shadow: 0 15px 40px -10px rgba(0, 102, 255, 0.25);
    border-color: var(--primary-light);
}

.contact-form:hover::before {
    transform: scaleX(1);
}

.contact-form h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-form > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: #FFFFFF;
    color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    padding: 0;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.contact-info h3 {
    color: var(--gray-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info ol li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.contact-info > div {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    margin-top: 2rem;
}

/* Google Form Container */
.google-form-container {
    width: 100%;
    min-height: 600px;
    margin-top: 1rem;
}

.google-form-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: var(--radius-md);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 400;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    main {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 1.5rem;
        margin: 2rem auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-full h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 3rem 1.5rem 2rem;
    }

    .testimonials-grid,
    .case-studies-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-content-wrapper {
        padding: 0 1.5rem 2rem;
    }

    .service-image,
    .video-thumbnail {
        height: 300px;
    }

    .video-placeholder {
        height: 300px;
    }

    .services-quick-nav {
        gap: 1rem;
    }

    .service-nav-item {
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .service {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    margin-bottom: 5rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F7FF 30%, #FFFFFF 60%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    box-shadow: 0 15px 40px -10px rgba(0, 102, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial:hover {
    box-shadow: 0 12px 30px -10px rgba(0, 102, 255, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */

.how-it-works {
    margin-bottom: 5rem;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 4px 12px -5px rgba(0, 0, 0, 0.1);
}

.step:hover {
    box-shadow: 0 15px 35px -10px rgba(0, 102, 255, 0.2);
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px -5px rgba(0, 102, 255, 0.4);
    transition: all var(--transition-base);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.3;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px -8px rgba(0, 102, 255, 0.5);
}

.step h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.step p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   CASE STUDIES
   ============================================ */

.case-studies-preview {
    margin-bottom: 5rem;
}

.case-studies-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.1);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.case-study-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.2);
    transform: translateY(-6px) scale(1.01);
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.case-study-card:hover::before {
    transform: scaleY(1);
}

.case-study-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.case-study-card > p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.case-study-results {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.result-item {
    flex: 1;
}

.result-item strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.result-item {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTIONS
   ============================================ */

.faq-preview {
    margin-bottom: 5rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F7FF 30%, #FFFFFF 60%, #FAFBFC 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    box-shadow: 0 15px 40px -10px rgba(0, 102, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.faq-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px -5px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    box-shadow: 0 12px 30px -10px rgba(0, 102, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-item a {
    color: var(--primary);
    font-weight: 500;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list .faq-item {
    margin-bottom: 1.5rem;
}

/* ============================================
   TEAM STATS
   ============================================ */

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.team-stat-item {
    text-align: center;
}

.team-stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.team-stat-item span {
    color: var(--gray-600);
    font-size: 1rem;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-300);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    position: absolute;
    left: -2rem;
    top: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    background: #FFFFFF;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.timeline-content h3 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
