/*!*******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/static.scss ***!
  \*******************************************************************************************************************************/
body.static-page nav {
  position: sticky;
  height: 48px;
  overflow: hidden;
}

body.static-page .nav-inner {
  height: 48px;
}

.nav-back {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav-back:hover {
  color: rgba(255, 255, 255, 0.8);
}

.page-main {
  max-width: 680px;
  width: 100%;
  margin: 96px auto 0;
  padding: 0 20px 48px;
  flex: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.a1 {
  animation: fadeUp 0.5s ease both;
}

.a2 {
  animation: fadeUp 0.5s ease 0.08s both;
}

.a3 {
  animation: fadeUp 0.5s ease 0.16s both;
}

.a4 {
  animation: fadeUp 0.5s ease 0.24s both;
}

.a5 {
  animation: fadeUp 0.5s ease 0.32s both;
}

.a6 {
  animation: fadeUp 0.5s ease 0.4s both;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.page-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  flex-shrink: 0;
}
.page-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--midnight), var(--teal), var(--teal-bright), var(--teal), var(--midnight));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}

.page-sub {
  font-size: 14px;
  color: var(--teal);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone-light);
  text-align: center;
  margin-bottom: 20px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}
.card a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.card a:hover {
  text-decoration: underline;
}
.card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

.card-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 14px;
}

.legal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight);
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-of-type {
  margin-top: 16px;
}
.legal-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 20px 0 8px;
}
.legal-content p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.legal-content li {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 5px;
  line-height: 1.7;
}
.legal-content a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-content strong {
  color: var(--midnight);
}
.legal-content blockquote {
  background: var(--teal-frost);
  border-left: 3px solid var(--teal-bright);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 42px;
  bottom: -2px;
  width: 2px;
  background: var(--teal-mist);
}
.step-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 2px;
}
.step-item p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-bright);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25);
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.icon-card {
  background: var(--page-bg);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.icon-card:hover {
  transform: translateY(-2px);
}
.icon-card .icon-card-icon {
  font-size: 22px;
  margin-bottom: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-card h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 2px;
}
.icon-card p {
  font-size: 12px;
  color: var(--stone);
  margin: 0;
  line-height: 1.4;
}

.callout {
  background: var(--teal-frost);
  border: 1px solid var(--teal-mist);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 12px;
}
.callout h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.callout h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.callout p {
  font-size: 14px;
  color: var(--teal-deep);
  line-height: 1.7;
  margin: 0;
}
.callout--warning {
  background: #FFFBEB;
  border-color: #FDE68A;
}
.callout--warning p {
  font-size: 13px;
  color: #92400E;
  line-height: 1.7;
  margin: 0;
}

.cta-strip {
  background: linear-gradient(145deg, #0A0A0D, var(--charcoal));
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  margin-top: 32px;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cta-strip p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--teal-bright);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
}
.cta-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.3);
}

.pp-faq-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin: 32px 0 12px;
  padding-left: 4px;
}
.pp-faq-section-label:first-child {
  margin-top: 0;
}

.pp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s, height 0.3s ease-out;
}
.pp-faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.pp-faq-item.open .pp-faq-a {
  max-height: none;
}

.pp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight);
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.pp-faq-q:hover {
  color: var(--teal);
}

.pp-faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-frost);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.pp-faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  transition: transform 0.3s;
}
.pp-faq-item.open .pp-faq-icon {
  background: var(--teal-bright);
}
.pp-faq-item.open .pp-faq-icon svg {
  stroke: #fff;
  transform: rotate(180deg);
}

.pp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}
.pp-faq-a-inner p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 8px;
}
.pp-faq-a-inner p:last-child {
  margin-bottom: 0;
}
.pp-faq-a-inner a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.pp-faq-a-inner a:hover {
  text-decoration: underline;
}

.fg {
  margin-bottom: 10px;
  position: relative;
}
.fg:last-of-type {
  margin-bottom: 0;
}

.fi {
  width: 100%;
  padding: 24px 18px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--midnight);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fi::placeholder {
  color: transparent;
}
.fi:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}
.fi.ta {
  resize: vertical;
  min-height: 100px;
  padding-top: 28px;
}

.fl {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--stone-light);
  pointer-events: none;
  transition: all 0.2s;
}

.fi:focus ~ .fl,
.fi:not(:placeholder-shown) ~ .fl {
  top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--stone);
  transform: translateY(0);
}

.fi.ta ~ .fl {
  top: 16px;
  transform: none;
}

.fi.ta:focus ~ .fl,
.fi.ta:not(:placeholder-shown) ~ .fl {
  top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--stone);
}

.req {
  color: #EF4444;
  margin-left: 2px;
}

.tip-box {
  background: var(--teal-frost);
  border: 1px solid var(--teal-mist);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 14px;
}
.tip-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.tip-box p {
  font-size: 13px;
  color: var(--teal-deep);
  line-height: 1.7;
  margin: 0;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: var(--teal-bright);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.3);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  font-size: 14px;
  color: var(--stone);
}
.contact-divider::before, .contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.email-card {
  padding: 24px 22px;
}

.email-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card .email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--teal-frost);
  border: 1px solid var(--teal-mist);
  transition: all 0.3s;
}
.card .email-link:hover {
  background: var(--teal-bright);
  color: #fff;
  border-color: var(--teal-bright);
  text-decoration: none;
}

.response-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
}
.response-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 4px;
}
.response-card p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.7;
  margin: 0;
}

.response-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.static-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0.8px);
  -webkit-backdrop-filter: blur(0.8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.static-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.static-modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 340px;
  width: 90%;
  text-align: center;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.static-modal-overlay.open .static-modal {
  transform: scale(1) translateY(0);
}

.static-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.2);
}
.static-modal-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.static-modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 6px;
}

.static-modal-text {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

.sec-badge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 12px;
}
.sec-badge h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 2px;
}
.sec-badge p {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}

.sec-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.desc-name {
  font-family: var(--font-mono);
  font-weight: 600;
  background: rgba(15, 118, 110, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--teal-deep);
}

.guarantee-banner {
  background: linear-gradient(135deg, var(--teal-frost), #E0FFF8);
  border: 2px solid var(--teal-mist);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 16px;
}
.guarantee-banner .shield {
  font-size: 40px;
  margin-bottom: 10px;
}
.guarantee-banner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.guarantee-banner p {
  font-size: 14px;
  color: var(--teal);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.timeline-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 12px;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.timeline-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-label {
  font-size: 13px;
  color: var(--stone);
  flex: 1;
}

.timeline-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--midnight);
}

.gdpr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-frost);
  border: 1px solid var(--teal-mist);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 16px;
}

body.static-page footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
  text-align: center;
}
body.static-page footer a, body.static-page footer span {
  font-size: 11px;
  color: var(--stone-light);
  text-decoration: none;
  margin: 0 8px;
}

.callout--warning {
  background: #FFFBEB;
  border: 1px solid #FEF3C7;
  border-radius: 16px;
  padding: 22px;
  margin: 12px 0;
}
.callout--warning h4 {
  font-size: 14px;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 6px;
}

@media (max-width: 480px) {
  .page-main {
    margin-top: 78px;
  }
  .page-title {
    font-size: 22px;
  }
  .icon-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=static.css.map*/