/* ========================================
   YM.CO.TH - Company Website Styles
   Pure CSS3, No Framework
   ======================================== */

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

:root {
  /* Primary Colors - Modern Tech Palette */
  --color-deep-green: #1F3D2B;
  --color-navy-blue: #1C2F4A;
  
  /* Secondary Colors - Vibrant Tech Colors */
  --color-soft-blue: #4A90E2;
  --color-earth-beige: #F4F1EC;
  --color-ai-purple: #6366F1;
  --color-ai-cyan: #06B6D4;
  --color-tech-blue: #3B82F6;
  --color-tech-cyan: #1EDFDA;
  --color-tech-purple: #8B5CF6;
  --color-tech-pink: #EC4899;
  
  /* Neutral Grays */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --line-height-heading: 1.3;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Transitions */
  --transition-base: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(74, 144, 226, 0.3);
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-gray-800);
  background: #0A0E27;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(30, 223, 218, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(10, 14, 39, 0.8) 0%, rgba(10, 14, 39, 0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(30, 223, 218, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
  animation: gradientShift 15s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: var(--line-height-heading);
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
}

a {
  color: var(--color-soft-blue);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.8;
}

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgb(244 245 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  border-top: 1px solid rgba(30, 223, 218, 0.1);
  border-bottom: 1px solid rgba(30, 223, 218, 0.1);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 223, 218, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
}

.header:hover {
  background: rgba(10, 14, 39, 0.95);
  border-bottom-color: rgba(30, 223, 218, 0.4);
  box-shadow: 0 8px 40px rgba(30, 223, 218, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: var(--spacing-md) var(--container-padding); */
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-image {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-smooth), opacity var(--transition-base);
}

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

.logo-text {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1edfda 0%, #5075aa 50%, var(--color-ai-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  margin-left: var(--spacing-xs);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .logo-image {
    height: 32px;
  }
}

.nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  padding: var(--spacing-xs) 0;
  position: relative;
  transition: all var(--transition-smooth);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-tech-cyan), var(--color-tech-purple));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.nav-link:hover {
  color: #FFFFFF;
  opacity: 1;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

.nav-link.active {
  color: #FFFFFF;
  font-weight: 500;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-tech-cyan), var(--color-tech-purple));
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  color: var(--color-deep-green);
  font-size: 1.5rem;
}

.menu-toggle:focus {
  outline: 2px solid var(--color-soft-blue);
  outline-offset: 2px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-left: var(--spacing-md);
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 223, 218, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition-smooth);
  font-family: var(--font-family);
  min-width: 60px;
  position: relative;
}

.lang-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(30, 223, 218, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 223, 218, 0.2);
}

.lang-switcher-btn.active {
  background: rgba(30, 223, 218, 0.15);
  border-color: rgba(30, 223, 218, 0.5);
}

.lang-icon {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-code {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: none;
}

.lang-code.show {
  display: block;
}

.lang-icon.hide {
  display: none;
}

.lang-switcher-btn::after {
  content: '▼';
  font-size: 0.625rem;
  margin-left: 0.25rem;
  opacity: 0.6;
  transition: transform var(--transition-smooth);
}

.lang-switcher-btn.active::after {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 223, 218, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 120px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-smooth);
  z-index: 1000;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
  font-family: var(--font-family);
}

.lang-option:hover {
  background: rgba(30, 223, 218, 0.15);
  color: #FFFFFF;
}

.lang-option.active {
  background: rgba(30, 223, 218, 0.2);
  color: #1EDFDA;
  font-weight: 600;
}

.lang-option-code {
  font-weight: 600;
  min-width: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.lang-option-name {
  flex: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(180deg, 
    rgba(10, 14, 39, 0.95) 0%, 
    rgba(10, 14, 39, 0.98) 100%);
  padding: calc(var(--spacing-3xl) + 3rem) 0 var(--spacing-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(30, 223, 218, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(30, 223, 218, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  animation: heroFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(30, 223, 218, 0.5), 
    rgba(99, 102, 241, 0.5), 
    transparent);
  pointer-events: none;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out, textShine 3s ease-in-out infinite;
  background-size: 200% auto;
  position: relative;
  z-index: 1;
}

@keyframes textShine {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-subheadline {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(30, 223, 218, 0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 223, 218, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1EDFDA, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.trust-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(30, 223, 218, 0.4);
  box-shadow: 0 8px 32px rgba(30, 223, 218, 0.3);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.03em;
  display: block;
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--spacing-xs);
}

/* AI Badge */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(30, 223, 218, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  border: 1px solid rgba(30, 223, 218, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1EDFDA;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.1s both, badgePulse 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(30, 223, 218, 0.2);
  position: relative;
  z-index: 1;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(30, 223, 218, 0.2);
  }
  50% {
    box-shadow: 0 4px 30px rgba(30, 223, 218, 0.4);
  }
}

.ai-badge-icon {
  font-size: 1.125rem;
  animation: aiPulse 2s ease-in-out infinite;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-smooth);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(30, 223, 218, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover {
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 223, 218, 0.4);
  opacity: 1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #1EDFDA, #3B82F6, #8B5CF6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.cta-button:hover::after {
  opacity: 1;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* ========================================
   CARDS & GRID
   ======================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-xl);
  border-radius: 16px;
  border: 1px solid rgba(30, 223, 218, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Card in section (dark background) */
.section .card {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Card in section-alt (light background) */
.section-alt .card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 223, 218, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1EDFDA, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 223, 218, 0.3), rgba(99, 102, 241, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.section .card:hover {
  box-shadow: 0 12px 48px rgba(30, 223, 218, 0.3);
  transform: translateY(-6px);
  border-color: rgba(30, 223, 218, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section-alt .card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
  border-color: rgba(30, 223, 218, 0.5);
  background: rgba(255, 255, 255, 1);
}

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

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

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(225deg, #1edfda 0%, #4d88dd 50%, var(--color-ai-purple) 100%);
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

/* Card in section (dark background) - white text */
.section .card h3 {
  color: #FFFFFF;
}

.section .card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Card in section-alt (light background) - dark text */
.section-alt .card h3 {
  color: rgb(70, 72, 80);
}

.section-alt .card p {
  color: rgb(70, 72, 80);
  margin-bottom: 0;
  line-height: 1.7;
  opacity: 0.9;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section p {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Section with dark background - white text */
.section .content-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* Section-alt with light background - dark text */
.section-alt .content-section p {
  color: rgb(70, 72, 80);
}

.feature-list {
  list-style: none;
  margin-top: var(--spacing-lg);
}

.feature-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-xl);
  position: relative;
  color: var(--color-gray-700);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-deep-green);
  font-weight: 600;
}

/* Workflow - Modern Flow Design */
.workflow {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  position: relative;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  position: relative;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(30, 223, 218, 0.2);
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.workflow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1EDFDA, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  border-radius: 20px 20px 0 0;
}

.workflow-step:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 48px rgba(30, 223, 218, 0.3);
  border-color: rgba(30, 223, 218, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.workflow-step:hover::before {
  transform: scaleX(1);
}

.workflow-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  text-align: center;
  line-height: 1;
  padding-top: 0.25rem;
}

.workflow-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 223, 218, 0.2) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(139, 92, 246, 0.2) 100%);
  border-radius: 16px;
  border: 1px solid rgba(30, 223, 218, 0.3);
  flex-shrink: 0;
  transition: all var(--transition-smooth);
  filter: drop-shadow(0 4px 12px rgba(30, 223, 218, 0.3));
}

.workflow-step:hover .workflow-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(30, 223, 218, 0.3) 0%, rgba(59, 130, 246, 0.3) 50%, rgba(139, 92, 246, 0.3) 100%);
  border-color: rgba(30, 223, 218, 0.5);
  box-shadow: 0 8px 24px rgba(30, 223, 218, 0.4);
}

.workflow-content {
  flex: 1;
}

.workflow-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: #FFFFFF;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workflow-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.workflow-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, #1EDFDA, #3B82F6, #8B5CF6);
  margin-left: calc(25px + var(--spacing-lg) + 40px);
  position: relative;
  opacity: 0.6;
}

.workflow-connector::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #1EDFDA, #8B5CF6);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(30, 223, 218, 0.6);
}

/* Workflow in section-alt */
.section-alt .workflow-step {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 223, 218, 0.3);
}

.section-alt .workflow-step:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.section-alt .workflow-content h3 {
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-alt .workflow-content p {
  color: rgb(70, 72, 80);
}

/* Feature Grid - Card Style */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-xl);
  border-radius: 16px;
  border: 1px solid rgba(30, 223, 218, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1EDFDA, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(30, 223, 218, 0.3);
  border-color: rgba(30, 223, 218, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 4px 8px rgba(30, 223, 218, 0.3));
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: #FFFFFF;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Feature card in section-alt */
.section-alt .feature-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 223, 218, 0.3);
}

.section-alt .feature-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.section-alt .feature-card h3 {
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-alt .feature-card p {
  color: rgb(70, 72, 80);
}

/* Values Grid - Card Style */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-xl);
  border-radius: 16px;
  border: 1px solid rgba(30, 223, 218, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1EDFDA, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(30, 223, 218, 0.3);
  border-color: rgba(30, 223, 218, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.value-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 4px 8px rgba(30, 223, 218, 0.3));
}

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

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: #FFFFFF;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Value card in section-alt */
.section-alt .value-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 223, 218, 0.3);
}

.section-alt .value-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.section-alt .value-card h3 {
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-alt .value-card p {
  color: rgb(70, 72, 80);
}

/* ========================================
   FORM STYLES
   ======================================== */
.form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-2xl);
  border-radius: 24px;
  border: 1px solid rgba(30, 223, 218, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-alt .form {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 223, 218, 0.3);
}

.form-group {
  margin-bottom: var(--spacing-xl);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
}

.section-alt .form-label {
  color: rgb(70, 72, 80);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 1px solid rgba(30, 223, 218, 0.3);
  border-radius: 12px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all var(--transition-smooth);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
}

.section-alt .form-input,
.section-alt .form-textarea {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(30, 223, 218, 0.3);
  color: rgb(70, 72, 80);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.section-alt .form-input::placeholder,
.section-alt .form-textarea::placeholder {
  color: rgba(70, 72, 80, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(30, 223, 218, 0.8);
  box-shadow: 0 0 0 3px rgba(30, 223, 218, 0.2), 0 8px 24px rgba(30, 223, 218, 0.15);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.section-alt .form-input:focus,
.section-alt .form-textarea:focus {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(30, 223, 218, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(30, 223, 218, 0.3);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-smooth);
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 223, 218, 0.4);
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #1EDFDA 100%);
}

.form-submit:active {
  transform: translateY(-1px);
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--spacing-2xl);
  border-radius: 20px;
  border: 1px solid rgba(30, 223, 218, 0.2);
  transition: all var(--transition-smooth);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1EDFDA, #3B82F6, #8B5CF6);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(30, 223, 218, 0.3);
  border-color: rgba(30, 223, 218, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-info-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 4px 12px rgba(30, 223, 218, 0.3));
}

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

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: #FFFFFF;
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-info-card a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.contact-info-card a:hover {
  color: #1EDFDA;
  border-bottom-color: #1EDFDA;
}

/* Contact info card in section-alt */
.section-alt .contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 223, 218, 0.3);
}

.section-alt .contact-info-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.section-alt .contact-info-card h3 {
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-alt .contact-info-card p {
  color: rgb(70, 72, 80);
}

.section-alt .contact-info-card a {
  color: rgb(70, 72, 80);
}

.section-alt .contact-info-card a:hover {
  color: #1EDFDA;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 1) 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-3xl);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(30, 223, 218, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
  color: var(--color-gray-300);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.footer-section a:hover {
  color: white;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray-400);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

/* text-center in section (dark background) - white */
.section .text-center {
  color: #FFFFFF;
}

/* text-center in section-alt (light background) - dark */
.section-alt .text-center {
  color: rgb(70, 72, 80);
}

.text-center h2 {
  background: linear-gradient(135deg, #1EDFDA 0%, #3B82F6 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* Loading & Error States */
.loading {
  text-align: center;
  padding: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
}

.error {
  text-align: center;
  padding: var(--spacing-xl);
  color: #EF4444;
  background: rgba(254, 226, 226, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  backdrop-filter: blur(10px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
  :root {
    --container-padding: 1.25rem;
    --spacing-3xl: 4rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
  }
  
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .trust-item {
    padding: 1.5rem 1rem;
  }
  
  .trust-number {
    font-size: 2.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --spacing-3xl: 3rem;
    --spacing-2xl: 2.5rem;
  }
  
  .header-content {
    padding: var(--spacing-sm) var(--container-padding);
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    gap: var(--spacing-sm);
  }
  
  .nav.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .lang-switcher {
    margin-left: 0;
    margin-top: var(--spacing-sm);
  }
  
  .lang-dropdown {
    right: auto;
    left: 0;
  }
  
  .header-content {
    flex-wrap: wrap;
  }
  
  .hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1.125rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .form {
    padding: var(--spacing-xl);
  }
  
  .workflow {
    gap: var(--spacing-lg);
  }
  
  .workflow-step {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-lg);
  }
  
  .workflow-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    min-width: auto;
  }
  
  .workflow-icon {
    width: 64px;
    height: 64px;
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-md);
  }
  
  .workflow-connector {
    margin-left: auto;
    margin-right: auto;
    height: 30px;
  }
  
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .trust-item {
    padding: 1.5rem;
  }
  
  .trust-number {
    font-size: 2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .cta-button {
    width: 100%;
    padding: var(--spacing-md);
  }
  
  .card {
    padding: var(--spacing-md);
  }
}
