/*!********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/pricing.scss ***!
  \********************************************************************************************************************************/
@charset "UTF-8";
:root {
  --teal-frost: #F0FDFA;
  --teal-mist: #CCFBF1;
  --teal: #0F766E;
  --teal-bright: #15c4b0;
  --teal-deep: #115E59;
  --teal-tint-light: #e9fff4;
  --midnight: #1A1A1A;
  --charcoal: #2D2D2D;
  --stone: #6B7280;
  --stone-light: #9CA3AF;
  --page-bg: #F5F5F7;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --page-bg: #F5F5F7;
  --bg-warm: #eefef9;
  --bg-deep: #E8E1D2;
  --ink: #14110E;
  --ink-soft: #3A352E;
  --muted: #6F6A60;
  --text-light: #9C988F;
  --hairline: #1A1A1A12;
  --hairline-strong: #1A1A1A1F;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --coral: #E63946;
  --coral-deep: #BF2230;
  --coral-tint: #FBE7E8;
  --coral-soft: #FDF1F2;
  --teal-tint: #D1FAE5;
  --gold: #F59E0B;
  --gold-tint: #FEF3C7;
  --font-serif: 'Instrument Serif', 'EB Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-card: 0 1px 2px rgba(20, 17, 14, 0.04), 0 8px 24px rgba(20, 17, 14, 0.06);
  --shadow-card-to-white: 0 1px 3px rgba(20, 17, 14, 0.06), 0 10px 28px rgba(20, 17, 14, 0.16);
  --shadow-card-hover: 0 4px 8px rgba(20, 17, 14, 0.06), 0 20px 48px rgba(20, 17, 14, 0.10);
  --shadow-card-faq:
          inset 0 1px 0 0 rgba(20, 17, 14, 0.05), /* Мягкий кант сверху */
          0 1px 2px rgba(20, 17, 14, 0.04), /* Ваша оригинальная тень 1 */
          0 8px 24px rgba(20, 17, 14, 0.06); /* Ваша оригинальная тень 2 */
  --shadow-featured: 0 4px 8px rgba(230, 57, 70, 0.08), 0 24px 60px rgba(57, 230, 174, 0.14);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
}

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

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

/* Дает секции вертикальные отступы */
section {
  padding: 72px 0;
}
@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

/* Выравнивает по горизонтали */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(44px, 6.5vw, 88px);
}

h2 {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* ================================
   TYPOGRAPHY
   ================================ */
.eyebrow {
  margin-bottom: 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--teal-bright);
}

em {
  font-style: italic;
  color: var(--teal-bright);
}

.section-header {
  display: block;
  max-width: 820px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 32px;
    padding: 0 16px;
  }
}

.section-header p.section-sub {
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 640px;
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .section-header p.section-sub {
    font-size: 17px;
    margin-top: 18px;
  }
}

/* Custom styles */
main.page-main {
  width: 100%;
}

section.hero {
  position: relative;
  isolation: isolate; /* чтобы ::before не выпадал из стэка */
  overflow: hidden; /* подрезает градиенты по краям hero */
  width: 100%;
  padding: 88px 0 64px;
}
@media (max-width: 768px) {
  section.hero {
    padding: 56px 0 40px;
  }
}
section.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 720px 480px at 12% 22%, rgba(20, 184, 166, 0.1) 0%, transparent 62%), radial-gradient(ellipse 640px 440px at 92% 18%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
}
@media (max-width: 768px) {
  section.hero {
    background: radial-gradient(ellipse 420px 320px at 10% 18%, rgba(20, 184, 166, 0.1) 0%, transparent 60%), radial-gradient(ellipse 380px 300px at 95% 14%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
  }
}
section.hero .container {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  section.hero .container {
    padding: 0 20px;
  }
}
section.hero .hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--white);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(20, 17, 14, 0.04), 0 6px 18px rgba(20, 17, 14, 0.05), 0 0 0 6px rgba(20, 184, 166, 0.08);
}
section.hero .hero-brand .brand-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
  padding-bottom: 2px;
}
section.hero .hero-brand .brand-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
section.hero .hero-brand .brand-sep {
  width: 1px;
  height: 14px;
  background: var(--hairline-strong);
}
section.hero .hero-brand .brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: normal;
}
section.hero .hero-header {
  max-width: 940px;
  justify-self: center;
}
section.hero .hero-header h1 {
  font-size: clamp(36px, 5.5vw, 66px);
  margin-bottom: 28px;
  line-height: normal;
}
section.hero .hero-header h1 em {
  font-style: italic;
  color: var(--teal-bright);
}
section.hero .hero-header p {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 680px;
  letter-spacing: -0.005em;
}
section.hero .hero-header .hero-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
section.hero .hero-header .hero-strip .star {
  color: var(--gold);
}
section.hero .hero-header .hero-strip .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hairline-strong);
}

section.pricing {
  width: 100%;
  padding-top: 0;
}
section.pricing .container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  section.pricing .container {
    padding: 0 20px;
  }
}
section.pricing .pricing-grid {
  display: grid;
  align-items: stretch;
  padding: 32px 0 0 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  section.pricing .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  section.pricing .pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 16px;
    scrollbar-width: none;
  }
  section.pricing .pricing-grid::-webkit-scrollbar {
    display: none;
  }
}
section.pricing .plan {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  section.pricing .plan {
    padding: 28px 24px 28px;
  }
}
@media (max-width: 600px) {
  section.pricing .plan {
    flex: 0 0 90%;
    scroll-snap-align: center;
  }
}
section.pricing .plan {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
section.pricing .plan:nth-child(1) {
  animation-delay: 0.4s;
}
section.pricing .plan:nth-child(2) {
  animation-delay: 0.5s;
}
section.pricing .plan:nth-child(3) {
  animation-delay: 0.6s;
}
section.pricing .plan:nth-child(4) {
  animation-delay: 0.7s;
}
section.pricing .plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
section.pricing .plan-pro {
  background: var(--white);
  border: 2px solid var(--teal-bright);
  box-shadow: var(--shadow-featured);
  transform: translateY(-12px);
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
  section.pricing .plan-pro {
    transform: none;
  }
}
section.pricing .plan-pro:hover {
  transform: translateY(-18px);
}
@media (max-width: 1100px) {
  section.pricing .plan-pro:hover {
    transform: translateY(-6px);
  }
}
section.pricing .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-bright);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.32);
  white-space: nowrap;
}
section.pricing .plan-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
section.pricing .plan-trial .plan-name {
  color: var(--ink-soft);
}
section.pricing .plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
section.pricing .plan-price .amount {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 44px;
  color: var(--ink);
  line-height: normal;
}
section.pricing .plan-price .period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.01em;
}
section.pricing .plan-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 56px;
  line-height: 1.5;
}
section.pricing .plan-stats {
  background: var(--bg-warm);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--hairline);
}
section.pricing .plan-pro .plan-stats {
  background: var(--teal-bright);
  color: var(--white);
}
section.pricing .stat-divider {
  background: var(--hairline-strong);
  width: 1px;
}
section.pricing .stat-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
section.pricing .stat-value {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
section.pricing .stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
section.pricing .plan-pro .stat-label {
  color: var(--white);
}
section.pricing .plan-value {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 4px 0 16px;
  margin-bottom: 20px;
}
section.pricing .plan-value-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
section.pricing .plan-value-amount .period {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
section.pricing .plan-pro .plan-value-amount {
  color: var(--teal-bright);
}
section.pricing .plan-value-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
section.pricing .plan-value-mult {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-bright);
  color: white;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  margin-top: 4px;
  text-transform: uppercase;
}
section.pricing {
  /* Free Trial variant: italic serif, smaller, signals "different track" */
}
section.pricing .plan-trial .plan-value-amount {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
section.pricing .plan-cta {
  margin-bottom: 14px;
}
section.pricing .plan-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
section.pricing .plan-cta .btn-outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
section.pricing .plan-cta .btn-primary {
  background: var(--teal-bright);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(57, 230, 198, 0.2), 0 8px 24px rgba(57, 230, 219, 0.3);
}
section.pricing .plan-fineprint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.pricing .plan-features {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
section.pricing .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
section.pricing .plan-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--teal-tint) url("data:image/svg+xml,%3Csvg width=%2710%27 height=%278%27 viewBox=%270 0 10 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 4L3.5 6.5L9 1%27 stroke=%27%2310B981%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") center no-repeat;
  background-size: 10px 8px;
}
section.pricing .plan-features li.disabled {
  color: var(--muted);
  opacity: 0.55;
}
section.pricing .plan-features li.disabled::before {
  background: var(--hairline);
  background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%278%27 viewBox=%270 0 8 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L7 7M7 1L1 7%27 stroke=%27%236F6A60%27 stroke-width=%271.6%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
  background-size: 8px 8px;
}

/* ================================
   HOW IT WORKS
   ================================ */
section.how-it-works {
  background-color: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
section.how-it-works .currencies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 1100px) {
  section.how-it-works .currencies {
    grid-template-columns: 1fr;
  }
}
section.how-it-works .currency-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card-to-white);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 540px) {
  section.how-it-works .currency-card {
    padding: 28px;
  }
}
section.how-it-works .currency-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
section.how-it-works .currency-icon.tokens {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}
section.how-it-works .currency-icon.credits {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}
section.how-it-works .currency-card h3 {
  margin-bottom: 14px;
}
section.how-it-works .currency-card p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.55;
}
section.how-it-works .currency-examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
section.how-it-works .currency-example {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
section.how-it-works .currency-example .label {
  color: var(--muted);
}
section.how-it-works .currency-example .value {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink);
}

/* ================================
   VALUE EXAMPLES (What you get)
   ================================ */
section.value-examples {
  position: relative;
  overflow: hidden;
}
section.value-examples::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
section.value-examples .example-month {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 40px 32px;
  box-shadow: var(--shadow-card);
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 540px) {
  section.value-examples .example-month {
    padding: 28px 24px 24px;
  }
}
section.value-examples .example-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}
section.value-examples .example-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
}
section.value-examples .example-budget {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
section.value-examples .example-budget strong {
  color: var(--ink);
  font-weight: 600;
}
section.value-examples .example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(315px, 1fr));
  gap: 12px;
}
@media (max-width: 768px) {
  section.value-examples .example-grid {
    grid-template-columns: 1fr;
  }
}
section.value-examples .toolkit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--page-bg);
  border-radius: var(--r-md);
}
section.value-examples .toolkit-emoji {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
section.value-examples .toolkit-info {
  flex: 1 1 0%;
  width: 0;
  min-width: 0;
  overflow: hidden;
}
section.value-examples .toolkit-info .toolkit-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.value-examples .toolkit-info .toolkit-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
section.value-examples .toolkit-cost {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
section.value-examples .example-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: 12px;
  line-height: 1;
}
@media (max-width: 540px) {
  section.value-examples .example-footer {
    flex-direction: column;
  }
}
section.value-examples .example-footer .example-total {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
section.value-examples .example-footer .example-leftover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: var(--teal-frost);
  color: #047857;
  font-size: 13px;
  font-weight: 600;
}
section.value-examples .example-footer .example-leftover::before {
  content: "+";
  font-weight: 700;
}
section.value-examples .example-catalog-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ================================
   COMPARISON TABLE
   ================================ */
section.comparison {
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
section.comparison .comparison-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 12px;
  box-shadow: var(--shadow-card-to-white);
  overflow-x: auto;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
section.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}
section.comparison thead th {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 24px 20px 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  vertical-align: top;
}
section.comparison thead th.th-corner {
  vertical-align: top;
  padding-top: 24px;
  padding-bottom: 18px;
}
section.comparison thead th .th-corner-h {
  display: block;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@media (max-width: 768px) {
  section.comparison thead th .th-corner-h {
    font-size: 20px;
  }
}
section.comparison thead th .th-corner-sub {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 768px) {
  section.comparison thead th .th-corner-sub {
    letter-spacing: 0.12em;
  }
}
section.comparison thead th .price-line {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--ink);
}
section.comparison thead th .price-line span {
  font-weight: 400;
  color: rgba(156, 152, 143, 0.79);
}
section.comparison thead th .featured-header {
  display: flex;
  justify-content: start;
  align-items: start;
}
section.comparison thead th .featured-badge {
  display: inline-block;
  margin-left: 8px;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--teal-bright);
  color: white;
  padding: 3px 9px;
  border-radius: var(--r-pill);
}
section.comparison thead th.featured {
  color: var(--teal-bright);
  position: relative;
}
section.comparison thead th.featured .price-line {
  color: var(--teal-bright);
}
section.comparison thead th.featured .price-line span {
  color: var(--teal-bright);
  font-weight: 700;
  font-size: 14px;
}
section.comparison {
  /* table body */
}
section.comparison tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-soft);
  vertical-align: middle;
}
section.comparison tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}
section.comparison tbody td.featured-col {
  background: var(--teal-tint-light);
}
section.comparison tr.row-highlight td {
  background: var(--page-bg);
}
section.comparison tr.row-highlight td.featured-col {
  background: var(--teal-tint);
  font-weight: 600;
  color: var(--ink);
}
section.comparison .check-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-tint) url("data:image/svg+xml,%3Csvg width=%2710%27 height=%278%27 viewBox=%270 0 10 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 4L3.5 6.5L9 1%27 stroke=%27%2310B981%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") center no-repeat;
  background-size: 10px 8px;
}
section.comparison .cross-icon {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--hairline-strong);
  border-radius: 2px;
  vertical-align: middle;
}
section.comparison .comparison-legend {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px 20px 6px;
  margin-top: 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
section.comparison .comparison-legend .lg-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
section.comparison .comparison-legend .lg-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-tint) url("data:image/svg+xml,%3Csvg width=%2710%27 height=%278%27 viewBox=%270 0 10 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 4L3.5 6.5L9 1%27 stroke=%27%2310B981%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E") center no-repeat;
  background-size: 9px 7px;
}
section.comparison .comparison-legend .lg-cross {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--hairline-strong);
  border-radius: 2px;
}

/* ================================
   SOCIAL PROOF STRIP
   ================================ */
section.proof {
  position: relative;
  overflow: hidden;
}
section.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 40%), radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
section.proof .proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1100px) {
  section.proof .proof-grid {
    grid-template-columns: 1fr;
  }
}
section.proof .proof-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
section.proof .proof-card.testimonial {
  background: var(--ink-soft);
  color: var(--white);
}
section.proof .proof-card.testimonial .stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 1px;
}
section.proof .proof-quote {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
@media (max-width: 768px) {
  section.proof .proof-quote {
    font-size: 20px;
  }
}
section.proof .proof-quote em {
  color: var(--teal-bright);
}
section.proof .proof-attribution {
  margin-top: 24px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}
section.proof .proof-stat {
  text-align: left;
}
section.proof .proof-stat .number {
  font-family: var(--font-serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}
@media (max-width: 1100px) {
  section.proof .proof-stat .number {
    font-size: 56px;
  }
}
section.proof .proof-stat .number em {
  color: var(--teal-bright);
}
section.proof .proof-stat .description {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ================================
   FAQ
   ================================ */
section.faq {
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
section.faq .faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 1100px) {
  section.faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  section.faq .faq-aside {
    padding: 0 16px;
  }
}
section.faq .faq-aside h2 {
  margin-bottom: 16px;
}
section.faq .faq-aside p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  section.faq .faq-aside p {
    margin-bottom: 24px;
  }
}
section.faq .faq-aside a {
  color: var(--teal-bright);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1.5px solid var(--teal-bright);
  padding-bottom: 1px;
  transition: opacity 0.15s ease;
}
section.faq .faq-aside a:hover {
  opacity: 0.7;
}
section.faq {
  /* Origin styles*/
}
section.faq .pp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.faq .pp-faq-item {
  background: var(--white);
  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;
}
section.faq .pp-faq-item:hover {
  box-shadow: var(--shadow-card-faq);
}
section.faq .pp-faq-item.open .pp-faq-a {
  max-height: none;
}
section.faq .pp-faq-item.open .pp-faq-icon {
  background: var(--teal-bright);
}
section.faq .pp-faq-item.open .pp-faq-icon svg {
  stroke: #fff;
  transform: rotate(180deg);
}
section.faq .pp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--midnight);
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
section.faq .pp-faq-q:hover {
  color: var(--teal-bright);
}
section.faq .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;
}
section.faq .pp-faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  transition: transform 0.3s;
}
section.faq .pp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
section.faq .pp-faq-a-inner {
  padding: 0 20px 18px;
  color: var(--stone);
  line-height: 1.7;
}
section.faq .pp-faq-a-inner p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 8px;
}
section.faq .pp-faq-a-inner p:last-child {
  margin-bottom: 0;
}
section.faq .pp-faq-a-inner a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
section.faq .pp-faq-a-inner a:hover {
  text-decoration: underline;
}

/* ================================
   FINAL CTA
   ================================ */
section.final-cta {
  padding: 120px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.final-cta {
    padding: 72px 0;
  }
}
section.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 40%), radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
section.final-cta h2 {
  margin-bottom: 24px;
} 
section.final-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
section.final-cta .final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
section.final-cta .btn {
  padding: 18px 36px;
  font-size: 16px;
}
section.final-cta .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
section.final-cta .cta-fineprint {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light, #9CA3AF);
  letter-spacing: -0.005em;
  line-height: 1.5;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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