.contractions-section {
  background: var(--warm-soft);
  padding: var(--space-12) var(--space-4);
  overflow: hidden;
  position: relative;
}

@media (min-width: 1100px) {
  .contractions-section {
    padding: var(--space-16) 80px;
  }
}

.contractions-section__blob {
  position: absolute;
  border-radius: 50%;
  background: var(--warm);
  pointer-events: none;
}

.contractions-section__blob--1 {
  width: 480px;
  height: 480px;
  top: -60px;
  left: -140px;
  opacity: 0.1;
}

.contractions-section__blob--2 {
  width: 200px;
  height: 200px;
  top: 280px;
  left: 140px;
  opacity: 0.06;
}

.contractions-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .contractions-section__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contractions-section__visual {
  flex-shrink: 0;
  order: -1;
}

.contractions-section .mockup-phone__frame {
  animation: mockup-float 4s ease-in-out infinite;
  animation-delay: 0.6s;
}

@media (min-width: 1100px) {
  .contractions-section__visual {
    order: 0;
  }
}

.contractions-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 560px;
}

@media (min-width: 1100px) {
  .contractions-section__text {
    order: -1;
  }
}

.contractions-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .contractions-section__title {
    font-size: 3rem;
  }
}

.contractions-section__title span {
  color: var(--warm);
}

.contractions-section__body {
  font-size: var(--text-body-lg);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
}

.contractions-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.contractions-feature {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contractions-feature__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-1);
}

.contractions-feature__sub {
  font-size: var(--text-sm);
  color: var(--text-3);
}

/* Phone screen: ContractionScreen */
.pc-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F7EDE9 0%, #F2DBD4 100%);
  padding: 20px 16px 0;
  display: flex;
  flex-direction: column;
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pc-back {
  font-size: 18px;
  color: var(--text-2);
}

.pc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
}

.pc-timer {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  color: var(--warm);
  text-align: center;
  line-height: 1;
  margin: 10px 0 4px;
}

.pc-timer-label {
  font-size: 11px;
  color: var(--warm-strong);
  text-align: center;
  margin-bottom: 14px;
}

.pc-btn-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 176px;
  margin-bottom: 8px;
}

.pc-ring {
  position: absolute;
  border-radius: 50%;
  background: var(--warm);
  animation: pc-breathe 2s ease-in-out infinite;
}

.pc-ring--1 { width: 168px; height: 168px; opacity: 0.10; animation-delay: 0s; }
.pc-ring--2 { width: 184px; height: 184px; opacity: 0.06; animation-delay: 0.45s; }
.pc-ring--3 { width: 200px; height: 200px; opacity: 0.04; animation-delay: 0.9s; }

@keyframes pc-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.pc-btn {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(232, 146, 127, 0.5);
}

.pc-btn-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.pc-btn-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
}

.pc-divider {
  height: 1px;
  background: rgba(200, 150, 140, 0.3);
  margin: 0 4px 12px;
}

.pc-stats {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-bottom: 12px;
}

.pc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-stat-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
}

.pc-stat-label {
  font-size: 10px;
  color: var(--text-3);
}

.pc-alert {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.pc-alert svg {
  width: 13px;
  height: 13px;
  color: var(--warm);
  flex-shrink: 0;
}

.pc-alert span {
  font-size: 10px;
  color: var(--text-2);
}

.pc-history {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.pc-history-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 4px;
  border-bottom: 1px solid rgba(200,150,140,0.2);
}

.pc-history-time {
  font-size: 11px;
  color: var(--text-2);
}

.pc-history-dur {
  font-size: 11px;
  color: var(--text-3);
}

@media (max-width: 767px) {
  .contractions-section { padding: var(--space-6) var(--space-4); }
  .contractions-section__inner { gap: var(--space-8); }
}
