/*!
Theme Name: Garaxetheme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: garaxetheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Garaxetheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*--------------------------------------------------------------
# Design System Variables
--------------------------------------------------------------*/
:root {
  /* Brand Colors */
  --amber-primary: #D97706;
  --amber-hover: #B45309;
  --amber-light: #F59E0B;
  --amber-bg: #FEF3C7;
  --warm-cream: #FEF3C7;
  
  --steel-blue: #0369a1;
  --steel-blue-light: #0284C7;
  --steel-blue-hover: #075985;
  
  --emerald: #10b981;
  --emerald-light: #34d399;
  
  --charcoal: #111827;
  --dark-slate: #374151;
  --medium-slate: #4B5563;
  --light-gray: #6b7280;
  --subtle-gray: #9ca3af;
  --border-gray: #e5e7eb;
  
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-surface: #f1f5f9;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(17, 24, 39, 0.06);
  --shadow-standard: 0 4px 16px rgba(17, 24, 39, 0.08);
  --shadow-elevated: 0 8px 32px rgba(17, 24, 39, 0.12);
  --shadow-floating: 0 16px 48px rgba(17, 24, 39, 0.16);
  --shadow-amber: 0 8px 32px rgba(217, 119, 6, 0.15);
  --shadow-amber-hover: 0 16px 48px rgba(217, 119, 6, 0.25);
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 96px;
}

/*--------------------------------------------------------------
# Normalize & Base
--------------------------------------------------------------*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0;
}

h1 { font-size: 56px; margin-bottom: var(--spacing-md); }
h2 { font-size: 48px; margin-bottom: var(--spacing-md); }
h3 { font-size: 24px; margin-bottom: var(--spacing-sm); }
h4 { font-size: 20px; margin-bottom: var(--spacing-xs); }

p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

/* Links */
a {
  color: var(--steel-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:visited { color: var(--steel-blue-hover); }
a:hover, a:focus, a:active { color: var(--amber-primary); }

/* Images */
img {
  height: auto;
  max-width: 100%;
  border-style: none;
}

/*--------------------------------------------------------------
# WordPress Theme Overrides
--------------------------------------------------------------*/
/* Hide default theme elements for custom design */
.site-header,
.site-footer,
.entry-header,
.entry-meta,
.post-navigation,
.comments-area,
.entry-title {
  display: none;
}

/* Full width content */
.site,
.site-content,
.content-area,
.site-main,
.entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  float: none;
}

/* Remove any default margins/padding */
.entry-content > * {
  margin-left: 0;
  margin-right: 0;
}

/* Make sure custom HTML blocks are full width */
.wp-block-html {
  width: 100%;
  margin: 0;
}

/* Adjust content for fixed header */
.site-content {
  padding-top: 0;
}

/*--------------------------------------------------------------
# Core Components
--------------------------------------------------------------*/

/* Container System */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Button System */
.btn-primary {
  background: linear-gradient(135deg, var(--amber-primary), var(--amber-light));
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-amber);
  font-family: var(--font-family);
  font-size: 16px;
  cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber-hover);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--steel-blue), var(--steel-blue-light));
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
  font-family: var(--font-family);
  font-size: 16px;
  cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.4);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  padding: 14px 30px;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all 0.3s ease;
  font-family: var(--font-family);
  font-size: 16px;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--amber-primary);
  color: var(--amber-primary);
  background: rgba(245, 158, 11, 0.05);
}

/* Badge Component */
.badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.12);
  color: var(--amber-primary);
  padding: var(--spacing-xs) 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.badge-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Text Utilities */
.gradient-text-amber {
  background: linear-gradient(45deg, var(--amber-light), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-steel {
  background: linear-gradient(45deg, var(--steel-blue), var(--steel-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-amber { color: var(--amber-primary); }
.text-steel { color: var(--steel-blue); }
.text-emerald { color: var(--emerald); }
.text-gray { color: var(--light-gray); }
.text-dark { color: var(--charcoal); }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 36px; }
  h3 { font-size: 20px; }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 14px var(--spacing-md);
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 14px var(--spacing-md);
    font-size: 14px;
  }
}

/* Add these enhanced sections to your existing style.css */

/*--------------------------------------------------------------
# Enhanced Design System (Add after line 76)
--------------------------------------------------------------*/

/* Advanced Gradients */
:root {
  /* Add these to your existing :root */
  --gradient-amber: linear-gradient(135deg, #D97706, #F59E0B);
  --gradient-steel: linear-gradient(135deg, #0369a1, #0284C7);
  --gradient-hero: linear-gradient(135deg, #D97706 0%, #0369a1 100%);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(217, 119, 6, 0.20);
  
  /* Advanced Shadows */
  --shadow-glassmorphic: 0 12px 40px rgba(217, 119, 6, 0.15), 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-floating-strong: 0 16px 48px rgba(217, 119, 6, 0.25);
}

/* Glassmorphic Navigation */
.garaxe-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glassmorphic);
  padding: 16px 48px;
  transition: all 0.3s ease;
}

.garaxe-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-floating-strong);
}

/* Hero Section Enhancements */
.hero-gradient {
  background: var(--gradient-hero);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: 
    radial-gradient(circle 600px at 30% 30%, rgba(254, 243, 199, 0.2) 0%, transparent 50%),
    radial-gradient(circle 400px at 70% 70%, rgba(17, 24, 39, 0.15) 0%, transparent 50%);
  animation: depth-layer 12s ease-in-out infinite;
}

/* Advanced Card System */
.service-card-advanced {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card-advanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-amber);
}

.service-card-advanced:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-floating);
  border-color: var(--amber-primary);
}

/* Animations */
@keyframes depth-layer {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.05); }
}

@keyframes geometric-layer {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 0.8; transform: translateX(20px); }
}

.animate-depth-layer {
  animation: depth-layer 12s ease-in-out infinite;
}

.animate-geometric-layer {
  animation: geometric-layer 10s ease-in-out infinite reverse;
}

/*--------------------------------------------------------------
# Advanced Layout Systems
--------------------------------------------------------------*/

/* Hero Container Layout */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 64px;
  align-items: center;
  min-height: 80vh;
  padding: var(--spacing-xxxl) 0;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}

/* Advanced Typography System */
.display-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-headline {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}

.section-headline.on-dark { color: var(--white); }
.section-headline.on-light { color: var(--charcoal); }

.body-large {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Navigation System */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--amber-primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--amber-primary);
  background: var(--warm-cream);
  transform: translateY(-1px);
}

/* Dropdown Navigation */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-glassmorphic);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  padding: 16px;
}

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

.nav-dropdown-link {
  display: block;
  color: var(--charcoal);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 14px;
}

.nav-dropdown-link:hover {
  color: var(--amber-primary);
  background: var(--warm-cream);
}

/* Card Systems */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  border-top: 4px solid var(--amber-primary);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-floating);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-amber);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}

.service-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.service-card-description {
  font-size: 16px;
  color: var(--medium-slate);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.service-card-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--medium-slate);
}

.service-card-features li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 600;
  font-size: 16px;
}

/* Tool Preview Component */
.tool-preview {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-elevated);
}

.tool-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-preview-dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.tool-preview-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
}

/* Hero Buttons Layout */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Backgrounds */
.section-light {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-surface) 100%);
  padding: var(--spacing-xxxl) 0;
}

.section-dark {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-slate) 100%);
  padding: var(--spacing-xxxl) 0;
  color: var(--white);
}

.section-amber {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--amber-bg) 100%);
  padding: var(--spacing-xxxl) 0;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
  .garaxe-nav {
    padding: 16px 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--charcoal);
    font-size: 24px;
    cursor: pointer;
  }
  
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 24px;
    gap: 16px;
  }
  
  .display-headline {
    font-size: 40px;
  }
  
  .section-headline {
    font-size: 36px;
  }
  
  .hero-container {
    padding: var(--spacing-xxl) 0;
  }
}

@media (max-width: 480px) {
  .display-headline {
    font-size: 32px;
  }
  
  .section-headline {
    font-size: 28px;
  }
}

/* Utility Classes */
.text-opacity-80 { opacity: 0.8; }
.text-opacity-90 { opacity: 0.9; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-64 { margin-top: 64px; }

/* WordPress Specific Overrides */
body.wordpress {
  padding-top: 80px;
}

.wp-block-html {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.garaxe-page {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/*--------------------------------------------------------------
# Page-Specific Components
--------------------------------------------------------------*/

/* Services Page Enhancements */
.service-pricing-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  border: 2px solid var(--border-gray);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.service-pricing-card.featured {
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-amber);
}

.service-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-floating);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gradient-amber);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--amber-primary);
  margin: 16px 0 8px 0;
}

.service-commitment {
  font-size: 14px;
  color: var(--medium-slate);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gray);
}

.feature-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-list .feature-title {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.feature-list .feature-desc {
  font-size: 14px;
  color: var(--medium-slate);
  line-height: 1.4;
}

/* Case Studies Components */
.case-study-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.case-study-card.featured {
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-amber);
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
}

.case-category {
  display: inline-block;
  background: var(--gradient-amber);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.case-industry {
  color: var(--medium-slate);
  font-size: 14px;
  margin-bottom: 16px;
}

.case-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-description {
  color: var(--medium-slate);
  line-height: 1.5;
  margin-bottom: 24px;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.case-metric {
  text-align: center;
}

.case-metric-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--emerald);
  display: block;
}

.case-metric-label {
  font-size: 12px;
  color: var(--medium-slate);
  font-weight: 500;
}

/* About Page Components */
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--amber-primary);
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--medium-slate);
}

.mission-card {
  background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(217, 119, 6, 0.2) 100%);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(3, 105, 161, 0.05) 100%);
}

.mission-card > * {
  position: relative;
  z-index: 1;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-amber);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.team-role {
  color: var(--amber-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--medium-slate);
  line-height: 1.5;
}

/* Blog Components */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--gradient-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
}

.blog-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  background: rgba(217, 119, 6, 0.1);
  color: var(--amber-primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--medium-slate);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--subtle-gray);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .service-pricing-card {
    padding: 32px 24px;
  }
  
  .case-results {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-card {
    padding: 32px 24px;
  }
}