:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #14b8a6;
  --accent: #f59e0b;
  --green: #22c55e;
  --red: #dc2626;
  --bg: #f8fafc;
  --bg-section: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --error: #ef4444;
  
  --section-padding: 40px 24px;
  --section-margin: 24px auto;
  --section-max-width: 480px;
  --border-radius: 20px;
  --card-radius: 16px;
  --card-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.combined-body {
  font-family: "Noto Sans KR", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ========== 통일된 섹션 시스템 ========== */
.section-unified {
  max-width: var(--section-max-width);
  margin: var(--section-margin);
  padding: var(--section-padding);
  background: var(--bg-section);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.section-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.section-content {
  margin: 0;
}

.urgency-section {
  background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
  border: 2px solid var(--red);
}

/* ========== 손실 금액 계산기 ========== */
.loss-calculator {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 2px solid var(--red);
}

.loss-display {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--card-radius);
  margin-bottom: 20px;
}

.loss-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.loss-amount {
  margin: 12px 0;
}

.loss-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
}

.loss-sublabel {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 8px;
}

.loss-comparison {
  display: grid;
  gap: 12px;
}

.loss-comp-item {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.loss-comp-item.delay {
  background: #fff;
  border: 2px solid var(--red);
}

.loss-comp-item.action {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid var(--green);
}

.loss-comp-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.loss-comp-value {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

/* ========== 지금 vs 내일 비교 ========== */
.now-vs-later {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid var(--accent);
}

.comparison-cards {
  display: grid;
  gap: 16px;
}

.comp-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comp-card.now {
  border: 3px solid var(--green);
}

.comp-card.later {
  border: 3px solid var(--red);
  opacity: 0.8;
}

.comp-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.comp-badge.now {
  background: var(--green);
  color: #fff;
}

.comp-badge.later {
  background: var(--red);
  color: #fff;
}

.comp-benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.benefit-item {
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
}

.comp-total {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}

.comp-total.success {
  background: #dcfce7;
  color: #15803d;
}

.comp-total.danger {
  background: #fee2e2;
  color: #991b1b;
}

/* ========== 스티키 상단 바 (CPA 전문가 권장) ========== */
.urgency-top-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #DC2626, #991B1B);
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.urgency-top-content {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.urgency-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.urgency-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.urgency-text strong {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.urgency-detail {
  font-size: 11px;
  font-weight: 600;
  color: #fecaca;
  line-height: 1.2;
}

.slots-mega {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 12px;
  border: 2px solid #fbbf24;
  flex-shrink: 0;
}

.slots-label {
  font-size: 10px;
  font-weight: 700;
  color: #fecaca;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.slots-number {
  font-size: 36px;
  font-weight: 900;
  color: #fde047;
  line-height: 1;
  text-shadow: 0 0 10px rgba(253, 224, 71, 0.8);
  font-family: 'Arial Black', sans-serif;
}

/* ========== 히어로 섹션 ========== */
.hero-combined {
  padding: 48px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  position: relative;
}

/* ========== 히어로 섹션 (카피라이팅 강화) ========== */

/* 신뢰 배지 */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-emoji {
  font-size: 16px;
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* 타이틀 & 설명 */
.hero-combined h1 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
}

.hero-combined p {
  margin: 0 0 32px;
  font-size: 16px;
  opacity: 0.95;
}

/* 핵심 혜택 */
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto 24px;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.benefit-text strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.benefit-text span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* 혜택 메시지 */
.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid #22c55e;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.urgency-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.hero-urgency p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #14532d;
  line-height: 1.5;
}

.hero-urgency strong {
  font-size: 18px;
  font-weight: 900;
  color: #15803d;
}

/* 타이머 관련 CSS 제거됨 (CPA 전문가 권장) */

/* ========== 비교 테이블 ========== */
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-section);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.1);
}

.comp-table thead th {
  padding: 16px 12px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.comp-table thead .before {
  background: #fee2e2;
  color: var(--red);
}

.comp-table thead .after {
  background: #dcfce7;
  color: var(--green);
}

.comp-table tbody td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.comp-table tbody tr:last-child td {
  border-bottom: 0;
}

.comp-table tbody .before {
  background: #fff;
  color: var(--text-light);
}

.comp-table tbody .after {
  background: #f9fafb;
  color: var(--text);
}

/* ========== CTA 섹션 (통일) ========== */
.cta-section {
  max-width: var(--section-max-width);
  margin: var(--section-margin);
  padding: var(--section-padding);
  background: var(--bg-section);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
  text-align: center;
  position: relative;
}

.cta-first {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 3px solid var(--accent);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.25);
}

.cta-final {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border: 2px solid var(--primary);
}

.cta-urgency-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.urgent-icon {
  font-size: 18px;
}

.cta-section .section-title {
  font-size: 24px;
}

.cta-subtitle {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.form-combined {
  display: grid;
  gap: 14px;
}

.form-combined input[type="text"],
.form-combined input[type="tel"] {
  width: 100%;
  min-height: 54px;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  background: #fff;
  color: var(--text);
  transition: all 0.3s;
  font-family: inherit;
}

.form-combined input:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.consent-combined {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
}

.consent-combined input[type="checkbox"] {
  min-width: 18px;
  min-height: 18px;
  cursor: pointer;
}

.privacy-link {
  border: 0;
  background: none;
  padding: 0 2px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
}

.submit-combined {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  transition: all 0.3s;
  font-family: inherit;
}

.submit-combined:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.submit-combined:active {
  transform: translateY(0);
}

.submit-combined:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.status-combined {
  margin: 14px 0 0;
  min-height: 20px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

.status-combined.ok {
  color: var(--success);
}

.status-combined.err {
  color: var(--error);
}

/* ========== 고객 후기 ========== */
.proof-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.stars {
  font-size: 24px;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.review-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
  margin-bottom: 16px;
}

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

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-info strong {
  font-size: 15px;
  color: var(--text);
}

.review-info span {
  font-size: 13px;
  color: var(--text-light);
}

.review-stars {
  font-size: 16px;
}

.review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ========== 타임라인 ========== */
.timeline-container {
  padding: 0;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary), #0f766e);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary);
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: #f8fafc;
  border-radius: var(--card-radius);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== 인포그래픽 ========== */
.info-flow {
  display: grid;
  gap: 12px;
}

.info-box {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(168, 85, 247, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.info-box.highlight {
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  border-color: #a855f7;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.info-arrow {
  text-align: center;
  font-size: 32px;
  color: #a855f7;
  font-weight: 700;
  padding: 8px 0;
}

/* ========== 긴급성 이유 ========== */
.reason-list {
  display: grid;
  gap: 12px;
}

.reason-item {
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reason-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--red);
  font-weight: 800;
}

.reason-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ========== 전후 비교 (화살표) ========== */
.ba-container {
  padding: 0;
}

.ba-section {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ba-label {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center;
}

.ba-label.before {
  background: #fee2e2;
  color: var(--red);
}

.ba-label.after {
  background: #dcfce7;
  color: var(--green);
}

.ba-items {
  display: grid;
  gap: 10px;
}

.ba-item {
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

.ba-item.bad {
  background: #fef2f2;
  border-left: 4px solid var(--red);
  color: #991b1b;
}

.ba-item.good {
  background: #f0fdf4;
  border-left: 4px solid var(--green);
  color: #14532d;
}

.ba-arrow {
  text-align: center;
  font-size: 32px;
  color: var(--green);
  margin: 8px 0;
  font-weight: 700;
}

/* ========== 모달 ========== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

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

.modal-content {
  position: relative;
  max-width: 90%;
  width: 440px;
  max-height: 85vh;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  padding: 20px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  border: 0;
  background: none;
  font-size: 36px;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h4 {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 2px solid var(--border);
}

.modal-ok {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
}

.modal-ok:active {
  opacity: 0.9;
}

/* ========== 푸터 ========== */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
  padding: 48px 24px 32px;
  margin-top: 60px;
}

.footer-content {
  max-width: var(--section-max-width);
  margin: 0 auto 32px;
  display: grid;
  gap: 24px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fbbf24;
  margin: 0 0 12px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  margin: 6px 0;
}

.footer-divider {
  max-width: var(--section-max-width);
  margin: 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  max-width: var(--section-max-width);
  margin: 24px auto 0;
  text-align: center;
}

.footer-company {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  margin: 0 0 16px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* ========== 최근 신청 알림 팝업 ========== */
.recent-notification {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(200px);
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  max-width: 90%;
  width: 320px;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.recent-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.notif-content {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.notif-content strong {
  font-weight: 700;
  color: var(--primary);
}

.notif-content span {
  color: var(--text-light);
  font-weight: 600;
}

/* ========== 오늘 신청자 수 카운터 (애니메이션 제거) ========== */
.today-counter {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  font-size: 14px;
  font-weight: 600;
}

.counter-icon {
  font-size: 18px;
}

.counter-content strong {
  font-size: 20px;
  font-weight: 900;
  color: #fbbf24;
}

/* ========== 반응형 & 접근성 ========== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  .urgency-top-content {
    gap: 8px;
  }
  
  .urgency-icon {
    font-size: 20px;
  }
  
  .urgency-text strong {
    font-size: 13px;
  }
  
  .urgency-detail {
    font-size: 10px;
  }
  
  .slots-mega {
    padding: 6px 12px;
  }
  
  .slots-number {
    font-size: 28px;
  }
  
  .recent-notification {
    width: calc(100% - 32px);
    font-size: 12px;
  }
  
  .today-counter {
    right: 16px;
    bottom: 16px;
    font-size: 12px;
    padding: 10px 16px;
  }
}

@media (max-width: 400px) {
  .trust-badges {
    gap: 8px;
  }
  
  .trust-badge {
    padding: 6px 12px;
  }
  
  .badge-text {
    font-size: 12px;
  }
  
  .hero-benefits {
    gap: 12px;
  }
  
  .benefit-item {
    padding: 14px 16px;
  }
  
  .benefit-text strong {
    font-size: 15px;
  }
  
  .benefit-text span {
    font-size: 12px;
  }
  
  .hero-urgency {
    padding: 14px 16px;
  }
  
  .hero-urgency p {
    font-size: 13px;
  }
}

@media (min-width: 480px) {
  .hero-combined h1 {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .hero-benefits {
    max-width: 480px;
  }
  
  .benefit-text strong {
    font-size: 17px;
  }
  
  .benefit-text span {
    font-size: 14px;
  }
}

.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.96); border-bottom: 1px solid #eceff4; }
.header-inner { max-width: 760px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { font-weight: 800; font-size: 14px; color: #111827; }
.menu-toggle { border: 1px solid #d1d5db; background: #fff; border-radius: 10px; padding: 6px 10px; font-size: 12px; }
.nav-menu { display: flex; gap: 8px; }
.nav-link { color: #1f2937; text-decoration: none; font-size: 13px; font-weight: 600; }

.form-wrap { background: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.consent-wrap { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: #4b5563; line-height: 1.4; margin: 8px 0 12px; }
.submit-combined { width: 100%; border: 0; border-radius: 12px; padding: 14px; font-weight: 800; background: #ef4444; color: #fff; }

.reason-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.reason-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px; }
.reason-card h3 { margin: 0 0 6px; font-size: 16px; }
.reason-card p { margin: 0; font-size: 14px; color: #4b5563; }

.footer { background: #0f172a; color: #cbd5e1; padding: 28px 16px; }
.footer-inner { max-width: 760px; margin: 0 auto; font-size: 12px; line-height: 1.7; }

.loading-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.45); display: none; align-items: center; justify-content: center; z-index: 9999; }
.loading-overlay.active { display: flex; }
.loading-box { background: #fff; color: #111827; padding: 14px 16px; border-radius: 12px; font-weight: 700; box-shadow: 0 10px 24px rgba(0,0,0,0.15); }

.footer-company-name-muted {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(148, 163, 184, 0.32);
  text-align: center;
  user-select: none;
}
