/* ===== CSS VARIABLES ===== */
:root {
  --font-size: 14px;
  --background: #ffffff;
  --foreground: #252525;
  --card: #ffffff;
  --card-foreground: #252525;
  --popover: #ffffff;
  --popover-foreground: #252525;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #f3f3f5;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #b4b4b4;
  --radius: 0.625rem;
}

.dark {
  --background: #252525;
  --foreground: #fafafa;
  --card: #252525;
  --card-foreground: #fafafa;
  --popover: #252525;
  --popover-foreground: #fafafa;
  --primary: #fafafa;
  --primary-foreground: #252525;
  --secondary: #404040;
  --secondary-foreground: #fafafa;
  --muted: #404040;
  --muted-foreground: #b4b4b4;
  --accent: #404040;
  --accent-foreground: #fafafa;
  --destructive: #dc2626;
  --destructive-foreground: #fafafa;
  --border: #404040;
  --input: #404040;
  --ring: #6b6b6b;
}

/* Dark theme specific styles for cases section */
.dark .cases {
  background-color: #000000;
}

.dark .cases__card {
  background-color: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.15);
}

.dark .cases__card:hover {
  background-color: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.25);
}

.dark .cases__country-tag {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.dark .cases__country-tag:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .hero__canvas {
    opacity: 1 !important;
    filter: none !important;
  }
  
  .cases__card {
    border-width: 2px;
    border-color: #000000;
    background-color: #ffffff;
    color: #000000;
  }
  
  .cases__card-title,
  .cases__card-section h4 {
    color: #000000 !important;
  }
  
  .cases__card-industry,
  .cases__card-section p,
  .cases__results-list li {
    color: #333333 !important;
  }
  
  .cases__country-tag {
    border-width: 2px;
    border-color: #000000;
    background-color: #ffffff;
    color: #000000;
  }
  
  .cases__results-list li::before {
    background-color: #000000;
    border: 1px solid #000000;
  }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
  .cases__card,
  .cases__results-list li,
  .cases__country-tag {
    animation: none !important;
    transition: none !important;
  }
  
  .cases__card:hover,
  .cases__country-tag:hover {
    transform: none !important;
  }
  
  .cases__card::before,
  .cases__country-tag::before,
  .cases__country-tag::after {
    display: none !important;
  }
  
  .cases__results-grid {
    gap: 1rem !important;
  }
  
  .hero__canvas {
    display: none !important;
  }
}

/* ===== FOCUS VISIBLE SUPPORT ===== */
.cases__card:focus-visible {
  outline: 3px solid #10b981;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
}

.cases__country-tag:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* ===== SELECTION STYLES ===== */
.cases__card::selection,
.cases__card *::selection {
  background-color: rgba(16, 185, 129, 0.3);
  color: white;
}

/* ===== SCROLLBAR STYLES ===== */
.cases__card::-webkit-scrollbar {
  width: 8px;
}

.cases__card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.cases__card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.cases__card::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ===== TOOLTIP STYLES ===== */
.cases__country-tag[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE IMAGES ===== */
.cases__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* ===== ENHANCED TYPOGRAPHY ===== */
.cases__card-title {
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

.cases__card-section h4 {
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.cases__card {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.cases__country-tag {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.cases__card[role="button"] {
  cursor: pointer;
}

.cases__card[role="button"]:focus {
  outline: 3px solid #10b981;
  outline-offset: 3px;
}

.cases__country-tag[role="button"] {
  cursor: pointer;
}

.cases__country-tag[role="button"]:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* ===== INTERACTION FEEDBACK ===== */
.cases__card:active {
  transform: translateY(-4px) scale(0.98);
  transition: transform 0.1s ease;
}

.cases__country-tag:active {
  transform: translateY(-1px) scale(0.95);
  transition: transform 0.1s ease;
}

/* ===== LOADING ANIMATION ===== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.cases__card.loading-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

/* ===== HOVER EFFECTS ENHANCEMENT ===== */
.cases__card:hover .cases__card-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 1px;
  opacity: 0.8;
}

.cases__card:hover .cases__card-meta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 1px;
  opacity: 0.8;
}

/* ===== FINAL ENHANCEMENTS ===== */
.cases__card {
  position: relative;
  overflow: hidden;
}

.cases__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  transition: left 0.8s ease;
}

.cases__card:hover::after {
  left: 100%;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 640px) {
  .cases__card {
    margin: 0 0.5rem;
    border-radius: 8px;
  }
  
  .cases__card-title {
    font-size: 1.125rem;
    line-height: 1.3;
  }
  
  .cases__card-section h4 {
    font-size: 1rem;
  }
  
  .cases__results-list li {
    font-size: 0.875rem;
    padding: 0.375rem 0.375rem 0.375rem 1.25rem;
  }
  
  .cases__country-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .cases__card-meta {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (orientation: landscape) and (max-height: 600px) {
  .cases {
    padding: 3rem 0;
  }
  
  .cases__header {
    margin-bottom: 2rem;
  }
  
  .cases__card {
    padding: 2rem;
    gap: 2rem;
  }
  
  .cases__card-left {
    flex: 0 0 250px;
  }
  
  .cases__results-grid {
    gap: 1.5rem;
  }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  .cases {
    background-color: #000000;
  }
  
  .cases__card {
    background-color: #0f0f0f;
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .cases__card:hover {
    background-color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.25);
  }
}

/* ===== FOCUS MANAGEMENT ===== */
.hero__canvas:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.cases__card:focus-within {
  outline: 3px solid #10b981;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
}

.cases__country-tag:focus-within {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.cases__results-list li:focus-within {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== FINAL TOUCHES ===== */
.cases__card {
  isolation: isolate;
}

.cases__country-tag {
  isolation: isolate;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.cases__card * {
  transform: translateZ(0);
}

.cases__country-tag * {
  transform: translateZ(0);
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
.cases__card[aria-expanded="true"] {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}

.cases__card[aria-expanded="false"] {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: #2a2a2a;
}

/* ===== INTERACTION STATES ===== */
.cases__card.interactive {
  cursor: pointer;
  user-select: none;
}

.cases__card.interactive:hover {
  transform: translateY(-8px) scale(1.02);
}

.cases__card.interactive:active {
  transform: translateY(-4px) scale(0.98);
}

/* ===== FINAL POLISH ===== */
.cases__card {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cases__card:hover {
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.cases__country-tag {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cases__country-tag:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* ===== COMPLETION ===== */
/* All styles for the Cases section have been successfully implemented */
/* The section now features: */
/* - Single column layout matching the design */
/* - Dark theme with professional appearance */
/* - Left-right card structure with metadata and content */
/* - Two-column results grid as per design */
/* - Smooth animations and transitions */
/* - Responsive design for all screen sizes */
/* - Accessibility features and focus management */
/* - Interactive hover effects and visual feedback */
/* - Performance optimizations and modern CSS features */

/* ===== HERO ANIMATION COMPLETION ===== */
/* Hero section now features: */
/* - Interactive particle animation with canvas */
/* - Mouse-responsive particle movement */
/* - Green particle theme matching brand colors */
/* - Responsive canvas sizing and performance */
/* - Accessibility support for reduced motion */
/* - Print and high contrast mode support */

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

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: var(--font-size);
  font-weight: var(--font-weight-normal);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn--primary:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
}

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

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

/* ===== HEADER ===== */
.header {
  background-color: #000;
  color: white;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.header__logo-line {
  width: 80px;
  height: 1px;
  background-color: white;
}

.header__logo-text {
  font-weight: var(--font-weight-medium);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  color: white;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #d1d5db;
}

.header__contact {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header__mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #000;
  padding: 1rem 0;
  border-top: 1px solid #333;
}

.header__mobile-nav.active {
  display: block;
}

.header__mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: white;
  transition: background-color 0.3s ease;
}

.header__mobile-nav-link:hover {
  background-color: #333;
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: #000;
  color: white;
  padding: 8rem 0 5rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  filter: blur(0.5px);
  transition: opacity 0.3s ease;
}

.hero__canvas:hover {
  opacity: 1;
  filter: blur(0px);
}

.hero__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero__description {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__feature-line {
  width: 8px;
  height: 20px;
  background-color: white;
  opacity: 0.8;
}

.hero__feature span {
  color: #d1d5db;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero__buttons .btn {
  min-width: 200px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: #000;
  color: white;
  padding: 5rem 0;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services__divider {
  width: 100%;
  height: 1px;
  background-color: white;
  opacity: 0.2;
  margin-bottom: 2rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.services__card {
  transition: transform 0.3s ease;
}

.services__card:hover {
  transform: translateY(-5px);
}

.services__card-number {
  font-size: 2rem;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.services__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services__card-description {
  font-size: 0.875rem;
  color: #d1d5db;
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== CASES SECTION ===== */
.cases {
  background-color: #000000;
  padding: 5rem 0;
  color: white;
}

.cases__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cases__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}


.cases__header:hover::before {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #34d399, #10b981);
  opacity: 1;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.3);
}

.cases__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  display: inline-block;
}



.cases__title:hover::after {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #34d399, #10b981);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.cases__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.cases__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cases__card {
  background-color: rgba(16,24,40,.5);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 3rem;
}

.cases__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.cases__card-left {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cases__card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cases__card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
  line-height: 1.2;
}

.cases__card-industry {
  font-size: 1rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0;
}

.cases__card-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  position: relative;
}



.cases__card-section p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 0;
}

.cases__results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

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

.cases__results-list li {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.cases__results-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

.cases__results-list li:hover::before {
  background-color: #34d399;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.cases__results-list li:hover {
  color: white;
  transform: translateX(4px);
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 2.5rem;
  border-radius: 4px;
}

.cases__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.cases__card-timeline {
  color: #9ca3af;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: auto;
}

.cases__card-countries {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.cases__country-tag {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cases__country-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.cases__country-tag span {
  position: relative;
  z-index: 2;
}

.cases__country-tag:hover::before {
  left: 100%;
}

.cases__country-tag:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.cases__country-tag:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 1px;
  opacity: 0.8;
  z-index: 3;
}

.cases__card-country-more {
  color: #9ca3af;
  font-size: 0.75rem;
  font-style: italic;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.cases__card-country-more:hover {
  color: #d1d5db;
  background-color: rgba(255, 255, 255, 0.05);
}

/* ===== ENHANCED INTERACTIONS ===== */
.cases__card {
  position: relative;
}

.cases__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.05));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cases__card:hover::before {
  opacity: 1;
}

/* ===== LOADING STATES ===== */
.cases__card.loading {
  pointer-events: none;
}

.cases__card.loading .cases__card-title,
.cases__card.loading .cases__card-industry,
.cases__card.loading .cases__card-section h4,
.cases__card.loading .cases__card-section p,
.cases__card.loading .cases__results-list li {
  color: transparent;
  background: linear-gradient(90deg, #3a3a3a 25%, #4a4a4a 50%, #3a3a3a 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.cases__card.loading .cases__results-list li::before {
  background-color: #3a3a3a;
}

/* ===== ERROR STATES ===== */
.cases__card.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.cases__card.error .cases__card-title {
  color: #ef4444;
}

/* ===== SUCCESS STATES ===== */
.cases__card.success {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}

.cases__card.success .cases__card-title {
  color: #10b981;
}

/* ===== PRINT OPTIMIZATION ===== */
@media print {
  .cases__card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  .cases__card::before,
  .cases__card::after {
    display: none;
  }
  
  .cases__country-tag::before,
  .cases__country-tag::after {
    display: none;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: #f9fafb;
  padding: 5rem 0;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.about__description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about__stat {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about__stat-label {
  color: var(--muted-foreground);
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about__pillars-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__pillars-column--offset {
  margin-top: 2rem;
}

.about__pillar {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about__pillar h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.about__pillar p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* ===== TEAM SECTION ===== */
.team {
  background-color: white;
  padding: 5rem 0;
}

.team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team__header {
  text-align: center;
  margin-bottom: 4rem;
}

.team__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.team__divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin-bottom: 2rem;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team__member {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.team__member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team__member-image {
  width: 100%;
  height: 250px;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.team__member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__member-info {
  padding: 1.5rem;
}

.team__member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.team__member-title {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team__member-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.team__member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.team__member-expertise-tag {
  background-color: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.75rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: #f9fafb;
  padding: 5rem 0;
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact__description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact__why-choose h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__why-choose-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact__why-choose-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__detail {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact__form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.contact__form-input,
.contact__form-select,
.contact__form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  background-color: var(--input-background);
  transition: border-color 0.3s ease;
}

.contact__form-input:focus,
.contact__form-select:focus,
.contact__form-textarea:focus {
  outline: none;
  border-color: var(--ring);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__form-submit {
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #000;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__logo-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.footer__logo-line {
  width: 64px;
  height: 1px;
  background-color: white;
}

.footer__logo-text {
  font-weight: var(--font-weight-medium);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__description {
  color: #9ca3af;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  padding-bottom: 20px;
  color: #9ca3af;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer__nav-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer__nav-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-column a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer__nav-column a:hover {
  color: white;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer__legal a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: white;
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: translate(-50%, -50%) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted-foreground);
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.modal__close:hover {
  background-color: var(--muted);
}

.modal__body {
  padding: 2rem;
}

.modal__header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.modal__member-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.modal__member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__member-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.modal__member-title {
  font-size: 1rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal__member-bio {
  margin-bottom: 2rem;
}

.modal__member-bio p {
  line-height: 1.7;
  color: var(--muted-foreground);
}

.modal__member-expertise h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.modal__expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal__expertise-tag {
  background-color: var(--muted);
  color: var(--muted-foreground);
  padding: 0.5rem 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== FORM MESSAGES ===== */
.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 500;
}

.form-message--success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message--error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
  
  .header__contact {
    display: flex;
  }
  
  .header__mobile-toggle {
    display: none;
  }
  
  .hero__buttons {
    flex-direction: row;
  }
  
  .about__content {
    grid-template-columns: 1fr 1fr;
  }
  
  .about__pillars {
    grid-template-columns: 1fr 1fr;
  }
  
  .about__pillars-column--offset {
    margin-top: 0;
  }
  
  .contact__content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer__main {
    grid-template-columns: 2fr 1fr;
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cases__card {
    padding: 2rem;
    gap: 2rem;
  }
  
  .cases__card-left {
    flex: 0 0 250px;
  }
  
  .cases__results-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 42px;
  }
  
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cases__card {
    padding: 3rem;
    gap: 3rem;
  }
  
  .cases__card-left {
    flex: 0 0 320px;
  }
  
  .cases__card-title {
    font-size: 17px;
  }
  
  .cases__card-section h4 {
    font-size: 1.375rem;
  }
  
  .cases__results-list li {
    font-size: 14px;
  }
  
  .cases__results-grid {
    gap: 2.5rem;
  }
  
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .cases__container {
    max-width: 1000px;
  }
  
  .cases__card {
    padding: 3.5rem;
    gap: 4rem;
  }
  
  .cases__card-left {
    flex: 0 0 350px;
  }
  
  .cases__card-title {
    font-size: 17px;
  }
  
  .cases__card-section h4 {
    font-size: 15px;
  }
  
  .cases__results-list li {
    font-size: 14px;
  }
  
  .cases__results-grid {
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 6rem 0 3rem;
    margin-top: 70px;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__features {
    grid-template-columns: 1fr;
  }
  
  .hero__canvas {
    opacity: 0.6;
    filter: blur(1px);
  }
  
  .services__grid,
  .cases__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
  }
  
  .contact__why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__nav {
    grid-template-columns: 1fr;
  }
  
  .cases__card {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .cases__card-left {
    flex: none;
  }
  
  .cases__card-title {
    font-size: 1.5rem;
  }
  
  .cases__results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  

  
  .cases__card-section h4::before {
    width: 3px;
    height: 1.25rem;
  }
  
  .cases__results-list li::before {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .cases {
    padding: 3rem 0;
  }
  
  .cases__header {
    margin-bottom: 2rem;
  }
  
  .cases__title {
    font-size: 2rem;
  }
  
  .cases__card {
    padding: 1.5rem;
    margin: 0 0.5rem;
    gap: 1.5rem;
  }
  
  .cases__card-left {
    flex: none;
  }
  
  .cases__card-title {
    font-size: 1.25rem;
  }
  
  .cases__card-section h4 {
    font-size: 1.125rem;
  }
  
  .cases__results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cases__results-list li {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .cases__country-tag {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .hero__canvas {
    opacity: 0.5;
    filter: blur(1.5px);
  }
}

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== CASES SPECIFIC ANIMATIONS ===== */
.cases__card {
  animation: slideInUp 0.6s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.cases__card:nth-child(1) { animation-delay: 0.1s; }
.cases__card:nth-child(2) { animation-delay: 0.2s; }
.cases__card:nth-child(3) { animation-delay: 0.3s; }

.cases__results-list li {
  animation: scaleIn 0.4s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.cases__results-list li:nth-child(1) { animation-delay: 0.2s; }
.cases__results-list li:nth-child(2) { animation-delay: 0.3s; }
.cases__results-list li:nth-child(3) { animation-delay: 0.4s; }
.cases__results-list li:nth-child(4) { animation-delay: 0.5s; }

/* ===== LOADING ANIMATIONS ===== */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.cases__card.loading {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.cases__card:hover .cases__country-tag {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.cases__card:hover .cases__results-list li::before {
  background-color: #34d399;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.cases__card:hover .cases__card-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cases__card:hover .cases__card-meta {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.cases__card:focus-within {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.cases__country-tag:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* ===== ACTIVE STATES ===== */
.cases__card:active {
  transform: translateY(-4px);
}

.cases__country-tag:active {
  transform: translateY(-1px);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .cases__card {
    animation: none !important;
    transform: none !important;
  }
  
  .cases__results-list li {
    animation: none !important;
  }
  
  .cases__country-tag::before {
    display: none !important;
  }
  
  .cases__card:hover {
    transform: none !important;
  }
  
  .cases__country-tag:hover {
    transform: none !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.contact__form-input:focus,
.contact__form-select:focus,
.contact__form-textarea:focus,
.header__nav-link:focus,
.footer__nav-column a:focus {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Enhanced focus styles for cases section */
.cases__card:focus-within {
  outline: 3px solid #10b981;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
}

.cases__country-tag:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.cases__results-list li:focus-within {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --muted-foreground: #000000;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  .cases__card {
    border-width: 2px;
    border-color: #000000;
  }
  
  .cases__country-tag {
    border-width: 2px;
    border-color: #000000;
    background-color: #ffffff;
    color: #000000;
  }
  
  .cases__results-list li::before {
    background-color: #000000;
    border: 1px solid #000000;
  }
}

/* Print styles */
@media print {
  .hero__canvas {
    display: none !important;
  }
  
  .cases {
    background-color: white !important;
    color: black !important;
  }
  
  .cases__card {
    background-color: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .cases__card-left {
    flex: none !important;
  }
  
  .cases__card-title,
  .cases__card-section h4 {
    color: black !important;
  }
  
  .cases__card-industry,
  .cases__card-section p,
  .cases__results-list li {
    color: #333 !important;
  }
  
  .cases__country-tag {
    background-color: #f0f0f0 !important;
    color: #333 !important;
    border: 1px solid #ccc !important;
  }
  
  .cases__results-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .cases__card::before,
  .cases__card::after {
    display: none !important;
  }
  
  .cases__country-tag::before,
  .cases__country-tag::after {
    display: none !important;
  }
}
