/* ============================================
   OPTIVE - Modern Premium Design System
   ============================================ */

/* CSS Variables */
:root {
  /* Colors - Premium & Modern */
  --primary: #0F172A;
  /* Deep Navy */
  --primary-light: #1E293B;
  --accent: #3B82F6;
  /* Bright Blue */
  --accent-hover: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.5);

  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --surface: #FFFFFF;
  --surface-translucent: rgba(255, 255, 255, 0.8);

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --text-invert: #FFFFFF;

  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 2rem;
  /* 32px */
  --spacing-lg: 3.5rem;
  /* 56px */
  --spacing-xl: 5rem;
  /* 80px */
  --spacing-2xl: 7rem;
  /* 112px */

  /* Layout */
  --container-width: 1200px;
  --header-height: 70px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Effects */
  --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 var(--accent-glow);

  --backdrop-blur: blur(12px);
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 15px;
  /* Slightly smaller base font */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  /* Prefer Inter for English, Noto Sans KR for Korean */
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

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

.text-primary {
  color: var(--accent);
}

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

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

/* ============================================
   COMPONENTS
   ============================================ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
  gap: 0.5rem;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--accent-glow);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

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

.btn.outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59, 130, 246, 0.05);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: var(--surface-translucent);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo-text strong {
  color: var(--text-primary);
}

.site-header.scrolled .logo-text small {
  color: var(--text-tertiary);
}

.site-header.scrolled .gnb a {
  color: var(--text-secondary);
}

.site-header.scrolled .gnb a:hover,
.site-header.scrolled .gnb a.active {
  color: var(--accent);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  min-width: 200px;
  min-height: 50px;
}

.logo img,
.logo-img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

/* 두 로고를 같은 위치에 겹쳐서 배치 */
.logo-white {
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
  height: 100px !important;
  opacity: 1;
}

.logo-dark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
  height: 50px !important;
  opacity: 0;
}

/* 스크롤 시 (흰색 로고 숨김, 다크 로고 표시) */
.site-header.scrolled .logo-white {
  opacity: 0;
}

.site-header.scrolled .logo-dark {
  opacity: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.02em;
}

.logo-text small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.gnb {
  display: flex;
  gap: 2.5rem;
}

.gnb a {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
}

.gnb a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.gnb a:hover,
.gnb a.active {
  color: white;
}

.gnb a:hover::after,
.gnb a.active::after {
  width: 100%;
}

.btn-menu {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.lang-btn .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.lang-switcher:hover .lang-btn .arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  min-width: 100px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.lang-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

.lang-dropdown a.active {
  color: var(--accent);
  font-weight: 700;
}

/* Scrolled Header Adjustments for Lang Switcher */
.site-header.scrolled .lang-btn {
  color: var(--text-primary);
  border-color: var(--border);
}

.site-header.scrolled .lang-btn:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
}

/* Mobile Nav */
.gnb-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--surface);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.gnb-mobile.active {
  transform: translateY(0);
  box-shadow: var(--shadow-lg);
}

.gnb-mobile a {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.gnb-mobile a:hover,
.gnb-mobile a.active {
  background: var(--bg-soft);
  color: var(--accent);
}

/* ============================================
   SECTIONS
   ============================================ */

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

.section-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header .section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 1.5rem auto;
  border-radius: var(--radius-full);
}

/* Hero Section */
.hero-fullscreen {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  margin-top: calc(var(--header-height) * -1);
  /* Overlap header */
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 var(--spacing-sm);
}

.hero-tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-content h1 {
  font-size: 5.5rem;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-content .highlight {
  color: var(--accent);
  /* Fallback */
  background: linear-gradient(to right, #60A5FA, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator-mouse {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.75rem;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Cards & Grids */
.products-grid,
.features-grid,
.news-grid {
  display: grid;
  gap: var(--spacing-md);
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.news-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Product Card */
.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 1;
  /* Always visible for better UX */
}

.product-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0;
}

.product-content {
  padding: 2rem;
}

.product-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Feature Card */
.feature-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius-full);
  color: var(--accent);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: white;
}

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

/* News Card */
.news-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.news-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-soft);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.news-date {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.news-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.news-link:hover {
  gap: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--text-tertiary);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.5fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-column h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-column a {
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.contact-info li,
.business-hours li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-info .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 2.5rem auto 0;
  padding: 1.5rem var(--spacing-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-fullscreen h1 {
  font-size: 2.5rem;
}


@media (max-width: 768px) {
  .gnb {
    display: none;
  }

  .btn-menu {
    display: block;
  }

  .hero-fullscreen h1 {
    font-size: 2.5rem;
  }

  .business-areas-grid {
    grid-template-columns: 1fr;
  }

  .product-section .product-card {
    grid-template-columns: 1fr;
  }

  .product-section.alt-layout .product-card {
    direction: ltr;
  }

  .product-section.alt-layout .product-image {
    order: -1;
  }
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* Page Header */
.page-header {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  /* Dark overlay */
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 2.75rem;
  color: white;
  margin-bottom: 1rem;
  background: none;
  -webkit-text-fill-color: white;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Business Overview Section */
.business-overview-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg);
}

.business-intro {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.business-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.business-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.highlight-text {
  color: var(--accent);
  font-weight: 700;
}

.business-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .business-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .business-areas-grid {
    grid-template-columns: 1fr;
  }
}

.business-area-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.business-area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border-light);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  opacity: 0.5;
  transition: var(--transition-fast);
  line-height: 1;
}

.business-area-card:hover .card-number {
  color: var(--accent);
  opacity: 0.1;
}

.business-area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-right: 3rem;
  /* Space for number */
  min-height: 3rem;
  /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
}

.card-subtitle {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  min-height: 1.5rem;
}

.card-features {
  margin-top: auto;
  /* Push to bottom */
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.card-features li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.card-features li:last-child {
  margin-bottom: 0;
}

.card-features li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  flex-shrink: 0;
  /* Prevent bullet from shrinking */
}

/* Product Section (Detailed) */
.product-section {
  padding: var(--spacing-xl) 0;
  border-top: 1px solid var(--border-light);
}

.product-section .product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: transparent;
  box-shadow: none;
  border: none;
  overflow: visible;
}

.product-section .product-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  padding-top: 0;
  /* Reset aspect ratio hack if using direct img */
  height: 100%;
  min-height: 350px;
}

.product-section .product-image img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-section .product-content {
  padding: 0;
}

.product-section h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.product-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns on desktop */
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item .feature-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
  margin-top: 0.2rem;
  /* Align with text top */
}



.feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.inquiry-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Alternating Layout */
.product-section.alt-layout {
  background: var(--bg-soft);
}

/* Company News Section (Index) */
.company-news-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-md);
}

.news-subtitle {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.btn-more {
  color: var(--text-tertiary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn-more:hover {
  color: var(--accent);
}

/* ============================================
   COMPANY PAGE STYLES
   ============================================ */

/* Greeting Section */
.greeting-section {
  background: var(--bg);
  padding: var(--spacing-xl) 0;
}

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

.greeting-image-wrapper {
  position: relative;
}

.greeting-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.greeting-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.greeting-name-tag {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: white;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 10;
  border-left: 4px solid var(--accent);
}

.greeting-name-tag strong {
  font-size: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.greeting-name-tag span {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.greeting-header {
  margin-bottom: 2.5rem;
}

.greeting-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.greeting-header h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.greeting-body p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.greeting-signature {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-img {
  height: 60px;
  width: auto;
  opacity: 0.8;
}

.signature-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Company Overview Section */
.company-overview-section {
  background: var(--bg-soft);
  padding: var(--spacing-xl) 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.overview-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
}

/* Info Table */
.info-table {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.info-row {
  display: flex;
  border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
  border-bottom: none;
}

.info-th {
  width: 140px;
  background: var(--bg-soft);
  padding: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  border-right: 1px solid var(--border-light);
  flex-shrink: 0;
}

.info-td {
  padding: 1.25rem;
  color: var(--text-secondary);
  flex-grow: 1;
}

/* Career Timeline */
.career-section {
  height: 100%;
}

.career-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.timeline-year {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.timeline-content {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Achievements Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.achievement-card.highlight {
  background: linear-gradient(135deg, white 0%, #F0F9FF 100%);
  border-color: #BAE6FD;
}

.ach-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.ach-icon svg {
  width: 100%;
  height: 100%;
}

.ach-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.ach-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Core Capabilities Refined */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.capability-card {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.capability-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.capability-icon svg {
  width: 32px;
  height: 32px;
}

.capability-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.capability-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.capability-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Brand Identity Refined */
.brand-identity-section {
  background: white;
  padding-bottom: var(--spacing-2xl);
}

.ci-showcase {
  display: flex;
  justify-content: center;
}

.ci-card {
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 5rem 3rem;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.ci-logo-wrapper {
  margin-bottom: 3.5rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.ci-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.ci-desc {
  max-width: 700px;
  margin: 0 auto;
}

.ci-meaning {
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.ci-meaning .highlight {
  color: var(--accent);
  font-weight: 700;
}

.ci-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 2rem;
  border-radius: var(--radius-full);
  opacity: 0.5;
}

.ci-philosophy {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  word-break: keep-all;
}



/* Responsive Adjustments for Company Page */
@media (max-width: 1024px) {
  .greeting-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .greeting-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .greeting-name-tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    width: 80%;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--accent);
  }

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

  .career-timeline {
    padding-left: 1.5rem;
    border-left: 2px solid var(--border);
  }
}

@media (max-width: 768px) {
  .greeting-header h2 {
    font-size: 2rem;
  }

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

  .capability-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .info-row {
    flex-direction: column;
  }

  .info-th {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 1.25rem;
  }


}

/* ============================================
   R&D PAGE STYLES
   ============================================ */

/* R&D Team Section */
.rd-team-section {
  background: var(--bg);
  padding: var(--spacing-xl) 0;
}

.rd-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.rd-team-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rd-team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-glow);
}

.card-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rd-team-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rd-team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-subtitle {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.team-skills-list {
  margin-top: auto;
  list-style: none;
  padding: 0;
}

.team-skills-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.team-skills-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Core Tech Section */
.core-tech-section {
  background: var(--bg-soft);
  padding: var(--spacing-xl) 0;
}

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

.core-tech-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.core-tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tech-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.core-tech-card:hover .tech-number {
  color: var(--accent-glow);
}

.tech-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tech-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Roadmap Section (Timeline) */
.roadmap-section {
  background: var(--bg);
  padding: var(--spacing-xl) 0;
}

.roadmap-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

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

.roadmap-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
  padding-right: 3rem;
}

.roadmap-item:nth-child(even) {
  margin-left: auto;
  padding-right: 0;
  padding-left: 3rem;
}

.roadmap-marker {
  position: absolute;
  top: 0;
  right: -11px;
  width: 22px;
  height: 22px;
  background: white;
  border: 4px solid var(--accent);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px white;
}

.roadmap-item:nth-child(even) .roadmap-marker {
  right: auto;
  left: -11px;
}

.roadmap-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition-smooth);
}

.roadmap-item:hover .roadmap-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.roadmap-year {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.roadmap-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.roadmap-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.roadmap-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 2px;
}

/* Responsive Roadmap */
@media (max-width: 768px) {
  .roadmap-timeline::before {
    left: 20px;
  }

  .roadmap-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 0;
  }

  .roadmap-item:nth-child(even) {
    padding-left: 3rem;
  }

  .roadmap-marker {
    left: 9px;
    right: auto;
  }

  .roadmap-item:nth-child(even) .roadmap-marker {
    left: 9px;
  }
}


/* ============================================
   IR PAGE STYLES
   ============================================ */

/* Market Opportunity */
.market-section {
  background: var(--bg);
  padding: var(--spacing-xl) 0;
}

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

.metric-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.metric-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.metric-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.metric-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.metric-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Competitive Advantage */
.advantage-section {
  background: var(--bg-soft);
  padding: var(--spacing-xl) 0;
}

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

.advantage-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.card-header {
  background: var(--primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.card-header .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-header .icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.card-header h3 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}

.card-body {
  padding: 2.5rem;
}

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

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Strategy Section */
.strategy-section {
  background: var(--bg);
  padding: var(--spacing-xl) 0;
}

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

.col-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
}

/* Business Model Cards */
.bm-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bm-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: var(--transition-fast);
}

.bm-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.bm-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.bm-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.bm-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.bm-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* IPO Roadmap */
.ipo-roadmap {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-light);
}

.ipo-step {
  position: relative;
  margin-bottom: 3rem;
}

.ipo-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  position: absolute;
  left: -2.9rem;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 0 0 4px white;
}

.step-content {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.ipo-step:hover .step-content {
  background: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.step-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

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

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

.team-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-primary);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--text-primary);
  transform: scaleX(1);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.team-card:hover::before {
  transform: scaleX(0);
}

.team-role {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.team-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
 
 
/* Modern Business Area Cards */
.business-areas-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .business-areas-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.business-area-card-modern {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.business-area-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.business-area-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0%, #60A5FA 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.business-area-card-modern:hover::before {
  transform: scaleX(1);
}

.card-header-modern {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-number-modern {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
  flex-shrink: 0;
}

.card-header-modern h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

.card-subtitle-modern {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
}

.card-features-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-features-modern li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-features-modern .feature-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.card-features-modern .feature-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  display: block;
  line-height: 1.6;
}
