/* ═══════════════════════════════════════════════
   PRICING PAGE — pricing.css
   Inherits from style.css
═══════════════════════════════════════════════ */

/* ── PRICING HERO ── */
.pricing-hero {
  padding: calc(36px + 72px + 60px) 0 80px;
  background: var(--navy-d);
  position: relative; overflow: hidden;
}
.pricing-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.ph-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.ph-orb--1 { width:600px;height:600px;background:radial-gradient(circle,rgba(61,184,61,.15),transparent 65%);top:-150px;right:-100px;animation:phOrb 10s ease-in-out infinite; }
.ph-orb--2 { width:400px;height:400px;background:radial-gradient(circle,rgba(245,166,35,.1),transparent 65%);bottom:-80px;left:-80px;animation:phOrb 14s ease-in-out infinite reverse; }
@keyframes phOrb { 0%,100%{transform:translate(0,0)}50%{transform:translate(20px,-24px)} }

.pricing-hero__container { max-width:1200px;margin:0 auto;padding:0 24px; }
.pricing-hero__breadcrumb {
  display:flex;align-items:center;gap:10px;
  font-size:12px;font-weight:600;letter-spacing:.05em;
  color:rgba(255,255,255,.35);margin-bottom:48px;
}
.pricing-hero__breadcrumb a { color:rgba(255,255,255,.35);transition:color .2s; }
.pricing-hero__breadcrumb a:hover { color:rgba(255,255,255,.7); }

.pricing-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pricing-hero__title {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0;
  color: #fff; margin-bottom: 20px;
}
.pricing-hero__title em { font-style: italic; color: var(--gold); }
.pricing-hero__sub {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 420px; margin-bottom: 32px;
}
.pricing-hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ph-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 14px; border-radius: 20px;
}

/* Big price card */
.big-price-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.bpc__top { margin-bottom: 28px; }
.bpc__label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px; display: block;
}
.bpc__price {
  display: flex; align-items: flex-end; gap: 6px; margin-bottom: 10px;
}
.bpc__cur { font-size: 20px; font-weight: 700; color: var(--gold); padding-bottom: 8px; }
.bpc__num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -.04em;
}
.bpc__context {
  font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.5;
}
.bpc__divider { height: 1px; background: var(--border); margin: 24px 0; }
.bpc__features { display: flex; flex-direction: column; gap: 12px; }
.bpc__features li { display: flex; align-items: flex-start; gap: 10px; }
.bpc__feat-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.bpc__features li span { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.5; }
.bpc__features li strong { font-weight: 700; }
.bpc__actions { display: flex; flex-direction: column; gap: 12px; }
.bpc__demo-link {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--muted); transition: color .2s;
}
.bpc__demo-link:hover { color: var(--navy); }
.bpc__note {
  text-align: center; font-size: 12px; color: var(--muted);
  margin-top: 12px; line-height: 1.6;
}
.bpc__note a { color: var(--green); font-weight: 600; }

/* ── CALCULATOR ── */
.calculator { padding: 110px 0; background: var(--off); }
.calculator__inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.calc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.calc-input-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.calc-input-group label {
  font-size: 13px; font-weight: 700; color: var(--navy);
  letter-spacing: .03em;
}
.calc-input-wrap {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden;
  transition: border-color .2s;
}
.calc-input-wrap:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(61,184,61,.1); }
.calc-input-wrap input {
  flex: 1; font-family: var(--font); font-size: 32px; font-weight: 900;
  color: var(--navy); border: none; outline: none;
  padding: 14px 16px; background: transparent; letter-spacing: -.02em;
  width: 100%;
}
.calc-input-suffix {
  padding: 0 16px; font-size: 14px; font-weight: 600;
  color: var(--muted); background: var(--off);
  border-left: 1px solid var(--border); height: 100%;
  display: flex; align-items: center; white-space: nowrap;
}

/* Slider */
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--off-2); border-radius: 6px; outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--green);
  cursor: pointer; box-shadow: 0 2px 8px rgba(61,184,61,.4);
  transition: transform .2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); cursor: pointer; border: none;
  box-shadow: 0 2px 8px rgba(61,184,61,.4);
}
.calc-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted); font-weight: 500;
}

/* Results */
.calc-results { margin-bottom: 20px; }
.calc-result-row {
  display: flex; align-items: center; gap: 0;
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.calc-result-item {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px; text-align: center;
}
.calc-result-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.calc-result-num {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 900; color: var(--navy); letter-spacing: -.02em;
  line-height: 1; transition: all .3s var(--ease);
}
.calc-result-sub { font-size: 11px; color: var(--muted); font-weight: 500; }
.calc-result-div { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

.calc-trial-note {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  padding: 14px 16px;
  background: rgba(61,184,61,.06);
  border: 1px solid rgba(61,184,61,.15);
  border-radius: var(--r); margin-bottom: 4px;
}
.calc-large-note {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  padding: 14px 16px;
  background: var(--gold-l);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--r); margin-bottom: 4px;
}

/* ── VALUE IN CONTEXT ── */
.value-context { padding: 110px 0; background: var(--white); }
.value-context__header { margin-bottom: 60px; text-align: center; }
.value-context__header .section-body { margin: 0 auto; }
.value-context__grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px;
}
.vc-card {
  border-radius: var(--r-xl); padding: 40px;
  border: 1.5px solid var(--border);
}
.vc-card--compare { background: var(--off); }
.vc-card--value { background: var(--navy); border-color: var(--navy); }
.vc-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 24px; display: block;
}
.vc-card--compare .vc-card__label { color: var(--muted); }
.vc-card--value .vc-card__label { color: rgba(255,255,255,.45); }
.vc-items { display: flex; flex-direction: column; gap: 16px; }
.vc-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; border-radius: var(--r-lg);
}
.vc-item--alt { background: var(--white); border: 1px solid var(--border); }
.vc-item__icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
.vc-item__check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(61,184,61,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vc-item > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.vc-item--alt strong { font-size: 14px; font-weight: 700; color: var(--navy); }
.vc-item--alt span { font-size: 12px; color: var(--muted); }
.vc-card--value .vc-item strong { font-size: 14px; font-weight: 700; color: #fff; }
.vc-card--value .vc-item span { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── WHAT'S INCLUDED ── */
.whats-included { padding: 110px 0; background: var(--off); }
.wi-header { margin-bottom: 60px; }
.wi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wi-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.wi-item:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(30,27,94,.15); }
.wi-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.wi-item h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.wi-item p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── FREE TRIAL ── */
.free-trial {
  padding: 110px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.free-trial::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(61,184,61,.1), transparent 60%);
  pointer-events: none;
}
.free-trial__inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
}
.ft-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.2);
  padding: 8px 16px; border-radius: 20px; margin-bottom: 28px;
}
.ft-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0;
  color: #fff; margin-bottom: 20px;
}
.ft-body {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 560px; margin: 0 auto 52px;
}
.ft-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 52px;
}
.ft-step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 20px 18px;
  max-width: 180px; text-align: center; flex: 1; min-width: 140px;
}
.ft-step__num {
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  color: var(--green); background: rgba(61,184,61,.12);
  padding: 4px 10px; border-radius: 20px;
}
.ft-step__text { display: flex; flex-direction: column; gap: 4px; }
.ft-step__text strong { font-size: 13px; font-weight: 700; color: #fff; }
.ft-step__text span { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.ft-step__arrow { font-size: 20px; color: rgba(255,255,255,.2); flex-shrink: 0; }
.ft-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ft-actions .btn-outline { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.7); }
.ft-actions .btn-outline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── FAQ ── */
.pricing-faq { padding: 110px 0; background: var(--white); }
.pricing-faq__header { margin-bottom: 60px; }
.pfaq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.pfaq-item { border-bottom: 1px solid var(--border); }
.pfaq-item:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 40px; }
.pfaq-item:nth-child(even) { padding-left: 40px; }
.pfaq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; padding: 22px 0;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: var(--navy); background: none; border: none; cursor: pointer;
  text-align: left; transition: color .2s;
}
.pfaq-q:hover { color: var(--green); }
.pfaq-q svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.pfaq-item.open .pfaq-q svg { transform: rotate(180deg); }
.pfaq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
}
.pfaq-item.open .pfaq-a { max-height: 300px; padding-bottom: 22px; }
.pfaq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .wi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:1024px) {
  .pricing-hero__content { grid-template-columns: 1fr; gap: 52px; }
  .calculator__inner { grid-template-columns: 1fr; gap: 52px; }
  .value-context__grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .pricing-hero { padding: calc(32px + 60px + 40px) 0 60px; }
  .pricing-hero__title { font-size: clamp(38px, 11vw, 56px); }
  .big-price-card { padding: 28px 22px; }
  .bpc__num { font-size: clamp(44px, 12vw, 64px); }
  .calc-card { padding: 28px 20px; }
  .calc-result-row { flex-direction: column; }
  .calc-result-div { width: 100%; height: 1px; }
  .calc-result-item { text-align: left; }
  .wi-grid { grid-template-columns: 1fr; }
  .pfaq-grid { grid-template-columns: 1fr; }
  .pfaq-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .pfaq-item:nth-child(even) { padding-left: 0; }
  .ft-steps { flex-direction: column; align-items: stretch; }
  .ft-step { max-width: 100%; flex-direction: row; text-align: left; }
  .ft-step__arrow { display: none; }
  .ft-actions { flex-direction: column; align-items: center; }
  .ft-actions a { width: 100%; max-width: 340px; justify-content: center; }
  .pricing-hero__badges { gap: 8px; }
  .ph-badge { font-size: 11px; padding: 6px 10px; }
}
@media(max-width:480px) {
  .calc-input-wrap input { font-size: 24px; }
  .calc-result-num { font-size: 16px; }
}
