/* ==========================================================================
   Brill'Art Communication BPO - CSS Styles
   Pure PHP Site - No React/Next.js
   ========================================================================== */

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Primary: Deep Navy Blue - Premium Corporate */
  --primary: #0a1628;
  --primary-dark: #060d17;
  --primary-foreground: #ffffff;
  
  /* Secondary: Orange from logo - kept for brand recognition */
  --secondary: #F58220;
  --secondary-dark: #D96D10;
  --secondary-foreground: #ffffff;
  
  /* Accent: Electric Blue - subtle accent */
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-foreground: #ffffff;
  
  /* Navy variations */
  --navy-deep: #0a1628;
  --navy-dark: #0f2341;
  --navy-medium: #1a2d4a;
  --navy-light: #234567;
  
  /* Neutrals - Premium grays */
  --background: #ffffff;
  --background-alt: #f8fafc;
  --foreground: #0a1628;
  --card: #ffffff;
  --card-foreground: #0a1628;
  --muted: #f1f5f9;
  --muted-foreground: #475569;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Destructive */
  --destructive: #dc2626;
  --destructive-light: rgba(220, 38, 38, 0.1);
  
  /* Success */
  --success: #059669;
  --success-light: rgba(5, 150, 105, 0.1);
  
  /* Spacing - Sharp corners for premium feel */
  --radius: 0.25rem;
  --radius-sm: 0.125rem;
  --radius-lg: 0.375rem;
  --radius-xl: 0.5rem;
  
  /* Fonts - Editorial style */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(2.5rem, 6vw, 4rem); 
  font-weight: 700;
  letter-spacing: -0.03em;
}
h2 { 
  font-size: clamp(1.75rem, 4vw, 2.75rem); 
  font-weight: 600;
}
h3 { 
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.75;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

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

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.nav-item {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item:hover {
  color: var(--foreground);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 100;
}

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

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.dropdown-link:hover {
  background: var(--muted);
  color: var(--foreground);
}

/* Header Actions */
.header-actions {
  display: none;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-section {
  padding: 1rem 0;
}

.mobile-menu-section h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.mobile-menu-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

/* ==========================================================================
   Buttons - Premium Corporate Style
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  background-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.35);
}

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

.btn-outline:hover {
  background-color: var(--muted);
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}

.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--primary-foreground);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-full {
  width: 100%;
}

/* Ghost button variant */
.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  border: none;
}

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

.btn svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Cards - Premium Corporate Style
   ========================================================================== */
.card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-header {
  padding: 1.75rem;
}

.card-content {
  padding: 1.75rem;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -15px rgba(10, 22, 40, 0.15);
  border-color: var(--border);
}

/* Premium card variant */
.card-premium {
  background: var(--card);
  border: none;
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
}

.card-premium:hover {
  box-shadow: 0 20px 40px -15px rgba(10, 22, 40, 0.12);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background-color: var(--primary);
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }
}

/* Hero with background image */
.hero-with-image {
  background-color: transparent;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(15, 35, 65, 0.85) 50%, rgba(26, 45, 74, 0.75) 100%);
}

/* Hero with circles (fallback) */
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg-circle-1 {
  left: -5rem;
  top: -5rem;
  background-color: var(--secondary);
}

.hero-bg-circle-2 {
  right: -5rem;
  bottom: -5rem;
  background-color: var(--accent);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-trust {
    justify-content: flex-start;
  }
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-stat {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

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

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

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

/* Left-aligned section header variant */
.section-header-left {
  text-align: left;
  max-width: none;
  margin: 0 0 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding: 0.375rem 0.75rem;
  background: rgba(245, 130, 32, 0.08);
  border-radius: var(--radius);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-card {
  display: block;
  position: relative;
}

/* Premium service card top accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  transform: scale(1.05);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: color 0.3s;
}

.service-card:hover .service-icon svg {
  color: #ffffff;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.service-features {
  margin-bottom: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.why-us-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.advantage {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 130, 32, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.advantage h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.advantage p {
  font-size: 0.875rem;
}

/* Stats Visual */
.stats-visual {
  aspect-ratio: 1;
  background: rgba(74, 179, 230, 0.05);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}

.stat-bar {
  width: 100%;
  max-width: 20rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

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

.stat-bar-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-bar-value.accent { color: var(--accent); }
.stat-bar-value.secondary { color: var(--secondary); }

.stat-bar-track {
  height: 8px;
  background: var(--muted);
  border-radius: 9999px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 9999px;
}

.stat-bar-fill.accent { background: var(--accent); }
.stat-bar-fill.secondary { background: var(--secondary); }

/* ==========================================================================
   Case Study Section
   ========================================================================== */
.case-study-card {
  display: grid;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .case-study-card {
    grid-template-columns: 1fr 1fr;
  }
}

.case-study-context {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .case-study-context {
    padding: 3rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

.case-study-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 130, 32, 0.1);
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.case-study-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.case-study-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.problem-item, .solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.problem-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--destructive-light);
  color: var(--destructive);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.case-study-results {
  padding: 2rem;
  background: rgba(30, 91, 138, 0.05);
}

@media (min-width: 1024px) {
  .case-study-results {
    padding: 3rem;
  }
}

.case-study-results-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.result-item {
  background: var(--card);
  border: 1px solid rgba(30, 91, 138, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.result-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

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

.result-value {
  text-align: right;
}

.result-value strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.result-value span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.case-study-quote {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin-top: 2rem;
}

.case-study-quote p {
  font-style: italic;
  color: var(--muted-foreground);
}

.case-study-quote footer {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-card {
  background: var(--card);
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card-content {
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-quote {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

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

/* Companies */
.companies {
  text-align: center;
  margin-top: 4rem;
}

.companies p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.companies-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.companies-list span {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(100, 116, 139, 0.5);
  transition: color 0.2s;
}

.companies-list span:hover {
  color: var(--muted-foreground);
}

/* ==========================================================================
   CTA Section - Dark Blue Night Theme
   ========================================================================== */
.cta {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0f2341 100%);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta .container {
  position: relative;
  z-index: 10;
}

/* Decorative glow */
.cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .cta {
    padding: 7rem 0;
  }
}

.cta h2 {
  color: #ffffff;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta .btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 4px 20px rgba(245, 130, 32, 0.4);
}

.cta .btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 130, 32, 0.5);
}

.cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Footer - Premium Corporate Style
   ========================================================================== */
.footer {
  background: var(--navy-deep);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 2.5rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 64px;
  width: auto;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 20rem;
}

.footer-contact {
  margin-top: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-section h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

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

.footer-section a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--primary-foreground);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 179, 230, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 91, 138, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

/* Error Message */
.error-message {
  background: var(--destructive-light);
  border: 1px solid var(--destructive);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: var(--destructive);
  font-size: 0.875rem;
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 130, 32, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.contact-info-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.875rem;
}

/* Map Placeholder */
.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--muted);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--muted-foreground);
}

.map-placeholder p {
  font-size: 0.875rem;
}

/* Trust Bar */
.trust-bar {
  background: var(--muted);
  padding: 3rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.process-step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 10;
}

.process-step h3 {
  font-size: 1rem;
  margin-top: 1rem;
}

.process-step p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Page Headers - Enhanced Design
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
  padding: 5rem 0 6rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 6rem 0 8rem;
  }
}

.page-hero .container {
  position: relative;
  z-index: 10;
}

.page-hero h1 {
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: var(--radius-xl);
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(245, 130, 32, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.page-hero-icon svg {
  width: 40px;
  height: 40px;
  color: var(--secondary-foreground);
}

.page-hero-subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover {
  color: var(--primary-foreground);
}

.page-hero-breadcrumb svg {
  width: 16px;
  height: 16px;
}

/* Floating shapes decoration */
.page-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.page-hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: -100px;
  right: -50px;
}

.page-hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-stats {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}

.about-stats-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-stats-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.about-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--secondary);
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Vision Points */
.vision-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vision-point svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-point h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.vision-point p {
  font-size: 0.875rem;
}

/* Value Card */
.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 130, 32, 0.1);
  border-radius: var(--radius-lg);
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
}

/* Team Member */
.team-member {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-avatar {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-member h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-member p {
  font-size: 0.875rem;
}

/* ==========================================================================
   Job Card
   ========================================================================== */
.job-card {
  padding: 1.5rem;
}

.job-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .job-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.job-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

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

.job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.job-badge-location {
  background: rgba(245, 130, 32, 0.1);
  color: var(--secondary);
}

.job-badge-type {
  background: rgba(30, 91, 138, 0.1);
  color: var(--accent);
}

.job-badge svg {
  width: 12px;
  height: 12px;
}

.job-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.job-requirements h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.job-requirements li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.job-requirements li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.job-card .btn {
  margin-top: 1.5rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:block { display: block; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
}

/* ==========================================================================
   Enhanced Internal Page Styles
   ========================================================================== */

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Card - Enhanced */
.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

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

.feature-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.1), rgba(74, 179, 230, 0.1));
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.feature-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Problem/Solution Cards */
.problem-solution-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.problem-card,
.solution-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.problem-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-card {
  background: linear-gradient(135deg, rgba(30, 91, 138, 0.05), rgba(30, 91, 138, 0.1));
  border: 1px solid rgba(30, 91, 138, 0.2);
}

.problem-card-header,
.solution-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.problem-card-header {
  color: var(--destructive);
}

.solution-card-header {
  color: var(--accent);
}

.problem-card-header svg,
.solution-card-header svg {
  width: 24px;
  height: 24px;
}

.problem-card-header span,
.solution-card-header span {
  font-weight: 600;
  font-size: 1rem;
}

.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-list-item,
.solution-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
}

.problem-list-item {
  border-left: 3px solid var(--destructive);
}

.solution-list-item {
  border-left: 3px solid var(--accent);
}

.problem-list-item p,
.solution-list-item p {
  color: var(--foreground);
  font-size: 0.9375rem;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

@media (max-width: 1023px) {
  .process-timeline::before {
    left: 32px;
  }
}

.process-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .process-timeline-item {
    justify-content: center;
  }
  
  .process-timeline-item:nth-child(odd) .process-timeline-content {
    margin-right: calc(50% + 3rem);
    text-align: right;
  }
  
  .process-timeline-item:nth-child(even) .process-timeline-content {
    margin-left: calc(50% + 3rem);
  }
}

@media (max-width: 1023px) {
  .process-timeline-item {
    padding-left: 80px;
  }
}

.process-timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
}

@media (max-width: 1023px) {
  .process-timeline-number {
    left: 0;
    transform: none;
  }
}

.process-timeline-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 400px;
  transition: all 0.3s ease;
}

.process-timeline-content:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.process-timeline-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.process-timeline-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Tools Grid */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.tool-badge:hover {
  border-color: var(--secondary);
  background: rgba(245, 130, 32, 0.05);
  transform: translateY(-2px);
}

/* KPI Cards */
.kpi-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kpi-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.1), rgba(74, 179, 230, 0.1));
  border: 1px solid rgba(245, 130, 32, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

/* Animated underline on links */
.link-underline {
  position: relative;
  color: var(--secondary);
  font-weight: 500;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* ==========================================================================
   Problem vs Solution Comparison Section
   ========================================================================== */
.problem-solution-section {
  background: linear-gradient(180deg, var(--background) 0%, #f8fafc 100%);
}

.comparison-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
  }
}

.comparison-column {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.problems-column {
  border-color: rgba(239, 68, 68, 0.3);
}

.problems-column:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.1);
}

.solutions-column {
  border-color: rgba(34, 197, 94, 0.3);
}

.solutions-column:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.comparison-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.comparison-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.problems-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.solutions-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.problem-item-card {
  background: rgba(239, 68, 68, 0.03);
  border-left: 3px solid #dc2626;
}

.problem-item-card:hover {
  background: rgba(239, 68, 68, 0.06);
  transform: translateX(4px);
}

.solution-item-card {
  background: rgba(34, 197, 94, 0.03);
  border-left: 3px solid #16a34a;
}

.solution-item-card:hover {
  background: rgba(34, 197, 94, 0.06);
  transform: translateX(4px);
}

.comparison-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.problem-item-card .comparison-item-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.solution-item-card .comparison-item-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.comparison-item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}

.comparison-item-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.comparison-item-content strong {
  color: var(--foreground);
  font-weight: 600;
}

/* Arrow between columns */
.comparison-arrow {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .comparison-arrow {
    display: flex;
  }
}

.arrow-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), #e07520);
  border-radius: 50%;
  color: white;
  box-shadow: 0 8px 25px rgba(245, 130, 32, 0.4);
  animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Savings Banner */
.savings-banner {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0f2341 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .savings-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.savings-banner-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .savings-banner-content {
    gap: 3rem;
  }
}

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

.savings-stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(245, 130, 32, 0.3);
}

.savings-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.savings-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  display: none;
}

@media (min-width: 768px) {
  .savings-divider {
    display: block;
  }
}

.savings-banner .btn {
  white-space: nowrap;
}
