/*!**********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/subscribe.scss ***!
  \**********************************************************************************************************************************/
@charset "UTF-8";
:root {
  --teal-frost: #F0FDFA;
  --teal-mist: #CCFBF1;
  --teal-light: #99F6E4;
  --teal: #0F766E;
  --teal-bright: #14B8A6;
  --teal-deep: #115E59;
  --midnight: #1A1A1A;
  --charcoal: #2D2D2D;
  --stone: #6B7280;
  --stone-light: #9CA3AF;
  --warm-white: #FAFFFE;
  --navy: #0F172A;
  --coral: #F97066;
  --green: #22C55E;
  --purple: rgb(139, 92, 246);
  --blue: rgb(59, 130, 246);
  --amber: rgb(245, 180, 50);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-soft: 0 1px 3px rgba(15,118,110,.04), 0 8px 24px rgba(15,118,110,.03);
  --shadow-medium: 0 4px 12px rgba(15,118,110,.05), 0 16px 40px rgba(15,118,110,.04);
  --page-bg: #F5F5F7;
  --container-max: 1200px;
  --nav-height: 48px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--midnight);
  background: var(--page-bg);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 64px; /* высота navbar */
  min-height: 100vh;
}
@media (max-width: 768px) {
  body {
    padding-top: 56px; /* высота mobile navbar */
  }
}

#mainNav {
  flex-shrink: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--midnight);
}

img[data-lazy] {
  opacity: 0;
  transition: opacity 0.3s;
}

img.loaded {
  opacity: 1;
}

:root {
  --co-teal-frost: #F0FDFA;
  --co-teal-mist: #CCFBF1;
  --co-teal: #0F766E;
  --co-teal-bright: #14B8A6;
  --co-teal-deep: #115E59;
  --co-midnight: #1A1A1A;
  --co-charcoal: #2D2D2D;
  --co-stone: #6B7280;
  --co-stone-light: #9CA3AF;
  --co-page-bg: #F5F5F7;
  --co-radius: 16px;
  --co-radius-sm: 10px;
  --co-font-display: 'Fraunces', Georgia, serif;
  --co-font-body: 'DM Sans', system-ui, sans-serif;
  --co-font-mono: 'DM Mono', monospace;
}

body {
  font-family: var(--co-font-body);
  background: var(--co-page-bg);
  color: var(--co-midnight);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 22px;
  width: auto;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.page-main {
  max-width: 680px;
  width: 100%;
  margin: 24px auto 0;
  padding: 0 20px 24px;
  text-align: center;
  flex: 1;
}

.hero-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
  background: linear-gradient(135deg, #14B8A6, #0F766E);
  position: relative;
  flex-shrink: 0;
}

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

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

@keyframes co-shimmer {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.page-sub {
  font-size: 14px;
  color: var(--co-teal);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 20px;
}
.page-sub strong {
  color: var(--co-midnight);
}

.card {
  background: #fff;
  border-radius: var(--co-radius);
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--co-font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  text-align: center;
  color: var(--co-midnight);
}

.fg {
  margin-bottom: 10px;
  position: relative;
}

.fi {
  width: 100%;
  padding: 24px 18px 10px;
  border-radius: var(--co-radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-family: var(--co-font-body);
  font-size: 15px;
  color: var(--co-midnight);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fi::placeholder {
  color: transparent;
}
.fi:focus {
  border-color: var(--co-teal-bright);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}
.fi.has-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

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

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

.fs-wrap {
  position: relative;
}

.fs {
  width: 100%;
  padding: 24px 40px 10px 18px;
  border-radius: var(--co-radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-family: var(--co-font-body);
  font-size: 15px;
  color: var(--co-midnight);
  background: #fff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fs:focus {
  border-color: var(--co-teal-bright);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.fs-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--co-stone-light);
}

.fs-lbl {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--co-stone);
  pointer-events: none;
}
.fs-lbl .req {
  color: #EF4444;
}

.city-row {
  display: flex;
  gap: 10px;
}
.city-row .fg:nth-child(1) {
  flex: 1.4;
}
.city-row .fg:nth-child(2) {
  flex: 1;
}
.city-row .fg:nth-child(3) {
  flex: 0 0 100px;
}

.ps-saved {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ps-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--co-radius-sm);
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.ps-card:hover {
  border-color: var(--co-teal-bright);
}
.ps-card--active {
  border-color: var(--co-teal-bright);
  background-color: var(--co-teal-frost);
  outline: 1px solid var(--co-teal-bright);
  outline-offset: -2px;
}
.ps-card__radio {
  accent-color: var(--co-teal-bright);
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.ps-card__icon {
  display: flex;
  align-items: center;
  color: var(--co-stone);
  flex-shrink: 0;
}
.ps-card__icon svg {
  display: block;
}
.ps-card--active .ps-card__icon {
  color: var(--co-teal);
}
.ps-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ps-card__brand {
  font-family: var(--co-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--co-midnight);
  letter-spacing: 0.01em;
}
.ps-card--active .ps-card__brand {
  color: var(--co-teal);
}
.ps-card__dots {
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--co-stone);
  margin: 0 4px;
}
.ps-card__exp {
  font-size: 12px;
  font-weight: 400;
  color: var(--co-stone);
}
.ps-card--new {
  border-style: dashed;
}
.ps-card--new .ps-card__icon {
  color: var(--co-teal-bright);
}

.co-stripe-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: var(--co-stone-light);
  font-size: 14px;
}
.co-stripe-loading .co-spinner {
  border-top-color: var(--co-midnight);
}

.stripe-element-wrap {
  border-radius: var(--co-radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 14px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stripe-element-wrap.StripeElement--focus {
  border-color: var(--co-teal-bright);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}
.stripe-element-wrap.StripeElement--invalid {
  border-color: #EF4444;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  background: var(--co-teal-bright);
  color: #fff;
  font-family: var(--co-font-body);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
  width: 100%;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.3);
  filter: brightness(1.05);
}
.btn-primary:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

.co-error {
  font-size: 13px;
  color: #EF4444;
  margin-top: 8px;
  text-align: center;
  min-height: 18px;
}

.trust {
  text-align: center;
  margin-top: 14px;
}

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--co-stone);
  margin-bottom: 10px;
}

.trust-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--co-teal-frost);
  color: var(--co-teal);
}

.tb-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--co-midnight);
}

.tb-sub {
  font-size: 11px;
  color: var(--co-stone-light);
}

.co-skeleton {
  pointer-events: none;
}

.co-skel-line {
  height: 44px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: var(--co-radius-sm);
  margin-bottom: 10px;
  animation: skel-shimmer 1.4s ease infinite;
}
.co-skel-line--title {
  height: 20px;
  width: 40%;
  margin-bottom: 18px;
}
.co-skel-line--short {
  width: 60%;
}
.co-skel-line:last-of-type {
  margin-bottom: 0;
}

.co-skel-btn {
  height: 52px;
  border-radius: 50px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease infinite;
  margin-top: 14px;
}

@keyframes skel-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.lock-wrap {
  width: 16px;
  height: 20px;
  position: relative;
}

.lock-body {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 11px;
  background: #fff;
  border-radius: 3px;
  animation: lockPulse 0.9s ease 0.5s forwards;
}

.lock-shackle {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 8px;
  height: 7px;
  border: 2px solid #fff;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  transform-origin: right bottom;
  transform: translateX(-50%) rotate(-70deg);
  animation: snapClose 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.lock-keyhole {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  animation: showKeyhole 0.25s ease 0.8s forwards;
}
.lock-keyhole::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: var(--co-teal-deep);
  border-radius: 50%;
  margin: 0 auto;
}
.lock-keyhole::after {
  content: "";
  display: block;
  width: 2px;
  height: 3px;
  background: var(--co-teal-deep);
  margin: 1px auto 0;
}

@keyframes snapClose {
  0% {
    transform: translateX(-50%) rotate(-70deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
@keyframes lockPulse {
  0%, 100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 8px rgba(20, 184, 166, 0.4);
  }
}
@keyframes showKeyhole {
  to {
    transform: translateX(-50%) scale(1);
  }
}
@keyframes co-spin {
  to {
    transform: rotate(360deg);
  }
}
.co-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: co-spin 0.7s linear infinite;
  flex-shrink: 0;
}

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

.sub-card {
  padding: 28px;
}

.sub-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.sub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--co-radius-sm);
  font-size: 28px;
  background-color: var(--co-teal-frost);
  color: var(--co-teal);
  flex-shrink: 0;
}
.sub-icon--trial {
  background-color: #FEF3C7;
  color: #B45309;
}
.sub-icon--starter { /* default already teal */ }
.sub-icon--pro {
  background-color: #EDE9FE;
  color: #6D28D9;
}
.sub-icon--power {
  background-color: #FED7AA;
  color: #C2410C;
}

.sub-info {
  flex: 1;
  min-width: 0;
}

.sub-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.sub-title {
  font-family: var(--co-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--co-midnight);
  line-height: 1.2;
}

.sub-tier-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--co-teal-frost);
  color: var(--co-teal);
}
.sub-tier-badge--trial {
  background-color: #FEF3C7;
  color: #B45309;
}
.sub-tier-badge--starter { /* default already teal */ }
.sub-tier-badge--pro {
  background-color: #EDE9FE;
  color: #6D28D9;
}
.sub-tier-badge--power {
  background-color: #FED7AA;
  color: #C2410C;
}

.sub-description {
  margin: 0;
  font-size: 14px;
  color: var(--co-stone);
  line-height: 1.5;
}

.sub-price-col {
  flex-shrink: 0;
  text-align: right;
}

.sub-price {
  font-family: var(--co-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--co-midnight);
  line-height: 1;
}

.sub-price-suffix {
  margin-top: 2px;
  font-size: 13px;
  color: var(--co-stone);
}

.sub-includes-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sub-includes-title {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--co-stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sub-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sub-inc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--co-radius-sm);
  background-color: var(--co-teal-frost);
}

.sub-inc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
}

.sub-inc-body {
  line-height: 1.2;
}

.sub-inc-amount {
  font-family: var(--co-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--co-midnight);
}

.sub-inc-label {
  margin-top: 2px;
  font-size: 12px;
  color: var(--co-stone);
}

.sub-features {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.sub-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--co-charcoal);
  line-height: 1.4;
}

.sub-billing {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--co-radius-sm);
  background-color: #F3F4F6;
  font-size: 13px;
  color: var(--co-charcoal);
  line-height: 1.5;
}
.sub-billing strong {
  color: var(--co-midnight);
  font-weight: 600;
}

.sub-trial-used {
  padding: 40px 28px;
  text-align: center;
}

.sub-trial-used-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: var(--co-teal-frost);
  color: var(--co-teal);
  font-size: 28px;
  font-weight: 700;
}

.sub-trial-used-title {
  margin-bottom: 8px;
  font-family: var(--co-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--co-midnight);
}

.sub-trial-used-sub {
  max-width: 340px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: var(--co-stone);
  line-height: 1.5;
}

.sub-trial-used-btn {
  width: auto;
  padding: 12px 24px;
}

.sub-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sub-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: #DCFCE7;
  color: #16A34A;
}

.sub-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
}
.sub-summary-row--total {
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sub-summary-label {
  color: var(--co-stone);
}

.sub-summary-value {
  color: var(--co-midnight);
  font-weight: 500;
  font-family: var(--co-font-mono);
}
.sub-summary-value--total {
  font-family: var(--co-font-display);
  font-size: 18px;
  font-weight: 700;
}

.sub-success-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--co-stone);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .page-main {
    padding: 0 14px 32px;
  }
  .page-title {
    font-size: 22px;
  }
  .city-row {
    flex-direction: column;
    gap: 0;
  }
  .city-row .fg {
    flex: unset !important;
  }
  .sub-card {
    padding: 20px;
  }
  .sub-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .sub-price-col {
    text-align: left;
  }
  .sub-price {
    font-size: 24px;
  }
  .sub-includes {
    grid-template-columns: 1fr;
  }
  .sub-trial-used {
    padding: 28px 16px;
  }
  .sub-success-icon {
    width: 56px;
    height: 56px;
  }
}

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