/* =========================================================
   CLOSE-UP THEME
   Premium, Cinematic, Editorial Styling
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* CLOSE-UP Color Palette */
  --cu-navy: #000000;
  --cu-lavender: #FFFFFF;
  --cu-turquoise: #FF1E27;
  --cu-sand: #FFFFFF;
  --cu-white: #FFFFFF;
  --cu-navy-light: #0A0A0A;
  
  /* Typography */
  --cu-font-serif: 'Syne', sans-serif;
  --cu-font-sans: 'Inter', system-ui, sans-serif;
  
  /* Utilities */
  --cu-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --cu-radius: 12px;
  --cu-gutter: 2rem;
}

body.closeup-theme {
  background-color: var(--cu-navy);
  color: var(--cu-white);
  font-family: var(--cu-font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.closeup-theme h1, 
.closeup-theme h2, 
.closeup-theme h3, 
.closeup-theme h4, 
.closeup-theme .serif {
  font-family: var(--cu-font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cu-heading-xl {
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cu-heading-lg {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.cu-heading-md {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cu-neon-red-text {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF1E27 50%, #B30000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF1E27; /* Fallback */
  text-shadow: 0 0 20px rgba(255, 30, 39, 0.4), 0 0 40px rgba(255, 30, 39, 0.2);
}

.cu-subhead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--cu-lavender);
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 2rem;
}

/* =========================================================
   GALLERY & CAROUSEL
   ========================================================= */
.cu-gallery-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.cu-gallery-main {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: var(--cu-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cu-gallery-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cu-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.cu-carousel::-webkit-scrollbar {
  height: 6px;
}
.cu-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.cu-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.cu-carousel-item {
  flex: 0 0 220px;
  aspect-ratio: 16/9;
  border-radius: var(--cu-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s var(--cu-ease), border-color 0.3s var(--cu-ease);
  border: 2px solid transparent;
  background-color: #111;
}

.cu-carousel-item:hover {
  transform: translateY(-5px);
}

.cu-carousel-item.active {
  border-color: var(--cu-turquoise);
}

.cu-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s var(--cu-ease);
}

.cu-carousel-item:hover .cu-carousel-img,
.cu-carousel-item.active .cu-carousel-img {
  opacity: 1;
}

.cu-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cu-white);
  opacity: 0.8;
  transition: all 0.3s var(--cu-ease);
}

.cu-carousel-item:hover .cu-play-icon {
  background: var(--cu-turquoise);
  color: var(--cu-navy);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.cu-carousel-item.active .cu-play-icon {
  display: none;
}


/* =========================================================
   COMPONENTS
   ========================================================= */
.cu-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--cu-gutter);
}

/* Buttons */
.cu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--cu-ease);
  cursor: pointer;
  border: none;
}

.cu-btn-primary {
  background-color: var(--cu-turquoise);
  color: var(--cu-white);
}

.cu-btn-primary:hover {
  background-color: var(--cu-white);
  color: var(--cu-turquoise);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 30, 39, 0.4);
}

.cu-btn-secondary {
  background-color: transparent;
  color: var(--cu-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cu-btn-secondary:hover {
  border-color: var(--cu-lavender);
  color: var(--cu-lavender);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.cu-section {
  padding: 8rem 0;
  position: relative;
}

/* 01. Hero */
.cu-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
}

.cu-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #000;
  z-index: -2;
}

.cu-hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%) scale(1.35);
  pointer-events: none;
  filter: contrast(1.15) brightness(0.9);
}

.cu-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(15, 22, 48, 0.9) 0%, rgba(15, 22, 48, 0.6) 50%, rgba(15, 22, 48, 0.2) 100%),
    linear-gradient(to bottom, transparent 60%, #000 100%);
  z-index: -1;
}

.cu-hero-content {
  max-width: 800px;
}

.cu-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* 02. El Problema */
.cu-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.cu-problem-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--cu-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cu-problem-card h3 {
  color: var(--cu-lavender);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 03. Quién está detrás / Fundador */
.cu-founder-fullscreen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cu-founder-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cu-founder-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.1) translateX(2%); /* Push face further right */
}

.cu-founder-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: #111;
}

@media (min-width: 901px) {
  .cu-founder-content {
    max-width: 45%; /* Keep strictly on the left half */
  }
}

.cu-founder-content .cu-heading-lg {
  color: #000;
  margin-bottom: 0.5rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.cu-founder-subtitle {
  font-family: var(--cu-font-sans);
  font-weight: 500;
  font-size: 1.2rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.cu-founder-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 3rem;
  font-weight: 400;
}

.cu-founder-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cu-btn-dark {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.cu-btn-dark:hover {
  background-color: transparent;
  color: #000;
}

.cu-btn-dark-outline {
  background-color: transparent;
  color: #000;
  border: 1px solid rgba(0,0,0,0.3);
}
.cu-btn-dark-outline:hover {
  border-color: #000;
  background-color: rgba(0,0,0,0.05);
}

/* 04. La Rutina */
.cu-routine-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.cu-routine-step {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  background: var(--cu-navy-light);
  border-radius: var(--cu-radius);
}

.cu-step-number {
  font-family: var(--cu-font-serif);
  font-size: 3rem;
  color: var(--cu-turquoise);
  opacity: 0.5;
  line-height: 1;
}

/* 05. Planes y Precios (CRO Redesign) */
.cu-pricing-section {
  background-color: #000;
  color: #fff;
  padding: 8rem 0;
}

.cu-pricing-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 6rem;
  align-items: stretch;
}

.cu-price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.cu-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cu-price-card-header {
  margin-bottom: 2rem;
}

.cu-price-title {
  font-size: 1.8rem;
  color: var(--cu-white);
  margin-bottom: 0.5rem;
  font-family: var(--cu-font-serif);
}

.cu-price-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.cu-price-card.featured {
  background: linear-gradient(180deg, rgba(20,20,30,1) 0%, rgba(10,10,15,1) 100%);
  border: 1px solid rgba(214, 200, 255, 0.2);
  box-shadow: 0 0 40px rgba(214, 200, 255, 0.05);
}

.cu-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #D6C8FF;
  color: #000000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  z-index: 2;
}

.cu-badge-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
  background: var(--cu-lavender);
  filter: blur(40px);
  opacity: 0.3;
  z-index: 0;
}

/* Selector Dinámico */
.cu-scene-selector {
  margin-bottom: 2rem;
}

.cu-scene-selector label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.cu-pill-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 4px;
}

.cu-pill {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  border-radius: 26px;
  cursor: pointer;
  font-family: var(--cu-font-sans);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cu-pill:hover {
  color: #fff;
}

.cu-pill.active {
  background: var(--cu-white);
  color: var(--cu-navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cu-price-amount-wrapper {
  margin-bottom: 2rem;
}

.cu-price-amount {
  font-family: var(--cu-font-serif);
  font-size: 4rem;
  color: var(--cu-white);
  line-height: 1;
}

.cu-price-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.cu-finance-tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 4px 12px;
  background: rgba(214, 200, 255, 0.1);
  color: var(--cu-lavender);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.cu-price-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.cu-price-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cu-price-features li:last-child {
  border-bottom: none;
}

.cu-icon-check::before {
  content: '✔';
  color: var(--cu-white);
  font-size: 0.9rem;
}

.premium-list .cu-icon-check::before {
  color: var(--cu-lavender);
}

.premium-list li {
  color: var(--cu-white);
}

/* Servicios Adicionales */
.cu-services-section {
  margin-bottom: 6rem;
}

.cu-services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cu-services-header p {
  color: rgba(255, 255, 255, 0.6);
}

.cu-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cu-service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: background 0.3s ease;
}

.cu-service-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cu-service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--cu-white);
}

.cu-service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Tabla Comparativa */
.cu-comparison-section {
  margin-top: 4rem;
}

.cu-table-wrapper {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
}

.cu-comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: left;
}

.cu-comparison-table th,
.cu-comparison-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cu-comparison-table th {
  font-family: var(--cu-font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.cu-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.cu-comparison-table td {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.premium-col {
  background: rgba(214, 200, 255, 0.02);
}

.cu-comparison-table th.premium-col {
  color: var(--cu-lavender);
  font-weight: 600;
}

.cu-comparison-table td.premium-col {
  font-weight: 500;
}

span.check {
  color: rgba(255, 255, 255, 0.5);
}

span.check.highlight {
  color: var(--cu-lavender);
  font-weight: 700;
}

span.cross {
  color: rgba(255, 255, 255, 0.2);
}

/* 06. Sueño Compartido */
.cu-dream-img {
  background-image: url('../images/sueno-compartido-monitor.jpg');
  background-size: cover;
  background-position: center;
}
.cu-dream {
  background: var(--cu-navy-light);
  border-radius: var(--cu-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cu-dream-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cu-dream-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-color: #000;
}

.cu-dream-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* 07. Zona de Improvisación */
.cu-improv {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/entrena-tu-verdad-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed; /* Optional: parallax effect */
  color: var(--cu-white);
  text-align: center;
  padding-top: 12rem;
}

.cu-improv .cu-heading-xl,
.cu-improv .cu-heading-lg {
  color: var(--cu-white);
}

.cu-improv-text {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* 08. Ecosistema */
.cu-ecosystem {
  text-align: center;
  overflow: hidden;
}

.cu-orbit-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-orbit-center {
  width: 120px;
  height: 120px;
  background: var(--cu-turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cu-navy);
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 10;
  box-shadow: 0 0 40px rgba(57, 224, 208, 0.4);
}

.cu-orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

.cu-orbit-item {
  position: absolute;
  background: var(--cu-navy-light);
  border: 1px solid var(--cu-lavender);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: var(--cu-white);
  font-weight: 500;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.cu-orbit-item:nth-child(1) { top: 0; left: 50%; }
.cu-orbit-item:nth-child(2) { top: 30%; left: 100%; }
.cu-orbit-item:nth-child(3) { top: 80%; left: 85%; }
.cu-orbit-item:nth-child(4) { top: 80%; left: 15%; }
.cu-orbit-item:nth-child(5) { top: 30%; left: 0; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cu-orbit-ring .cu-orbit-item {
  animation: spin-reverse 40s linear infinite;
}

@keyframes spin-reverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* 09. CTA Final */
.cu-final-cta {
  text-align: center;
  padding: 10rem 0;
  background: linear-gradient(to top, var(--cu-navy-light), var(--cu-navy));
}

.cu-final-btn {
  font-size: 1.5rem;
  padding: 1.5rem 4rem;
  margin-top: 3rem;
}

.cu-whatsapp {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--cu-lavender);
}

/* Footer */
.cu-footer {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cu-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .cu-about, .cu-dream {
    grid-template-columns: 1fr;
  }
  
  .cu-dream-video {
    min-height: 300px;
    order: -1;
  }
  
  .cu-orbit-container {
    width: 300px;
    height: 300px;
  }
  
  .cu-orbit-item {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* 11. Showreel */
.cu-showreel-section {
  background: var(--cu-navy);
  padding: 0;
  overflow: hidden;
}

.cu-showreel-container {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.cu-showreel-wrapper {
  position: relative;
  width: 100vw;
  height: 45vh; /* Horizontal Banner */
  min-height: 350px;
  max-height: 500px;
  margin: 0 auto;

  opacity: 0;
  transform: scale(0.97);
  filter: blur(10px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, filter 1.5s ease-out;
  border-radius: 0;
}

.cu-showreel-wrapper.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.cu-showreel-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(144, 212, 230, 0.15) 0%, rgba(15, 22, 48, 0) 70%);
  filter: blur(40px);
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

.cu-showreel-video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.cu-showreel-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cu-showreel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 48, 0.1);
  z-index: 2;
  transition: background-color 0.8s ease;
  pointer-events: auto;
}

.cu-showreel-video:hover .cu-showreel-overlay {
  background: rgba(15, 22, 48, 0.02);
}

.cu-showreel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
  width: 90%;
}

.cu-showreel-text h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--cu-white);
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.5);
  margin: 0;
}

/* =========================================================
   04. EL ECOSISTEMA (Mapa Interactivo)
   ========================================================= */
.cu-orbital-system {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

.cu-orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cu-turquoise) 0%, rgba(64, 224, 208, 0.5) 100%);
  box-shadow: 0 0 50px rgba(64, 224, 208, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cu-orbital-center:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 40px rgba(64, 224, 208, 0.6);
}

.cu-orbital-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cu-orbital-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 50%;
  z-index: 10;
}

.cu-orbital-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  --radius: 220px;
  transform: rotate(var(--angle)) translate(var(--radius));
}

.cu-orbital-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 44px;
  margin-top: -22px;
  margin-left: -75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cu-white);
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  transform: rotate(calc(-1 * var(--angle)));
  cursor: default;
}

.cu-eco-grid-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.eco-info-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
}

.eco-info-box h4 {
  color: var(--cu-white);
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.eco-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.eco-info-box ul li {
  margin-bottom: 0.5rem;
}
.eco-info-box ul li::before {
  content: "✦";
  color: var(--cu-turquoise);
  margin-right: 8px;
}

.cu-eco-destinations {
  margin-top: 5rem;
}

.cu-eco-dest-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(64, 224, 208, 0.5), transparent);
  margin: 0 auto 2rem auto;
}

.cu-eco-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.cu-eco-dest-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cu-eco-dest-card:hover {
  border-color: rgba(64, 224, 208, 0.3);
  color: var(--cu-white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cu-orbital-system {
    width: 320px;
    height: 320px;
  }
  .cu-orbital-wrapper {
    --radius: 140px;
  }
  .cu-orbital-center {
    width: 100px;
    height: 100px;
  }
  .cu-orbital-item {
    width: 110px;
    height: 34px;
    font-size: 0.65rem;
    margin-left: -55px;
    margin-top: -17px;
  }
  .cu-eco-grid-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cu-eco-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cu-eco-dest-grid {
    grid-template-columns: 1fr;
  }
}

