@charset "UTF-8";

/* =========================
   TOKENS
========================= */
:root{
  --promo-muted:#64748b;
  --promo-purple-50:#ece5ff;
  --promo-purple-100:#efe9ff;
  --promo-purple-200:#d3c1ff;
  --promo-purple-600:#6a4de6;
  --promo-purple-700:#5136c9;

  --promo-text:#111827;
  --promo-text-soft:#334155;

  --promo-panel-bg:#ffffff;
  --promo-panel-bg-soft:#fbfaff;
  --promo-panel-border:rgba(78,45,121,0.34);
  --promo-panel-border-strong:rgba(78,45,121,0.52);
  --promo-panel-shadow:0 10px 24px rgba(15,23,42,0.05);
  --promo-panel-shadow-hover:0 16px 32px rgba(15,23,42,0.08);
  --promo-panel-radius:22px;
}

/* =========================
   BASE
========================= */
*{box-sizing:border-box;}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Pretendard,Apple SD Gothic Neo,Malgun Gothic,sans-serif;
}

.up-container,
.up-promo-container{
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
}

.up-promo-section,
section{
  padding:52px 0;
}

.up-promo-section.up-bg-white{
  background:#ffffff;
}

.up-promo-section.up-bg-purple{
  background:var(--promo-purple-50);
}

.up-table-section-title{
  font-size:26px;
  font-weight:700;
  color:var(--promo-text);
  margin:0 0 10px;
}

.up-promo-lead{
  color:var(--promo-muted);
  font-size:16px;
  line-height:1.7;
  margin:0 0 18px;
}

/* =========================
   GRID / CARD
========================= */
.up-promo-grid{
  display:grid;
  gap:14px;
}

@media(min-width:920px){
  .up-promo-grid-2{
    grid-template-columns:1fr 1fr;
  }
}

.up-promo-card{
  background:var(--promo-panel-bg);
  border:2px solid var(--promo-panel-border);
  border-radius:var(--promo-panel-radius);
  padding:20px;
  box-shadow:var(--promo-panel-shadow);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.up-promo-card:hover{
  border-color:var(--promo-panel-border-strong);
  box-shadow:var(--promo-panel-shadow-hover);
}

/* =========================
   PROMISES
========================= */
.up-promise-card{
  height:100%;
  display:flex;
  transition:all .22s ease;
}

.up-promise-row{
  display:flex;
  gap:20px;
  align-items:flex-start;
  width:100%;
}

.up-promise-main{
  display:flex;
  gap:14px;
  flex:1;
}

.up-promise-num{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--promo-purple-600), var(--promo-purple-700));
  color:#fff;
  font-weight:800;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 8px 18px rgba(106,77,230,0.18);
}

.up-promise-content{
  flex:1;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.up-promise-title{
  font-size:18px;
  font-weight:800;
  color:var(--promo-text);
  margin-bottom:6px;
}

.up-promise-summary{
  margin-top:8px;
  line-height:1.6;
  color:var(--promo-text-soft);
}

.up-promise-detail{
  display:none;
  margin-top:12px;
  line-height:1.7;
  color:var(--promo-text-soft);
}

.up-promise-note{
  margin-top:12px;
  font-size:14px;
  line-height:1.65;
  color:var(--promo-muted);
  padding:12px 14px;
  border-radius:14px;
  background:var(--promo-panel-bg-soft);
  border:1px solid rgba(78,45,121,0.14);
}

.up-promise-toggle{
  margin-top:18px;
  align-self:flex-start;
  width:140px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:var(--promo-purple-600);
  background:rgba(106,77,230,0.08);
  border:1px solid rgba(106,77,230,0.20);
  cursor:pointer;
  white-space:nowrap;
}

.up-promise-card:hover{
  transform:translateY(-4px);
}

.up-promise-card.open{
  border-color:var(--promo-panel-border-strong);
  background:var(--promo-panel-bg-soft);
  box-shadow:var(--promo-panel-shadow-hover);
}

.up-promise-card.open .up-promise-detail{
  display:block;
}

.up-promise-card.open .up-promise-toggle{
  color:var(--promo-purple-700);
  border-color:rgba(106,77,230,0.26);
  background:rgba(106,77,230,0.10);
}

.up-promise-image{
  width:160px;
  flex-shrink:0;
}

.up-promise-image img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:12px;
}

@media (max-width:768px){
  .up-promise-row{
    flex-direction:column;
  }

  .up-promise-image{
    width:100%;
  }

  .up-promise-image img{
    height:180px;
  }
}

/* =========================
   TABLE SECTION
========================= */
.up-info-table-wrap{
  overflow-x:auto;
  border-radius:22px;
  border:2px solid var(--promo-panel-border);
  box-shadow:var(--promo-panel-shadow);
  background:#fff;
}

.up-info-table{
  width:100%;
  min-width:900px;
  border-collapse:collapse;
  background:#ffffff;
  border-radius:22px;
  overflow:hidden;
}

.up-info-table thead th{
  background:linear-gradient(180deg, #6f63a8 0%, #5b4f95 100%);
  color:#ffffff;
  font-size:17px;
  font-weight:700;
  text-align:center;
  padding:18px 16px;
  border:1px solid rgba(255,255,255,0.12);
}

.up-info-table tbody td{
  font-size:16px;
  line-height:1.7;
  color:var(--promo-text);
  text-align:center;
  vertical-align:middle;
  padding:22px 18px;
  border:1.5px solid rgba(78,45,121,0.22);
  background:#ffffff;
}

.up-info-table tbody td:first-child{
  font-weight:700;
  background:#f8f5ff;
  white-space:nowrap;
}

/* =========================
   FINDER
========================= */
.up-finder-filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:24px;
}

.up-finder-chip{
  appearance:none;
  border:1px solid var(--promo-purple-200);
  background:#fff;
  color:var(--promo-text);
  border-radius:999px;
  padding:11px 22px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}

.up-finder-chip.active{
  background:var(--promo-purple-600);
  border-color:var(--promo-purple-600);
  color:#fff;
}

.up-finder-card-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:22px;
}

.up-finder-card{
  display:block;
  background:var(--promo-panel-bg);
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:var(--promo-panel-shadow);
  border:2px solid var(--promo-panel-border);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.up-finder-card:hover{
  transform:translateY(-4px);
  border-color:var(--promo-panel-border-strong);
  box-shadow:var(--promo-panel-shadow-hover);
}

.up-finder-card-image{
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#e5e7eb;
  border-bottom:1px solid rgba(78,45,121,0.10);
}

.up-finder-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.up-finder-card-body{
  padding:16px 12px 20px;
  text-align:center;
}

.up-finder-card-title{
  font-size:16px;
  font-weight:800;
  color:var(--promo-text);
  margin-bottom:8px;
  line-height:1.4;
}

.up-finder-card-subtitle{
  font-size:14px;
  color:var(--promo-muted);
  line-height:1.5;
}

.up-finder-more-wrap{
  margin-top:26px;
  text-align:left;
}

.up-finder-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  padding:14px 28px;
  border-radius:999px;
  background:var(--promo-purple-600);
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  transition:all .2s ease;
  box-shadow:0 8px 20px rgba(106,77,230,.18);
}

.up-finder-more-btn:hover{
  transform:translateY(-2px);
  background:var(--promo-purple-700);
}

/* =========================
   FAQ
========================= */
.up-faq-categories{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}

.up-faq-chip{
  appearance:none;
  border:1px solid var(--promo-purple-200);
  background:#fff;
  color:var(--promo-text);
  border-radius:999px;
  padding:11px 22px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}

.up-faq-chip.active{
  background:var(--promo-purple-600);
  border-color:var(--promo-purple-600);
  color:#fff;
}

.up-faq-list{
  border-top:1px solid rgba(78,45,121,0.14);
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--promo-panel-shadow);
  border:1px solid var(--promo-panel-border);
}

.up-faq-item{
  border-bottom:1px solid rgba(78,45,121,0.12);
}

.up-faq-item:last-child{
  border-bottom:0;
}

.up-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 16px;
  background:none;
  border:0;
  text-align:left;
  cursor:pointer;
}

.up-faq-icon{
  width:18px;
  flex:0 0 18px;
  font-size:24px;
  line-height:1;
  color:var(--promo-purple-600);
}

.up-faq-question-text{
  font-size:18px;
  font-weight:700;
  color:var(--promo-text);
  line-height:1.5;
}

.up-faq-answer{
  display:none;
  background:var(--promo-panel-bg-soft);
  color:var(--promo-text-soft);
  font-size:16px;
  line-height:1.8;
  padding:20px 22px 24px 44px;
  border-top:1px solid rgba(78,45,121,0.10);
}

/* =========================
   FEATURE PAIRS
========================= */
.up-feature-pair-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:24px;
}

.up-feature-pair-col{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.up-feature-box{
  position:relative;
  background:linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
  border:1px solid var(--promo-panel-border);
  border-radius:22px;
  padding:20px 20px 18px;
  min-height:116px;
  box-shadow:var(--promo-panel-shadow);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.up-feature-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(106,77,230,0.06) 0%, rgba(106,77,230,0.00) 42%);
  pointer-events:none;
}

.up-feature-pair-col:hover .up-feature-box{
  transform:translateY(-4px);
  border-color:var(--promo-panel-border-strong);
  box-shadow:var(--promo-panel-shadow-hover);
}

.up-feature-box-head{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.up-feature-num{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  color:#ffffff;
  background:linear-gradient(135deg, var(--promo-purple-600) 0%, var(--promo-purple-700) 100%);
  border:1px solid rgba(255,255,255,0.30);
  box-shadow:0 8px 18px rgba(106,77,230,0.22);
  flex:0 0 38px;
  margin-top:1px;
}

.up-feature-text{
  min-width:0;
  flex:1;
  padding-top:1px;
}

.up-feature-box-title{
  font-size:18px;
  font-weight:800;
  color:var(--promo-text);
  line-height:1.35;
  margin-bottom:6px;
  letter-spacing:-0.01em;
}

.up-feature-box-desc{
  font-size:14px;
  color:var(--promo-muted);
  line-height:1.68;
  word-break:keep-all;
}

.up-feature-photo{
  overflow:hidden;
  border-radius:22px;
  border:1px solid var(--promo-panel-border);
  background:#fff;
  box-shadow:var(--promo-panel-shadow);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.up-feature-pair-col:hover .up-feature-photo{
  transform:translateY(-2px);
  border-color:var(--promo-panel-border-strong);
  box-shadow:var(--promo-panel-shadow-hover);
}

.up-feature-photo img{
  display:block;
  width:100%;
  height:190px;
  object-fit:cover;
}

/* =========================
   COST
========================= */
.up-cost-shop-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap:26px;
  align-items:start;
  margin-top:22px;
}

.up-cost-gallery-card,
.up-cost-info-card{
  background:#ffffff;
  border:1px solid var(--promo-panel-border);
  border-radius:24px;
  box-shadow:var(--promo-panel-shadow);
}

.up-cost-gallery-card{
  padding:18px;
}

.up-cost-gallery-main{
  border-radius:20px;
  overflow:hidden;
  background:#eef2f7;
  border:1px solid rgba(78,45,121,0.10);
  aspect-ratio:4 / 3;
}

.up-cost-gallery-main img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.up-cost-gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}

.up-cost-thumb{
  padding:0;
  border:2px solid transparent;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  background:#fff;
  transition:border-color .2s ease, transform .2s ease;
}

.up-cost-thumb:hover{
  transform:translateY(-2px);
}

.up-cost-thumb.active{
  border-color:var(--promo-purple-600);
}

.up-cost-thumb img{
  width:100%;
  height:88px;
  display:block;
  object-fit:cover;
}

.up-cost-info-card{
  padding:26px 28px 28px;
}

.up-cost-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.up-cost-tab{
  border:1px solid var(--promo-purple-200);
  background:#fff;
  color:var(--promo-text-soft);
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}

.up-cost-tab.active{
  background:var(--promo-purple-600);
  border-color:var(--promo-purple-600);
  color:#fff;
  box-shadow:0 8px 20px rgba(106,77,230,.16);
}

.up-cost-price-block{
  margin-bottom:18px;
  padding-bottom:12px;
  border-bottom:2px solid rgba(106,77,230,0.14);
}

.up-cost-price-row{
  display:flex;
  align-items:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

.up-cost-price-main-line{
  display:flex;
  align-items:flex-end;
  gap:8px;
}

.up-cost-price-current{
  font-size:46px;
  font-weight:900;
  line-height:0.95;
  letter-spacing:-0.04em;
  color:#111827;
}

.up-cost-price-desc{
  font-size:16px;
  font-weight:700;
  color:#dc2626;
}

.up-cost-detail-note{
  margin-top:18px;
  font-size:15px;
  line-height:1.7;
  color:var(--promo-muted);
}

.up-cost-detail-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.up-cost-detail-list li{
  position:relative;
  padding-left:18px;
  font-size:16px;
  font-weight:500;
  line-height:1.7;
  color:#111827;
}

.up-cost-detail-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#6a4de6;
}

.up-cost-cta-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:54px;
  margin-top:22px;
  border-radius:12px;
  background:#6a4de6;
  color:#fff;
  text-decoration:none;
  font-size:17px;
  font-weight:800;
  line-height:1;
  transition:background .2s ease, transform .2s ease;
}

.up-cost-cta-btn:hover{
  background:#5136c9;
  transform:translateY(-1px);
}

@media (max-width:1024px){
  .up-cost-shop-layout{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width:768px){
  .up-cost-gallery-card,
  .up-cost-info-card{
    border-radius:20px;
  }

  .up-cost-gallery-card{
    padding:14px;
  }

  .up-cost-gallery-main{
    border-radius:16px;
    aspect-ratio:16 / 11;
  }

  .up-cost-gallery-thumbs{
    gap:8px;
    margin-top:10px;
  }

  .up-cost-thumb{
    border-radius:12px;
  }

  .up-cost-thumb img{
    height:72px;
  }

  .up-cost-info-card{
    padding:22px 18px 24px;
  }

  .up-cost-tabs{
    gap:8px;
    margin-bottom:16px;
  }

  .up-cost-tab{
    font-size:13px;
    padding:8px 14px;
  }

  .up-cost-price-current{
    font-size:38px;
  }

  .up-cost-price-desc{
    font-size:14px;
  }

  .up-cost-detail-note{
    margin-top:16px;
    font-size:14px;
  }

  .up-cost-detail-list{
    gap:9px;
    margin-top:14px;
  }

  .up-cost-detail-list li{
    font-size:14px;
    line-height:1.65;
  }

  .up-cost-cta-btn{
    height:50px;
    margin-top:18px;
    font-size:16px;
  }
}

/* =========================
   REGIONS
========================= */
.up-countries{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.up-chip{
  appearance:none;
  border:1px solid var(--promo-purple-200);
  background:var(--promo-purple-100);
  color:var(--promo-purple-700);
  padding:12px 18px;
  border-radius:999px;
  font-size:15px;
  line-height:1;
  font-weight:700;
  cursor:pointer;
  transition:all .22s ease;
  box-shadow:none;
}

.up-chip:hover{
  transform:translateY(-1px);
}

.up-chip.active{
  background:linear-gradient(135deg, var(--promo-purple-600) 0%, var(--promo-purple-700) 100%);
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 18px rgba(106,77,230,.20);
}

.up-region-info{
  margin-top:28px;
}

.up-region-card{
  display:flex;
  align-items:center;
  gap:22px;
  background:var(--promo-panel-bg);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--promo-panel-shadow);
  border:1px solid var(--promo-panel-border);
}

.up-region-card img{
  width:40%;
  min-width:320px;
  max-width:520px;
  height:150px;
  border-radius:16px;
  object-fit:cover;
  display:block;
  flex:0 0 auto;
  border:1px solid rgba(78,45,121,0.10);
}

.up-region-text{
  flex:1;
  min-width:0;
}

.up-region-text h3{
  margin:0 0 12px;
  color:var(--promo-purple-700);
  font-size:18px;
  font-weight:800;
  line-height:1.4;
}

.up-region-text p{
  margin:0;
  color:var(--promo-text-soft);
  font-size:16px;
  line-height:1.75;
}

@media (max-width:768px){
  .up-countries{
    gap:8px;
  }

  .up-chip{
    font-size:14px;
    padding:10px 14px;
  }

  .up-region-card{
    flex-direction:column;
    align-items:flex-start;
    padding:16px;
    border-radius:18px;
  }

  .up-region-card img{
    width:100%;
    min-width:0;
    max-width:none;
    height:auto;
    aspect-ratio:16 / 9;
  }

  .up-region-text h3{
    font-size:17px;
  }

  .up-region-text p{
    font-size:15px;
  }
}

/* =========================
   SCHOOL HIGHLIGHT
========================= */
.up-school-highlight-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}

.up-school-highlight{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:30px;
  align-items:center;
  background:var(--promo-panel-bg);
  border:1px solid var(--promo-panel-border);
  border-radius:24px;
  padding:38px;
  box-shadow:var(--promo-panel-shadow);
}

.up-school-highlight__image{
  background:#eef2f7;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(78,45,121,0.10);
}

.up-school-highlight__image img{
  display:block;
  width:100%;
  height:180px;
  object-fit:cover;
}

.up-school-highlight__content{
  min-width:0;
}

.up-school-highlight__title{
  margin:0 0 12px;
  font-size:20px;
  font-weight:800;
  color:#24154d;
  line-height:1.45;
}

.up-school-highlight__desc{
  margin:0;
  font-size:16px;
  line-height:1.85;
  color:var(--promo-text-soft);
  word-break:keep-all;
}

.up-school-highlight__buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.up-school-highlight__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:104px;
  height:52px;
  padding:0 20px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--promo-purple-600) 0%, var(--promo-purple-700) 100%);
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 22px rgba(106,77,230,0.18);
  transition:transform .2s ease, box-shadow .2s ease;
}

.up-school-highlight__btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(106,77,230,0.24);
}

@media (max-width:768px){
  .up-school-highlight{
    grid-template-columns:1fr;
    gap:18px;
    padding:20px;
    border-radius:20px;
  }

  .up-school-highlight__image img{
    height:auto;
    aspect-ratio:16 / 10;
  }

  .up-school-highlight__title{
    font-size:18px;
  }

  .up-school-highlight__desc{
    font-size:15px;
    line-height:1.75;
  }

  .up-school-highlight__buttons{
    gap:10px;
    margin-top:18px;
  }

  .up-school-highlight__btn{
    min-width:96px;
    height:46px;
    border-radius:14px;
    font-size:15px;
  }
}

/* =========================
   FLOW STEPS
========================= */
.up-flow-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:24px;
}

.up-flow-card{
  background:var(--promo-panel-bg);
  border:1px solid var(--promo-panel-border);
  border-radius:22px;
  padding:26px 22px 24px;
  box-shadow:var(--promo-panel-shadow);
}

.up-flow-step{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  font-size:14px;
  font-weight:800;
  color:var(--promo-purple-600);
  letter-spacing:0.02em;
}

.up-flow-step::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--promo-purple-600);
  box-shadow:0 0 0 4px rgba(106,77,230,0.12);
  flex:0 0 10px;
}

.up-flow-title{
  font-size:18px;
  font-weight:800;
  color:#24154d;
  line-height:1.4;
  margin-bottom:10px;
}

.up-flow-desc{
  font-size:16px;
  line-height:1.75;
  color:var(--promo-text-soft);
  word-break:keep-all;
}

.up-flow-note{
  margin-top:22px;
  background:var(--promo-panel-bg-soft);
  border:1px solid rgba(78,45,121,0.16);
  border-radius:18px;
  padding:18px;
  font-size:16px;
  line-height:1.8;
  color:#24154d;
  font-weight:700;
  word-break:keep-all;
  box-shadow:var(--promo-panel-shadow);
}

@media (max-width:1024px){
  .up-flow-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:768px){
  .up-flow-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .up-flow-card{
    border-radius:18px;
    padding:20px 16px 18px;
  }

  .up-flow-step{
    font-size:13px;
    margin-bottom:12px;
  }

  .up-flow-title{
    font-size:17px;
    margin-bottom:8px;
  }

  .up-flow-desc{
    font-size:15px;
    line-height:1.7;
  }

  .up-flow-note{
    margin-top:18px;
    padding:16px;
    font-size:15px;
    line-height:1.75;
  }
}

/* =========================
   REVIEWS SECTION
========================= */
#reviews-section{
  background:#ece6f7;
}

.up-review-slider{
  overflow:hidden;
  margin-top:24px;
  position:relative;
}

.up-review-track{
  display:flex;
  align-items:stretch;
  gap:20px;
  width:max-content;
  animation:upReviewScroll 38s linear infinite;
}

.up-review-slider:hover .up-review-track{
  animation-play-state:paused;
}

.up-review-card{
  flex:0 0 420px;
  background:var(--promo-panel-bg);
  border-radius:22px;
  padding:24px 22px;
  min-height:170px;
  box-shadow:var(--promo-panel-shadow);
  display:flex;
  flex-direction:column;
  border:1px solid var(--promo-panel-border);
}

.up-review-label{
  font-size:15px;
  font-weight:700;
  color:var(--promo-muted);
  margin-bottom:14px;
}

.up-review-quote{
  font-size:17px;
  line-height:1.85;
  color:#374151;
  flex:1;
  word-break:keep-all;
}

.up-review-author{
  margin-top:16px;
  font-size:15px;
  font-weight:800;
  color:var(--promo-purple-700);
  text-align:right;
}

@keyframes upReviewScroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(calc(-50% - 10px));
  }
}

@media (max-width:1024px){
  .up-finder-card-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .up-review-card{
    flex:0 0 360px;
  }
}

@media (max-width:768px){
  .up-table-section-title{
    font-size:22px;
  }

  .up-info-table thead th,
  .up-info-table tbody td{
    font-size:14px;
    padding:14px 12px;
  }

  .up-finder-filters{
    gap:10px;
    margin-bottom:18px;
  }

  .up-finder-chip{
    font-size:14px;
    padding:10px 16px;
  }

  .up-finder-card-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }

  .up-finder-card-title{
    font-size:14px;
  }

  .up-finder-card-subtitle{
    font-size:13px;
  }

  .up-finder-more-wrap{
    margin-top:22px;
  }

  .up-finder-more-btn{
    width:100%;
    min-width:0;
    padding:13px 20px;
    font-size:15px;
  }

  .up-faq-categories{
    gap:10px;
    margin-bottom:20px;
  }

  .up-faq-chip{
    font-size:14px;
    padding:10px 16px;
  }

  .up-faq-question{
    padding:18px 10px;
    gap:10px;
  }

  .up-faq-question-text{
    font-size:15px;
  }

  .up-faq-answer{
    font-size:14px;
    padding:16px 16px 20px 30px;
  }

  .up-feature-pair-grid{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:20px;
  }

  .up-feature-pair-col{
    gap:12px;
  }

  .up-feature-box{
    min-height:auto;
    padding:17px 16px 15px;
    border-radius:18px;
  }

  .up-feature-box::before{
    border-radius:18px;
  }

  .up-feature-num{
    width:34px;
    height:34px;
    font-size:13px;
    border-radius:10px;
    flex:0 0 34px;
  }

  .up-feature-box-title{
    font-size:16px;
    margin-bottom:5px;
  }

  .up-feature-box-desc{
    font-size:14px;
    line-height:1.6;
  }

  .up-feature-photo{
    border-radius:18px;
  }

  .up-feature-photo img{
    height:auto;
    aspect-ratio:16 / 10;
  }

  .up-review-slider{
    margin-top:18px;
  }

  .up-review-track{
    gap:14px;
    animation-duration:30s;
  }

  .up-review-card{
    flex:0 0 280px;
    padding:20px 18px;
    border-radius:18px;
    min-height:150px;
  }

  .up-review-label{
    font-size:14px;
    margin-bottom:12px;
  }

  .up-review-quote{
    font-size:15px;
    line-height:1.75;
  }

  .up-review-author{
    font-size:14px;
    margin-top:14px;
  }
}

/* =========================
   HERO BANNER
========================= */
.up-hero-banner-section{
  padding:0;
  background:#f3f0fb;
}



.up-hero-banner__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.up-hero-banner__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.up-hero-banner__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(20,10,42,0.24) 0%,
    rgba(20,10,42,0.42) 42%,
    rgba(20,10,42,0.90) 100%
  );
}



.up-hero-banner{
  position:relative;
  min-height:500px;
  overflow:hidden;
  background:linear-gradient(135deg,#140a2a 0%,#2f1459 100%);
}

.up-hero-banner__inner{
  position:relative;
  z-index:2;
  min-height:470px;
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  padding-top:18px;
  padding-bottom:18px;
}

.up-hero-banner__panel{
  width:min(450px, 100%);
  margin-top:80px;
  background:rgba(20,10,42,0.84);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:22px;
  padding:24px 26px;
  box-shadow:0 18px 38px rgba(15,23,42,0.24);
  backdrop-filter:blur(10px);
}

.up-hero-banner__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:6px 13px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:#e9ddff;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
}

.up-hero-banner__badge::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#8b6cff;
  flex:0 0 7px;
}

.up-hero-banner__title{
  margin:16px 0 10px;
  font-size:28px;
  line-height:1.24;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#ffffff;
  word-break:keep-all;
}

.up-hero-banner__desc{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:rgba(255,255,255,0.88);
  word-break:keep-all;
}

.up-hero-banner__countbox{
  margin-top:18px;
  padding:14px 16px 13px;
  border-radius:18px;
  border:2px solid rgba(255,255,255,0.88);
  background:rgba(255,255,255,0.02);
}

.up-hero-banner__countdown{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap:8px;
  color:#fff;
  flex-wrap:wrap;
}

.up-hero-banner__time{
  display:flex;
  align-items:flex-end;
  gap:2px;
}

.up-hero-banner__time span{
  font-size:28px;
  line-height:1;
  font-weight:800;
  letter-spacing:-0.03em;
  color:#ffffff;
}

.up-hero-banner__time em{
  font-style:normal;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,0.76);
  line-height:1.2;
  padding-bottom:3px;
}

.up-hero-banner__sep{
  font-size:18px;
  line-height:1;
  font-weight:700;
  color:rgba(255,255,255,0.46);
  padding-bottom:2px;
}

.up-hero-banner__deadline-text{
  margin-top:8px;
  text-align:center;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,0.90);
}

.up-hero-banner__note{
  margin-top:14px;
  padding:13px 15px;
  border-radius:16px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:#f3ecff;
  font-size:14px;
  line-height:1.6;
}

/* 태블릿 */
@media (max-width:1024px){
  .up-hero-banner{
    min-height:380px;
  }

  .up-hero-banner__inner{
    min-height:380px;
  }

  .up-hero-banner__panel{
    width:min(430px, 100%);
    padding:24px 24px;
    border-radius:20px;
  }

  .up-hero-banner__title{
    font-size:25px;
    margin:14px 0 10px;
  }

  .up-hero-banner__desc{
    font-size:15px;
  }

  .up-hero-banner__countbox{
    margin-top:16px;
    padding:13px 14px 12px;
  }

  .up-hero-banner__time span{
    font-size:25px;
  }

  .up-hero-banner__time em{
    font-size:12px;
  }

  .up-hero-banner__sep{
    font-size:16px;
  }

  .up-hero-banner__deadline-text{
    font-size:13px;
  }
}

/* 모바일 */
@media (max-width:768px){
  .up-hero-banner__media{
    display:none;
  }

  .up-hero-banner{
    min-height:auto;
    background:linear-gradient(135deg,#24114b 0%,#3b1f70 100%);
  }

  .up-hero-banner__overlay{
    display:none;
  }

  .up-hero-banner__inner{
    min-height:auto;
    justify-content:center;
    align-items:center;
    padding:22px 0;
  }

  .up-hero-banner__panel{
    width:100%;
    padding:20px 16px;
    border-radius:18px;
  }

  .up-hero-banner__badge{
    font-size:11px;
    min-height:30px;
    padding:5px 11px;
  }

  .up-hero-banner__badge::before{
    width:6px;
    height:6px;
    flex:0 0 6px;
  }

  .up-hero-banner__title{
    margin:14px 0 8px;
    font-size:22px;
    line-height:1.3;
  }

  .up-hero-banner__desc{
    font-size:15px;
    line-height:1.6;
  }

  .up-hero-banner__countbox{
    margin-top:16px;
    padding:12px 10px 11px;
    border-radius:16px;
  }

  .up-hero-banner__countdown{
    gap:5px;
  }

  .up-hero-banner__time{
    gap:1px;
  }

  .up-hero-banner__time span{
    font-size:18px;
  }

  .up-hero-banner__time em{
    font-size:11px;
    padding-bottom:1px;
  }

  .up-hero-banner__sep{
    font-size:13px;
    padding-bottom:1px;
  }

  .up-hero-banner__deadline-text{
    margin-top:7px;
    font-size:12px;
    line-height:1.45;
  }

  .up-hero-banner__note{
    margin-top:12px;
    padding:12px 13px;
    font-size:13px;
    line-height:1.55;
    border-radius:14px;
  }
}