/* OneTop24 /index2 — 네이비 + 오렌지 */
:root {
  --ot-navy: #1a2d5c;
  --ot-navy-dark: #0f1a33;
  --ot-orange: #f58220;
  --ot-orange-dark: #d96e10;
  --ot-bg: #f4f6fa;
  --ot-text: #1e293b;
  --ot-muted: #64748b;
  --ot-white: #ffffff;
  --ot-radius: 12px;
  --ot-shadow: 0 8px 28px rgba(15, 26, 51, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.index2-body {
  margin: 0;
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  color: var(--ot-text);
  background: var(--ot-white);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.ot-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header */
.ot-header {
  background: var(--ot-white);
  border-bottom: 1px solid #e8ecf2;
  padding: 4px 0;
  min-height: 0;
}
.ot-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ot-logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
.ot-logo img {
  display: block;
  height: 165px;
  width: auto;
  max-width: 680px;
  object-fit: contain;
  object-position: left center;
}
.ot-header__tagline {
  margin: 0;
  font-size: 22px;
  color: var(--ot-navy);
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.3px;
}

/* hero */
.ot-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f8 55%, #fff 100%);
  padding: 48px 0 56px;
  overflow: hidden;
}
.ot-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.ot-hero__title {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ot-navy);
}
.ot-hero__title em {
  font-style: normal;
  color: var(--ot-orange);
}
.ot-hero__lead {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--ot-muted);
}
.ot-hero__visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ot-hero__ceo {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}
.ot-hero__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 120px;
  background: linear-gradient(90deg, rgba(245, 130, 32, 0.15), transparent);
  border-radius: 60% 40% 0 0;
  z-index: -1;
}

/* sections */
.ot-section {
  padding: 56px 0;
}
.ot-section--gray {
  background: var(--ot-bg);
}
.ot-section__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  color: var(--ot-navy);
  text-align: center;
}
.ot-section__sub {
  margin: 0 0 36px;
  text-align: center;
  color: var(--ot-muted);
  font-size: 15px;
}

/* brand pills */
.ot-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ot-pill {
  background: var(--ot-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--ot-radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--ot-shadow);
}
.ot-pill strong {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  color: var(--ot-navy);
}
.ot-pill span {
  font-size: 13px;
  color: var(--ot-muted);
}
.ot-pill__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ot-navy), #2d4a8a);
  color: #fff;
  font-size: 22px;
  line-height: 48px;
}

/* CTA buttons */
.ot-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.ot-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border-radius: var(--ot-radius);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  box-shadow: var(--ot-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ot-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 26, 51, 0.18);
  color: #fff;
}
.ot-cta--orange {
  background: linear-gradient(145deg, var(--ot-orange), var(--ot-orange-dark));
}
.ot-cta--navy {
  background: linear-gradient(145deg, var(--ot-navy), var(--ot-navy-dark));
}
.ot-cta small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}
.ot-cta--disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* strengths */
.ot-strengths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ot-strength {
  background: #fff;
  border-radius: var(--ot-radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid #e8ecf2;
}
.ot-strength h3 {
  margin: 12px 0 8px;
  font-size: 16px;
  color: var(--ot-navy);
}
.ot-strength p {
  margin: 0;
  font-size: 13px;
  color: var(--ot-muted);
}

/* services */
.ot-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ot-service {
  background: #fff;
  border-radius: var(--ot-radius);
  overflow: hidden;
  border: 1px solid #e8ecf2;
  box-shadow: var(--ot-shadow);
}
.ot-service__thumb {
  height: 160px;
  background: linear-gradient(160deg, #e8eef8, #d4dce8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.ot-service__body {
  padding: 20px;
}
.ot-service__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--ot-navy);
}
.ot-service__body p {
  margin: 0;
  font-size: 14px;
  color: var(--ot-muted);
}

/* process */
.ot-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ot-process li {
  flex: 1 1 140px;
  max-width: 180px;
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border-radius: var(--ot-radius);
  border: 2px solid var(--ot-navy);
  font-weight: 600;
  font-size: 14px;
  color: var(--ot-navy);
  position: relative;
}
.ot-process li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ot-orange);
  font-weight: 700;
}
.ot-process__num {
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--ot-orange);
  color: #fff;
  font-size: 13px;
}

/* footer */
.ot-footer {
  background: var(--ot-navy-dark);
  color: #94a3b8;
  padding: 32px 0;
  text-align: center;
  font-size: 14px;
}
.ot-footer strong {
  color: #fff;
  font-size: 18px;
}

/* contact page */
.ot-contact-page {
  padding: 40px 0 64px;
  background: var(--ot-bg);
  min-height: calc(100vh - 80px);
}
.ot-contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--ot-radius);
  padding: 32px 28px;
  box-shadow: var(--ot-shadow);
}
.ot-contact-card h1 {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--ot-navy);
}
.ot-contact-card .ot-back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--ot-orange);
  text-decoration: none;
  font-size: 14px;
}
.ot-form-row {
  margin-bottom: 18px;
}
.ot-form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ot-navy);
}
.ot-form-row input,
.ot-form-row textarea,
.ot-form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}
.ot-form-row textarea {
  min-height: 140px;
  resize: vertical;
}
.ot-email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.ot-email-row input[type="text"] {
  flex: 1 1 120px;
  min-width: 100px;
}
.ot-email-at {
  font-weight: 700;
  color: var(--ot-muted);
}
.ot-agree {
  margin: 20px 0;
  font-size: 14px;
}
.ot-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
.ot-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.ot-btn--primary {
  background: var(--ot-orange);
  color: #fff;
}
.ot-btn--ghost {
  background: #e2e8f0;
  color: var(--ot-text);
}
.ot-loading {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.ot-loading.is-show {
  display: flex;
}
.ot-loading__box {
  background: #fff;
  padding: 24px 40px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--ot-navy);
}

/* mobile */
@media (max-width: 900px) {
  .ot-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ot-hero__visual {
    order: -1;
    min-height: 220px;
  }
  .ot-hero__ceo {
    max-height: 300px;
  }
  .ot-pills,
  .ot-strengths,
  .ot-services {
    grid-template-columns: 1fr;
  }
  .ot-cta-row {
    grid-template-columns: 1fr;
  }
  .ot-process li:not(:last-child)::after {
    display: none;
  }
  .ot-process li {
    max-width: none;
    flex: 1 1 100%;
  }
  .ot-header {
    padding: 6px 0;
  }
  .ot-logo img {
    height: 120px;
    max-width: 420px;
  }
  .ot-header__tagline {
    text-align: left;
    width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ot-section {
    padding: 40px 0;
  }
  .ot-contact-card {
    padding: 24px 16px;
  }
}

/* ---------- 접수하기 ---------- */
.ot-rcpt-page {
  padding: 24px 0 64px;
  background: var(--ot-bg);
  min-height: calc(100vh - 80px);
}
.ot-rcpt-page__title {
  margin: 8px 0 24px;
  font-size: 28px;
  color: var(--ot-navy);
}
.ot-rcpt-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.ot-rcpt-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ot-radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--ot-shadow);
}
.ot-rcpt-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ot-navy);
}
.ot-rcpt-panel__head h2 {
  margin: 0;
  font-size: 18px;
  color: var(--ot-navy);
}
.ot-rcpt-note {
  margin: 0;
  font-size: 12px;
  color: #e11;
  font-weight: 400;
}
.ot-rcpt-reset {
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}
.ot-rcpt-grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.ot-rcpt-addr {
  display: flex;
  gap: 8px;
}
.ot-rcpt-addr input {
  flex: 1;
}
.ot-rcpt-swap-wrap {
  text-align: center;
  margin: -8px 0 8px;
}
.ot-rcpt-swap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ot-navy);
  background: #fff;
  color: var(--ot-navy);
  font-size: 20px;
  cursor: pointer;
}
.ot-service-radios {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.ot-service-radios li {
  margin: 0;
}
.ot-service-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ot-navy);
  white-space: nowrap;
}
.ot-service-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--ot-orange);
  flex-shrink: 0;
}
.ot-delivery-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ot-delivery-btn {
  padding: 16px 8px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: var(--ot-muted);
  cursor: pointer;
}
.ot-delivery-btn--active {
  border-color: var(--ot-navy);
  background: var(--ot-navy);
  color: #fff;
}
.ot-rcpt-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 16px;
  font-size: 15px;
}
.ot-rcpt-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.ot-rcpt-side .ot-rcpt-panel {
  margin-bottom: 12px;
}
.ot-rcpt-inquiry-link {
  font-size: 13px;
  color: #fff;
  background: var(--ot-orange);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
}
.ot-fee-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ot-fee-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.ot-fee-list strong {
  color: var(--ot-orange);
  font-size: 18px;
}
.ot-fee-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--ot-muted);
}
.ot-fee-hint--error {
  color: #b91c1c;
}
.ot-form-row input.ot-required:invalid,
.ot-form-row input.ot-required.empty {
  border-color: #f87171;
}
input.ot-required {
  border: 1px solid #cbd5e1;
}
.ot-btn--sm {
  padding: 10px 14px;
  font-size: 13px;
  white-space: nowrap;
}
.ot-btn--block {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  margin-top: 8px;
}
.ot-btn--orange {
  background: var(--ot-orange);
  color: #fff;
  border: none;
}
.ot-btn--navy {
  background: var(--ot-navy);
  color: #fff;
  border: none;
}

/* 배송조회 */
.ot-track-page .ot-contact-card.ot-track-card {
  max-width: 560px;
}
.ot-track-form .ot-btn--block {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
}
.ot-req {
  color: #e11d48;
  font-weight: 700;
}
.ot-track-desc {
  color: var(--ot-muted);
  font-size: 14px;
  margin: 0 0 20px;
}
.ot-track-form {
  margin-bottom: 24px;
}
.ot-track-alert {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.ot-track-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.ot-track-result {
  border-top: 2px solid var(--ot-navy);
  padding-top: 20px;
}
.ot-track-result h2 {
  margin: 0 0 16px;
  font-size: 20px;
  color: var(--ot-navy);
}
.ot-track-no {
  color: var(--ot-orange);
}
.ot-track-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.ot-track-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.ot-track-list li span {
  flex: 0 0 72px;
  color: var(--ot-muted);
}
.ot-track-list li strong {
  flex: 1;
  font-weight: 600;
  color: var(--ot-text);
}
.ot-track-price-box {
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  border: 2px solid var(--ot-orange);
  border-radius: var(--ot-radius);
  padding: 24px;
  text-align: center;
}
.ot-track-price-label {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ot-muted);
}
.ot-track-price-value {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--ot-orange);
}
.ot-track-price-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ot-muted);
}
.ot-track-price-pending {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ot-navy);
}

@media (max-width: 960px) {
  .ot-rcpt-layout {
    grid-template-columns: 1fr;
  }
  .ot-rcpt-grid--2 {
    grid-template-columns: 1fr;
  }
  .ot-delivery-btns {
    grid-template-columns: repeat(2, 1fr);
  }
}
