/* === VARIABLES GLOBALES === */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #ff0000;
  --color-gray: #808080;
  --color-gray-light: #e0e0e0;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --font-primary: 'Montserrat', 'Bebas Neue', sans-serif;
  --font-secondary: 'Open Sans', 'Lato', sans-serif;
}

/* === RESET Y CONFIGURACIÓN BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

p, li, span {
  font-family: var(--font-secondary);
  font-weight: 400;
}

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

ul {
  list-style: none;
}

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

/* === CONTENEDORES === */
.container,
.container-pro {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HERO SECTION === */
.hero-ultra-modern {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content-ultra {
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
  max-width: 800px;
  z-index: 2;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title-ultra {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle-ultra {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary-ultra,
.btn-secondary-ultra {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary-ultra {
  background: var(--color-red);
  color: var(--color-white);
}
.btn-primary-ultra:hover {
  background: var(--color-black);
  color: var(--color-red);
}

.btn-secondary-ultra {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.btn-secondary-ultra:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Floating Stats */
.floating-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  min-width: 180px;
}

.stat-icon i {
  font-size: 1.8rem;
  color: var(--color-red);
  margin-bottom: 8px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-red);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: visible;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  font-size: 0.9rem;
  opacity: 0.8;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--color-white);
  border-radius: 16px;
  position: relative;
  margin-bottom: 8px;
}

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

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* === SECCIÓN NUESTRA HISTORIA === */
.our-story-ultra {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
}

.story-header-ultra {
  text-align: center;
  margin-bottom: 60px;
}

.story-badge-floating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.story-title-ultra {
  font-size: 2.8rem;
  color: var(--color-black);
}

.title-word {
  display: inline-block;
}

.highlight-word {
  color: var(--color-red);
}

.story-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-paragraph {
  margin-bottom: 16px;
  color: var(--color-black);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-black);
}

.feature-icon i {
  color: var(--color-red);
  font-size: 1.2rem;
}

.story-image-container {
  position: relative;
}

.image-overlay-interactive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--border-radius-lg);
}

.story-image-container:hover .image-overlay-interactive {
  opacity: 1;
}

.play-button-ultra {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  margin-bottom: 12px;
}

.floating-stats-cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.floating-card {
  background: var(--color-white);
  padding: 16px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  text-align: center;
  flex: 1;
}

.card-icon i {
  font-size: 1.8rem;
  color: var(--color-red);
  margin-bottom: 8px;
}

.card-number {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-black);
}

.card-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gray);
  text-transform: uppercase;
}

/* === QUIÉNES SOMOS === */
.who-we-are-ultra {
  padding: 100px 0;
  background: var(--color-white);
}

.who-header-ultra {
  text-align: center;
  margin-bottom: 60px;
}

.who-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.who-title-ultra {
  font-size: 2.2rem;
  color: var(--color-black);
}

.who-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.facts-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-black);
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-black);
}

.fact-item i {
  color: var(--color-red);
}

.video-container-ultra {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.who-video {
  width: 100%;
  display: block;
}

/* === MISIÓN Y VISIÓN === */
.mission-vision-pro {
  padding: 100px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.container-pro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mv-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.mv-card-pro {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
}

.mv-header {
  text-align: center;
  margin-bottom: 24px;
}

.mv-icon-pro i {
  font-size: 2.5rem;
  color: var(--color-red);
  margin-bottom: 16px;
}

.mv-title {
  font-size: 2rem;
  color: var(--color-white);
}

.mv-line {
  width: 60px;
  height: 3px;
  background: var(--color-red);
  margin: 12px auto;
}

.mv-content p {
  margin-bottom: 20px;
  color: var(--color-gray);
}

.mv-list li {
  margin-bottom: 10px;
  color: var(--color-gray);
}

.mv-list i {
  color: var(--color-red);
  margin-right: 8px;
}

.mv-divider-vertical {
  width: 2px;
  background: var(--color-gray);
  align-self: stretch;
}

/* === VALORES CORPORATIVOS === */
.values-section-pro {
  padding: 100px 0;
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-black);
  margin-bottom: 16px;
}

.section-underline {
  width: 80px;
  height: 4px;
  background: var(--color-red);
  margin: 0 auto 20px;
}

.section-description {
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto;
}

.values-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card-pro {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.value-card-pro:hover {
  box-shadow: var(--box-shadow);
}

.value-icon-pro i {
  font-size: 2rem;
  color: var(--color-red);
  margin-bottom: 16px;
}

.value-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-black);
}

.value-description {
  color: var(--color-gray);
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  background: rgba(255, 0, 0, 0.1);
  color: var(--color-red);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* === HISTORIA EMPRESARIAL === */
.history-section-pro {
  padding: 100px 0;
  background: var(--color-white);
}

.history-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.timeline-item {
  display: flex;
  margin-bottom: 30px;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--color-red);
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  top: 8px;
}

.timeline-content h4 {
  margin-bottom: 8px;
  color: var(--color-black);
}

.feature-box-pro {
  background: var(--color-black);
  color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
}

.feature-icon-large i {
  font-size: 2.5rem;
  color: var(--color-red);
  margin-bottom: 20px;
}

.feature-list-pro .feature-item-pro {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.feature-list-pro i {
  color: var(--color-red);
}

/* === ESTADÍSTICAS INTERACTIVAS === */
.interactive-stats-ultra {
  padding: 100px 0;
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.stats-background-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.animated-shapes .shape {
  position: absolute;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 50%;
}

.shape-1 { width: 200px; height: 200px; top: 10%; left: 5%; }
.shape-2 { width: 150px; height: 150px; bottom: 15%; right: 10%; }
.shape-3 { width: 100px; height: 100px; top: 40%; right: 20%; }
.shape-4 { width: 120px; height: 120px; bottom: 30%; left: 15%; }

.stats-header-ultra {
  text-align: center;
  margin-bottom: 60px;
}

.stats-badge-floating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 16px;
}

.stats-grid-ultra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-card-ultra {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.stat-icon-ultra i {
  font-size: 2rem;
  color: var(--color-red);
  margin-bottom: 16px;
}

.stat-number-animated {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.stat-label-ultra {
  display: block;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.stat-progress {
  margin-top: 16px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--color-red);
  width: 0;
  transition: width 1.5s ease;
}

.experience-section-ultra {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.experience-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.experience-description {
  color: var(--color-gray);
  margin-bottom: 30px;
}

.experience-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-ultra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gray);
}

.feature-ultra i {
  font-size: 1.5rem;
  color: var(--color-red);
}

.btn-experience-ultra {
  background: var(--color-red);
  color: var(--color-white);
  padding: 12px 32px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-experience-ultra:hover {
  background: var(--color-white);
  color: var(--color-red);
}

/* === VENTAJAS COMPETITIVAS === */
.advantages-section-pro {
  padding: 100px 0;
  background: var(--color-white);
}

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

.advantage-card {
  position: relative;
  padding: 30px 30px 30px 70px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.advantage-card:hover {
  box-shadow: var(--box-shadow);
}

.advantage-number {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-red);
}

.advantage-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.8rem;
  color: var(--color-red);
}

.advantage-content h4 {
  margin-bottom: 10px;
  color: var(--color-black);
}

.advantage-content p {
  color: var(--color-gray);
}

/* === CTA FINAL === */
.cta-section-pro {
  padding: 100px 0;
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cta-content-pro {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-description {
  color: var(--color-gray);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.cta-button-primary {
  background: var(--color-red);
  color: var(--color-white);
}
.cta-button-primary:hover {
  background: var(--color-white);
  color: var(--color-red);
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.cta-button-secondary:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* === INNOVACIÓN === */
.innovation-section-pro {
  padding: 100px 0;
  background: var(--color-white);
}

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

.innovation-card {
  background: var(--color-white);
  padding: 30px;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.innovation-card:hover {
  box-shadow: var(--box-shadow);
}

.innovation-icon {
  font-size: 2.2rem;
  color: var(--color-red);
  margin-bottom: 20px;
}

.innovation-content h4 {
  margin-bottom: 12px;
  color: var(--color-black);
}

.innovation-content p {
  color: var(--color-gray);
  margin-bottom: 16px;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.in-development {
  background: rgba(255, 0, 0, 0.1);
  color: var(--color-red);
}

.status-badge.planned {
  background: rgba(128, 128, 128, 0.1);
  color: var(--color-gray);
}

.status-badge.active {
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-black);
}

/* === MENSAJE FINAL === */
.final-message-section-pro {
  padding: 100px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.final-message-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 20px;
}

.final-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.final-subtitle {
  font-size: 1.4rem;
  color: var(--color-red);
  margin-bottom: 24px;
}

.final-description p {
  color: var(--color-gray);
  margin-bottom: 30px;
}

.final-values {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.final-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gray);
}

.final-value i {
  font-size: 1.8rem;
  color: var(--color-red);
}

/* === TEAM CAROUSEL SECTION === */
.team-section-pro {
  padding: 100px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.team-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 60px;
}

.team-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.team-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.team-member-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-member-card.active {
  opacity: 1;
  transform: translateX(0);
}

.team-member-image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 4px solid var(--color-red);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.team-member-card.active .team-member-image img {
  filter: grayscale(0%);
}

.team-member-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.team-member-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-red);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.team-member-description {
  font-size: 1rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(51, 51, 51, 0.8);
  border: 2px solid var(--color-gray);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

/* Pagination Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.dot.active {
  background: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero-title-ultra { font-size: 3rem; }
  .story-content-grid,
  .who-content-grid,
  .history-layout,
  .mv-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-divider-vertical { display: none; }
  .floating-stats,
  .floating-stats-cards,
  .experience-features,
  .final-values {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title-ultra { font-size: 2.2rem; }
  .hero-subtitle-ultra { font-size: 1.1rem; }
  .hero-cta-buttons { flex-direction: column; }
  .stats-grid-ultra { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .team-carousel-container {
    padding: 40px 50px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .team-member-image { width: 180px; height: 180px; }
  .team-member-name {
    font-size: 1.5rem;
  }
  .team-member-role {
    font-size: 1rem;
  }
  .team-member-description {
    font-size: 0.9rem;
  }
}

@media (min-width: 1200px) {
  .team-member-image { width: 300px; height: 300px; }
}
