/* ===================================================
   SERVICE PAGE & STARBUCKS BANNER STYLES
   =================================================== */

/* ── 공통 리셋 ── */
* { box-sizing: border-box; }

/* ── 서비스 히어로 ── */
.svc-hero {
  background: linear-gradient(135deg, #0d1b35 0%, #1a2f5a 100%);
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.svc-hero-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}
.svc-hero-text { flex: 1; }
.svc-hero-visual { flex: 0 0 340px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.back-link:hover { color: #f5a623; }

.svc-hero-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(245,166,35,0.15);
  color: #f5a623;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.svc-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.svc-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}
.svc-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.svc-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.svc-hero-badges .badge-urgent {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.4);
  color: #fca5a5;
}
.svc-hero-badges i { color: #22C55E; }
.svc-hero-badges .badge-urgent i { color: #f87171; }

.svc-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.svc-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  gap: 12px;
}
.svc-info-row:last-child { border-bottom: none; }
.svc-info-label { color: rgba(255,255,255,0.45); flex-shrink: 0; }
.svc-info-row span:last-child { text-align: right; }
.text-red { color: #f87171 !important; }

/* ── 섹션 공통 ── */
.svc-section {
  padding: 80px 0;
  background: #fff;
}
.svc-section-gray {
  background: #f8fafc;
}
.svc-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0d1b35;
  margin-bottom: 12px;
}
.svc-section-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* ── 설명 카드 그리드 ── */
.svc-explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.svc-explain-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.svc-section-gray .svc-explain-card { background: #fff; }
.svc-explain-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.svc-explain-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.svc-explain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b35;
  margin-bottom: 8px;
}
.svc-explain-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ── 비교 테이블 ── */
.compare-table-wrap { overflow-x: auto; border-radius: 12px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  background: #0d1b35;
  color: #fff;
  padding: 14px 18px;
  text-align: left;
}
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #f8fafc; }
.col-good { color: #16a34a !important; font-weight: 600; }
.col-bad { color: #dc2626 !important; }

/* ── 가격 카드 ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}
.price-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.price-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.price-card-featured {
  border-color: #f5a623;
  box-shadow: 0 4px 24px rgba(245,166,35,0.15);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #0d1b35;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier { font-size: 14px; color: #64748b; font-weight: 600; margin-bottom: 8px; }
.price-amount { font-size: 20px; color: #0d1b35; font-weight: 700; margin-bottom: 10px; }
.price-amount strong { font-size: 26px; color: #f5a623; }
.price-desc { font-size: 13px; color: #64748b; margin-bottom: 16px; line-height: 1.6; }
.price-includes { list-style: none; padding: 0; }
.price-includes li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #334155;
  padding: 5px 0;
}
.price-includes li i { color: #22C55E; }
.price-note { font-size: 13px; color: #94a3b8; text-align: center; }

/* ── FAQ ── */
.svc-faq { max-width: 800px; margin: 0 auto; }
.svc-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.svc-faq-q {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #0d1b35;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}
.svc-faq-q i { color: #f5a623; flex-shrink: 0; }
.svc-faq-a {
  padding: 16px 24px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* ── CTA 섹션 ── */
.svc-cta-section {
  background: linear-gradient(135deg, #0d1b35 0%, #1a2f5a 100%);
  padding: 80px 0;
}
.svc-cta-box {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.svc-cta-box h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.svc-cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-lg {
  padding: 18px 40px !important;
  font-size: 16px !important;
}

/* ── 프로세스 스텝 ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0d1b35;
  color: #f5a623;
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step h3 { font-size: 15px; font-weight: 700; color: #0d1b35; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: #64748b; line-height: 1.6; }
.process-arrow {
  display: flex; align-items: center;
  color: #cbd5e1;
  font-size: 20px;
  padding-top: 50px;
  flex-shrink: 0;
}

/* ── 환급 케이스 그리드 ── */
.refund-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.refund-case {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}
.refund-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.refund-case h3 { font-size: 15px; font-weight: 700; color: #0d1b35; margin-bottom: 8px; }
.refund-case p { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ── 공제 그리드 ── */
.deduction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.deduction-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.deduction-highlight {
  border-color: #f5a623;
  background: #fffbeb;
}
.deduction-card h3 { font-size: 14px; font-weight: 700; color: #0d1b35; margin-bottom: 8px; }
.deduction-amount { font-size: 22px; font-weight: 800; color: #f5a623; margin: 8px 0; }
.deduction-card p { font-size: 12px; color: #94a3b8; }

/* ── 경고 박스 ── */
.warning-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.warning-box {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.warning-red { background: #fef2f2; border: 1px solid #fecaca; }
.warning-orange { background: #fff7ed; border: 1px solid #fed7aa; }
.warning-blue { background: #eff6ff; border: 1px solid #bfdbfe; }
.warning-icon { font-size: 28px; }
.warning-red .warning-icon { color: #ef4444; }
.warning-orange .warning-icon { color: #f97316; }
.warning-blue .warning-icon { color: #3b82f6; }
.warning-box h3 { font-size: 15px; font-weight: 700; color: #0d1b35; }
.warning-box p { font-size: 14px; color: #475569; line-height: 1.6; }

/* ── 체크리스트 ── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.checklist-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 20px;
}
.checklist-item > i { color: #22C55E; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.checklist-item h3 { font-size: 14px; font-weight: 700; color: #0d1b35; margin-bottom: 4px; }
.checklist-item p { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ================================================================
   메인 페이지 서비스 배너 섹션
   ================================================================ */
.service-banner-section {
  background: linear-gradient(180deg, #0d1b35 0%, #1a2f5a 60%, #0f2347 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.service-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.07) 0%, transparent 50%);
  pointer-events: none;
}

/* 헤더 강조 */
.service-banner-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.service-banner-header .section-tag {
  background: rgba(245,166,35,0.18);
  color: #f5a623;
  border: 1px solid rgba(245,166,35,0.35);
}
.service-banner-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 16px 0 14px;
  letter-spacing: -0.5px;
}
.service-banner-header h2 .highlight {
  color: #f5a623;
  -webkit-text-stroke: 0px;
  text-shadow: 0 0 40px rgba(245,166,35,0.5);
}
.service-banner-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.service-banner-sub strong {
  color: #f5a623;
  font-weight: 700;
}

/* 클릭 유도 힌트 */
.service-banner-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 100px;
  padding: 10px 22px;
  color: #f5a623;
  font-size: 14px;
  font-weight: 600;
}
.service-banner-hint i:first-child { font-size: 16px; }

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
.bounce-arrow { animation: bounceY 1.2s ease-in-out infinite; }
.service-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-banner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s, background 0.25s;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-banner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #f5a623;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 4px 0 0 4px;
}
.service-banner-card:hover {
  background: rgba(255,255,255,0.11);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.5);
}
.service-banner-card:hover::before { opacity: 1; }
.service-banner-cta {
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(245,166,35,0.08));
  border-color: rgba(245,166,35,0.35);
}
.service-banner-cta:hover {
  background: linear-gradient(135deg, rgba(245,166,35,0.28), rgba(245,166,35,0.14));
  border-color: #f5a623;
}

.svc-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, #f5a623 0%, #ffca28 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #0d1b35;
  box-shadow: 0 4px 14px rgba(245,166,35,0.3);
}
.service-banner-cta .svc-icon-wrap {
  background: rgba(245,166,35,0.2);
  color: #f5a623;
  box-shadow: none;
}
.svc-content { flex: 1; }
.svc-content h3 {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 6px;
}
.svc-content p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-bottom: 10px;
}
.svc-more {
  font-size: 13px; font-weight: 600;
  color: #f5a623;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.service-banner-card:hover .svc-more { gap: 8px; }
.svc-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(59,130,246,0.25); color: #93c5fd;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(59,130,246,0.3);
}
.svc-badge-orange {
  background: rgba(249,115,22,0.2); color: #fdba74;
  border-color: rgba(249,115,22,0.3);
}
.svc-badge-red {
  background: rgba(239,68,68,0.2); color: #fca5a5;
  border-color: rgba(239,68,68,0.3);
}

/* ================================================================
   구버전 스타벅스 CSS (더 이상 사용 안 함 — 아래 coffee-event로 대체)
   ================================================================ */
.starbucks-event-section-UNUSED {
  background: linear-gradient(135deg, #00422A 0%, #005F40 50%, #00422A 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.starbucks-event-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(203,162,88,0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.starbucks-banner {
  display: grid;
  grid-template-columns: 200px 1fr 260px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* 왼쪽: 로고 + 라벨 */
.starbucks-left {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  text-align: center;
}
.starbucks-logo-wrap {
  width: 120px; height: 120px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
.starbucks-svg-logo { width: 100%; height: 100%; }
.starbucks-coupon-label { color: #CBA258; }
.coupon-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  display: block; margin-bottom: 4px; opacity: 0.8;
}
.coupon-drink {
  font-size: 18px; font-weight: 800; color: #fff;
  margin-bottom: 2px;
}
.coupon-sub { font-size: 12px; opacity: 0.7; }

/* 가운데: 이벤트 텍스트 */
.starbucks-center { }
.starbucks-event-text { }
.event-fire { font-size: 36px; margin-bottom: 12px; }
.starbucks-event-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}
.starbucks-event-text h2 span {
  color: #CBA258;
  text-shadow: 0 0 20px rgba(203,162,88,0.4);
}
.starbucks-event-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.event-conditions {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.event-conditions li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.event-conditions li i { color: #CBA258; }
.starbucks-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #CBA258;
  color: #00422A;
  font-size: 15px; font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(203,162,88,0.4);
}
.starbucks-cta-btn:hover {
  background: #e8c06a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(203,162,88,0.5);
}

/* 오른쪽: 쿠폰 카드 */
.coupon-card {
  perspective: 800px;
}
.coupon-card-inner {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: rotate(-3deg);
  transition: transform 0.3s;
}
.coupon-card:hover .coupon-card-inner { transform: rotate(0deg) scale(1.02); }
.coupon-header {
  background: #00704A;
  padding: 20px;
  display: flex; align-items: center; gap: 12px;
}
.coupon-logo-small { width: 44px; height: 44px; flex-shrink: 0; }
.coupon-brand {
  font-size: 14px; font-weight: 800;
  color: #fff; letter-spacing: 1px;
}
.coupon-type { font-size: 11px; color: rgba(255,255,255,0.7); }
.coupon-divider {
  display: flex; align-items: center;
  padding: 0 20px;
  color: #e2e8f0; font-size: 18px;
  border-top: 2px dashed #e2e8f0;
  margin: 0;
  padding: 12px 20px;
}
.coupon-body { padding: 16px 20px; }
.coupon-item-name {
  font-size: 22px; font-weight: 800;
  color: #00704A; margin-bottom: 2px;
}
.coupon-item-kr { font-size: 13px; color: #64748b; margin-bottom: 10px; }
.coupon-valid {
  font-size: 12px; color: #94a3b8;
  background: #f8fafc; padding: 6px 10px;
  border-radius: 6px; margin-bottom: 14px;
  display: inline-block;
}
.coupon-barcode { margin-top: 10px; }
.barcode-lines {
  display: flex; gap: 2px; align-items: stretch;
  height: 40px; margin-bottom: 6px;
}
.barcode-lines span {
  flex: 1;
  background: #1e293b;
  border-radius: 1px;
}
.barcode-lines span:nth-child(2n) { flex: 0.5; background: #334155; }
.barcode-lines span:nth-child(3n) { flex: 1.5; }
.barcode-num { font-size: 10px; color: #94a3b8; letter-spacing: 1px; }
.coupon-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 10px 20px;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
}

/* ================================================================
   커피 증정 이벤트 배너 (신규)
   ================================================================ */
.coffee-event-section {
  background: #0f0f0f;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.coffee-event-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(180,120,60,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.coffee-event-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ─── 쿠폰 카드 ─── */
.coffee-coupon-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.coffee-coupon {
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
}
.coffee-coupon-wrap:hover .coffee-coupon { transform: translateY(-6px) rotate(-1deg); }
.coffee-coupon-shadow {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%) translateX(10px) rotate(3deg);
  width: 280px; height: 100%;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 1;
  pointer-events: none;
}

/* 쿠폰 상단 */
.coffee-coupon-top {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 28px 24px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: none;
}
.coffee-cup-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, #b47c3c, #d4a45a);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(180,124,60,0.45);
}
.coffee-coupon-top-text { flex: 1; }
.coffee-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.coffee-name {
  font-size: 16px; font-weight: 700; color: #fff;
}
.coffee-coupon-stamp {
  background: linear-gradient(135deg, #b47c3c, #d4a45a);
  color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(180,124,60,0.4);
}

/* 쿠폰 구분선 */
.coffee-coupon-divider {
  background: #1a1a1a;
  display: flex; align-items: center;
  padding: 0 0;
  position: relative;
  height: 24px;
}
.coffee-hole {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0f0f0f;
  top: 50%; transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.coffee-hole-left { left: -10px; }
.coffee-hole-right { right: -10px; }
.coffee-dashed {
  flex: 1;
  height: 1px;
  margin: 0 16px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.15) 0px,
    rgba(255,255,255,0.15) 6px,
    transparent 6px,
    transparent 12px
  );
}

/* 쿠폰 하단 */
.coffee-coupon-bottom {
  background: #fff;
  padding: 20px 24px 22px;
}
.coffee-from {
  font-size: 10px; letter-spacing: 1px;
  color: #94a3b8; text-transform: uppercase;
  margin-bottom: 14px;
}
.coffee-barcode-wrap { margin-bottom: 12px; }
.coffee-barcode {
  display: flex; gap: 2.5px; align-items: stretch;
  height: 44px; margin-bottom: 5px;
}
.coffee-barcode span {
  flex: 1; background: #1e293b; border-radius: 1px;
}
.coffee-barcode span:nth-child(2n)  { flex: 0.4; background: #475569; }
.coffee-barcode span:nth-child(3n)  { flex: 1.6; }
.coffee-barcode span:nth-child(5n)  { flex: 0.7; background: #334155; }
.coffee-barcode-num {
  font-size: 9px; letter-spacing: 2px;
  color: #94a3b8; text-align: center;
}
.coffee-valid-note {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: #64748b;
  background: #f1f5f9;
  border-radius: 6px; padding: 5px 10px;
}

/* ─── 텍스트 영역 ─── */
.coffee-event-text { }
.coffee-event-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b47c3c;
  border: 1px solid rgba(180,124,60,0.4);
  border-radius: 100px; padding: 6px 16px;
  margin-bottom: 22px;
}
.coffee-event-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.coffee-event-text h2 em {
  font-style: normal;
  color: #d4a45a;
}
.coffee-event-text > p {
  font-size: 15px; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 36px;
}

/* 조건 리스트 */
.coffee-conditions {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 40px;
}
.coffee-conditions li {
  display: flex; gap: 16px; align-items: flex-start;
}
.coffee-cond-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #b47c3c; font-size: 15px;
  background: rgba(180,124,60,0.08);
}
.coffee-conditions li strong {
  display: block;
  font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 2px;
}
.coffee-conditions li p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin: 0;
}

/* CTA 버튼 */
.coffee-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff;
  color: #0f0f0f;
  font-size: 15px; font-weight: 800;
  padding: 17px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(255,255,255,0.12);
  letter-spacing: -0.2px;
}
.coffee-cta-btn i {
  width: 28px; height: 28px;
  background: #0f0f0f;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform 0.2s;
}
.coffee-cta-btn:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,255,255,0.18);
}
.coffee-cta-btn:hover i { transform: translateX(3px); }

/* ================================================================
   반응형
   ================================================================ */
@media (max-width: 1024px) {
  .coffee-event-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
    padding: 60px 32px;
  }
  .coffee-coupon-wrap { justify-content: center; }
  .coffee-conditions { align-items: flex-start; text-align: left; max-width: 440px; margin: 0 auto 36px; }
}

@media (max-width: 768px) {
  .svc-hero { padding: 100px 0 60px; }
  .svc-hero-inner { flex-direction: column; gap: 32px; }
  .svc-hero-visual { width: 100%; flex: none; }
  .service-banner-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding-top: 0; }
  .deduction-grid { grid-template-columns: repeat(2, 1fr); }
  .coffee-event-inner { padding: 52px 20px; gap: 40px; }
  .coffee-coupon { width: 260px; }
  .coffee-coupon-shadow { width: 260px; }
}
