/* ══════════════════════════════════════
   coming-soon.css
   Próximamente — Full-Screen Premium
   ══════════════════════════════════════ */

/* ══════════════════════════════
   SECTION — Full viewport
══════════════════════════════ */
.cs-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ══════════════════════════════
   BACKGROUND
══════════════════════════════ */
.cs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2d6b 0%, #0ea5d8 100%);
}

/* Decorative medical elements */
.cs-bg-deco {
  position: absolute;
  pointer-events: none;
  opacity: .08;
}

.cs-bg-deco--cross1 {
  top: 12%;
  left: 8%;
  width: 40px;
  height: 40px;
  color: #fff;
  animation: csDecoFloat 8s ease-in-out infinite;
}

.cs-bg-deco--cross2 {
  bottom: 18%;
  right: 35%;
  width: 28px;
  height: 28px;
  color: #7dd3fc;
  animation: csDecoFloat 10s ease-in-out infinite 2s;
}

.cs-bg-deco--ring1 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .15);
  top: 8%;
  right: 12%;
  animation: csDecoFloat 12s ease-in-out infinite 1s;
}

.cs-bg-deco--ring2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.5px solid rgba(125, 211, 252, .12);
  bottom: 22%;
  left: 5%;
  animation: csDecoFloat 9s ease-in-out infinite 3s;
}

.cs-bg-deco--ring3 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .1);
  top: 45%;
  right: 42%;
  animation: csDecoFloat 11s ease-in-out infinite .5s;
}

.cs-bg-deco--pulse {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 50px;
  color: rgba(125, 211, 252, .15);
  animation: csDecoFloat 14s ease-in-out infinite 2s;
}

@keyframes csDecoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ══════════════════════════════
   CONTENT
══════════════════════════════ */
.cs-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 48px;
}

.cs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ══════════════════════════════
   TEXT
══════════════════════════════ */
.cs-badge-wrap {
  margin-bottom: 24px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #7dd3fc;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cs-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dd3fc;
  animation: csBadgePulse 2s ease-in-out infinite;
}

@keyframes csBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

.cs-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cs-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.cs-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  max-width: 460px;
  margin-bottom: 20px;
}

/* Status indicator */
.cs-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #7dd3fc;
  background: rgba(125, 211, 252, .08);
  border: 1px solid rgba(125, 211, 252, .15);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 36px;
}

.cs-status-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.cs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
}

.cs-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .85);
  border: 1.5px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cs-btn--ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.cs-btn--red {
  background: #e02020;
  color: #fff;
  border: 1.5px solid #e02020;
}

.cs-btn--red:hover {
  background: #c01010;
  border-color: #c01010;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 32, 32, .35);
}

/* ══════════════════════════════
   VISUAL — Right side
══════════════════════════════ */
.cs-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs-image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 32px 32px 32px 80px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
}

.cs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-image-fallback {
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-image-fallback::after {
  content: '';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
}

/* Floating medical cross near image */
.cs-float-cross {
  position: absolute;
  top: -12px;
  right: 10%;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: csFloatCross 6s ease-in-out infinite;
}

.cs-float-cross svg {
  width: 22px;
  height: 22px;
  stroke: #7dd3fc;
  fill: none;
  stroke-width: 2;
}

@keyframes csFloatCross {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}

/* ══════════════════════════════
   RESPONSIVE — Tablet
══════════════════════════════ */
@media (max-width: 1024px) {
  .cs-content {
    padding: 64px 32px;
  }

  .cs-grid {
    gap: 48px;
  }

  .cs-image-wrap {
    max-width: 340px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — Mobile
══════════════════════════════ */
@media (max-width: 768px) {
  .cs-section {
    min-height: auto;
    padding: 0;
  }

  .cs-content {
    padding: 48px 20px 56px;
  }

  .cs-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .cs-visual {
    order: -1;
  }

  .cs-image-wrap {
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    margin: 0 auto;
  }

  .cs-float-cross {
    top: -8px;
    right: calc(50% - 140px);
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .cs-float-cross svg {
    width: 18px;
    height: 18px;
  }

  .cs-desc {
    max-width: 100%;
  }

  .cs-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cs-btn {
    justify-content: center;
    width: 100%;
  }

  .cs-badge-wrap {
    display: flex;
    justify-content: center;
  }

  .cs-status {
    display: inline-flex;
  }

  .cs-bg-deco--ring1 {
    width: 100px;
    height: 100px;
  }

  .cs-bg-deco--pulse {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .cs-content {
    padding: 40px 16px 48px;
  }

  .cs-image-wrap {
    max-width: 220px;
  }
}

/* ══════════════════════════════
   REDUCED MOTION
══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .cs-badge::before,
  .cs-bg-deco,
  .cs-float-cross {
    animation: none;
  }
}
