body { margin: 0 }
/* ===== FONTS ===== */
@font-face {
  font-family: 'LaundryGothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2403-2@1.0/TTLaundryGothicR.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'LaundryGothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2403-2@1.0/TTLaundryGothicB.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ===== BASE ===== */
.gray {background: #f8f9fd;}

.ev { all: initial; display: block }
.ev *, .ev *::before, .ev *::after { box-sizing: border-box; font-family: inherit }
.ev {
  --primary: #1C1C1C;
  --accent: #2284e6;
  --accent-dark: #2451B8;
  --accent-light: #EEF3FF;
  --text-primary: #111;
  --text-secondary: #333;
  --text-tertiary: #555;
  --border: #dde6f5;
  --bg-gray: #f3f7ff;
  --bg-blue: #ecf6ff;
  font-family: Pretendard, -apple-system, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
}
@media(max-width:768px) { .ev .pc-only { display: none !important } }
@media(min-width:769px) { .ev .mo-only { display: none !important } }

/* ===== SECTIONS ===== */
.ev .section-wrap { width: 100% }
.ev .section-wrap.white { background: #fff }
.ev .section-wrap.blue { background: var(--bg-blue) }
.ev .section-wrap.dark { background: var(--accent); color: #fff }
.ev .section { max-width: 1200px; margin: 0 auto; padding: 96px 24px }
.ev .section-title { text-align: center; font-size: clamp(26px,7vw,38px); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; color: #1C2454; }
.ev .section-subtitle { text-align: center; font-size: 18px; color: var(--text-secondary); margin-bottom: 56px }
.ev .section-wrap.dark .section-subtitle { color: rgba(255,255,255,.65) }

/* ===== HERO ===== */
.ev .hero {
  position: relative;
  width: 100%;
  background: linear-gradient(178deg, #ddf5ff 0%, #D8EAFF 40%, #e6e8fd 100%);
  overflow: hidden;
  z-index: 2;
}
.ev .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 340px;
}
.ev .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  flex: 0 0 auto;
  max-width: 480px;
}
.ev .hero-obj {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 67%;
  max-width: 750px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ev .hero-obj img { width: 100%; display: block; object-fit: contain; animation: float 2.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50%       { transform: translateY(-16px) }
}
.ev .hero-label {
  display: inline-block;
  position: relative;
  background: #2284e6;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 3px 18px 3px;
  border-radius: 30px;
  border: none;
  outline: none;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.ev .hero-label::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  background: #2284e6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.ev .hero-title {
  font-family: 'LaundryGothic', Pretendard, sans-serif;
  font-size: clamp(36px, 5vw, 74px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #1c2454;
  margin: 0 0 14px;
}
.ev .hero-sub {
  font-size: 22px;
  font-weight: 500;
  color: #616e63;
  margin: 0 0 50px;
  letter-spacing: -0.2px;
}
.ev .hero-content .btn-primary { display: inline-block; width: auto; background: #1c2454 }
.ev .hero-content .btn-primary:hover { background: #141a3e }

/* ===== HERO DECO ===== */
.ev .hero-deco-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.ev .hero-deco-item {
  position: absolute;
  opacity: 0.45;
  color: #7bbfea;
}
/* 별표 * 모양 - CSS로 구현 */
.ev .hero-deco-item.star {
  width: 24px;
  height: 24px;
}
.ev .hero-deco-item.star::before,
.ev .hero-deco-item.star::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 3px;
}
.ev .hero-deco-item.star::before { width: 100%; height: 20%; top: 40%; left: 0 }
.ev .hero-deco-item.star::after  { width: 20%; height: 100%; top: 0; left: 40% }
/* 45도 회전 추가선은 box-shadow로 */
/* + 십자 모양 */
.ev .hero-deco-item.plus {
  width: 40px;
  height: 40px;
}
.ev .hero-deco-item.plus::before,
.ev .hero-deco-item.plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 10px;
}
.ev .hero-deco-item.plus::before { width: 100%; height: 30%; top: 35%; left: 0 }
.ev .hero-deco-item.plus::after  { width: 30%; height: 100%; top: 0; left: 35% }
/* 작은 사각형 */
.ev .hero-deco-item.dot {
  width: 8px;
  height: 8px;
  background: #7bbfea;
  border-radius: 2px;
  opacity: 0.3;
}
/* 위치 배치 */
/* 웹 기본 위치 */
.ev .hero-deco-item.d1 { top: 11%; left: 18%; width: 28px; height: 28px; opacity: 0.55 }
.ev .hero-deco-item.d2 { bottom: 29%; left: 10%; width: 35px; height: 35px; color: #ffffff; opacity: 1 }
.ev .hero-deco-item.d3 { top: 45%; right: 10%; width: 22px; height: 22px; opacity: 1; color: #ffffff; }
.ev .hero-deco-item.d4 { bottom: 28%; right: 12%; width: 20px; height: 20px; opacity: 0.3 }
.ev .hero-deco-item.d5 { top: 37%; left: 5%; width: 30px; height: 30px; opacity: 0.25 }
.ev .hero-deco-item.d6 { bottom: 26%; left: 40%; width: 24px; height: 24px; opacity: 1 }

/* 앱 위치 재정의 */
@media(max-width:768px) {
  .ev .hero-deco-item.d1 { top: 32%; left: 6%; width: 22px; height: 22px; opacity: 1; color: #ffffff; }
  .ev .hero-deco-item.d2 { top: 11%; left: 17%; width: 28px; height: 28px; color: #ffffff; bottom: auto; }
  .ev .hero-deco-item.d3 { top: 38%; right: 5%; width: 18px; height: 18px; opacity: 0.5 }
  .ev .hero-deco-item.d4 { top: 5%; right: 20%; width: 20px; height: 20px; opacity: 0.4; bottom: auto }
  .ev .hero-deco-item.d5 { top: 62%; left: 18%; width: 30px; height: 30px; opacity: 0.5 }
  .ev .hero-deco-item.d6 { top: 8%; right: 28%; width: 16px; height: 16px; opacity: 0.3; bottom: auto }
}
.ev .btn-primary {
  display: inline-block;
  padding: 18px 60px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.ev .btn-primary:hover { opacity: .85 }
.ev .btn-primary.full {display: block; width: 100%; max-width: 480px; margin: 0 auto; text-align: center }
.ev .btn-primary.lg {font-weight: 700; padding: 10px 40px; font-size: 20px; border-radius: 50px; margin-bottom: 20px;}
.ev .btn-primary.sm { padding: 8px 24px; font-size: 18px }
.ev .btn-outline {
  display: inline-block;
  padding: 11px 22px;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  transition: all .25s;
  cursor: pointer;
  font-family: inherit;
}
.ev .btn-outline:hover { background: var(--accent); color: #fff }

/* ===== FREE PRODUCT CARDS ===== */
.ev .free-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 32px;
}
.ev .free-card {
  background: var(--bg-gray);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow .25s;
  position: relative;
}
.ev .free-card:hover {
  box-shadow: 0 6px 24px rgba(59,111,224,.12);
}
.ev .free-card-num { display: none }
.ev .free-badge { display: none }
.ev .free-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 25px 0;
}
.ev .free-card-img img { width: 100%; height: 100%; object-fit: contain; display: block }
.ev .free-card-body { padding: 20px 20px 28px }
.ev .free-card-title { font-size: 27px; font-weight: 700; margin: 0; color: var(--accent); letter-spacing: -0.3px }
.ev .free-card-size { font-size: 20px; color: var(--text-tertiary); margin:0; }
.ev .free-card-price { font-size: 20px; color: var(--text-tertiary); margin: 4px 0 0 }
.ev .free-card-size .strike,
.ev .free-card-price .strike { text-decoration: line-through }
.ev .free-price {
  font-family: 'LaundryGothic', Pretendard, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: inline;
  margin-top: 0;
}
.ev .free-tag { display: none }

/* ===== DISCOUNT COUPONS (리스트형) ===== */
.ev .coupon-divider {
  max-width: 800px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-tertiary);
  font-size: 15px;
  font-weight: 500;
}
.ev .coupon-divider::before,
.ev .coupon-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ev .coupon-list {
  max-width: 800px;
  margin: 0 auto 48px;
}
.ev .coupon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.ev .coupon-row:last-child { border-bottom: none }
.ev .coupon-label { font-size: 18px; color: var(--text-secondary); font-weight: 600; white-space: nowrap; flex-shrink: 0 }
.ev .coupon-right { display: flex; align-items: baseline; gap: 10px; margin-left: auto; flex-shrink: 0 }
.ev .price-group {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.ev .sale-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.ev .sale-price .won { font-size: 17px; font-weight: 700 }
.ev .coupon-condition { font-size: 13px; color: var(--text-tertiary); line-height: 1.5; flex-shrink: 1; text-align: left }

/* ===== PHONE FORM ===== */
/* ===== PHONE REVEAL ===== */
.ev .phone-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, margin-top .45s ease;
  margin-top: 0;
}
.ev .phone-reveal.open {
  max-height: 420px;
  opacity: 1;
  margin-top: 28px;
}
.ev .benefit-btn-done {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.ev .phone-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-gray);
  border: 1.5px solid var(--accent);
  border-radius: 18px;
  padding: 36px 36px 32px;
  text-align: center;
}
.ev .phone-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary) }
.ev .phone-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 22px }
.ev .phone-row { display: flex; gap: 10px; margin-bottom: 10px }
.ev .form-input {
  flex: 1;
  padding: 13px 16px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.ev .form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,111,224,.08) }
.ev .form-input::placeholder { color: var(--text-tertiary) }
.ev .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  justify-content: center;
  margin: 14px 0;
}
.ev .form-check input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer }
.ev .verify-area { display: none; margin-top: 10px }
.ev .verify-area.show { display: block }

/* ===== EXTRA BENEFITS ===== */
.ev .extra-wrap { max-width: 900px; margin: 0 auto }
.ev .extra-main {
  background: #ffffff;
  border: 1.5px solid #2284e6;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
  transition: border-color .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  min-height: 260px;
}
.ev .extra-main:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(34,36,80,.12);
}
.ev .extra-main-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start }

.ev .extra-main-body .service-list-cta {
  background: transparent; padding: 0; color: #2284e6; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 10px;}

.ev .extra-main-tag { font-size: 16px; color: var(--text-tertiary); margin: 0 0 8px; letter-spacing: 0.2px }
.ev .extra-main-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.ev .extra-main-img {
  background: #f2f2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #bbb;
  align-self: stretch;
  overflow: hidden;
}
.ev .extra-main-img img { width: 100%; height: 100%; object-fit: cover }
.ev .extra-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.ev .extra-link-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1.5px solid #2284e6;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s, box-shadow .18s;
}
.ev .extra-link-item:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 12px rgba(34,36,80,.07);
}
.ev .extra-link-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #e8e8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #aaa;
  flex-shrink: 0;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
}
.ev .extra-link-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px }
.ev .extra-link-text { flex: 1; min-width: 0 }
.ev .extra-link-sub { font-size: 14px; color: var(--text-tertiary); margin: 0 0 2px; letter-spacing: 0.1px }
.ev .extra-link-title { font-size: 25px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.4px; line-height: 1.2; margin: 0 }
.ev .extra-link-arrow { font-size: 20px; color: var(--text-tertiary); flex-shrink: 0; transition: color .18s }
.ev .extra-link-item:hover .extra-link-arrow { color: var(--accent) }

/* ===== SERVICE LIST ===== */
.ev .service-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.ev .service-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.ev .service-list-item:hover { background: var(--bg-gray) }
.ev .service-list-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #bbb;
  line-height: 1.5;
  text-align: center;
  flex-shrink: 0;
  overflow: hidden;
}
.ev .service-list-icon img { width: 70%; height: 70%; object-fit: contain; border-radius: 0 }
.ev .service-list-text { flex: 1; min-width: 0 }
.ev .service-list-name { font-size: 18px; font-weight: 700; color: var(--text-primary); margin: 0 0 2px }
.ev .service-list-desc { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.5 }
.ev .service-list-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== PRODUCT CAROUSEL ===== */
.ev .product-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}
.ev .product-carousel-wrap::before,
.ev .product-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ev .product-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f7f7fa 0%, transparent 100%);
}
.ev .product-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f7f7fa 0%, transparent 100%);
}
.ev .product-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: product-roll 50s linear infinite;
}
.ev .product-carousel-track:hover { animation-play-state: paused }
@keyframes product-roll {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}
.ev .product-card {
  width: calc((min(100vw, 1200px) - 48px - 32px) / 3.5);
  height: calc((min(100vw, 1200px) - 48px - 32px) / 3.5);
  flex-shrink: 0;
  border-radius: 16px;
  background: #f2f2f6;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.ev .product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media(max-width:768px) {
  .ev .product-carousel-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ev .product-carousel-wrap::-webkit-scrollbar { display: none }
  .ev .product-carousel-track {
    animation: none !important;
    transform: none !important;
    padding: 0 20px;
  }
  .ev .product-card {
    width: calc((100vw - 20px) / 1.5 - 16px);
    height: calc((100vw - 20px) / 1.5 - 16px);
    scroll-snap-align: start;
  }
  .ev .product-carousel-wrap::before,
  .ev .product-carousel-wrap::after { display: none }
}

/* ===== CTA DARK ===== */
.ev .cta { text-align: center; padding: 0; background: none; color: #fff; position: relative; }
.ev .cta-inner { padding: 80px 20px; position: relative; z-index: 1; }
.ev .cta-bg { width: 100%; display: block; position: absolute; inset: 0; height: 100%; object-fit: cover; }
.ev .cta-title { font-size: clamp(22px,5vw,32px); font-weight: 800; margin-bottom: 32px; line-height: 1.4; letter-spacing: -0.5px }
.ev .cta-title { font-size: clamp(22px,5vw,32px); font-weight: 800; margin-bottom: 32px; line-height: 1.4; letter-spacing: -0.5px }
.ev .cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .25s, opacity .25s;
}
.ev .cta-button:hover { opacity: .92; transform: translateY(-2px) }

/* ===== NOTICE ===== */
.ev .notice-wrap { max-width: 900px; margin: 0 auto; padding: 44px 24px }
.ev .notice-header { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; padding: 6px 0 }
.ev .notice-title { font-size: 14px; font-weight: 600; color: var(--text-secondary) }
.ev .notice-icon { width: 16px; height: 16px; color: var(--text-secondary); transition: transform .3s; display: flex; align-items: center }
.ev .notice-icon svg { width: 100%; height: 100%; display: block }
.ev .notice-icon.open { transform: rotate(180deg) }
.ev .notice-content { max-height: 0; overflow: hidden; transition: max-height .35s }
.ev .notice-content.open { max-height: 400px }
.ev .notice-list { padding: 10px 0; font-size: 14px; line-height: 1.5; color: var(--text-tertiary) }
.ev .notice-list p { margin-bottom: 2px }

/* ===== RESPONSIVE ===== */
@media(max-width:768px) { .ev .pc-only { display: none !important } }
@media(min-width:769px) { .ev .mo-only { display: none !important } }

@media(max-width:768px) {
  .ev .hero { overflow: visible }
  .ev .hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 85px;
    gap: 0;
    min-height: unset;
  }
  .ev .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .ev .hero-title { font-size: clamp(36px, 14vw, 66px) }
  .ev .hero-obj {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
    margin-bottom: -120px;
    flex: unset;
  }

  /* welcome_event.html 모바일 레이아웃 */
  .ev .section { padding: 64px 20px }
  .ev .free-grid { grid-template-columns: 1fr; max-width: 380px }
  .ev .coupon-row { padding: 16px 18px }
  .ev .phone-reveal.open { max-height: 520px }
  .ev .phone-box { padding: 28px 20px }
  .ev .phone-row { flex-direction: column }
  .ev .extra-main { grid-template-columns: 1fr }
  .ev .extra-main-img { min-height: 180px }
  .ev .extra-links { flex-direction: column }
@media(max-width:768px) {
  .ev .cta { padding: 0; }
  .ev .cta-bg { position: static; width: 100%; height: auto; object-fit: unset; }
  .ev .cta-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; }
}
  .ev .service-list-item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px 16px;
    padding: 20px 8px;
  }
  .ev .service-list-cta {
    width: calc(100% - 64px - 16px);
    margin-left: calc(64px + 16px);
    font-size: 14px;
  }
  .ev .product-carousel-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ev .product-carousel-wrap::-webkit-scrollbar { display: none }
  .ev .product-carousel-track {
    animation: none !important;
    transform: none !important;
    padding: 0 20px;
  }
  .ev .product-card {
    width: calc((100vw - 20px) / 1.5 - 16px);
    height: calc((100vw - 20px) / 1.5 - 16px);
    scroll-snap-align: start;
  }
  .ev .product-carousel-wrap::before,
  .ev .product-carousel-wrap::after { display: none }
}
@media(max-width:600px) {
  .ev .hero-deco { display: none }
  .ev .coupon-row { padding: 14px 18px; flex-wrap: wrap; gap: 4px 12px; position: relative }
  .ev .coupon-label { width: calc(100% - 110px) }
  .ev .coupon-condition { width: calc(100% - 110px) }
  .ev .coupon-right { position: absolute; right: 18px; top: 50%; transform: translateY(-50%) }
  .ev .phone-box { padding: 24px 16px }
  .ev .extra-links { grid-template-columns: 1fr }

}
