/* ================================================
   ABOUT PAGE - PREMIUM MODERN DESIGN
   ================================================ */

/* Page Hero Enhanced (coerente con annunci.css) */
.page-hero {
  padding: 100px 0 80px;
  background: 
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #f8fafc 100%),
    radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(34, 197, 94, 0.02) 50%, transparent 52%);
  animation: backgroundShift 15s ease-in-out infinite;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-intro {
  max-width: 800px;
  margin: 0 auto;
}

.intro-badge {
  margin-bottom: 30px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 
    0 20px 40px rgba(34, 197, 94, 0.25),
    0 8px 16px rgba(34, 197, 94, 0.15);
}

.page-hero h1 {
  font-size: 4rem;
  color: var(--text);
  margin: 0 0 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.3rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  position: relative;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  border-radius: 2px;
  transform-origin: center;
  animation: statLineGrow 1s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.2s + 0.5s);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 8px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ================================================
   ABOUT SHOWCASE SECTION
   ================================================ */

.about-showcase {
  padding: 120px 0;
  background: 
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
}

.showcase-intro {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.showcase-intro h2 {
  font-size: 3.5rem;
  color: var(--text);
  margin: 0 0 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.showcase-intro p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ================================================
   CONTENT CARDS GRID
   ================================================ */

.about-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.content-card {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 35px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.04);
}

.content-card.featured {
  border: 2px solid var(--brand);
  background: 
    linear-gradient(145deg, rgba(34, 197, 94, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-600) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.08);
}

.content-card:hover::before {
  transform: scaleX(1);
}

.card-visual {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
}

.card-icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  ;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: 
    radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 3s ease-in-out infinite;
}

.card-content {
  padding: 40px;
}

.card-header {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.5px;
}

.card-badge {
  display: flex;
  gap: 10px;
}

.badge-featured {
  background: var(--brand);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-special {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 30px;
  font-weight: 400;
}

.badge-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.badge-years {
  font-size: 3.8rem;
  font-weight: 900;
  margin-right: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
}

.badge-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
  max-width: 160px;
  text-align: left;
}

.about-header h2 {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 35px;
  line-height: 1.1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 950px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ================================================
   ADVANCED GRID SYSTEM
   ================================================ */

.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 100px;
  margin-bottom: 120px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ================================================
   EXECUTIVE STORY SECTIONS
   ================================================ */

.company-story {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.story-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-600) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
  transform: translateY(-50%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-section:hover {
  transform: translateX(15px) translateY(-5px);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.12),
    0 15px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.story-section:hover::before {
  transform: scaleY(1);
}

.story-section:hover::after {
  right: -50px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}

.section-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 
    0 15px 30px rgba(34, 197, 94, 0.3),
    0 5px 15px rgba(34, 197, 94, 0.2);
  position: relative;
  flex-shrink: 0;
}

.section-number::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.section-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.5px;
}

.story-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.story-section strong {
  color: var(--brand);
  font-weight: 700;
}

/* ================================================
   PREMIUM INFO CARDS
   ================================================ */

.company-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: sticky;
  top: 120px;
}

.info-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.8) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 35px;
  padding: 50px;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.1),
    0 15px 35px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-600) 50%, var(--brand) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 40px 90px rgba(0, 0, 0, 0.15),
    0 20px 45px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.3px;
}

/* ================================================
   VALUES GRID SYSTEM
   ================================================ */

.values-grid {
  display: grid;
  gap: 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-item:hover {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
  transform: scale(1.02) translateX(10px);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  box-shadow: 
    0 15px 30px rgba(34, 197, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
}

.value-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 50%);
}

.value-content h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.value-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* ================================================
   EXECUTIVE STATISTICS
   ================================================ */

.stats-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.02) 100%);
  border-radius: 25px;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.06) 100%);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.2);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* ================================================
   PHILOSOPHY SECTION - PREMIUM MODERN DESIGN
   ================================================ */

.philosophy-section {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #f8fafc 100%),
    radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(34, 197, 94, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(59, 130, 246, 0.02) 50%, transparent 52%);
  animation: backgroundShift 15s ease-in-out infinite;
  pointer-events: none;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.philosophy-header h2 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.philosophy-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-600));
  border-radius: 2px;
}

.philosophy-subtitle {
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.philosophy-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ================================================
   PHILOSOPHY QUOTE - ELEGANT DESIGN
   ================================================ */

.philosophy-quote {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
}

.philosophy-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(34, 197, 94, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.philosophy-quote blockquote {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.philosophy-quote cite {
  display: block;
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ================================================
   PRINCIPLES GRID - MODERN CARDS
   ================================================ */

.philosophy-principles {
  display: grid;
  gap: 35px;
}

.principle-item {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.02);
}

.principle-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-600) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.principle-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 200px;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.principle-item:hover {
  transform: translateX(12px) translateY(-8px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.1),
    0 15px 35px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.principle-item:hover::before {
  transform: scaleY(1);
}

.principle-item:hover::after {
  right: -20px;
  background: 
    radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.principle-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 
    0 20px 40px rgba(34, 197, 94, 0.3),
    0 8px 16px rgba(34, 197, 94, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.principle-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.principle-item:hover .principle-icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 
    0 25px 50px rgba(34, 197, 94, 0.4),
    0 10px 20px rgba(34, 197, 94, 0.25);
}

.principle-content h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 15px 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.principle-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ================================================
   SIDEBAR - CTA & STATS
   ================================================ */

.philosophy-sidebar {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: sticky;
  top: 120px;
}

.philosophy-cta {
  background: 
    linear-gradient(145deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  border-radius: 35px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 35px 70px rgba(34, 197, 94, 0.3),
    0 15px 35px rgba(34, 197, 94, 0.2);
}

.philosophy-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: philosophyFloat 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  display: block;
  animation: ctaBounce 3s ease-in-out infinite;
}

.philosophy-cta h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.philosophy-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  padding: 18px 35px;
  font-size: 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: inline-block;
}

.cta-buttons .btn-primary:hover {
  background: white;
  color: var(--brand);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 16px 35px;
  font-size: 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: inline-block;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.philosophy-stats {
  display: grid;
  gap: 25px;
}

.stat-highlight {
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.stat-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-600) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.1),
    0 15px 35px rgba(0, 0, 0, 0.05);
}

.stat-highlight:hover::before {
  transform: scaleX(1);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* ================================================
   ADVANCED ANIMATIONS
   ================================================ */

@keyframes backgroundShift {
  0%, 100% {
    transform: translateX(0) translateY(0);
    opacity: 0.6;
  }
  25% {
    transform: translateX(10px) translateY(-10px);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-5px) translateY(15px);
    opacity: 0.4;
  }
  75% {
    transform: translateX(-15px) translateY(-5px);
    opacity: 0.9;
  }
}

@keyframes philosophyFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, -20px) rotate(120deg);
  }
  66% {
    transform: translate(20px, -40px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes ctaBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.05);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-4px) scale(1.02);
  }
}

@keyframes professionalFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes philosophyFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-100px, -100px) rotate(360deg);
  }
}

/* ================================================
   RESPONSIVE DESIGN SYSTEM
   ================================================ */

@media (max-width: 1400px) {
  .about-content-grid {
    gap: 25px;
  }
}

@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .company-info {
    position: static;
  }
  
  .about-header h2 {
    font-size: 3.5rem;
  }
  
  /* Philosophy Section Tablet Styles */
  .philosophy-main {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  
  .philosophy-sidebar {
    position: static;
    flex-direction: row;
    gap: 40px;
  }
  
  .philosophy-cta,
  .philosophy-stats {
    flex: 1;
  }
  
  .philosophy-stats {
    display: flex;
    gap: 20px;
  }
  
  .stat-highlight {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .about-header {
    padding: 80px 0 60px;
  }
  
  .about-header h2 {
    font-size: 2.8rem;
  }
  
  .badge-years {
    font-size: 2.8rem;
  }
  
  .lead-text {
    font-size: 1.3rem;
  }
  
  .story-section {
    padding: 40px;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .section-number {
    width: 60px;
    height: 60px;
  }
  
  .info-card {
    padding: 40px;
  }
  
  .stats-display {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Philosophy Section Mobile Styles */
  .philosophy-section {
    padding: 80px 0;
  }
  
  .philosophy-header h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  
  .philosophy-subtitle {
    font-size: 1.2rem;
  }
  
  .philosophy-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .philosophy-quote {
    padding: 40px;
  }
  
  .philosophy-quote blockquote {
    font-size: 1.3rem;
  }
  
  .principle-item {
    padding: 30px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .principle-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
  }
  
  .principle-content h4 {
    font-size: 1.2rem;
  }
  
  .principle-content p {
    font-size: 1rem;
  }
  
  .philosophy-sidebar {
    position: static;
  }
  
  .philosophy-cta {
    padding: 40px;
  }
  
  .philosophy-cta h3 {
    font-size: 1.5rem;
  }
  
  .cta-icon {
    font-size: 3rem;
  }
  
  .stat-highlight {
    padding: 30px 25px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .badge-content {
    padding: 20px 35px;
  }
  
  .badge-years {
    font-size: 2.4rem;
  }
  
  .story-section {
    padding: 30px;
  }
  
  .section-header h3 {
    font-size: 1.8rem;
  }

  /* Philosophy Section Extra Small Mobile */
  .philosophy-section {
    padding: 60px 0;
  }
  
  .philosophy-header h2 {
    font-size: 2.2rem;
  }
  
  .philosophy-subtitle {
    font-size: 1.1rem;
  }
  
  .philosophy-quote {
    padding: 30px;
  }
  
  .philosophy-quote blockquote {
    font-size: 1.2rem;
  }
  
  .principle-item {
    padding: 25px;
    gap: 15px;
  }
  
  .principle-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
  }
  
  .principle-content h4 {
    font-size: 1.1rem;
  }
  
  .principle-content p {
    font-size: 0.95rem;
  }
  
  .philosophy-cta {
    padding: 30px;
  }
  
  .philosophy-cta h3 {
    font-size: 1.3rem;
  }
  
  .philosophy-cta p {
    font-size: 1rem;
  }
  
  .cta-icon {
    font-size: 2.5rem;
  }
  
  .cta-buttons .btn-primary {
    padding: 15px 25px;
    font-size: 0.9rem;
  }
  
  .cta-buttons .btn-outline {
    padding: 13px 25px;
    font-size: 0.85rem;
  }
  
  .stat-highlight {
    padding: 25px 20px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* ================================================
   NEW ABOUT PAGE COMPONENTS
   ================================================ */

/* Card Highlights System */
.card-highlights {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(34, 197, 94, 0.1);
  transform: translateX(5px);
}

.highlight-icon {
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(34, 197, 94, 0.2);
}

.highlight-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Compact Values System */
.values-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.value-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.value-compact:hover {
  background: rgba(34, 197, 94, 0.05);
  transform: scale(1.02);
}

.value-emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-compact strong {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

/* Mission Points System */
.mission-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.point-check {
  font-size: 1rem;
  color: var(--brand);
  width: 22px;
  height: 22px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

.mission-point span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.2px;
}

/* Team Section Styling */
.team-section {
  margin-top: 80px;
}

.team-card {
  background: 
    linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: white;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 50px;
  padding: 60px;
  box-shadow: 
    0 35px 70px rgba(34, 197, 94, 0.3),
    0 15px 35px rgba(34, 197, 94, 0.2);
}

.team-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: teamFloat 20s linear infinite;
}

.team-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: teamPulse 3s ease-in-out infinite;
}

.team-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: 
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: teamGlow 4s ease-in-out infinite;
}

.team-content {
  position: relative;
  z-index: 1;
}

.team-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.team-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.team-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

.feature-check {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

.team-feature span {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.team-actions {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-team {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  padding: 18px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-team:hover {
  background: white;
  color: var(--brand);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-phone {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 16px 35px;
  font-size: 1rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Team Animations */
@keyframes teamFloat {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

@keyframes teamPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes teamGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Responsive Design for New Components */
@media (max-width: 1200px) {
  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 50px;
  }
  
  .team-icon {
    font-size: 4rem;
  }
  
  .team-content h3 {
    font-size: 2.2rem;
  }
  
  .values-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .team-card {
    padding: 40px 30px;
    gap: 35px;
  }
  
  .team-content h3 {
    font-size: 1.9rem;
  }
  
  .team-content p {
    font-size: 1.1rem;
  }
  
  .team-actions {
    justify-content: center;
  }
  
  .btn-team, .btn-phone {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .team-section {
    margin-top: 60px;
  }
  
  .team-card {
    padding: 35px 20px;
    border-radius: 30px;
    gap: 30px;
  }
  
  .team-icon {
    font-size: 3.5rem;
  }
  
  .team-content h3 {
    font-size: 1.7rem;
  }
  
  .team-content p {
    font-size: 1rem;
  }
  
  .team-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-team, .btn-phone {
    width: 100%;
    text-align: center;
  }
  
  .highlight-item {
    padding: 10px 15px;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .mission-point span {
    font-size: 0.9rem;
  }
  
  .value-compact {
    padding: 12px;
  }
  
  .value-compact strong {
    font-size: 0.85rem;
  }
}

/* ================================================
   PREMIUM SECTIONS STYLES (History, Values, Mission)
   ================================================ */

/* History Card Premium */
.history-card-premium,
.values-card-premium,
.mission-card-premium {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(34, 197, 94, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.history-card-premium::before,
.values-card-premium::before,
.mission-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.history-card-premium:hover,
.values-card-premium:hover,
.mission-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 35px 80px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(34, 197, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Headers */
.history-header,
.values-header,
.mission-header {
  padding: 40px 45px 35px;
  background: 
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%),
    radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
  position: relative;
}

.history-header::after,
.values-header::after,
.mission-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 45px;
  right: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
}

/* Icon Containers */
.history-icon-container,
.values-icon-container,
.mission-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(34, 197, 94, 0.15);
  border-radius: 24px;
  margin: 0 auto 25px;
  position: relative;
  overflow: hidden;
}

.history-icon-container {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.values-icon-container {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.15);
}

.mission-icon-container {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
  border-color: rgba(236, 72, 153, 0.15);
}

.history-icon-container::before,
.values-icon-container::before,
.mission-icon-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.values-icon-container::before {
  background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
}

.mission-icon-container::before {
  background: linear-gradient(45deg, transparent, rgba(236, 72, 153, 0.1), transparent);
}

.history-icon,
.values-icon,
.mission-icon {
  font-size: 2.2rem;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* Title Sections */
.history-title-section,
.values-title-section,
.mission-title-section {
  text-align: center;
}

.history-main-title,
.values-main-title,
.mission-main-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.history-badge-container,
.values-badge-container,
.mission-badge-container {
  margin-bottom: 20px;
}

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.8));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 
    0 8px 25px -8px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  animation: badge-pulse 3s ease-in-out infinite;
}

.principles-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(168, 85, 247, 0.8));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 
    0 8px 25px -8px rgba(168, 85, 247, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  animation: badge-pulse 3s ease-in-out infinite;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(236, 72, 153, 0.8));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 
    0 8px 25px -8px rgba(236, 72, 153, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  animation: badge-pulse 3s ease-in-out infinite;
}

.history-subtitle,
.values-subtitle,
.mission-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 85%;
  margin: 0 auto;
}

/* Content Sections */
.history-content,
.values-content,
.mission-content {
  padding: 45px;
}

.history-grid,
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.history-item-premium,
.value-item-premium,
.mission-item-premium {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
  border: 1px solid rgba(34, 197, 94, 0.08);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.history-item-premium::before,
.value-item-premium::before,
.mission-item-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), rgba(34, 197, 94, 0.6));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.history-item-premium:hover,
.value-item-premium:hover,
.mission-item-premium:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 197, 94, 0.15);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.05);
}

.history-item-premium:hover::before,
.value-item-premium:hover::before,
.mission-item-premium:hover::before {
  transform: scaleY(1);
}

.history-check-container,
.value-check-container,
.mission-check-container {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brand), rgba(34, 197, 94, 0.8));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 15px rgba(34, 197, 94, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin-top: 3px;
  animation: check-pulse 3s ease-in-out infinite;
}

.history-check,
.value-check,
.mission-check {
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}

.history-text,
.value-text,
.mission-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.history-item-title,
.value-item-title,
.mission-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.history-item-desc,
.value-item-desc,
.mission-item-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Responsive Styles for Premium Sections */
@media (max-width: 900px) {
  .history-header,
  .values-header,
  .mission-header {
    padding: 35px 30px 30px;
  }
  
  .history-main-title,
  .values-main-title,
  .mission-main-title {
    font-size: 2.2rem;
  }
  
  .history-subtitle,
  .values-subtitle,
  .mission-subtitle {
    font-size: 1rem;
    max-width: 95%;
  }
  
  .history-content,
  .values-content,
  .mission-content {
    padding: 35px 30px;
  }
  
  .history-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .history-header,
  .values-header,
  .mission-header {
    padding: 30px 25px 25px;
  }
  
  .history-icon-container,
  .values-icon-container,
  .mission-icon-container {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .history-icon,
  .values-icon,
  .mission-icon {
    font-size: 1.8rem;
  }
  
  .history-main-title,
  .values-main-title,
  .mission-main-title {
    font-size: 1.9rem;
  }
  
  .history-subtitle,
  .values-subtitle,
  .mission-subtitle {
    font-size: 0.95rem;
  }
  
  .founding-badge,
  .principles-badge,
  .partner-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  .history-content,
  .values-content,
  .mission-content {
    padding: 30px 25px;
  }
  
  .history-item-premium,
  .value-item-premium,
  .mission-item-premium {
    padding: 20px;
  }
  
  .history-item-title,
  .value-item-title,
  .mission-item-title {
    font-size: 1rem;
  }
  
  .history-item-desc,
  .value-item-desc,
  .mission-item-desc {
    font-size: 0.85rem;
  }
  
  .history-check-container,
  .value-check-container,
  .mission-check-container {
    width: 28px;
    height: 28px;
  }
  
  .history-check,
  .value-check,
  .mission-check {
    font-size: 1rem;
  }
}

/* ================================================
   SIMPLIFIED LAYOUT STRUCTURES - COMPACT DESIGN
   ================================================ */

/* History Highlights */
.history-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history-highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.history-highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), rgba(34, 197, 94, 0.6));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.history-highlight-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.05);
}

.history-highlight-item:hover::before {
  transform: scaleY(1);
}

.history-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, rgba(34, 197, 94, 0.8) 100%);
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(34, 197, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.history-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.history-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.history-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Values Grid Compact */
.values-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.value-compact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-compact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), rgba(34, 197, 94, 0.6));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.value-compact-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.05);
}

.value-compact-item:hover::before {
  transform: scaleY(1);
}

.value-icon-compact {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, rgba(34, 197, 94, 0.8) 100%);
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(34, 197, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.value-content-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.value-title-compact {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.value-desc-compact {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Mission Highlights */
.mission-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), rgba(34, 197, 94, 0.6));
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.mission-highlight-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(34, 197, 94, 0.05);
}

.mission-highlight-item:hover::before {
  transform: scaleY(1);
}

.mission-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, rgba(34, 197, 94, 0.8) 100%);
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(34, 197, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mission-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mission-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.mission-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ================================================
   RESPONSIVE DESIGN FOR SIMPLIFIED LAYOUTS
   ================================================ */

@media (max-width: 900px) {
  .values-grid-compact {
    grid-template-columns: 1fr;
  }
  
  .history-highlight-item,
  .value-compact-item,
  .mission-highlight-item {
    padding: 20px;
    gap: 15px;
  }
  
  .history-icon,
  .value-icon-compact,
  .mission-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .history-title,
  .mission-title {
    font-size: 1.2rem;
  }
  
  .value-title-compact {
    font-size: 1rem;
  }
  
  .history-desc,
  .mission-desc {
    font-size: 0.95rem;
  }
  
  .value-desc-compact {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .history-highlight-item,
  .value-compact-item,
  .mission-highlight-item {
    padding: 18px;
    gap: 12px;
  }
  
  .history-icon,
  .value-icon-compact,
  .mission-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .history-title,
  .mission-title {
    font-size: 1.2rem;
  }
  
  .value-title-compact {
    font-size: 0.95rem;
  }
  
  .history-desc,
  .mission-desc {
    font-size: 0.9rem;
  }
  
  .value-desc-compact {
    font-size: 0.85rem;
  }
}
