/* Shared header/footer for the static site */
a {
  color: inherit;
  text-decoration: none;
}

.main-header {
  display: flex;
  width: 1204px;
  height: 76px;
  max-width: 1204px;
  padding: 16px 15px 16px 32px;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: #0a0a0f;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, .15);
  backdrop-filter: blur(2.5px);
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  z-index: 1000;
}

.main-header__logo {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: .3px;
}

.main-header__nav {
  display: flex;
  gap: 32px;
  height: 100%;
  align-items: center;
}

.main-header__link {
  color: #9c9c9d;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .2px;
  transition: color .25s ease, text-shadow .25s ease;
}

.main-header__link:hover,
.main-header__link:focus-visible,
.main-header__link[aria-current="page"] {
  color: #f2f2f3;
  text-shadow: 0 0 16px rgba(255, 255, 255, .32);
}

.main-header__cta,
.big-button {
  display: inline-flex;
  min-height: 44px;
  padding: 14px 32px;
  width: 193px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: #e6e6e6;
  color: #2f3031;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 26px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 620px;
  height: 620px;
  margin-top: -310px;
  margin-left: -310px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  opacity: 0;
  transform: translate3d(-50vw, -50vh, 0);
  will-change: transform, opacity;
  transition: opacity 400ms ease;
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .06) 28%, rgba(255, 255, 255, .02) 55%, rgba(255, 255, 255, 0) 72%);
  mix-blend-mode: screen;
  filter: blur(18px);
}

.cursor-glow.is-visible {
  opacity: 1;
}

.main-header__cta:hover,
.main-header__cta:focus-visible {
  transform: translateY(-2px);
  background: #f2f2f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 14px 34px rgba(255, 255, 255, .14);
}

.main-header__burger {
  display: none;
}

@media (max-width: 768px) {
  .main-header {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 58px auto auto;
    height: 58px;
    min-height: 58px;
    padding: 0 16px;
    top: 32px;
    align-items: center;
    align-content: start;
    row-gap: 0;
    overflow: hidden;
    border-radius: 8px;
  }

  .main-header__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: uppercase;
  }

  .main-header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    width: 24px;
    height: 19px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    align-self: center;
  }

  .main-header__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    grid-column: 1 / -1;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .main-header__link {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    opacity: .9;
  }

  .main-header__cta {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    overflow: hidden;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .main-header.is-open {
    height: auto;
    padding: 0 16px 12px;
    row-gap: 8px;
    overflow: visible;
  }

  .main-header.is-open .main-header__nav {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-header.is-open .main-header__cta {
    max-height: 44px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 40ms;
  }
}

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

:root {
  --bg: #0A0A0F;
  --card: rgba(255, 255, 255, 0.025);
  --card-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.07);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.54);
  --dim: rgba(255, 255, 255, 0.34);
  --violet: #8B5CF6;
  --blue: #47A4FF;
  --green: #10B981;
  --red: #EF4444;
  --orange: #F59E0B;
  --cyan: #06B6D4;
  --shape: #27407f
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -4;
  background: linear-gradient(90deg, transparent 0 calc(50% - 480px), rgba(255, 255, 255, .035) calc(50% - 480px), rgba(255, 255, 255, .035) calc(50% - 479px), transparent calc(50% - 479px) calc(50% + 480px), rgba(255, 255, 255, .035) calc(50% + 480px), rgba(255, 255, 255, .035) calc(50% + 481px), transparent calc(50% + 481px)), linear-gradient(90deg, transparent 0 calc(50% - 240px), rgba(255, 255, 255, .02) calc(50% - 240px), rgba(255, 255, 255, .02) calc(50% - 239px), transparent calc(50% - 239px) calc(50% + 240px), rgba(255, 255, 255, .02) calc(50% + 240px), rgba(255, 255, 255, .02) calc(50% + 241px), transparent calc(50% + 241px))
}

/* nav/header intentionally left compatible with the current template */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85)
}

.nav-logo {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em
}

.nav-links {
  display: flex;
  gap: 32px
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px
}

.nav-links a:hover {
  color: #fff
}

.nav-links a.active {
  color: #fff;
  font-weight: 600
}

.nav-cta {
  background: #fff;
  color: #0A0A0F;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none
}

/* reusable interactions */
a,
button,
input[type=range] {
  -webkit-tap-highlight-color: transparent
}

.pc-btn1 {
  transition: opacity .14s ease, transform .08s ease, border-color .2s ease, background .2s ease, color .2s ease
}

.pc-btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 315px;
  height: 44px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none
}

.pc-btn,
.cta-btn,
.nav-cta,
.toggle-btn {
  transition: opacity .14s ease, transform .08s ease, border-color .2s ease, background .2s ease, color .2s ease
}
.pc-btn1:hover {
  opacity: .5
}

.pc-btn:hover,
.cta-btn:hover,
.nav-cta:hover,
.toggle-btn:hover {
  opacity: .5
}

.pc-btn1:active {
  transform: scale(.95)
}

.pc-btn:active,
.cta-btn:active,
.nav-cta:active,
.toggle-btn:active {
  transform: scale(.95)
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden
}

.page-shell::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 70px;
  width: 1360px;
  height: 520px;
  transform: translateX(-50%);
  z-index: -3;
  background: linear-gradient(rgba(255, 255, 255, .12), rgba(255, 255, 255, .12)) 0 110px/100% 1px no-repeat, linear-gradient(rgba(255, 255, 255, .12), rgba(255, 255, 255, .12)) 0 320px/100% 1px no-repeat, linear-gradient(135deg, transparent calc(50% - 1px), rgba(255, 255, 255, .06) calc(50% - 1px), rgba(255, 255, 255, .06) 50%, transparent 50%), linear-gradient(45deg, transparent calc(50% - 1px), rgba(255, 255, 255, .06) calc(50% - 1px), rgba(255, 255, 255, .06) 50%, transparent 50%);
  opacity: .55
}

.fx-placeholder {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  background: var(--shape);
  opacity: .95;
  filter: drop-shadow(0 20px 40px rgba(39, 64, 127, .22))
}

.fx-top-right {
  right: -170px;
  top: -65px;
  width: 470px;
  height: 250px;
  clip-path: polygon(0 33%, 64% 42%, 84% 0, 100% 0, 100% 100%, 72% 100%, 8% 56%);
  background: var(--shape) center/cover no-repeat
}

.fx-left-mid {
  left: -145px;
  top: 720px;
  width: 480px;
  height: 500px;
  clip-path: polygon(0 0, 54% 46%, 70% 38%, 70% 74%, 100% 74%, 58% 100%, 40% 92%, 0 48%);
  background: var(--shape) center/cover no-repeat
}

.fx-right-calc {
  right: -230px;
  top: 2670px;
  width: 620px;
  height: 780px;
  clip-path: polygon(100% 0, 100% 100%, 50% 72%, 36% 46%, 60% 28%);
  background: var(--shape) center/cover no-repeat
}

.fx-bottom {
  left: 42%;
  bottom: 170px;
  width: 880px;
  height: 560px;
  transform: translateX(-10%) rotate(-9deg);
  clip-path: polygon(0 0, 28% 76%, 55% 70%, 100% 62%, 50% 100%, 30% 96%);
  background: var(--shape) center/cover no-repeat
}

.fx-small-dots {
  position: absolute;
  z-index: -1;
  width: 64px;
  height: 64px;
  background-image: radial-gradient(var(--blue) 1px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: .38;
  pointer-events: none
}

.fx-dots-1 {
  left: calc(50% - 560px);
  top: 190px
}

.fx-dots-2 {
  right: calc(50% - 570px);
  top: 190px
}

.fx-dots-3 {
  left: 50%;
  top: 555px
}

.fx-dots-4 {
  left: 50%;
  top: 315px
}

.pricing-ellipse {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: -1
}

.pricing-ellipse--top-right {
  top: -260px;
  right: -790px;
  width: 1050px;
  height: auto;
  opacity: .72;
  filter: blur(22px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 18%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 18%, #000 42%)
}

.pricing-ellipse--tariffs-left {
  left: -330px;
  top: -62px;
  width: 583px;
  height: auto;
  opacity: .82;
  filter: blur(10px)
}

.pricing-ellipse--calc-right {
  right: -505px;
  top: -320px;
  width: 760px;
  height: auto;
  opacity: .68;
  filter: blur(22px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 18%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 18%, #000 42%)
}

.pricing-ellipse--final {
  left: 50%;
  bottom: -270px;
  width: 900px;
  height: auto;
  opacity: .72;
  filter: blur(18px);
  transform: translateX(-50%) rotate(180deg)
}

.hero {
  text-align: center;
  padding: 234px 60px 0;
  position: relative;
  min-height: 636px
}

.hero-label {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  margin: 0 0 36px;
  padding: 10px 18px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  background: linear-gradient(
    180deg,
    rgba(20, 24, 34, .94),
    rgba(10, 12, 19, .94)
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,255,255,.03),
    0 10px 30px rgba(0,0,0,.22);

  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 30px;
  letter-spacing: -0.045em
}

.hero-sub {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  max-width: 430px;
  margin: 0 auto;
  opacity: .86
}

/* TOGGLE */
.toggle-wrap {
  text-align: center;
  padding: 0 60px 0;
  height: 181px
}

.toggle {
  display: inline-flex;
  width: 238px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: rgba(48, 48, 48, .20);
  border: 0;
  border-radius: 30px;
  padding: 8px;
  gap: 12px;
  box-shadow: none
}

.toggle-btn {
  width: 105px;
  height: 44px;
  padding: 0;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  border: none;
  background: none
}

.toggle-btn.active {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  font-weight: 700;
  box-shadow: none
}

.toggle-save {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

/* PRICING CARDS */
.pricing-section {
  padding: 0 0 0;
  max-width: 1128px;
  margin: 0 auto 258px;
  position: relative;
  isolation: isolate
}

.pricing-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 1128px;
  margin: 0 auto
}

.price-card {
  width: 396px;
  height: 741px;
  min-height: 741px;
  background: #0B1018;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 16px;
  padding: 48px 47px 40px;
  transition: border-color .3s, box-shadow .3s, opacity .14s;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: none;
  margin-top: 30px;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, .2)
}

.price-card-popular {
  width: 396px;
  height: 805px;
  min-height: 805px;
  margin: -32px -30px 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .06));
  box-shadow: none;
  padding-top: 48px
}

.popular-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 198px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0A0A0F;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  border-radius: 16px;
  letter-spacing: 0
}

.pc-name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px
}

.pc-desc {
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  margin-bottom: 38px;
  min-height: 30px
}

.pc-price {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -0.065em;
  line-height: 1
}

.pc-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0
}

.price-card-popular .pc-price {
  font-size: 64px
}

.pc-period {
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 8px;
  min-height: 18px
}

.pc-credits {
  font-size: 11.5px;
  font-weight: 800;
  margin: 0 -30px 34px;
  padding: 18px 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.pc-credits span {
  color: #fff
}

.pc-features {
  list-style: none;
  padding: 0;
  margin-bottom: 31px;
  flex: 1
}

.pc-features li {
  font-size: 11.5px;
  color: #fff;
  opacity: .9;
  padding: 7px 0 7px 21px;
  position: relative;
  line-height: 1.2
}

.pc-features li::before {
  content: '⊕';
  position: absolute;
  left: 0;
  color: #fff;
  opacity: .85;
  font-size: 10px;
  top: 7px
}

.pc-btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 315px;
  height: 44px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none
}

.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 315px;
  height: 44px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none
}

.pc-btn-primary {
  background: #E6E6E6;
  color: #0A0A0F
}

.pc-btn-primary1 {
  background: #E6E6E6;
  color: #0A0A0F
}

.pc-btn-ghost {
  background: rgba(255, 255, 255, 0.01);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .04)
}

/* CREDITS TABLE */
.credits-section {
  padding: 0 0 0;
  max-width: 1204px;
  margin: 0 auto 230px
}

.credits-section h2,
.calc-section h2,
.faq-section h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.035em
}

.credits-sub,
.calc-sub {
  text-align: center;
  color: #fff;
  opacity: .76;
  font-size: 13px;
  margin-bottom: 82px
}

.credits-table-wrap {
  width: 1204px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: transparent
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed
}

.credits-table th {
  height: 66px;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .20);
  border-right: 1px solid rgba(255, 255, 255, .20);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .24em
}

.credits-table th:nth-child(1) {
  width: 361px
}

.credits-table th:nth-child(2) {
  width: 659px
}

.credits-table th:nth-child(3) {
  width: 184px
}

.credits-table td {
  height: 67px;
  font-size: 11.5px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .20);
  border-right: 1px solid rgba(255, 255, 255, .20);
  vertical-align: middle
}

.credits-table tr:last-child td {
  border-bottom: 0
}

.credits-table th:last-child,
.credits-table td:last-child {
  background: rgba(71, 164, 255, .08);
  text-align: right;
  border-right: 0
}

.credits-table td:last-child {
  font-weight: 800;
  color: #fff
}

.ct-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 0
}

/* CALCULATOR */
.calc-section {
  padding: 0 0 0;
  max-width: 1204px;
  margin: 0 auto 300px
}

.calc-section h2 {
  margin-bottom: 24px
}

.calc-sub {
  margin-bottom: 76px
}

.calc-card {
  background: transparent;
  border: 0;
  padding: 0
}

.calc-row {
  display: grid;
  grid-template-columns: 588px 500px 40px;
  align-items: center;
  gap: 24px;
  width: 1204px;
  height: 102px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.calc-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, .18)
}

.calc-label {
  font-size: 11.5px;
  font-weight: 800
}

.calc-label span {
  font-size: 11px;
  color: var(--dim);
  font-weight: 400;
  display: block;
  margin-top: 10px
}

.calc-input {
  display: flex;
  align-items: center;
  width: 500px
}

.calc-input input[type=range] {
  width: 500px;
  height: 8px;
  accent-color: #fff;
  cursor: pointer
}

.calc-value {
  font-size: 13px;
  font-weight: 800;
  min-width: 40px;
  text-align: right
}

.calc-result {
  display: grid;
  grid-template-columns: 397px 1fr;
  align-items: center;
  gap: 0;
  width: 1204px;
  height: 240px;
  margin: 45px 0 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: transparent;
  text-align: left
}

.calc-result-box {
  height: 203px;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, .20)
}

.calc-result-label {
  font-size: 32px;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 32px;
  opacity: .9
}

.calc-result-num {
  font-size: 23px;
  font-weight: 800;
  color: #fff
}

.calc-result-main {
  height: 203px;
  padding: 29px 66px;
  position: relative;
  isolation: isolate
}

.calc-result-rec {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 46px;
  color: #fff
}

.calc-result .pc-btn {
  display: flex;
  height: 44px;
  margin: 0;
  border-radius: 8px;
  font-size: 11px
}

/* FAQ */
.faq-section {
  padding: 0 0 0;
  max-width: 1204px;
  margin: 0 auto 306px
}

.faq-section h2 {
  margin-bottom: 76px
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  padding: 0
}

.faq-q {
  height: 92px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  color: #fff
}

.faq-q::after {
  content: '⌄';
  font-size: 17px;
  color: #fff;
  opacity: .8;
  transition: transform .2s ease
}

.faq-q.open::after {
  transform: rotate(180deg)
}

.faq-a {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
  padding: 0
}

.faq-a.open {
  max-height: 80px;
  padding: 0 0 38px
}

/* CTA */
.final-cta {
  text-align: center;
  padding: 0 60px;
  margin: 0 auto 210px;
  background: transparent;
  border: 0;
  border-radius: 0;
  position: relative;
  isolation: isolate;
  min-height: 390px
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, .08)
}

.final-cta::before {
  top: -50px
}

.final-cta::after {
  bottom: -28px
}

.final-cta h2 {
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  margin: 0 auto 42px;
  letter-spacing: -.055em;
  max-width: 900px
}

.final-cta p {
  color: #fff;
  opacity: .82;
  font-size: 14px;
  margin-bottom: 42px
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E6E6E6;
  color: #0A0A0F;
  width: 193px;
  height: 44px;
  padding: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 32px
}

.cta-sub {
  font-size: 12px;
  color: var(--dim)
}

.footer {
  padding: 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  margin-top: 80px
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 8px
}

.footer-copy {
  text-align: center;
  padding: 24px 60px;
  font-size: 12px;
  color: var(--dim);
  border-top: 1px solid var(--border)
}

@media(max-width:900px) {
  .hero {
    padding-top: 120px
  }

  .hero h1 {
    font-size: 42px
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .price-card,
  .price-card-popular {
    min-height: auto;
    margin: 0
  }

  .calc-row {
    grid-template-columns: 1fr
  }

  .calc-result {
    grid-template-columns: 1fr
  }

  .calc-result-box {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14)
  }

  .final-cta h2 {
    font-size: 38px
  }

  .fx-placeholder {
    opacity: .45
  }

  .nav {
    padding: 14px 20px
  }

  .nav-links {
    display: none
  }
}


/* FINAL reference-matching overrides: solid cards, exact FAQ arrows, button glow. FX placeholders above are untouched. */
:root {
  --ref-bg: #090B11;
  --ref-card: #0E1219;
  --ref-card-pro: #1F2025;
  --ref-card-line: rgba(255, 255, 255, .18);
  --ref-card-line-soft: rgba(255, 255, 255, .11);
  --ref-blue: #2D3F80;
}

body {
  background: var(--ref-bg)
}

.pc-btn1 {
  position: relative;
  overflow: visible;
  will-change: transform, opacity;
}

/* Buttons: reference has a soft white bloom on light CTAs, with requested hover/tap behavior kept */
.pc-btn,
.cta-btn,
.nav-cta {
  position: relative;
  overflow: visible;
  will-change: transform, opacity;
}

.pc-btn-primary1 {
  background: #F4F4F4 !important;
  color: #07090E !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 0 18px rgba(255, 255, 255, .33),
    inset 0 1px 0 rgba(255, 255, 255, .92) !important;
}

.pc-btn-primary,
.cta-btn,
.nav-cta {
  background: #F4F4F4 !important;
  color: #07090E !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .10),
    0 0 18px rgba(255, 255, 255, .33),
    inset 0 1px 0 rgba(255, 255, 255, .92) !important;
}

.pc-btn-primary:hover,
.cta-btn:hover,
.nav-cta:hover {
  opacity: .5;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .18),
    0 0 30px rgba(255, 255, 255, .62),
    0 0 64px rgba(255, 255, 255, .22),
    inset 0 1px 0 rgba(255, 255, 255, .95) !important;
}

.pc-btn-ghost {
  background: #0A0D13 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .09) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03) !important;
}

.pc-btn-ghost:hover {
  opacity: .5;
  box-shadow: 0 0 18px rgba(255, 255, 255, .12) !important
}

.pc-btn:active,
.cta-btn:active,
.nav-cta:active {
  transform: scale(.95)
}

/* Pricing cards: make them opaque like the PDF, with inner boxed areas and crisp borders */
.price-card {
  overflow: hidden;
  background:
    linear-gradient(var(--ref-card), var(--ref-card)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .09)) border-box !important;
  border: 1px solid transparent !important;
  border-radius: 15px !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .025),
    0 22px 58px rgba(0, 0, 0, .28) !important;
}

.price-card::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 78px;
  height: 176px;
  border: 1px solid var(--ref-card-line-soft);
  border-radius: 10px;
  background: #0B0F16;
  pointer-events: none;
  z-index: 0;
}

.price-card::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 343px;
  bottom: 87px;
  border: 1px solid var(--ref-card-line-soft);
  border-radius: 10px;
  background: #0B0F16;
  pointer-events: none;
  z-index: 0;
}

.price-card>* {
  position: relative;
  z-index: 1
}

.price-card-popular {
  background:
    linear-gradient(var(--ref-card-pro), var(--ref-card-pro)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .15)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow:
    0 0 0 1px rgba(88, 129, 255, .12),
    0 0 46px rgba(61, 105, 205, .16),
    0 30px 80px rgba(0, 0, 0, .40) !important;
}

.price-card-popular::before,
.price-card-popular::after {
  background: #15171D;
  border-color: rgba(255, 255, 255, .15)
}

.price-card:hover {
  border-color: transparent !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 0 34px rgba(255, 255, 255, .06), 0 22px 58px rgba(0, 0, 0, .30) !important
}

.price-card-popular:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .13), 0 0 58px rgba(61, 105, 205, .20), 0 30px 80px rgba(0, 0, 0, .42) !important
}

.popular-badge {
  background: #fff !important;
  box-shadow: 0 0 22px rgba(255, 255, 255, .32), 0 10px 24px rgba(0, 0, 0, .18) !important
}

.pc-credits {
  background: rgba(255, 255, 255, .015);
  border-color: rgba(255, 255, 255, .13) !important
}

.pc-features li::before {
  content: '' !important;
  width: 9px;
  height: 9px;
  top: 9px !important;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, .92) 45% 56%, transparent 56%) center/6px 6px no-repeat;
  opacity: .9 !important;
}

.pc-features li {
  padding-left: 22px !important
}

/* Table and calculator borders closer to the PDF */
.credits-table-wrap,
.calc-result,
.calc-result-box {
  border-color: rgba(255, 255, 255, .24) !important;
  background: rgba(2, 5, 11, .08) !important
}

.credits-table th,
.credits-table td,
.calc-row {
  border-color: rgba(255, 255, 255, .19) !important
}

.credits-table th:last-child,
.credits-table td:last-child {
  background: rgba(31, 56, 92, .35) !important
}

/* Range styling: white thumb, thin dark track, values aligned like reference */
.calc-input input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  accent-color: #fff
}

.calc-input input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: rgba(255, 255, 255, .16);
  border-radius: 3px
}

.calc-input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  margin-top: -4.5px;
  box-shadow: 0 0 12px rgba(255, 255, 255, .34)
}

.calc-input input[type=range]::-moz-range-track {
  height: 3px;
  background: rgba(255, 255, 255, .16);
  border-radius: 3px
}

.calc-input input[type=range]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, .34)
}

/* FAQ arrows: no text glyphs, just a clean reference chevron */
.faq-q::after {
  content: '' !important;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, .88);
  border-bottom: 1.5px solid rgba(255, 255, 255, .88);
  transform: rotate(45deg);
  transition: transform .22s ease, opacity .22s ease;
  opacity: .85;
  margin-right: 3px;
  flex: 0 0 auto;
}

.faq-q.open::after {
  transform: rotate(225deg);
  opacity: 1
}

.faq-item {
  border-bottom-color: rgba(255, 255, 255, .12) !important
}

.faq-a.open {
  max-height: 96px !important;
  padding: 0 0 36px !important
}

/* CTA button bloom */
.final-cta .cta-btn {
  box-shadow: 0 0 22px rgba(255, 255, 255, .40), inset 0 1px 0 rgba(255, 255, 255, .95) !important
}

/* Integration overrides: keep the imported layout usable before the visual reference pass. */
@media (max-width: 1240px) {

  .pricing-section,
  .credits-section,
  .calc-section,
  .faq-section {
    width: calc(100% - 40px);
    max-width: 1204px;
  }

  .cap-bg-arrow {
    top: 700px;
    width: 1250px;
    height: 2100px;
  }

  .cap-bg-arrow--right {
    top: 2320px;
    width: 1160px;
    height: 2200px;
  }

  .pricing-grid,
  .credits-table-wrap,
  .calc-row,
  .calc-result {
    width: 100%;
  }

  .pricing-grid {
    padding: 0 30px;
  }

  .price-card {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-section,
  .credits-section,
  .calc-section,
  .faq-section {
    width: calc(100% - 32px);
    margin-bottom: 120px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    padding: 0;
  }

  .price-card,
  .price-card-popular {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 42px 28px 32px;
  }

  .pc-btn {
    width: 100%;
  }

  .credits-table-wrap {
    overflow-x: auto;
  }

  .credits-table {
    min-width: 760px;
  }

  .calc-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    gap: 18px;
    padding: 22px 0;
  }

  .calc-input,
  .calc-input input[type=range] {
    width: 100%;
  }

  .calc-result {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    padding: 16px;
  }

  .calc-result-box,
  .calc-result-main {
    height: auto;
    padding: 24px;
  }

  .calc-result-main {
    border-top: 1px solid rgba(255, 255, 255, .20);
  }
}

/* Desktop reference alignment from Slide 16_9 - 29.svg */
@media (min-width: 901px) {
  body::before {
    background:
      linear-gradient(90deg, transparent 0 calc(50% - 602px), rgba(255, 255, 255, .028) calc(50% - 602px), rgba(255, 255, 255, .028) calc(50% - 601px), transparent calc(50% - 601px) calc(50% + 602px), rgba(255, 255, 255, .028) calc(50% + 602px), rgba(255, 255, 255, .028) calc(50% + 603px), transparent calc(50% + 603px)),
      linear-gradient(90deg, transparent 0 calc(50% - 361px), rgba(255, 255, 255, .018) calc(50% - 361px), rgba(255, 255, 255, .018) calc(50% - 360px), transparent calc(50% - 360px) calc(50% - 120px), rgba(255, 255, 255, .018) calc(50% - 120px), rgba(255, 255, 255, .018) calc(50% - 119px), transparent calc(50% - 119px) calc(50% + 120px), rgba(255, 255, 255, .018) calc(50% + 120px), rgba(255, 255, 255, .018) calc(50% + 121px), transparent calc(50% + 121px) calc(50% + 360px), rgba(255, 255, 255, .018) calc(50% + 360px), rgba(255, 255, 255, .018) calc(50% + 361px), transparent calc(50% + 361px));
  }

  .pricing-shell::before {
    top: 54px;
    width: 1204px;
    height: 1030px;
    opacity: .42;
    background:
      linear-gradient(rgba(255, 255, 255, .13), rgba(255, 255, 255, .13)) 0 158px/100% 1px no-repeat,
      linear-gradient(rgba(255, 255, 255, .11), rgba(255, 255, 255, .11)) 0 370px/100% 1px no-repeat,
      linear-gradient(rgba(255, 255, 255, .10), rgba(255, 255, 255, .10)) 0 582px/100% 1px no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .13)) 1px 0/1px 100% no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)) 241px 0/1px 100% no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)) 481px 0/1px 100% no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)) 722px 0/1px 100% no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)) 962px 0/1px 100% no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .13)) 1200px 0/1px 100% no-repeat,
      linear-gradient(31deg, transparent 48.8%, rgba(255, 255, 255, .055) 49%, rgba(255, 255, 255, .055) 49.15%, transparent 49.35%);
  }

  .main-header {
    top: 32px;
    width: 1204px;
    height: 44px;
    min-height: 44px;
    padding: 0 16px 0 33px;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .main-header__logo {
    width: 118px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .main-header__nav {
    gap: 32px;
    align-items: center;
    height: 44px;
    margin-left: auto;
    margin-right: 24px;
  }

  .main-header__link {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, .48);
  }

  .main-header__link:hover,
  .main-header__link:focus-visible,
  .main-header__link[aria-current="page"] {
    color: #fff;
    text-shadow: none;
  }

  .main-header__cta {
    width: 193px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 0 18px rgba(255, 255, 255, .24), inset 0 1px 0 rgba(255, 255, 255, .86);
  }

  .hero {
    padding-top: 292px;
    min-height: 694px;
  }

  .hero-label {
    width: 105px;
    padding: 0;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
  }

  .hero h1 {
    max-width: 1204px;
    margin-left: auto;
    margin-right: auto;
    font-size: 68px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.045em;
  }

  .toggle-wrap {
    height: 181px;
    padding: 0 60px;
  }

  .toggle {
    width: 238px;
    height: 60px;
  }

  .pricing-section {
    max-width: 1128px;
    margin-bottom: 222px;
  }

  .pricing-grid {
    width: 1128px;
    padding: 0;
  }

  .price-card {
    width: 396px;
    height: 741px;
    min-height: 741px;
    padding: 48px 47px 40px;
    border-radius: 16px !important;
  }

  .price-card::before {
    left: 17px;
    right: 17px;
    top: 107px;
    height: 123px;
    border-radius: 8px;
  }

  .price-card::after {
    left: 17px;
    right: 17px;
    top: 318px;
    bottom: 27px;
    border-radius: 8px;
  }

  .price-card-popular {
    height: 805px;
    min-height: 805px;
    margin: -32px -30px 0;
  }

  .price-card-popular::before,
  .price-card:nth-child(3)::before {
    height: 154px;
  }

  .price-card-popular::after {
    top: 349px;
    bottom: 17px;
  }

  .price-card:nth-child(3)::after {
    top: 349px;
    bottom: 27px;
  }

  .popular-badge {
    top: -22px;
    width: 198px;
    height: 44px;
    border-radius: 16px;
  }

  .pc-name {
    font-size: 14px;
    line-height: 18px;
  }

  .pc-desc,
  .pc-period,
  .pc-old-price,
  .pc-save,
  .pc-credits,
  .pc-features li,
  .pc-btn {
    font-size: 11px;
    letter-spacing: 0;
  }

  .pc-price {
    font-size: 58px;
    line-height: .96;
  }

  .price-card-popular .pc-price {
    font-size: 64px;
  }

  .credits-section,
  .calc-section,
  .faq-section {
    max-width: 1204px;
  }

  .credits-section h2,
  .calc-section h2,
  .faq-section h2 {
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .credits-table-wrap,
  .calc-row,
  .calc-result {
    width: 1204px;
  }

  .credits-table th:nth-child(1) {
    width: 361px;
  }

  .credits-table th:nth-child(2) {
    width: 659px;
  }

  .credits-table th:nth-child(3) {
    width: 184px;
  }

  .calc-row {
    grid-template-columns: 588px 500px 40px;
    height: 102px;
    gap: 24px;
  }

  .calc-input,
  .calc-input input[type=range] {
    width: 500px;
  }

  .calc-result {
    grid-template-columns: 397px 1fr;
    height: 240px;
    margin-top: 45px;
    padding: 24px;
  }

  .calc-result-box {
    height: 203px;
    padding: 30px 26px;
  }

  .calc-result-main {
    height: 203px;
    padding: 29px 66px;
  }

  .final-cta {
    min-height: 390px;
    margin-bottom: 210px;
  }

  .final-cta h2 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -.055em;
  }
}

/* Hard desktop correction: card typography and header are placed by reference coordinates. */
@media (min-width: 901px) {
  .main-header {
    top: 16px;
    height: 76px;
    min-height: 76px;
    padding: 16px 15px 16px 32px;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(10, 10, 15, .78);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .18), 0 0 42px rgba(46, 69, 142, .18);
    backdrop-filter: blur(4px);
  }

  .main-header__logo {
    width: 260px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .main-header__nav {
    height: 44px;
    gap: 32px;
    margin-left: 0;
    margin-right: 0;
  }

  .main-header__link {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, .56);
  }

  .main-header__cta {
    width: 193px;
    font-size: 14px;
    font-weight: 600;
  }

  .price-card {
    display: block;
    padding: 0;
    overflow: visible;
  }

  .price-card>* {
    position: absolute;
    z-index: 1;
  }

  .popular-badge {
    position: absolute !important;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 198px;
    height: 44px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
  }

  .pc-name {
    left: 41px;
    top: 43px;
    margin: 0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
  }

  .pc-desc {
    left: 41px;
    top: 70px;
    width: 315px;
    min-height: 0;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, .58);
  }

  .pc-price {
    left: 41px;
    top: 126px;
    margin: 0;
    font-size: 64px;
    line-height: .98;
    font-weight: 800;
    letter-spacing: -.055em;
    white-space: nowrap;
  }

  .price-card-popular .pc-price {
    font-size: 64px;
  }

  .pc-price span {
    display: inline-block;
    margin-left: 7px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, .52);
    vertical-align: baseline;
  }

  .pc-period {
    left: 41px;
    top: 204px;
    min-height: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, .44);
  }

  .pc-old-price {
    left: 242px;
    top: 131px;
    min-height: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, .34);
    text-decoration-thickness: 1px;
  }

  .pc-save {
    left: 41px;
    top: 234px;
    min-height: 0;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #37A2FF;
  }

  .price-card:first-child .pc-old-price,
  .price-card:first-child .pc-save {
    display: none;
  }

  .pc-credits {
    left: 41px;
    top: 270px;
    width: 315px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
  }

  .pc-features {
    left: 41px;
    top: 342px;
    width: 315px;
    margin: 0;
    padding: 0;
  }

  .pc-features li {
    min-height: 20px;
    margin: 0 0 14px;
    padding: 0 0 0 32px !important;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    opacity: .96;
  }

  .pc-features li::before {
    content: '✓' !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    top: 3px !important;
    border-width: 1.5px;
    background: none;
    font-size: 8px;
    line-height: 1;
    color: rgba(255, 255, 255, .95);
  }

.pc-btn1 {
    left: 38px;
    bottom: 27px;
    width: 315px;
    height: 44px;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }

  .pc-btn {
    left: 1px;
    bottom: 13px;
    width: 315px;
    height: 44px;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }

  .price-card-popular .pc-credits {
    top: 296px;
  }

  .price-card-popular .pc-features {
    top: 393px;
  }

  .price-card:nth-child(3) .pc-credits {
    top: 302px;
  }

  .price-card:nth-child(3) .pc-old-price {
    left: auto;
    right: 41px;
    top: 131px;
    text-align: right;
  }

  .price-card:nth-child(3) .pc-features {
    top: 376px;
  }

  .fx-placeholder {
    display: none;
  }

  .fx-small-dots {
    display: none;
  }

  body::before {
    display: none;
  }

  .pricing-shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: -360px;
    right: -360px;
    bottom: auto;
    width: auto;
    height: 1199px;
    transform: none;
    z-index: -3;
    opacity: 1;
    pointer-events: none;
    background: url("../img/hero/back.svg") center top / 1600px auto no-repeat;
    -webkit-mask-image: radial-gradient(ellipse 58% 72% at 50% 42%,
        #000 22%,
        rgba(0, 0, 0, .92) 46%,
        rgba(0, 0, 0, .55) 68%,
        rgba(0, 0, 0, .18) 85%,
        rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(ellipse 58% 72% at 50% 42%,
        #000 22%,
        rgba(0, 0, 0, .92) 46%,
        rgba(0, 0, 0, .55) 68%,
        rgba(0, 0, 0, .18) 85%,
        rgba(0, 0, 0, 0) 100%);
  }

  .pricing-shell::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 1018px;
    height: 220px;
    z-index: -2;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0) 0%,
        rgba(10, 10, 15, .55) 55%,
        #0a0a0f 100%);
  }
}

/* Shared header/footer: locked to the same geometry as the other pages. */
.main-header__link[aria-current="page"] {
  color: #f2f2f3;
  text-shadow: 0 0 16px rgba(255, 255, 255, .32);
}

@media (min-width: 769px) {
  .main-header {
    display: flex;
    width: min(1204px, calc(100% - 40px));
    height: 76px;
    max-width: 1204px;
    min-height: 0;
    padding: 16px 15px 16px 32px;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(10, 10, 15, .88);
    box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    z-index: 1000;
  }

  .main-header__logo {
    width: auto;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: .3px;
    text-decoration: none;
    text-transform: none;
  }

  .main-header__nav {
    display: flex;
    gap: 32px;
    height: 100%;
    align-items: center;
    padding-top: 0;
    margin: 0;
  }

  .main-header__link {
    color: #9c9c9d;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: .2px;
    text-decoration: none;
    transition: color .25s ease, text-shadow .25s ease;
  }

  .main-header__link:hover,
  .main-header__link:focus-visible,
  .main-header__link[aria-current="page"] {
    color: #f2f2f3;
    text-shadow: 0 0 16px rgba(255, 255, 255, .32);
  }

  .main-header__cta {
    width: 177px;
    height: 44px;
    min-height: 36px;
    display: inline-flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #e6e6e6 !important;
    color: #2f3031 !important;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: .2px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 10px 26px rgba(255, 255, 255, .08) !important;
    transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, opacity .14s ease;
  }

  .main-header__cta:hover,
  .main-header__cta:focus-visible {
    transform: translateY(-2px);
    background: #f2f2f2 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 14px 34px rgba(255, 255, 255, .14) !important;
    opacity: 1;
  }

}

/* Reference pill controls */
@media (min-width: 901px) {
  .hero-label {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  margin: 0 0 36px;
  padding: 10px 18px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  background: linear-gradient(
    180deg,
    rgba(20, 24, 34, .94),
    rgba(10, 12, 19, .94)
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,255,255,.03),
    0 10px 30px rgba(0,0,0,.22);

  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}

  .toggle-wrap {
    height: 181px;
    padding: 0 60px;
  }

  .toggle {
    width: 198px;
    height: 51px;
    padding: 5px;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    background: rgba(26, 27, 34, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 0 24px rgba(255, 255, 255, .05);
  }

  .toggle-btn {
    width: 92px;
    height: 39px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: transparent;
    color: rgba(255, 255, 255, .36);
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    opacity: 1;
  }

  .toggle-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .23);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .18),
      0 0 0 1px rgba(255, 255, 255, .04),
      0 0 18px rgba(255, 255, 255, .16);
  }

  .toggle-btn:hover {
    opacity: 1;
  }

  .toggle-save {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .46);
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
  }
}

/* Credits table reference pass */
@media (min-width: 901px) {
  .credits-section {
    max-width: 1204px;
    margin-bottom: 300px;
  }

  .credits-table-wrap {
    width: 1204px;
    border: 1px solid rgba(255, 255, 255, .28) !important;
    background: rgba(3, 5, 10, .14) !important;
    overflow: visible;
  }

  .credits-table {
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
  }

  .credits-table th,
  .credits-table td {
    height: 67px;
    padding: 0 24px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .28) !important;
    background: transparent;
  }

  .credits-table tr:last-child td {
    border-bottom: 0 !important;
  }

  .credits-table th {
    height: 66px;
    color: rgba(255, 255, 255, .48);
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
  }

  .credits-table th:nth-child(1),
  .credits-table td:nth-child(1) {
    width: 361px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    border-right: 1px dashed rgba(255, 255, 255, .20) !important;
  }

  .credits-table th:nth-child(2),
  .credits-table td:nth-child(2) {
    width: 659px;
    padding-left: 24px;
    color: rgba(255, 255, 255, .60);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }

  .credits-table td.ct-label {
    display: table-cell;
    width: 659px;
    margin: 0;
    padding: 0 24px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .28) !important;
    color: rgba(255, 255, 255, .60);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    vertical-align: middle;
  }

  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) {
    width: 184px;
    padding-left: 24px;
    padding-right: 24px;
    background: rgba(16, 25, 39, .78) !important;
    text-align: right;
    border-left: 1px solid rgba(255, 255, 255, .34) !important;
    box-shadow: inset 13px 0 26px rgba(255, 255, 255, .08), inset 1px 0 0 rgba(255, 255, 255, .20);
  }

  .credits-table td:nth-child(3) {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
  }

  .credits-table th:nth-child(3) {
    color: rgba(255, 255, 255, .48);
  }

  .credits-table tr:last-child td.ct-label {
    border-bottom: 0 !important;
  }
}

/* Calculator reference pass */
@media (min-width: 901px) {
  .calc-section {
    max-width: 1204px;
    margin-bottom: 300px;
  }

  .calc-section h2 {
    margin-bottom: 14px;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.035em;
  }

  .calc-sub {
    margin-bottom: 70px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 18px;
  }

  .calc-card {
    width: 1204px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(2, 5, 11, .08);
  }

  .calc-row {
    width: 100%;
    height: 80px;
    grid-template-columns: 560px 500px 44px;
    gap: 24px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .24) !important;
  }

  .calc-row:first-child {
    border-top: 0;
  }

  .calc-label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 800;
    color: #fff;
  }

  .calc-label span {
    margin-top: 9px;
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }

  .calc-input {
    width: 500px;
  }

  .calc-input input[type=range] {
    width: 500px;
    height: 18px;
  }

  .calc-input input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background:
      linear-gradient(90deg, #fff 0%, #fff var(--range-progress, 0%), rgba(255, 255, 255, .08) var(--range-progress, 0%), rgba(255, 255, 255, .08) 100%);
    box-shadow: 0 0 16px rgba(255, 255, 255, .12);
  }

  .calc-input input[type=range]::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    margin-top: -5.5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, .72);
  }

  .calc-input input[type=range]::-moz-range-track {
    height: 5px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
  }

  .calc-input input[type=range]::-moz-range-progress {
    height: 5px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, .72);
  }

  .calc-input input[type=range]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, .72);
  }

  .calc-value {
    min-width: 44px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 800;
    text-align: right;
  }

  .calc-result {
    width: 100%;
    height: 218px;
    margin: 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 314px 1fr;
    gap: 24px;
    border: 0 !important;
    border-top: 1px dashed rgba(255, 255, 255, .18) !important;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.06) .8px, transparent 1px) 0 0/10px 10px,
      rgba(2, 5, 11, .02) !important;
  }

  .calc-result-box {
    width: 314px;
    height: 162px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: rgba(2, 5, 11, .10) !important;
  }

  .calc-result-label {
    margin-bottom: 34px;
    color: #fff;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 400;
    opacity: .92;
  }

  .calc-result-num {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    font-weight: 800;
  }

  .calc-result-main {
    height: 162px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    background:
      radial-gradient(circle, rgba(255, 255, 255, .00) .8px, transparent 1px) 0 0/10px 10px,
      rgba(13, 18, 30, .12);
  }

  .calc-result-rec {
    margin: 0 0 50px;
    color: #fff;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 400;
  }

  .calc-result .pc-btn {
    height: 44px;
    font-size: 11px;
    font-weight: 600;
  }

  .pricing-ellipse--calc-right {
    right: -475px;
    top: -310px;
    width: 760px;
  }
}


.main-header {
  display: flex;
  width: 1204px;
  height: 76px;
  max-width: 1204px;
  padding: 16px 15px 16px 32px;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: #0a0a0f;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, .15);
  backdrop-filter: blur(2.5px);
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  z-index: 1000;
}


.main-header__logo {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.3px;
}

.main-header__nav {
  display: flex;
  gap: 32px;
  height: 100%;
  align-items: center;
}

.main-header__link {
  color: #9c9c9d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.main-header__link:hover,
.main-header__link:focus-visible,
.main-header__link[aria-current="page"] {
  color: #f2f2f3;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.32);
}

.main-header__burger {
  display: none;
}

.main-header__cta,
.big-button {
  display: inline-flex;
  min-height: 44px;
  padding: 14px 32px;
  width: 193px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: #e6e6e6;
  color: #2f3031;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 26px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.main-header__cta:hover,
.main-header__cta:focus-visible,
.big-button:hover,
.big-button:focus-visible {
  transform: translateY(-2px);
  background: #f2f2f2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 34px rgba(255, 255, 255, 0.14);
}

/* Mobile reference adaptation: 375px viewport / 345px content.
   Desktop rules and JavaScript logic are intentionally left untouched. */
@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    background: #0A0A0F;
  }

  body::before,
  .fx-placeholder,
  .fx-small-dots,
  .pricing-ellipse {
    display: none !important;
  }

  .page-shell,
  .pricing-shell {
    width: 100%;
    overflow: hidden;
    background:
      radial-gradient(ellipse 95% 6% at 77% 14%, rgba(39, 54, 107, .72), transparent 72%),
      radial-gradient(ellipse 118% 11% at 82% 48%, rgba(39, 54, 107, .76), transparent 70%),
      radial-gradient(ellipse 92% 9% at 82% 72%, rgba(39, 54, 107, .58), transparent 74%),
      #0A0A0F;
  }

  .pricing-shell::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 445px;
    z-index: -3;
    pointer-events: none;
    background:
      radial-gradient(ellipse 85% 70% at 70% 58%, rgba(39, 54, 107, .52), rgba(39, 54, 107, .22) 42%, transparent 72%),
      linear-gradient(90deg, transparent 16px, rgba(255, 255, 255, .055) 16px 17px, transparent 17px 185px, rgba(255, 255, 255, .055) 185px 186px, transparent 186px 358px, rgba(255, 255, 255, .055) 358px 359px, transparent 359px),
      linear-gradient(180deg, transparent 88px, rgba(255, 255, 255, .045) 88px 89px, transparent 89px 185px, rgba(255, 255, 255, .035) 185px 186px, transparent 186px 357px, rgba(255, 255, 255, .045) 357px 358px, transparent 358px);
  }

  .pricing-shell::after {
    content: '';
    position: absolute;
    right: -110px;
    top: 2475px;
    width: 360px;
    height: 1760px;
    z-index: -3;
    pointer-events: none;
    background: radial-gradient(ellipse 46% 46% at 50% 50%, rgba(43, 65, 138, .78), rgba(43, 65, 138, .34) 44%, transparent 74%);
    filter: blur(8px);
  }

  /* Header */
  .main-header {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: 32px !important;
    width: auto !important;
    max-width: none !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 16px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 24px !important;
    grid-template-rows: 58px auto auto !important;
    align-items: center !important;
    align-content: start !important;
    overflow: hidden !important;
    border-radius: 7px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(7, 8, 13, .94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 16px 42px rgba(0, 0, 0, .22) !important;
    backdrop-filter: blur(6px) !important;
    z-index: 1000 !important;
  }

  .main-header__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: auto !important;
    align-self: center !important;
    color: #fff !important;
    font-size: 20px !important;
    line-height: 24px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .main-header__burger {
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 24px !important;
    height: 19px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    cursor: pointer !important;
  }

  .main-header__nav {
    display: flex !important;
    grid-column: 1 / -1 !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    max-height: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  .main-header__link {
    display: block !important;
    width: 100% !important;
    padding: 8px 0 !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
  }

  .main-header__cta {
    display: inline-flex !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  .main-header.is-open {
    height: auto !important;
    padding: 0 16px 12px !important;
    overflow: visible !important;
    row-gap: 8px !important;
  }

  .main-header.is-open .main-header__nav {
    max-height: 230px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .main-header.is-open .main-header__cta {
    max-height: 44px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Hero */
  .hero {
    min-height: 445px !important;
    padding: 162px 16px 0 !important;
    text-align: center !important;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: -182px;
    top: -281px;
    width: 846px;
    height: 717px;
    pointer-events: none;
    background: url(../img/svr2.svg) center top / 100% 100% no-repeat;
    opacity: 0.872;

    transform: rotate(242deg);
    transform-origin: center center;
  }

  .hero-label {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  margin: 0 0 36px;
  padding: 10px 18px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  background: linear-gradient(
    180deg,
    rgba(20, 24, 34, .94),
    rgba(10, 12, 19, .94)
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,255,255,.03),
    0 10px 30px rgba(0,0,0,.22);

  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}

  .hero h1 {
    max-width: 270px !important;
    margin: 0 auto 14px !important;
    color: #fff !important;
    font-size: 25px !important;
    line-height: 25px !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
  }

  .hero-sub {
    max-width: 255px !important;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 12px !important;
    line-height: 12px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  /* Toggle */
  .toggle-wrap {
    height: 127px !important;
    padding: 0 16px !important;
    text-align: center !important;
  }

  .toggle {
    width: 100% !important;
    max-width: 343px !important;
    height: 60px !important;
    padding: 6px !important;
    gap: 0 !important;
    justify-content: space-between !important;
    border: 0 !important;
    border-radius: 30px !important;
    background: rgba(17, 18, 24, .88) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 14px 34px rgba(0, 0, 0, .32) !important;
  }

  .toggle-btn {
    width: calc(50% - 3px) !important;
    height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 24px !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .30) !important;
    font-size: 17px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .toggle-btn.active {
    color: #fff !important;
    background: rgba(58, 59, 65, .92) !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 0 18px rgba(255, 255, 255, .14) !important;
  }

  .toggle-save {
    display: block;
    margin-top: 17px !important;
    color: rgba(255, 255, 255, .56) !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
  }

  /* Pricing cards */
  .pricing-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 158px !important;
    padding: 0 16px !important;
  }

  .pricing-grid {
    display: block !important;
    width: 100% !important;
    max-width: 343px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .price-card,
  .price-card-popular {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: #0B1018 !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .22) !important;
  }

  .price-card::before,
  .price-card::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 9px;
    background: rgba(7, 11, 18, .55);
    z-index: 0;
  }

  .price-card>* {
    position: absolute !important;
    z-index: 1 !important;
  }

  .price-card:first-child {
    height: 204px !important;
  }

  .price-card:first-child::before {
    top: 63px;
    height: 68px;
  }

  .price-card:first-child::after {
    display: none;
  }

  .price-card-popular {
    height: 568px !important;
    margin-top: 32px !important;
    background: linear-gradient(135deg, rgba(47, 48, 54, .97), rgba(22, 23, 29, .98) 42%, rgba(23, 25, 31, .96)) !important;
    border-color: rgba(82, 121, 255, .54) !important;
    box-shadow: 0 0 0 1px rgba(82, 121, 255, .22), 0 0 42px rgba(50, 86, 184, .48), 0 24px 56px rgba(0, 0, 0, .36) !important;
  }

  .price-card-popular::before {
    top: 81px;
    height: 118px;
    background: rgba(22, 23, 29, .60);
  }

  .price-card-popular::after {
    top: 267px;
    bottom: 15px;
    background: rgba(22, 23, 29, .42);
  }

  .price-card:nth-child(3) {
    height: 473px !important;
    margin-top: 17px !important;
  }

  .price-card:nth-child(3)::before {
    top: 72px;
    height: 110px;
  }

  .price-card:nth-child(3)::after {
    top: 264px;
    bottom: 17px;
  }

  .popular-badge {
    left: 50% !important;
    top: -18px !important;
    width: 152px !important;
    height: 34px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    box-shadow: 0 0 22px rgba(255, 255, 255, .28) !important;
  }

  .pc-name {
    left: 15px !important;
    top: 15px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 800 !important;
  }

  .price-card-popular .pc-name {
    left: 12px !important;
    top: 31px !important;
  }

  .price-card:nth-child(3) .pc-name {
    top: 16px !important;
  }

  .pc-desc {
    left: 15px !important;
    top: 36px !important;
    width: 310px !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .55) !important;
    font-size: 13px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
  }

  .price-card-popular .pc-desc {
    left: 12px !important;
    top: 51px !important;
  }

  .price-card:nth-child(3) .pc-desc {
    top: 37px !important;
  }

  .pc-price {
    left: 31px !important;
    top: 75px !important;
    margin: -5px !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 36px !important;
    font-weight: 800 !important;
    letter-spacing: -.04em !important;
    white-space: nowrap !important;
  }

  .pc-price span {
    margin-left: 4px !important;
    padding-bottom: 8px !important;
    color: rgba(255, 255, 255, .42) !important;
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    vertical-align: baseline !important;
  }

  .price-card-popular .pc-price,
  .price-card:nth-child(3) .pc-price {
    left: 31px !important;
    top: 94px !important;
    font-size: 52px !important;
    line-height: 56px !important;
    letter-spacing: -.06em !important;
  }

  .price-card:nth-child(3) .pc-price {
    top: 86px !important;
  }

  .price-card-popular .pc-price span,
  .price-card:nth-child(3) .pc-price span {
    position: absolute !important;
    top: 5px !important;
    right: -38px !important;
    margin-left: 0 !important;
    font-size: 11px !important;
    line-height: 13px !important;
    letter-spacing: 0 !important;
  }

  .pc-period {
    left: 31px !important;
    top: 105px !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .42) !important;
    font-size: 10px !important;
    line-height: 12px !important;
    font-weight: 400 !important;
  }

  .price-card:first-child .pc-period {
    display: none !important;
  }

  .price-card-popular .pc-period,
  .price-card:nth-child(3) .pc-period {
    left: 31px !important;
    top: 157px !important;
    font-size: 11px !important;
    line-height: 14px !important;
  }

  .price-card:nth-child(3) .pc-period {
    top: 158px !important;
  }

  .pc-old-price {
    display: none !important;
  }

  .price-card-popular .pc-old-price,
  .price-card:nth-child(3) .pc-old-price {
    display: block !important;
    left: auto !important;
    right: 29px !important;
    top: 99px !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .28) !important;
    font-size: 10px !important;
    line-height: 12px !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
  }

  .price-card:nth-child(3) .pc-old-price {
    top: 96px !important;
  }

  .pc-save {
    display: none !important;
  }

  .price-card-popular .pc-save,
  .price-card:nth-child(3) .pc-save {
    display: block !important;
    left: 31px !important;
    top: 180px !important;
    min-height: 0 !important;
    margin: 0 !important;
    color: #37A2FF !important;
    font-size: 11px !important;
    line-height: 14px !important;
    font-weight: 700 !important;
  }

  .price-card:nth-child(3) .pc-save {
    top: 180px !important;
  }

  .pc-credits {
    left: 31px !important;
    top: 105px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .34) !important;
    font-size: 0 !important;
    line-height: 12px !important;
    font-weight: 400 !important;
  }

  .price-card:first-child .pc-credits::after {
    content: '100 кредитов в подарок';
    color: rgba(255, 255, 255, .34);
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
  }

  .price-card-popular .pc-credits,
  .price-card:nth-child(3) .pc-credits {
    left: 12px !important;
    top: 229px !important;
    width: 315px !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
  }

  .price-card:nth-child(3) .pc-credits {
    top: 215px !important;
  }

  .pc-credits span {
    color: inherit !important;
    font-weight: inherit !important;
  }

  .pc-features {
    left: 30px !important;
    top: 285px !important;
    width: 315px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .price-card:first-child .pc-features {
    display: none !important;
  }

  .price-card:nth-child(3) .pc-features {
    top: 268px !important;
  }

  .pc-features li {
    min-height: 17px !important;
    margin: 0 0 9px !important;
    padding: 0 0 0 25px !important;
    color: #fff !important;
    opacity: .96 !important;
    font-size: 13px !important;
    line-height: 17px !important;
    font-weight: 600 !important;
  }

  .pc-features li::before {
    content: '✓' !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    left: 0 !important;
    top: 3px !important;
    width: 10px !important;
    height: 10px !important;
    border: 1.2px solid rgba(255, 255, 255, .90) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .96) !important;
    font-size: 6px !important;
    line-height: 1 !important;
    opacity: 1 !important;
  }

  .pc-btn,
  .pc-btn1 {
    left: 15px !important;
    bottom: 18px !important;
    width: calc(100% - 30px) !important;
    height: 35px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 7px !important;
    font-size: 10px !important;
    line-height: 12px !important;
    font-weight: 700 !important;
  }

  .price-card-popular .pc-btn,
  .price-card-popular .pc-btn1 {
    left: 30px !important;
    bottom: 31px !important;
    width: 285px !important;
  }

  .price-card:nth-child(3) .pc-btn,
  .price-card:nth-child(3) .pc-btn1 {
    left: 15px !important;
    bottom: 17px !important;
    width: calc(100% - 30px) !important;
  }

  /* Credits table */
  .credits-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 270px !important;
    padding: 0 16px !important;
  }

  .credits-section h2,
  .calc-section h2,
  .faq-section h2 {
    max-width: 343px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #fff !important;
    text-align: center !important;
    font-size: 25px !important;
    line-height: 30px !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
  }

  .credits-section h2 {
    margin-bottom: 22px !important;
  }

  .credits-sub,
  .calc-sub {
    max-width: 343px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: rgba(255, 255, 255, .88) !important;
    text-align: center !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .credits-sub {
    margin-bottom: 34px !important;
  }

  .credits-table-wrap {
    width: 100% !important;
    max-width: 343px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    background: rgba(4, 6, 12, .08) !important;
  }

  .credits-table {
    width: 100% !important;
    min-width: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    table-layout: fixed !important;
  }

  .credits-table th,
  .credits-table td,
  .credits-table td.ct-label {
    padding: 0 9px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .25) !important;
    vertical-align: middle !important;
    background: transparent !important;
  }

  .credits-table th {
    height: 50px !important;
    color: rgba(255, 255, 255, .52) !important;
    text-align: left !important;
    font-size: 9px !important;
    line-height: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .38em !important;
  }

  .credits-table td,
  .credits-table td.ct-label {
    height: 70px !important;
    color: rgba(255, 255, 255, .62) !important;
    font-size: 10px !important;
    line-height: 12px !important;
    font-weight: 400 !important;
  }

  .credits-table th:nth-child(1),
  .credits-table td:nth-child(1) {
    width: 141px !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-right: 1px dashed rgba(255, 255, 255, .16) !important;
    padding-left: 18px !important;
  }

  .credits-table th:nth-child(2),
  .credits-table td:nth-child(2),
  .credits-table td.ct-label {
    width: 113px !important;
    text-align: center !important;
    vertical-align: middle !important;
    display: table-cell !important;
  }

  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) {
    width: 89px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    color: #fff !important;
    text-align: center !important;
    background: rgba(13, 20, 32, .90) !important;
    border-left: 1px solid rgba(255, 255, 255, .28) !important;
    box-shadow: inset 11px 0 26px rgba(255, 255, 255, .08), -16px 0 28px rgba(55, 83, 177, .16) !important;
  }

  .credits-table td:nth-child(3) {
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 800 !important;
  }

  .credits-table tr:last-child td,
  .credits-table tr:last-child td.ct-label {
    border-bottom: 0 !important;
  }

  /* Calculator */
  .calc-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 194px !important;
    padding: 0 16px !important;
  }

  .calc-section h2 {
    margin-bottom: 22px !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .calc-section h2::before {
    content: 'Сколько стоят действия в кредитах';
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 800;
    letter-spacing: -.03em;
  }

  .calc-sub {
    margin-bottom: 66px !important;
  }

  .calc-card {
    width: 100% !important;
    max-width: 343px !important;
    margin: 0 auto !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    background: rgba(4, 6, 12, .08) !important;
  }

  .calc-row {
    display: block !important;
    width: 100% !important;
    height: 174px !important;
    padding: 24px 24px 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .20) !important;
  }

  .calc-label {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
  }

  .calc-label span {
    display: block !important;
    margin-top: 18px !important;
    color: rgba(255, 255, 255, .58) !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
  }

  .calc-input {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 31px !important;
    align-items: center !important;
    gap: 16px !important;
    width: calc(100% + 48px) !important;
    margin: 23px -24px 0 !important;
    padding: 23px 24px 0 !important;
    border-top: 1px dashed rgba(255, 255, 255, .18) !important;
  }

  .calc-input input[type=range] {
    width: 100% !important;
    height: 18px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
  }

  .calc-input input[type=range]::-webkit-slider-runnable-track {
    height: 6px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #fff 0%, #fff var(--range-progress, 0%), rgba(255, 255, 255, .08) var(--range-progress, 0%), rgba(255, 255, 255, .08) 100%) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .16) !important;
  }

  .calc-input input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    margin-top: -5.5px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .80) !important;
  }

  .calc-input input[type=range]::-moz-range-track {
    height: 6px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .08) !important;
  }

  .calc-input input[type=range]::-moz-range-progress {
    height: 6px !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .80) !important;
  }

  .calc-input input[type=range]::-moz-range-thumb {
    width: 16px !important;
    height: 16px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .80) !important;
  }

  .calc-value {
    min-width: 0 !important;
    color: #fff !important;
    text-align: right !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 800 !important;
  }

  .calc-result {
    display: block !important;
    width: 100% !important;
    height: 289px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-top: 1px dashed rgba(255, 255, 255, .18) !important;
    background: rgba(4, 6, 12, .02) !important;
    text-align: center !important;
  }

  .calc-result-box {
    width: 100% !important;
    height: 125px !important;
    padding: 21px 20px 0 !important;
    border: 0 !important;
    border-bottom: 1px dashed rgba(255, 255, 255, .18) !important;
    background: transparent !important;
  }

  .calc-result-label {
    margin: 0 0 22px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    opacity: .92 !important;
  }

  .calc-result-num {
    color: #fff !important;
    font-size: 26px !important;
    line-height: 30px !important;
    font-weight: 800 !important;
  }

  .calc-result-main {
    width: 100% !important;
    height: 164px !important;
    padding: 17px 14px 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .calc-result-rec {
    margin: 0 0 31px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
  }

  .calc-result .pc-btn {
    position: static !important;
    width: 313px !important;
    max-width: 100% !important;
    height: 44px !important;
    margin: 0 auto !important;
    border-radius: 7px !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
  }

  /* FAQ */
  .faq-section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 224px !important;
    padding: 0 16px !important;
  }

  .faq-section h2 {
    margin-bottom: 46px !important;
    font-size: 26px !important;
    line-height: 31px !important;
  }

  .faq-item {
    max-width: 343px !important;
    margin: 0 auto !important;
    border-bottom: 0 !important;
  }

  .faq-q {
    min-height: 68px !important;
    height: auto !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 800 !important;
  }

  .faq-q::after {
    width: 8px !important;
    height: 8px !important;
    margin-right: 4px !important;
    border-right: 1.5px solid #fff !important;
    border-bottom: 1.5px solid #fff !important;
    opacity: .95 !important;
  }

  .faq-a {
    color: rgba(255, 255, 255, .34) !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    transition: max-height .28s ease, padding .28s ease !important;
  }

  .faq-a.open {
    max-height: 150px !important;
    padding: 0 0 28px !important;
  }

  /* Final CTA */
  .final-cta {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto 150px !important;
    padding: 0 16px !important;
    border: 0 !important;
    text-align: center !important;
    background: transparent !important;
  }

  .final-cta::before,
  .final-cta::after {
    display: none !important;
  }

  .final-cta h2 {
    max-width: 343px !important;
    margin: 0 auto 27px !important;
    color: #fff !important;
    font-size: 26px !important;
    line-height: 26px !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
  }

  .final-cta p {
    max-width: 300px !important;
    margin: 0 auto 30px !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 12px !important;
    line-height: 12px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .final-cta .cta-btn {
    width: 100% !important;
    max-width: 343px !important;
    height: 44px !important;
    margin: 0 auto 18px !important;
    padding: 0 !important;
    border-radius: 7px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    font-weight: 600 !important;
  }

  .final-cta .cta-btn::after {
    content: 'Попробовать бесплатно';
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }

  .cta-sub {
    max-width: 310px !important;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, .30) !important;
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 400 !important;
  }

}

@media (max-width: 768px) {
  .hero-sub {
    max-width: 235px !important;
  }

  .price-card:nth-child(3) .pc-features li {
    margin-bottom: 5px !important;
  }

  .calc-input {
    grid-template-columns: minmax(0, 1fr) 20px !important;
    gap: 14px !important;
  }
}

@media (max-width: 768px) {
  .hero-sub {
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .hero-sub::before {
    content: 'Разница только в количестве кредитов.\A Все 161 возможность доступны сразу.\A и MBA-практик.';
    display: block;
    white-space: pre-line;
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
  }
}


/* Premium card final alignment fix (mobile only): price row + feature list */
@media (max-width: 768px) {
  .price-card:nth-child(3) {
    height: 510px !important;
  }

  .price-card:nth-child(3)::before {
    left: 15px !important;
    right: 15px !important;
    top: 74px !important;
    height: 112px !important;
  }

  .price-card:nth-child(3)::after {
    left: 15px !important;
    right: 15px !important;
    top: 273px !important;
    bottom: 51px !important;
  }

  .price-card:nth-child(3) .pc-price {
    left: 31px !important;
    top: 97px !important;
    width: 204px !important;
    height: 58px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 52px !important;
    line-height: 52px !important;
    font-weight: 800 !important;
    letter-spacing: -0.065em !important;
    white-space: nowrap !important;
  }

  .price-card:nth-child(3) .pc-price span {
    position: static !important;
    display: inline-block !important;
    margin: 0 !important;
    padding-top: 9px !important;
    color: rgba(255, 255, 255, .48) !important;
    font-size: 11px !important;
    line-height: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    vertical-align: top !important;
  }

  .price-card:nth-child(3) .pc-old-price {
    display: block !important;
    left: auto !important;
    right: 31px !important;
    top: 109px !important;
    width: 67px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .30) !important;
    text-align: right !important;
    font-size: 10px !important;
    line-height: 12px !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1px !important;
  }

  .price-card:nth-child(3) .pc-period {
    left: 31px !important;
    top: 150px !important;
    width: calc(100% - 62px) !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .52) !important;
    font-size: 11px !important;
    line-height: 13px !important;
    font-weight: 400 !important;
  }

  .price-card:nth-child(3) .pc-save {
    left: 31px !important;
    top: 168px !important;
    width: calc(100% - 62px) !important;
    margin: 0 !important;
    color: #28A8FF !important;
    font-size: 11px !important;
    line-height: 13px !important;
    font-weight: 800 !important;
  }

  .price-card:nth-child(3) .pc-credits {
    left: 31px !important;
    top: 229px !important;
    width: calc(100% - 62px) !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 19px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
  }

  .price-card:nth-child(3) .pc-features {
    left: 31px !important;
    top: 285px !important;
    width: calc(100% - 62px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .price-card:nth-child(3) .pc-features li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 0 !important;
    height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    opacity: .98 !important;
    font-size: 13px !important;
    line-height: 16px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
  }

  .price-card:nth-child(3) .pc-features li::before {
    position: static !important;
    flex: 0 0 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 11px !important;
    height: 11px !important;
    margin: 0 !important;
    border: 1.2px solid rgba(255, 255, 255, .90) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .96) !important;
    font-size: 6px !important;
    line-height: 1 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .price-card:nth-child(3) .pc-btn {
    left: 21px !important;
    bottom: 13px !important;
    width: 300px !important;
    height: 33px !important;
  }
}

/* =====================================================================
   TABLET REBUILD V3: 600-1024px
   Purpose: independent tablet layout, not compressed desktop/mobile.
   Replace the variables below with real images later, e.g.
   --tablet-fx-top-url: url("../img/tablet/top-arrow.svg");
   ===================================================================== */
@media (min-width: 600px) and (max-width: 1024px) {
  :root {
    --tablet-edge: clamp(24px, 6vw, 64px);
    --tablet-content: min(896px, calc(100vw - var(--tablet-edge) * 2));
    --tablet-card-gap: clamp(10px, 1.8vw, 20px);
    --tablet-blue: #27366B;
    --tablet-fx-top-url: url("../img/pricing/svr1.svg");
    --tablet-fx-mid-url: url("../img/pricing/svr2.svg");
    --tablet-fx-calc-url: url("../img/pricing/tablet-arrow-calc.svg");
    --tablet-fx-bottom-url: url("../img/pricing/tablet-arrow-bottom.svg");
  }

  html,
  body {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    background: #0A0A0F !important;
  }

  body::before,
  .fx-placeholder,
  .fx-small-dots,
  .pricing-ellipse {
    display: none !important;
  }

  .page-shell,
  .pricing-shell {
    width: 100% !important;
    overflow: hidden !important;
    isolation: isolate !important;
    position: relative !important;
    background:
      radial-gradient(ellipse 58% 10% at 80% 10%, rgba(39, 54, 107, .76), transparent 72%),
      radial-gradient(ellipse 70% 12% at 86% 46%, rgba(39, 54, 107, .62), transparent 70%),
      radial-gradient(ellipse 64% 12% at 18% 62%, rgba(39, 54, 107, .34), transparent 72%),
      #0A0A0F !important;
  }

  .pricing-shell::before,
  .pricing-shell::after,
  .hero::before,
  .calc-section::before,
  .final-cta::before {
    content: '' !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -2 !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }

  .pricing-shell::before {
    left: 50% !important;
    top: 0 !important;
    width: min(1120px, 128vw) !important;
    height: 760px !important;
    transform: translateX(-50%) !important;
    background:
      linear-gradient(90deg, transparent 0 calc(50% - 448px), rgba(255, 255, 255, .06) calc(50% - 448px) calc(50% - 447px), transparent calc(50% - 447px) calc(50% + 448px), rgba(255, 255, 255, .06) calc(50% + 448px) calc(50% + 449px), transparent calc(50% + 449px)),
      linear-gradient(90deg, transparent 0 calc(50% - 224px), rgba(255, 255, 255, .035) calc(50% - 224px) calc(50% - 223px), transparent calc(50% - 223px) calc(50% + 224px), rgba(255, 255, 255, .035) calc(50% + 224px) calc(50% + 225px), transparent calc(50% + 225px)),
      linear-gradient(180deg, transparent 118px, rgba(255, 255, 255, .045) 118px 119px, transparent 119px 332px, rgba(255, 255, 255, .035) 332px 333px, transparent 333px),
      radial-gradient(ellipse 45% 34% at 72% 23%, rgba(39, 54, 107, .72), transparent 72%) !important;
    opacity: 1 !important;
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%) !important;
  }

  .pricing-shell::after {
    right: -210px !important;
    top: 2960px !important;
    width: 520px !important;
    height: 1120px !important;
    background-color: var(--tablet-blue) !important;
    background-image: var(--tablet-fx-calc-url) !important;
    clip-path: polygon(100% 0, 100% 100%, 36% 75%, 22% 48%, 52% 28%) !important;
    filter: blur(1px) drop-shadow(0 0 50px rgba(39, 54, 107, .35)) !important;
    opacity: .76 !important;
  }

  .hero::before {
    right: -118px !important;
    top: -72px !important;
    width: 380px !important;
    height: 305px !important;
    background-color: var(--tablet-blue) !important;
    background-image: var(--tablet-fx-top-url) !important;
    clip-path: polygon(0 40%, 62% 45%, 84% 0, 100% 0, 100% 100%, 74% 100%, 12% 58%) !important;
    opacity: .86 !important;
  }

  .calc-section::before {
    left: -180px !important;
    top: -180px !important;
    width: 370px !important;
    height: 470px !important;
    background-color: var(--tablet-blue) !important;
    background-image: var(--tablet-fx-mid-url) !important;
    clip-path: polygon(0 0, 62% 46%, 78% 36%, 72% 76%, 100% 72%, 58% 100%, 0 54%) !important;
    opacity: .56 !important;
  }

  .final-cta::before {
    left: 50% !important;
    bottom: -260px !important;
    width: 760px !important;
    height: 470px !important;
    transform: translateX(-50%) rotate(-8deg) !important;
    background-color: var(--tablet-blue) !important;
    background-image: var(--tablet-fx-bottom-url) !important;
    clip-path: polygon(0 0, 28% 76%, 55% 70%, 100% 62%, 50% 100%, 30% 96%) !important;
    opacity: .56 !important;
  }

  /* Header: tablet always uses burger so iPad mini never gets desktop nav squeeze. */
  .main-header {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    right: auto !important;
    width: var(--tablet-content) !important;
    max-width: 760px !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 22px !important;
    transform: translateX(-50%) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px !important;
    grid-template-rows: 64px auto auto !important;
    align-items: center !important;
    align-content: start !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    background: rgba(8, 9, 14, .94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 20px 54px rgba(0, 0, 0, .26) !important;
    backdrop-filter: blur(8px) !important;
    overflow: hidden !important;
    z-index: 1000 !important;
  }

  .main-header__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: auto !important;
    align-self: center !important;
    color: #fff !important;
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .main-header__burger {
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
  }

  .main-header__burger svg {
    width: 34px !important;
    height: 28px !important;
  }

  .main-header__nav {
    display: flex !important;
    grid-column: 1 / -1 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    height: auto !important;
    max-height: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  .main-header__link {
    display: block !important;
    width: 100% !important;
    padding: 9px 0 !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
  }

  .main-header__cta {
    display: inline-flex !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  .main-header.is-open {
    height: auto !important;
    padding-bottom: 14px !important;
    row-gap: 8px !important;
    overflow: visible !important;
  }

  .main-header.is-open .main-header__nav,
  .main-header.is-open .main-header__cta {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .main-header.is-open .main-header__nav {
    max-height: 260px !important;
  }

  .main-header.is-open .main-header__cta {
    max-height: 44px !important;
  }

  /* Hero */
  .hero {
    width: 100% !important;
    min-height: clamp(520px, 62vw, 635px) !important;
    padding: clamp(190px, 22vw, 250px) var(--tablet-edge) 0 !important;
    text-align: center !important;
  }

  .hero::after {
    display: none !important;
  }

  .hero-label {
    height: 38px !important;
    padding: 0 22px !important;
    margin: 0 0 20px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 20px !important;
    background: rgba(30, 31, 38, .72) !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
  }

  .hero h1 {
    max-width: 720px !important;
    margin: 0 auto 22px !important;
    color: #fff !important;
    font-size: clamp(48px, 7.2vw, 68px) !important;
    line-height: .98 !important;
    font-weight: 800 !important;
    letter-spacing: -.052em !important;
  }

  .hero-sub {
    max-width: 430px !important;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .hero-sub::before {
    content: none !important;
  }

  /* Toggle */
  .toggle-wrap {
    height: 160px !important;
    padding: 0 var(--tablet-edge) !important;
    text-align: center !important;
  }

  .toggle {
    width: 228px !important;
    height: 58px !important;
    padding: 5px !important;
    gap: 0 !important;
    justify-content: space-between !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 30px !important;
    background: rgba(22, 23, 30, .88) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 16px 38px rgba(0, 0, 0, .30) !important;
  }

  .toggle-btn {
    width: calc(50% - 3px) !important;
    height: 46px !important;
    border-radius: 24px !important;
    color: rgba(255, 255, 255, .36) !important;
    background: transparent !important;
    font-size: 15px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
  }

  .toggle-btn.active {
    color: #fff !important;
    background: rgba(255, 255, 255, .14) !important;
    border: 1px solid rgba(255, 255, 255, .20) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 18px rgba(255, 255, 255, .12) !important;
  }

  .toggle-save {
    margin-top: 16px !important;
    color: rgba(255, 255, 255, .52) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
  }

  /* Pricing cards: natural flow, no absolute positioning on tablets. */
  .pricing-section {
    width: var(--tablet-content) !important;
    max-width: 896px !important;
    margin: 0 auto clamp(170px, 23vw, 240px) !important;
    padding: 0 !important;
    position: relative !important;
  }

  .pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: var(--tablet-card-gap) !important;
    align-items: start !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .price-card,
  .price-card-popular {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: clamp(520px, 58vw, 620px) !important;
    margin: 0 !important;
    padding: clamp(20px, 2.7vw, 30px) clamp(14px, 2.2vw, 24px) 22px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: #0B1018 !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .28) !important;
    backdrop-filter: none !important;
  }

  .price-card-popular {
    min-height: clamp(560px, 63vw, 680px) !important;
    background: linear-gradient(145deg, rgba(45, 47, 55, .98), rgba(24, 25, 31, .98) 46%, rgba(20, 23, 30, .98)) !important;
    border-color: rgba(85, 125, 255, .52) !important;
    box-shadow: 0 0 0 1px rgba(85, 125, 255, .18), 0 0 46px rgba(50, 86, 184, .36), 0 28px 64px rgba(0, 0, 0, .40) !important;
  }

  .price-card::before,
  .price-card::after {
    content: '' !important;
    position: absolute !important;
    left: clamp(10px, 1.8vw, 16px) !important;
    right: clamp(10px, 1.8vw, 16px) !important;
    pointer-events: none !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 10px !important;
    background: rgba(6, 10, 17, .46) !important;
    z-index: 0 !important;
  }

  .price-card::before {
    top: clamp(88px, 12vw, 122px) !important;
    height: clamp(118px, 15vw, 150px) !important;
  }

  .price-card::after {
    top: clamp(286px, 34vw, 360px) !important;
    bottom: 76px !important;
  }

  .price-card>* {
    position: relative !important;
    z-index: 1 !important;
  }

  .popular-badge {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translate(-50%, -1px) !important;
    width: clamp(126px, 16vw, 162px) !important;
    height: 34px !important;
    border-radius: 0 0 12px 12px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: clamp(12px, 1.5vw, 14px) !important;
    line-height: 18px !important;
    font-weight: 500 !important;
    box-shadow: 0 0 24px rgba(255, 255, 255, .30) !important;
  }

  .pc-name {
    margin: 0 0 5px !important;
    color: #fff !important;
    font-size: clamp(15px, 2vw, 20px) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
  }

  .price-card-popular .pc-name {
    margin-top: 20px !important;
  }

  .pc-desc {
    width: auto !important;
    min-height: 34px !important;
    margin: 0 0 clamp(24px, 4vw, 38px) !important;
    color: rgba(255, 255, 255, .56) !important;
    font-size: clamp(11px, 1.48vw, 15px) !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
  }

  .pc-price {
    display: block !important;
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(30px, 5.1vw, 54px) !important;
    line-height: .96 !important;
    font-weight: 800 !important;
    letter-spacing: -.06em !important;
    white-space: nowrap !important;
  }

  .price-card-popular .pc-price,
  .price-card:nth-child(3) .pc-price {
    font-size: clamp(34px, 5.8vw, 60px) !important;
  }

  .pc-price span {
    display: inline-block !important;
    position: static !important;
    margin-left: 5px !important;
    padding-top: 0 !important;
    color: rgba(255, 255, 255, .46) !important;
    font-size: clamp(10px, 1.25vw, 13px) !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    vertical-align: baseline !important;
  }

  .pc-period {
    min-height: 28px !important;
    margin: 0 0 4px !important;
    color: rgba(255, 255, 255, .44) !important;
    font-size: clamp(10px, 1.28vw, 13px) !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
  }

  .pc-old-price {
    min-height: 16px !important;
    margin: 0 0 4px !important;
    color: rgba(255, 255, 255, .30) !important;
    font-size: clamp(10px, 1.2vw, 12px) !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
  }

  .pc-save {
    min-height: 18px !important;
    margin: 0 0 clamp(24px, 4.6vw, 45px) !important;
    color: #37A2FF !important;
    font-size: clamp(10px, 1.24vw, 12px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
  }

  .pc-credits {
    width: auto !important;
    margin: 0 0 clamp(24px, 4.2vw, 38px) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: clamp(13px, 1.72vw, 17px) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }

  .pc-credits span {
    color: inherit !important;
    font-weight: inherit !important;
  }

  .pc-features {
    width: auto !important;
    flex: 1 1 auto !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .pc-features li {
    position: relative !important;
    min-height: 17px !important;
    margin: 0 0 clamp(8px, 1.35vw, 13px) !important;
    padding: 0 0 0 clamp(18px, 2.4vw, 26px) !important;
    color: #fff !important;
    opacity: .96 !important;
    font-size: clamp(10px, 1.4vw, 14px) !important;
    line-height: 1.22 !important;
    font-weight: 600 !important;
  }

  .pc-features li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: .16em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: clamp(10px, 1.25vw, 13px) !important;
    height: clamp(10px, 1.25vw, 13px) !important;
    border: 1.3px solid rgba(255, 255, 255, .88) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .96) !important;
    font-size: clamp(6px, .85vw, 8px) !important;
    line-height: 1 !important;
    opacity: 1 !important;
  }

  .pc-btn {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 42px !important;
    margin: auto 0 0 !important;
    padding: 0 8px !important;
    border-radius: 8px !important;
    font-size: clamp(11px, 1.38vw, 14px) !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  /* Credits table */
  .credits-section,
  .calc-section,
  .faq-section {
    width: var(--tablet-content) !important;
    max-width: 896px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    position: relative !important;
  }

  .credits-section {
    margin-bottom: clamp(170px, 24vw, 260px) !important;
  }

  .calc-section {
    margin-bottom: clamp(180px, 25vw, 270px) !important;
  }

  .faq-section {
    margin-bottom: clamp(190px, 26vw, 300px) !important;
  }

  .credits-section h2,
  .calc-section h2,
  .faq-section h2 {
    max-width: 740px !important;
    margin: 0 auto 22px !important;
    color: #fff !important;
    text-align: center !important;
    font-size: clamp(36px, 5.2vw, 50px) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -.035em !important;
  }

  .calc-section h2 {
    font-size: clamp(34px, 4.8vw, 46px) !important;
    line-height: 1.12 !important;
  }

  .calc-section h2::before {
    content: none !important;
  }

  .credits-sub,
  .calc-sub {
    max-width: 560px !important;
    margin: 0 auto clamp(46px, 7vw, 76px) !important;
    color: rgba(255, 255, 255, .78) !important;
    text-align: center !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .credits-table-wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    overflow: visible !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    background: rgba(4, 6, 12, .08) !important;
  }

  .credits-table {
    width: 100% !important;
    min-width: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    table-layout: fixed !important;
  }

  .credits-table th,
  .credits-table td,
  .credits-table td.ct-label {
    height: clamp(56px, 7.5vw, 68px) !important;
    padding: 0 clamp(10px, 1.8vw, 20px) !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .24) !important;
    vertical-align: middle !important;
    background: transparent !important;
    font-size: clamp(10px, 1.35vw, 14px) !important;
    line-height: 1.25 !important;
  }

  .credits-table th {
    height: 56px !important;
    color: rgba(255, 255, 255, .52) !important;
    text-align: left !important;
    font-size: clamp(9px, 1.2vw, 12px) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: .24em !important;
    text-transform: uppercase !important;
  }

  .credits-table th:nth-child(1),
  .credits-table td:nth-child(1) {
    width: 34% !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-right: 1px dashed rgba(255, 255, 255, .16) !important;
  }

  .credits-table th:nth-child(2),
  .credits-table td:nth-child(2),
  .credits-table td.ct-label {
    display: table-cell !important;
    width: 46% !important;
    color: rgba(255, 255, 255, .62) !important;
    text-align: left !important;
    font-weight: 400 !important;
  }

  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) {
    width: 20% !important;
    color: #fff !important;
    text-align: right !important;
    background: rgba(13, 20, 32, .90) !important;
    border-left: 1px solid rgba(255, 255, 255, .28) !important;
    box-shadow: inset 10px 0 26px rgba(255, 255, 255, .08), -16px 0 28px rgba(55, 83, 177, .13) !important;
  }

  .credits-table td:nth-child(3) {
    font-size: clamp(13px, 1.7vw, 16px) !important;
    font-weight: 800 !important;
  }

  .credits-table tr:last-child td,
  .credits-table tr:last-child td.ct-label {
    border-bottom: 0 !important;
  }

  /* Calculator */
  .calc-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    background: rgba(4, 6, 12, .08) !important;
  }

  .calc-row {
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 47%) !important;
    align-items: center !important;
    gap: clamp(18px, 3vw, 30px) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 92px !important;
    padding: 20px clamp(18px, 3vw, 26px) !important;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .20) !important;
  }

  .calc-label {
    color: #fff !important;
    font-size: clamp(13px, 1.7vw, 16px) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }

  .calc-label span {
    display: block !important;
    margin-top: 8px !important;
    color: rgba(255, 255, 255, .58) !important;
    font-size: clamp(11px, 1.4vw, 14px) !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
  }

  .calc-input {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .calc-input input[type=range] {
    width: 100% !important;
    height: 18px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
  }

  .calc-input input[type=range]::-webkit-slider-runnable-track {
    height: 6px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #fff 0%, #fff var(--range-progress, 0%), rgba(255, 255, 255, .08) var(--range-progress, 0%), rgba(255, 255, 255, .08) 100%) !important;
    box-shadow: 0 0 18px rgba(255, 255, 255, .14) !important;
  }

  .calc-input input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    margin-top: -5.5px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .78) !important;
  }

  .calc-input input[type=range]::-moz-range-track {
    height: 6px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .08) !important;
  }

  .calc-input input[type=range]::-moz-range-progress {
    height: 6px !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .78) !important;
  }

  .calc-input input[type=range]::-moz-range-thumb {
    width: 16px !important;
    height: 16px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, .78) !important;
  }

  .calc-value {
    min-width: 0 !important;
    color: #fff !important;
    text-align: right !important;
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 800 !important;
  }

  .calc-result {
    display: grid !important;
    grid-template-columns: minmax(230px, 34%) 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 190px !important;
    margin: 0 !important;
    padding: 20px !important;
    border: 0 !important;
    border-top: 1px dashed rgba(255, 255, 255, .18) !important;
    background: rgba(4, 6, 12, .02) !important;
    text-align: left !important;
  }

  .calc-result-box,
  .calc-result-main {
    width: 100% !important;
    height: auto !important;
    min-height: 150px !important;
    padding: 22px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: rgba(8, 12, 20, .22) !important;
  }

  .calc-result-label {
    margin: 0 0 28px !important;
    color: #fff !important;
    font-size: clamp(18px, 2.7vw, 28px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    opacity: .92 !important;
  }

  .calc-result-num {
    color: #fff !important;
    font-size: clamp(20px, 2.7vw, 26px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  .calc-result-rec {
    margin: 0 0 44px !important;
    color: #fff !important;
    font-size: clamp(20px, 3.1vw, 30px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
  }

  .calc-result .pc-btn {
    position: static !important;
    width: 150px !important;
    max-width: 100% !important;
    height: 44px !important;
    margin: 0 !important;
    font-size: 12px !important;
  }

  /* FAQ / CTA / footer */
  .faq-section h2 {
    margin-bottom: clamp(50px, 7.5vw, 76px) !important;
  }

  .faq-item {
    max-width: 896px !important;
    margin: 0 auto !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  .faq-q {
    min-height: 84px !important;
    height: auto !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: clamp(13px, 1.7vw, 16px) !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
  }

  .faq-a {
    max-width: 760px !important;
    color: rgba(255, 255, 255, .42) !important;
    font-size: clamp(12px, 1.55vw, 15px) !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
  }

  .faq-a.open {
    max-height: 130px !important;
    padding: 0 0 34px !important;
  }

  .final-cta {
    width: 100% !important;
    max-width: none !important;
    min-height: clamp(420px, 52vw, 540px) !important;
    margin: 0 auto 0 !important;
    padding: clamp(86px, 12vw, 130px) var(--tablet-edge) 0 !important;
    border: 0 !important;
    text-align: center !important;
    background: transparent !important;
    position: relative !important;
  }

  .final-cta::after {
    display: none !important;
  }

  .final-cta h2 {
    max-width: 780px !important;
    margin: 0 auto 34px !important;
    color: #fff !important;
    font-size: clamp(42px, 6.4vw, 64px) !important;
    line-height: .98 !important;
    font-weight: 800 !important;
    letter-spacing: -.052em !important;
  }

  .final-cta p {
    max-width: 560px !important;
    margin: 0 auto 34px !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
  }

  .final-cta .cta-btn {
    width: 210px !important;
    height: 44px !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
  }

  .final-cta .cta-btn::after {
    content: none !important;
  }

  .cta-sub {
    max-width: 620px !important;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, .34) !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
  }

}

/* iPad mini / narrow tablets: keep the same visual, but compact everything. */
@media (min-width: 700px) and (max-width: 819px) {
  :root {
    --tablet-edge: 28px;
    --tablet-content: calc(100vw - 56px);
    --tablet-card-gap: 10px;
  }

  .main-header {
    width: min(620px, var(--tablet-content)) !important;
    height: 58px !important;
    min-height: 58px !important;
    grid-template-rows: 58px auto auto !important;
    padding: 0 18px !important;
  }

  .main-header__logo {
    font-size: 21px !important;
    line-height: 24px !important;
  }

  .main-header__burger,
  .main-header__burger svg {
    width: 28px !important;
    height: 22px !important;
  }

  .hero {
    min-height: 500px !important;
    padding-top: 178px !important;
  }

  .hero h1 {
    max-width: 620px !important;
    font-size: clamp(46px, 7.2vw, 56px) !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .price-card,
  .price-card-popular {
    min-height: 540px !important;
    padding: 20px 12px 18px !important;
    border-radius: 12px !important;
  }

  .price-card-popular {
    min-height: 575px !important;
  }

  .popular-badge {
    width: 118px !important;
    height: 30px !important;
    font-size: 12px !important;
  }

  .pc-name {
    font-size: 15px !important;
  }

  .pc-desc {
    min-height: 42px !important;
    font-size: 10px !important;
    line-height: 13px !important;
    margin-bottom: 28px !important;
  }

  .pc-price {
    font-size: 28px !important;
  }

  .price-card-popular .pc-price,
  .price-card:nth-child(3) .pc-price {
    font-size: 33px !important;
  }

  .pc-price span {
    font-size: 9px !important;
    margin-left: 2px !important;
  }

  .pc-period {
    min-height: 28px !important;
    font-size: 9px !important;
  }

  .pc-old-price,
  .pc-save {
    font-size: 9px !important;
  }

  .pc-credits {
    font-size: 11px !important;
    margin-bottom: 24px !important;
  }

  .pc-features li {
    font-size: 9.3px !important;
    line-height: 1.18 !important;
    padding-left: 16px !important;
    margin-bottom: 8px !important;
  }

  .pc-features li::before {
    width: 9px !important;
    height: 9px !important;
    font-size: 5px !important;
  }

  .pc-btn {
    height: 38px !important;
    font-size: 9.5px !important;
    padding: 0 4px !important;
  }

  .credits-table th,
  .credits-table td,
  .credits-table td.ct-label {
    padding: 0 9px !important;
    font-size: 10px !important;
  }

  .credits-table th {
    font-size: 8px !important;
    letter-spacing: .18em !important;
  }

  .calc-row {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: 0 !important;
    gap: 18px !important;
    padding: 22px 24px !important;
  }

  .calc-result {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .calc-result-box,
  .calc-result-main {
    min-height: 0 !important;
  }

  .calc-result-main {
    text-align: center !important;
  }

  .calc-result .pc-btn {
    margin: 0 auto !important;
  }
}

/* Very small tablets / large phones in landscape: stable one-column cards instead of broken absolute mobile. */
@media (min-width: 600px) and (max-width: 699px) {
  :root {
    --tablet-edge: 28px;
    --tablet-content: calc(100vw - 56px);
  }

  .main-header {
    max-width: var(--tablet-content) !important;
  }

  .hero {
    min-height: 480px !important;
    padding-top: 150px !important;
  }

  .hero h1 {
    max-width: 540px !important;
    font-size: clamp(40px, 8vw, 48px) !important;
  }

  .toggle-wrap {
    height: 145px !important;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .price-card,
  .price-card-popular {
    max-width: 420px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 30px 26px 24px !important;
  }

  .price-card::before,
  .price-card::after {
    display: none !important;
  }

  .price-card-popular .pc-name {
    margin-top: 12px !important;
  }

  .pc-desc {
    min-height: 0 !important;
  }

  .pc-save {
    margin-bottom: 22px !important;
  }

  .pc-features li {
    font-size: 13px !important;
  }

  .credits-section h2,
  .calc-section h2,
  .faq-section h2 {
    font-size: 34px !important;
  }

  .credits-table th,
  .credits-table td,
  .credits-table td.ct-label {
    padding: 0 8px !important;
    font-size: 9.5px !important;
  }

  .credits-table th {
    font-size: 8px !important;
    letter-spacing: .12em !important;
  }

  .calc-row,
  .calc-result {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .calc-result-main {
    text-align: center !important;
  }

  .calc-result .pc-btn {
    margin: 0 auto !important;
  }
}

/* =====================================================================
   TABLET FINAL V4: stable adaptive tablet layout, 600-1024px.
   Fixes iPad mini / Air: no absolute mobile card layout, no clipped text.
   Blue arrow backgrounds stay as URL placeholders below.
   ===================================================================== */
@media (min-width: 600px) and (max-width: 1024px) {
  :root {
    --tablet-edge: clamp(24px, 5vw, 56px);
    --tablet-content: min(920px, calc(100vw - (var(--tablet-edge) * 2)));
    --tablet-blue: #263b7d;
    --tablet-fx-top-url: none;
    --tablet-fx-mid-url: none;
    --tablet-fx-calc-url: none;
    --tablet-fx-bottom-url: none;
  }

  html,
  body {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    background: #0A0A0F !important;
  }

  body::before,
  .fx-placeholder,
  .fx-small-dots,
  .pricing-ellipse {
    display: none !important;
  }

  .page-shell,
  .pricing-shell {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    background:
      radial-gradient(ellipse 55% 18% at 78% 16%, rgba(38, 59, 125, .78), transparent 72%),
      radial-gradient(ellipse 58% 14% at 87% 53%, rgba(38, 59, 125, .46), transparent 72%),
      #0A0A0F !important;
  }

  .pricing-shell::before {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: min(1120px, 132vw) !important;
    height: 640px !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
    z-index: -3 !important;
    background:
      linear-gradient(90deg, transparent 0 calc(50% - 460px), rgba(255, 255, 255, .05) calc(50% - 460px) calc(50% - 459px), transparent calc(50% - 459px) calc(50% + 460px), rgba(255, 255, 255, .05) calc(50% + 460px) calc(50% + 461px), transparent calc(50% + 461px)),
      linear-gradient(90deg, transparent 0 calc(50% - 230px), rgba(255, 255, 255, .028) calc(50% - 230px) calc(50% - 229px), transparent calc(50% - 229px) calc(50% + 230px), rgba(255, 255, 255, .028) calc(50% + 230px) calc(50% + 231px), transparent calc(50% + 231px)),
      linear-gradient(180deg, transparent 96px, rgba(255, 255, 255, .038) 96px 97px, transparent 97px 270px, rgba(255, 255, 255, .026) 270px 271px, transparent 271px),
      radial-gradient(ellipse 40% 42% at 72% 26%, rgba(38, 59, 125, .64), transparent 74%) !important;
    opacity: 1 !important;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%) !important;
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%) !important;
  }

  .hero::before,
  .calc-section::before,
  .final-cta::before {
    content: '' !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -2 !important;
    background-color: var(--tablet-blue) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
  }

  .hero::before {
    right: -112px !important;
    top: -56px !important;
    width: 355px !important;
    height: 260px !important;
    background: url("../img/svr1.svg") center / contain no-repeat;
    clip-path: polygon(0 38%, 62% 46%, 83% 0, 100% 0, 100% 100%, 73% 100%, 10% 58%) !important;
    opacity: .82 !important;
  }

  .calc-section::before {
    left: -170px !important;
    top: -120px !important;
    width: 340px !important;
    height: 430px !important;
    background-image: var(--tablet-fx-mid-url) !important;
    clip-path: polygon(0 0, 58% 44%, 75% 35%, 70% 76%, 100% 72%, 57% 100%, 0 54%) !important;
    opacity: .42 !important;
  }

  .final-cta::before {
    left: 50% !important;
    bottom: -240px !important;
    width: 720px !important;
    height: 455px !important;
    transform: translateX(-50%) rotate(-8deg) !important;
    background-image: var(--tablet-fx-bottom-url) !important;
    clip-path: polygon(0 0, 28% 76%, 55% 70%, 100% 62%, 50% 100%, 30% 96%) !important;
    opacity: .46 !important;
  }

  .main-header {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    right: auto !important;
    width: var(--tablet-content) !important;
    max-width: 760px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 18px !important;
    transform: translateX(-50%) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 30px !important;
    grid-template-rows: 58px auto auto !important;
    align-items: center !important;
    align-content: start !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    background: rgba(7, 8, 13, .94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 18px 48px rgba(0, 0, 0, .26) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 1000 !important;
  }

  .main-header__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: auto !important;
    color: #fff !important;
    font-size: 21px !important;
    line-height: 24px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .main-header__burger {
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 30px !important;
    height: 24px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
  }

  .main-header__burger svg {
    width: 30px !important;
    height: 24px !important;
  }

  .main-header__nav {
    display: flex !important;
    grid-column: 1 / -1 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    height: auto !important;
    max-height: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-6px) !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  .main-header__link {
    width: 100% !important;
    padding: 8px 0 !important;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
  }

  .main-header__cta {
    display: inline-flex !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transform: translateY(-6px) !important;
    border-radius: 8px !important;
  }

  .main-header.is-open {
    height: auto !important;
    padding-bottom: 12px !important;
    row-gap: 8px !important;
    overflow: visible !important;
  }

  .main-header.is-open .main-header__nav {
    max-height: 240px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .main-header.is-open .main-header__cta {
    max-height: 42px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .hero {
    width: 100% !important;
    min-height: clamp(345px, 42vw, 430px) !important;
    padding: clamp(118px, 14vw, 150px) var(--tablet-edge) 0 !important;
    text-align: center !important;
  }

  .hero::after {
    display: none !important;
  }

  .hero-label {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  margin: 0 0 36px;
  padding: 10px 18px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14)!important;

  background: linear-gradient(
    180deg,
    rgba(20, 24, 34, .94),
    rgba(10, 12, 19, .94)
  )!important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 0 1px rgba(255,255,255,.03),
    0 10px 30px rgba(0,0,0,.22)!important;

  color: rgba(255,255,255,.9)!important;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}

  .hero h1 {
  max-width: 620px !important;

  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;

  font-size: clamp(42px, 6.4vw, 64px) !important;
  line-height: 100% !important;
  letter-spacing: 0.2px !important;

  text-align: center !important;
}
  .hero-sub,
  .hero-sub::before {
    color: rgba(255, 255, 255, .86) !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    white-space: normal !important;
  }

 .hero-sub {
  display: block !important;
  max-width: 370px !important;
  margin: 0 auto !important;

  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;

  font-size: 18px !important;
  line-height: 22.4px !important;
  letter-spacing: 0.2px !important;

  text-align: center !important;
}
  .hero-sub::before {
    content: none !important;
  }

  .toggle-wrap {
    height: 112px !important;
    padding: 0 var(--tablet-edge) !important;
    text-align: center !important;
  }

  .toggle {
    width: 184px !important;
    height: 48px !important;
    padding: 4px !important;
    gap: 0 !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 24px !important;
    background: rgba(22, 23, 30, .88) !important;
  }

  .toggle-btn {
    width: 88px !important;
    height: 38px !important;
    border-radius: 20px !important;
    color: rgba(255, 255, 255, .38) !important;
    background: transparent !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
  }

  .toggle-btn.active {
    color: #fff !important;
    background: rgba(255, 255, 255, .14) !important;
    border: 1px solid rgba(255, 255, 255, .20) !important;
  }

  .toggle-save {
    display: block !important;
    margin-top: 12px !important;
    color: rgba(255, 255, 255, .56) !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 500 !important;
  }

  .pricing-section {
    width: var(--tablet-content) !important;
    max-width: 920px !important;
    margin: 0 auto clamp(120px, 16vw, 190px) !important;
    padding: 0 !important;
  }

  .pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: clamp(10px, 1.6vw, 16px) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .price-card,
  .price-card-popular {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: clamp(20px, 2.7vw, 28px) clamp(14px, 2.1vw, 22px) clamp(18px, 2.5vw, 24px) !important;
    overflow: visible !important;
    border-radius: 13px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: #0B1018 !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22) !important;
  }

  .price-card::before,
  .price-card::after {
    display: none !important;
  }

  .price-card>* {
    position: relative !important;
    inset: auto !important;
    z-index: 1 !important;
  }

  .price-card-popular {
    transform: translateY(-14px) !important;
    background: linear-gradient(180deg, rgba(44, 45, 51, .98), rgba(19, 21, 29, .98)) !important;
    border-color: rgba(76, 117, 255, .58) !important;
    box-shadow: 0 0 0 1px rgba(76, 117, 255, .18), 0 0 42px rgba(46, 82, 185, .34), 0 24px 60px rgba(0, 0, 0, .36) !important;
  }

  .popular-badge {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: 132px !important;
    height: 30px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 500 !important;
  }

  .pc-name {
    margin: 0 0 6px !important;
    color: #fff !important;
    font-size: clamp(14px, 1.8vw, 18px) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
  }

  .price-card-popular .pc-name {
    margin-top: 10px !important;
  }

  .pc-desc {
    width: auto !important;
    min-height: 34px !important;
    margin: 0 0 clamp(20px, 2.6vw, 28px) !important;
    color: rgba(255, 255, 255, .58) !important;
    font-size: clamp(10px, 1.35vw, 13px) !important;
    line-height: 1.28 !important;
    font-weight: 400 !important;
  }

  .pc-price {
    display: flex !important;
    align-items: flex-start !important;
    gap: 5px !important;
    width: auto !important;
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(30px, 4.2vw, 44px) !important;
    line-height: .95 !important;
    font-weight: 800 !important;
    letter-spacing: -.058em !important;
    white-space: nowrap !important;
  }

  .price-card-popular .pc-price,
  .price-card:nth-child(3) .pc-price {
    font-size: clamp(32px, 4.7vw, 48px) !important;
  }

  .pc-price span,
  .price-card-popular .pc-price span,
  .price-card:nth-child(3) .pc-price span {
    position: static !important;
    display: inline-block !important;
    margin: 0 !important;
    padding-top: 1.45em !important;
    color: rgba(255, 255, 255, .48) !important;
    font-size: clamp(9px, 1.15vw, 12px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    padding-left: 8px;
  }

  .pc-period,
  .price-card-popular .pc-period,
  .price-card:nth-child(3) .pc-period {
    display: block !important;
    width: auto !important;
    min-height: 24px !important;
    margin: 0 0 6px !important;
    color: rgba(255, 255, 255, .45) !important;
    font-size: clamp(9px, 1.15vw, 12px) !important;
    line-height: 1.25 !important;
  }

  .price-card:first-child .pc-period {
    display: block !important;
  }

  .pc-old-price,
  .price-card-popular .pc-old-price,
  .price-card:nth-child(3) .pc-old-price {
    display: block !important;
    min-height: 14px !important;
    margin: 0 0 4px !important;
    color: rgba(255, 255, 255, .30) !important;
    text-align: left !important;
    font-size: clamp(9px, 1.12vw, 11px) !important;
    line-height: 1.2 !important;
    text-decoration: line-through !important;
  }

  .price-card:first-child .pc-old-price {
    visibility: hidden !important;
  }

  .pc-save,
  .price-card-popular .pc-save,
  .price-card:nth-child(3) .pc-save {
    display: block !important;
    min-height: 16px !important;
    margin: 0 0 clamp(18px, 2.5vw, 26px) !important;
    color: #28A8FF !important;
    font-size: clamp(9px, 1.12vw, 11px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
  }

  .price-card:first-child .pc-save {
    visibility: hidden !important;
  }

  .pc-credits,
  .price-card-popular .pc-credits,
  .price-card:nth-child(3) .pc-credits {
    width: auto !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: clamp(12px, 1.45vw, 14px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
  }

  .price-card:first-child .pc-credits::after {
    content: none !important;
  }

  .pc-features,
  .price-card:first-child .pc-features,
  .price-card:nth-child(3) .pc-features {
    display: block !important;
    width: auto !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    list-style: none !important;
    flex: 1 1 auto !important;
  }

  .pc-features li,
  .price-card:nth-child(3) .pc-features li {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 0 8px !important;
    padding: 0 0 0 18px !important;
    color: rgba(255, 255, 255, .94) !important;
    opacity: 1 !important;
    font-size: clamp(9.5px, 1.25vw, 12px) !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
  }

  .pc-features li::before,
  .price-card:nth-child(3) .pc-features li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: .15em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 10px !important;
    height: 10px !important;
    border: 1.2px solid rgba(255, 255, 255, .88) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .94) !important;
    font-size: 6px !important;
    line-height: 1 !important;
  }

  .pc-btn,
  .pc-btn1,
  .price-card-popular .pc-btn,
  .price-card-popular .pc-btn1,
  .price-card:nth-child(3) .pc-btn,
  .price-card:nth-child(3) .pc-btn1 {
    position: static !important;
    width: 100% !important;
    height: 38px !important;
    margin: auto 0 0 !important;
    padding: 0 8px !important;
    border-radius: 7px !important;
    font-size: clamp(9.5px, 1.2vw, 12px) !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    inset: auto !important;
  }

  .credits-section,
  .calc-section,
  .faq-section {
    width: var(--tablet-content) !important;
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
  }

  .credits-section {
    margin-bottom: clamp(120px, 16vw, 190px) !important;
  }

  .calc-section {
    margin-bottom: clamp(120px, 16vw, 190px) !important;
  }

  .faq-section {
    margin-bottom: clamp(130px, 18vw, 210px) !important;
  }

  .credits-section h2,
  .calc-section h2,
  .faq-section h2 {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #fff !important;
    text-align: center !important;
    font-size: clamp(30px, 4.8vw, 44px) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -.04em !important;
  }

  .credits-section h2 {
    margin-bottom: 18px !important;
  }

  .calc-section h2 {
    margin-bottom: 18px !important;
    font-size: clamp(30px, 4.8vw, 44px) !important;
    line-height: 1.08 !important;
  }

  .calc-section h2::before {
    content: none !important;
  }

  .credits-sub,
  .calc-sub {
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: rgba(255, 255, 255, .80) !important;
    text-align: center !important;
    font-size: 13px !important;
    line-height: 17px !important;
  }

  .credits-sub {
    margin-bottom: 46px !important;
  }

  .calc-sub {
    margin-bottom: 50px !important;
  }

  .credits-table-wrap,
  .calc-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    border: 1px solid rgba(255, 255, 255, .24) !important;
    background: rgba(4, 6, 12, .10) !important;
    overflow: visible !important;
  }

  .credits-table-wrap {
    overflow-x: auto !important;
    overflow-y: visible !important;
  }

  .credits-table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
  }

  .credits-table th,
  .credits-table td,
  .credits-table td.ct-label {
    height: 58px !important;
    padding: 0 clamp(8px, 1.6vw, 16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .22) !important;
    border-right: 0 !important;
    background: transparent !important;
    vertical-align: middle !important;
  }

  .credits-table th {
    height: 52px !important;
    color: rgba(255, 255, 255, .50) !important;
    font-size: clamp(8px, 1.1vw, 11px) !important;
    line-height: 1.2 !important;
    letter-spacing: .20em !important;
  }

  .credits-table th:nth-child(1),
  .credits-table td:nth-child(1) {
    width: 33% !important;
    color: #fff !important;
    font-size: clamp(10px, 1.45vw, 14px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    border-right: 1px dashed rgba(255, 255, 255, .16) !important;
  }

  .credits-table th:nth-child(2),
  .credits-table td:nth-child(2),
  .credits-table td.ct-label {
    width: 45% !important;
    color: rgba(255, 255, 255, .62) !important;
    text-align: left !important;
    font-size: clamp(9px, 1.35vw, 13px) !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    display: table-cell !important;
  }

  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) {
    width: 22% !important;
    color: #fff !important;
    text-align: right !important;
    background: rgba(13, 20, 32, .88) !important;
    border-left: 1px solid rgba(255, 255, 255, .26) !important;
    box-shadow: inset 10px 0 22px rgba(255, 255, 255, .06) !important;
  }

  .credits-table td:nth-child(3) {
    font-size: clamp(12px, 1.7vw, 15px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  .credits-table tr:last-child td,
  .credits-table tr:last-child td.ct-label {
    border-bottom: 0 !important;
  }

  .calc-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 42%) 44px !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 76px !important;
    padding: 18px 22px !important;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .20) !important;
  }

  .calc-label {
    color: #fff !important;
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 800 !important;
  }

  .calc-label span {
    display: block !important;
    margin-top: 7px !important;
    color: rgba(255, 255, 255, .50) !important;
    font-size: 11px !important;
    line-height: 14px !important;
    font-weight: 400 !important;
  }

  .calc-input {
    display: flex !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .calc-input input[type=range] {
    width: 100% !important;
    height: 18px !important;
  }

  .calc-value {
    min-width: 44px !important;
    color: #fff !important;
    text-align: right !important;
    font-size: 13px !important;
    line-height: 16px !important;
    font-weight: 800 !important;
  }

  .calc-result {
    display: grid !important;
    grid-template-columns: minmax(220px, 32%) minmax(0, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 20px !important;
    border: 0 !important;
    border-top: 1px dashed rgba(255, 255, 255, .18) !important;
    background: rgba(4, 6, 12, .04) !important;
    text-align: left !important;
  }

  .calc-result-box,
  .calc-result-main {
    width: 100% !important;
    height: auto !important;
    min-height: 140px !important;
    padding: 22px !important;
    border: 1px solid rgba(255, 255, 255, .17) !important;
    background: rgba(8, 12, 20, .18) !important;
  }

  .calc-result-label {
    margin: 0 0 26px !important;
    color: #fff !important;
    font-size: clamp(18px, 2.6vw, 28px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
  }

  .calc-result-num {
    color: #fff !important;
    font-size: clamp(20px, 2.7vw, 26px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  .calc-result-rec {
    margin: 0 0 36px !important;
    color: #fff !important;
    font-size: clamp(20px, 2.8vw, 30px) !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
  }

  .calc-result .pc-btn {
    width: 229px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  .faq-section h2 {
    margin-bottom: 48px !important;
  }

  .faq-item {
    max-width: 100% !important;
    margin: 0 auto !important;
    border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
  }

  .faq-q {
    min-height: 72px !important;
    height: auto !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 800 !important;
  }

  .faq-a {
    color: rgba(255, 255, 255, .45) !important;
    font-size: 13px !important;
    line-height: 18px !important;
  }

  .faq-a.open {
    max-height: 150px !important;
    padding: 0 0 26px !important;
  }

  .final-cta {
    width: 100% !important;
    min-height: 430px !important;
    margin: 0 auto !important;
    padding: 88px var(--tablet-edge) 0 !important;
    text-align: center !important;
  }

  .final-cta::after {
    display: none !important;
  }

  .final-cta h2 {
    max-width: 760px !important;
    margin: 0 auto 28px !important;
    color: #fff !important;
    font-size: clamp(38px, 5.6vw, 58px) !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -.05em !important;
  }

  .final-cta p {
    max-width: 520px !important;
    margin: 0 auto 30px !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: 13px !important;
    line-height: 17px !important;
  }

  .final-cta .cta-btn {
    width: 200px !important;
    height: 44px !important;
    margin: 0 auto 18px !important;
    font-size: 14px !important;
    line-height: 18px !important;
  }

  .final-cta .cta-btn::after {
    content: none !important;
  }

  .cta-sub {
    color: rgba(255, 255, 255, .34) !important;
    font-size: 12px !important;
    line-height: 15px !important;
  }
}

/* iPad Air / Mini: keep reference feel, but stop squeezing 3 cards into unreadable columns. */
@media (min-width: 700px) and (max-width: 899px) {
  :root {
    --tablet-edge: clamp(34px, 6vw, 52px);
    --tablet-content: min(720px, calc(100vw - (var(--tablet-edge) * 2)));
  }

  .main-header {
    max-width: var(--tablet-content) !important;
  }

  .hero {
    min-height: 355px !important;
    padding-top: 126px !important;
  }

  .hero h1 {
    max-width: 620px !important;
    font-size: clamp(42px, 6.4vw, 52px) !important;
  }

  .toggle-wrap {
    height: 116px !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 680px !important;
    gap: 16px !important;
  }

  .price-card:first-child {
    grid-column: 1 / -1 !important;
    max-width: none !important;
  }

  .price-card-popular {
    transform: none !important;
  }

  .price-card,
  .price-card-popular {
    padding: 24px 22px 22px !important;
  }

  .pc-name {
    font-size: 17px !important;
  }

  .pc-desc {
    min-height: 0 !important;
    font-size: 12px !important;
    line-height: 15px !important;
  }

  .pc-price,
  .price-card-popular .pc-price,
  .price-card:nth-child(3) .pc-price {
    font-size: 42px !important;
  }

  .pc-features li {
    font-size: 11.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 7px !important;
  }

  .pc-btn {
    height: 40px !important;
    font-size: 11px !important;
  }

  .calc-row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .calc-input {
    width: 100% !important;
  }

  .calc-value {
    text-align: left !important;
  }

  .calc-result {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .calc-result-main {
    text-align: center !important;
  }

  .calc-result .pc-btn {
    margin: 0 auto !important;
  }
}

/* 900-1024 keeps the 3-card reference composition. */
@media (min-width: 900px) and (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .price-card:first-child {
    grid-column: auto !important;
  }

  .pc-btn1 {
    left: 20px !important;
    width: calc(100% - 40px) !important;
  }
}

/* 600-699: compact tablet / landscape large-phone fallback. */
@media (min-width: 600px) and (max-width: 699px) {
  :root {
    --tablet-edge: 28px;
    --tablet-content: calc(100vw - 56px);
  }

  .hero {
    min-height: 330px !important;
    padding-top: 116px !important;
  }

  .hero h1 {
    font-size: 40px !important;
    max-width: 500px !important;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 460px !important;
    gap: 18px !important;
  }

  .price-card-popular {
    transform: none !important;
  }

  .calc-row,
  .calc-result {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .calc-result-main {
    text-align: center !important;
  }

  .calc-result .pc-btn {
    margin: 0 auto !important;
  }

  .credits-section h2,
  .calc-section h2,
  .faq-section h2 {
    font-size: 32px !important;
  }

  .credits-table th:nth-child(1),
  .credits-table td:nth-child(1) {
    width: 36% !important;
  }

  .credits-table th:nth-child(2),
  .credits-table td:nth-child(2),
  .credits-table td.ct-label {
    width: 40% !important;
  }

  .credits-table th:nth-child(3),
  .credits-table td:nth-child(3) {
    width: 24% !important;
  }
}

/* =====================================================================
   TABLET TARGET FIX V5: iPad mini / Air точечная добивка.
   Причина поломки была в том, что при 768px продолжали побеждать
   старые mobile-селекторы вида .price-card:first-child { height:204px }.
   Здесь перебиваем их более специфично и держим карточки в нормальном flow.
   ===================================================================== */
@media (min-width: 600px) and (max-width: 899px) {
  .pricing-grid {
    align-items: stretch !important;
  }

  .pricing-grid .price-card,
  .pricing-grid .price-card:first-child,
  .pricing-grid .price-card.price-card-popular,
  .pricing-grid .price-card:nth-child(3) {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 24px 22px 22px !important;
  }

  .pricing-grid .price-card::before,
  .pricing-grid .price-card::after,
  .pricing-grid .price-card:first-child::before,
  .pricing-grid .price-card:first-child::after,
  .pricing-grid .price-card.price-card-popular::before,
  .pricing-grid .price-card.price-card-popular::after,
  .pricing-grid .price-card:nth-child(3)::before,
  .pricing-grid .price-card:nth-child(3)::after {
    display: none !important;
  }

  .pricing-grid .price-card>*,
  .pricing-grid .price-card:first-child>*,
  .pricing-grid .price-card.price-card-popular>*,
  .pricing-grid .price-card:nth-child(3)>* {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .pricing-grid .price-card.price-card-popular {
    transform: none !important;
    padding-top: 30px !important;
  }

  .pricing-grid .price-card.price-card-popular .popular-badge {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: 132px !important;
    height: 30px !important;
    transform: translate(-50%, -50%) !important;
  }

  .pricing-grid .price-card .pc-name,
  .pricing-grid .price-card:first-child .pc-name,
  .pricing-grid .price-card.price-card-popular .pc-name,
  .pricing-grid .price-card:nth-child(3) .pc-name {
    margin: 0 0 7px !important;
    font-size: 17px !important;
    line-height: 21px !important;
  }

  .pricing-grid .price-card .pc-desc,
  .pricing-grid .price-card:first-child .pc-desc,
  .pricing-grid .price-card.price-card-popular .pc-desc,
  .pricing-grid .price-card:nth-child(3) .pc-desc {
    width: auto !important;
    min-height: 32px !important;
    margin: 0 0 24px !important;
    font-size: 12px !important;
    line-height: 15px !important;
  }

  .pricing-grid .price-card .pc-price,
  .pricing-grid .price-card:first-child .pc-price,
  .pricing-grid .price-card.price-card-popular .pc-price,
  .pricing-grid .price-card:nth-child(3) .pc-price {
    display: flex !important;
    align-items: flex-start !important;
    gap: 5px !important;
    margin: 0 0 8px !important;
    font-size: 42px !important;
    line-height: .95 !important;
    letter-spacing: -.055em !important;
    white-space: nowrap !important;
  }

  .pricing-grid .price-card:first-child .pc-price {
    font-size: 40px !important;
  }

  .pricing-grid .price-card .pc-price span,
  .pricing-grid .price-card:first-child .pc-price span,
  .pricing-grid .price-card.price-card-popular .pc-price span,
  .pricing-grid .price-card:nth-child(3) .pc-price span {
    position: static !important;
    display: inline-block !important;
    margin: 0 !important;
    padding-top: 1.45em !important;
    font-size: 10px !important;
    line-height: 12px !important;
    padding-left: 8px;
  }

  .pricing-grid .price-card .pc-period,
  .pricing-grid .price-card:first-child .pc-period,
  .pricing-grid .price-card.price-card-popular .pc-period,
  .pricing-grid .price-card:nth-child(3) .pc-period,
  .pricing-grid .price-card .pc-old-price,
  .pricing-grid .price-card.price-card-popular .pc-old-price,
  .pricing-grid .price-card:nth-child(3) .pc-old-price,
  .pricing-grid .price-card .pc-save,
  .pricing-grid .price-card.price-card-popular .pc-save,
  .pricing-grid .price-card:nth-child(3) .pc-save {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .pricing-grid .price-card:first-child .pc-period {
    display: block !important;
    margin: 0 0 22px !important;
    font-size: 10px !important;
    line-height: 13px !important;
  }

  .pricing-grid .price-card:first-child .pc-old-price,
  .pricing-grid .price-card:first-child .pc-save {
    display: none !important;
  }

  .pricing-grid .price-card.price-card-popular .pc-period,
  .pricing-grid .price-card:nth-child(3) .pc-period {
    margin: 0 0 12px !important;
    font-size: 10px !important;
    line-height: 13px !important;
  }

  .pricing-grid .price-card.price-card-popular .pc-old-price,
  .pricing-grid .price-card:nth-child(3) .pc-old-price {
    display: block !important;
    margin: 0 0 6px !important;
    font-size: 10px !important;
    line-height: 12px !important;
  }

  .pricing-grid .price-card.price-card-popular .pc-save,
  .pricing-grid .price-card:nth-child(3) .pc-save {
    display: block !important;
    margin: 0 0 22px !important;
    font-size: 10px !important;
    line-height: 13px !important;
  }

  .pricing-grid .price-card .pc-credits,
  .pricing-grid .price-card:first-child .pc-credits,
  .pricing-grid .price-card.price-card-popular .pc-credits,
  .pricing-grid .price-card:nth-child(3) .pc-credits {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 17px !important;
    font-weight: 800 !important;
  }

  .pricing-grid .price-card:first-child .pc-credits::after {
    content: none !important;
  }

  .pricing-grid .price-card .pc-features,
  .pricing-grid .price-card:first-child .pc-features,
  .pricing-grid .price-card.price-card-popular .pc-features,
  .pricing-grid .price-card:nth-child(3) .pc-features {
    display: block !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    flex: 1 1 auto !important;
  }

  .pricing-grid .price-card .pc-features li,
  .pricing-grid .price-card:first-child .pc-features li,
  .pricing-grid .price-card.price-card-popular .pc-features li,
  .pricing-grid .price-card:nth-child(3) .pc-features li {
    position: relative !important;
    display: block !important;
    height: auto !important;
    margin: 0 0 8px !important;
    padding: 0 0 0 18px !important;
    font-size: 11.5px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
  }

  .pricing-grid .price-card .pc-btn,
  .pricing-grid .price-card:first-child .pc-btn,
  .pricing-grid .price-card.price-card-popular .pc-btn,
  .pricing-grid .price-card:nth-child(3) .pc-btn {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 40px !important;
    margin: auto 0 0 !important;
    padding: 0 8px !important;
    font-size: 11px !important;
    line-height: 13px !important;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .pricing-grid .price-card:first-child {
    grid-column: 1 / -1 !important;
  }
}

@media (min-width: 600px) and (max-width: 699px) {

  .pricing-grid .price-card,
  .pricing-grid .price-card:first-child,
  .pricing-grid .price-card.price-card-popular,
  .pricing-grid .price-card:nth-child(3) {
    padding: 24px 22px 22px !important;
  }
}

/* Mobile FAQ separators */
@media (max-width: 599px) {
  .faq-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .faq-section h2 {
    max-width: 343px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .faq-item {
    position: relative !important;
    max-width: 343px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    border-bottom: 0 !important;
  }

  .faq-item::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 0 !important;
    height: 1px !important;
    background: rgba(255, 255, 255, .16) !important;
    pointer-events: none !important;
  }

  .faq-item:last-of-type::after {
    display: none !important;
  }

  .faq-q {
    min-height: 44px !important;
    padding: 0 !important;
    font-size: 11px !important;
    line-height: 14px !important;
  }

  .faq-a {
    font-size: 11px !important;
    line-height: 16px !important;
  }

  .faq-a.open {
    padding-bottom: 18px !important;
  }
}

/* Header working-area alignment */
@media (min-width: 1025px) {

  body .main-header,
  .main-header {
    left: 50% !important;
    right: auto !important;
    display: flex !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    width: min(1204px, calc(100vw - 48px)) !important;
    max-width: min(1204px, calc(100vw - 48px)) !important;
    height: 76px !important;
    min-height: 76px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 16px 15px 16px 32px !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    overflow: visible !important;
    border-radius: 16px !important;
    transform: translateX(-50%) !important;
  }

  body .main-header__logo,
  .main-header__logo {
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: auto !important;
    font-size: 30px !important;
    line-height: 32px !important;
    font-weight: 600 !important;
    letter-spacing: .3px !important;
  }

  body .main-header__nav,
  .main-header__nav {
    grid-column: auto !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 32px !important;
    width: auto !important;
    max-height: none !important;
    height: 100% !important;
    padding: 0 !important;
    align-items: center !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  body .main-header__link,
  .main-header__link {
    display: inline-flex !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: normal !important;
    font-weight: 500 !important;
  }

  body .main-header__cta,
  .main-header__cta {
    grid-column: auto !important;
    display: inline-flex !important;
    width: 193px !important;
    max-width: 193px !important;
    max-height: none !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 14px 32px !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  body .main-header__burger,
  .main-header__burger {
    display: none !important;
  }
}

@media (max-width: 1024px) {

  body .main-header,
  .main-header {
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }
}

/* Unified working-area header */
@media (min-width: 1025px) {

  body .main-header,
  .main-header {
    left: 50% !important;
    right: auto !important;
    width: min(1204px, calc(100vw - 48px)) !important;
    max-width: min(1204px, calc(100vw - 48px)) !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 1024px) {

  body .main-header,
  .main-header {
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {

  .hero::before,
  .calc-section::before,
  .final-cta::before,
  .pricing-shell::after {
    display: none !important;
  }
}

.pricing-svr {
  position: absolute;
  display: none;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -2;
  opacity: 0.92;
}

.pricing-svr--left {
  top: 560px;
  left: -220px;
  width: 1120px;
  height: 1820px;
  background-image: url("../img/svr2.svg");
}

.pricing-svr--right {
  top: 2280px;
  right: -250px;
  width: 1080px;
  height: 1820px;
  background-image: url("../img/svr1.svg");
}

@media (min-width: 769px) and (max-width: 1024px) {

  .hero::before,
  .calc-section::before,
  .final-cta::before,
  .pricing-shell::after {
    display: none !important;
  }

  .fx-placeholder,
  .fx-small-dots {
    display: none !important;
  }

  .pricing-svr {
    display: block;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {

  body .main-header,
  .main-header {
    top: 10px !important;
    left: 50% !important;
    right: auto !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: 74px auto auto !important;
    width: min(1204px, calc(100vw - 48px)) !important;
    max-width: min(1204px, calc(100vw - 48px)) !important;
    height: 76px !important;
    min-height: 76px !important;
    margin: 0 !important;
    padding: 0 23px !important;
    align-items: center !important;
    align-content: start !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    background: rgba(9, 10, 16, 0.94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px) !important;
    transform: translateX(-50%) !important;
  }

  body .main-header__logo,
  .main-header__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    font-size: 20px !important;
    line-height: 22px !important;
    font-weight: 800 !important;
  }

  body .main-header__burger,
  .main-header__burger {
    position: static !important;
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 46px !important;
    height: 36px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    cursor: pointer !important;
  }

  body .main-header__burger svg,
  .main-header__burger svg {
    display: block !important;
    width: 46px !important;
    height: 36px !important;
  }

  body .main-header__nav,
  .main-header__nav {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  body .main-header__link,
  .main-header__link {
    display: block !important;
    padding: 8px 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    opacity: 0.92 !important;
  }

  body .main-header__cta,
  .main-header__cta {
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 0 !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: max-height 260ms ease, min-height 260ms ease, padding 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  body .main-header.is-open,
  .main-header.is-open {
    height: auto !important;
    min-height: 76px !important;
    padding: 0 23px 14px !important;
    row-gap: 8px !important;
    overflow: visible !important;
  }

  body .main-header.is-open .main-header__nav,
  .main-header.is-open .main-header__nav {
    max-height: 220px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  body .main-header.is-open .main-header__cta,
  .main-header.is-open .main-header__cta {
    max-height: 44px !important;
    min-height: 44px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition-delay: 40ms !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {

  body .main-header,
  .main-header {
    top: 14px !important;
    left: 50% !important;
    right: auto !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: 58px auto auto !important;
    width: min(720px, calc(100vw - 32px)) !important;
    max-width: min(720px, calc(100vw - 32px)) !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    align-items: center !important;
    align-content: start !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    background: rgba(9, 11, 18, 0.96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.38) !important;
    backdrop-filter: blur(8px) !important;
    transform: translateX(-50%) !important;
  }

  body .main-header__logo,
  .main-header__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    font-size: 20px !important;
    line-height: 22px !important;
    font-weight: 800 !important;
  }

  body .main-header__burger,
  .main-header__burger {
    position: static !important;
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 24px !important;
    height: 19px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    cursor: pointer !important;
  }

  body .main-header__burger svg,
  .main-header__burger svg {
    display: block !important;
    width: 24px !important;
    height: 19px !important;
  }

  body .main-header__nav,
  .main-header__nav {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  body .main-header__link,
  .main-header__link {
    display: block !important;
    padding: 8px 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    opacity: 0.92 !important;
  }

  body .main-header__cta,
  .main-header__cta {
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 0 !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: max-height 260ms ease, min-height 260ms ease, padding 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  body .main-header.is-open,
  .main-header.is-open {
    height: auto !important;
    min-height: 58px !important;
    padding: 0 16px 12px !important;
    row-gap: 8px !important;
    overflow: visible !important;
  }

  body .main-header.is-open .main-header__nav,
  .main-header.is-open .main-header__nav {
    max-height: 220px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  body .main-header.is-open .main-header__cta,
  .main-header.is-open .main-header__cta {
    max-height: 44px !important;
    min-height: 44px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition-delay: 40ms !important;
  }
}

@media (max-width: 768px) {

  body .main-header,
  .main-header {
    top: 32px !important;
    left: 16px !important;
    right: 16px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: 58px auto auto !important;
    width: auto !important;
    max-width: none !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    align-items: center !important;
    align-content: start !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    background: rgba(9, 11, 18, 0.96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.38) !important;
    backdrop-filter: blur(8px) !important;
    transform: none !important;
  }

  body .main-header__logo,
  .main-header__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 22px !important;
    letter-spacing: 0.2px !important;
    text-transform: none !important;
  }

  body .main-header__burger,
  .main-header__burger {
    position: static !important;
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 24px !important;
    height: 19px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    cursor: pointer !important;
  }

  body .main-header__burger svg,
  .main-header__burger svg {
    display: block !important;
    width: 24px !important;
    height: 19px !important;
  }

  body .main-header__nav,
  .main-header__nav {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  body .main-header__link,
  .main-header__link {
    display: block !important;
    padding: 8px 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    opacity: 0.92 !important;
  }

  body .main-header__cta,
  .main-header__cta {
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 0 !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: max-height 260ms ease, min-height 260ms ease, padding 260ms ease, opacity 220ms ease, transform 220ms ease !important;
  }

  body .main-header.is-open,
  .main-header.is-open {
    height: auto !important;
    padding: 0 16px 12px !important;
    row-gap: 8px !important;
    overflow: visible !important;
  }

  body .main-header.is-open .main-header__nav,
  .main-header.is-open .main-header__nav {
    max-height: 220px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  body .main-header.is-open .main-header__cta,
  .main-header.is-open .main-header__cta {
    max-height: 44px !important;
    min-height: 44px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition-delay: 40ms !important;
  }

  .pricing-svr {
    display: none !important;
  }
}

/* Mobile hero — exact 2x2 grid (4 squares) with soft edges */
@media (max-width: 720px) {
  .hero {
    position: relative !important;
    overflow: visible !important;
  }

  .hero::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 70px !important;
    transform: translateX(-50%) !important;
    width: 100vw !important;
    height: 360px !important;
    max-width: none !important;
    pointer-events: none !important;
    z-index: 0 !important;
    background-color: transparent !important;
    background-image:
      linear-gradient(rgba(150, 180, 235, .30), rgba(150, 180, 235, .30)),
      linear-gradient(rgba(150, 180, 235, .30), rgba(150, 180, 235, .30)) !important;
    background-size: 100% 1px, 1px 100% !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat, no-repeat !important;
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, #000 50%, rgba(0, 0, 0, .5) 85%, transparent 100%) !important;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, #000 50%, rgba(0, 0, 0, .5) 85%, transparent 100%) !important;
  }

  .hero>* {
    position: relative !important;
    z-index: 2 !important;
  }
}

/* MOBILE TOGGLE — clean glass version */
@media (max-width: 768px) {
  body .toggle-wrap {
    height: 128px !important;
    padding: 0 16px !important;
    text-align: center !important;
  }

  body .toggle-wrap .toggle {
    width: 342px !important;
    max-width: calc(100vw - 32px) !important;
    height: 60px !important;

    align-items: center !important;
    justify-content: flex-start !important;

    padding: 8px 10px 8px 11px !important;
    gap: 5px !important;

    border-radius: 65px !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;

    background: rgba(7, 8, 13, .72) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .14),
      inset 0 -1px 0 rgba(0, 0, 0, .55),
      0 16px 34px rgba(0, 0, 0, .35) !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body .toggle-wrap .toggle::before,
  body .toggle-wrap .toggle::after,
  body .toggle-wrap .toggle-btn::before,
  body .toggle-wrap .toggle-btn::after {
    display: none !important;
    content: none !important;
  }

  body .toggle-wrap .toggle-btn {
    width: 158px !important;
    min-width: 158px !important;
    height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 11px 18px 10px !important;

    border-radius: 65px !important;
    border: 1px solid transparent !important;
    background: transparent !important;

    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 22.4px !important;
    letter-spacing: .2px !important;
    text-align: center !important;

    color: rgba(255, 255, 255, .30) !important;

    opacity: 1 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  body .toggle-wrap .toggle-btn.active {
    color: #fff !important;

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, .19) 0%,
        rgba(255, 255, 255, .13) 48%,
        rgba(255, 255, 255, .09) 100%) !important;

    border: 1px solid rgba(255, 255, 255, .32) !important;

    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, .46),
      inset 0 -1px 1px rgba(0, 0, 0, .36),
      inset 14px 0 24px rgba(255, 255, 255, .07),
      inset -14px 0 24px rgba(255, 255, 255, .045),
      0 0 6.8px 0 rgba(255, 255, 255, .25),
      0 0 22px 0 rgba(255, 255, 255, .18) !important;

    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  }

  body .toggle-wrap .toggle-btn:not(.active) {
    color: rgba(255, 255, 255, .30) !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  body .toggle-wrap .toggle-btn:hover,
  body .toggle-wrap .toggle-btn:active {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {

  body .credits-table th:nth-child(3),
  body .credits-table td:nth-child(3) {
    background:
      radial-gradient(ellipse at 50% 85%,
        rgba(55, 86, 190, .26) 0%,
        rgba(55, 86, 190, 0) 62%),
      rgba(16, 25, 39, 0.74) !important;
  }
}

@media (max-width: 768px) {
  body .credits-table-wrap {
    background: transparent !important;
    box-shadow: none !important;
  }

  body .credits-table-wrap::before,
  body .credits-table-wrap::after {
    display: none !important;
    content: none !important;
  }

  body .credits-table th:nth-child(3),
  body .credits-table td:nth-child(3) {
    background: rgba(16, 25, 39, 0.74) !important;

    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, .18),
      inset -1px 0 0 rgba(255, 255, 255, .06) !important;

    border-left: 0.2px solid rgba(255, 255, 255, .42) !important;
    border-right: 0.2px solid rgba(255, 255, 255, .42) !important;
  }

  body .credits-table td:nth-child(3)::before,
  body .credits-table td:nth-child(3)::after,
  body .credits-table th:nth-child(3)::before,
  body .credits-table th:nth-child(3)::after {
    display: none !important;
    content: none !important;
  }
}

body .faq-section .faq-q {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  width: 98%;
}

body .faq-section .faq-a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
}

/* FINAL mobile hero lines exact by coordinates */
@media (max-width: 768px) {
  body .hero {
    position: relative !important;
    isolation: isolate !important;
    overflow: visible !important;
  }

  body .hero::before {
    content: "" !important;
    position: absolute !important;

    left: 0 !important;
    top: 0 !important;

    width: 375px !important;
    max-width: 100vw !important;
    height: 454.2px !important;

    z-index: 0 !important;
    pointer-events: none !important;

    background:
      /* первая вертикальная: left 16px, top -9px, height 454.2px */
      linear-gradient(rgba(255, 255, 255, .2),
        rgba(255, 255, 255, .2)) 16px -9px / 0.2px 454.2px no-repeat,

      /* центральная вертикальная: left 187px, top -9px, height 368.5px */
      linear-gradient(rgba(255, 255, 255, .2),
        rgba(255, 255, 255, .2)) 187px -9px / 0.2px 368.5px no-repeat,

      /* правая вертикальная: left 358px, top -9px, height 454.2px */
      linear-gradient(rgba(255, 255, 255, .2),
        rgba(255, 255, 255, .2)) 358px -9px / 0.2px 454.2px no-repeat,

      /* верхняя горизонтальная: top 31px, width 375px */
      linear-gradient(rgba(255, 255, 255, .2),
        rgba(255, 255, 255, .2)) 0 31px / 375px 0.2px no-repeat,

      /* нижняя горизонтальная: top 357px, width 375px */
      linear-gradient(rgba(255, 255, 255, .2),
        rgba(255, 255, 255, .2)) 0 357px / 375px 0.2px no-repeat !important;

    opacity: 1 !important;

    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  body .hero>* {
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 768px) {
  body .calc-section .calc-label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0.2px !important;
    color: #fff !important;
  }

  body .calc-section .calc-label span {
    font-family: 'Inter', sans-serif !important;
    font-weight: 200 !important;
    font-style: normal !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0.2px !important;
    color: rgba(255, 255, 255, .58) !important;
  }
}

@media (min-width: 769px) {
  body .toggle-wrap {
    height: 181px !important;
    padding: 0 60px !important;
    text-align: center !important;
  }

  body .toggle {
    width: 238px !important;
    height: 60px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 8px !important;
    gap: 12px !important;

    border-radius: 65px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;

    background: rgba(48, 48, 48, .20) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .08),
      0 10px 28px rgba(0, 0, 0, .24) !important;

    opacity: 1 !important;
    box-sizing: border-box !important;
  }

  body .toggle-btn {
    width: 105px !important;
    height: 44px !important;

    padding: 0 !important;

    border-radius: 65px !important;
    border: 0 !important;
    background: transparent !important;

    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 18px !important;
    letter-spacing: 0.2px !important;

    color: rgba(255, 255, 255, .42) !important;
    opacity: 1 !important;
    box-shadow: none !important;
  }

  body .toggle-btn.active {
    color: #fff !important;
    background: rgba(255, 255, 255, .13) !important;
    border: 1px solid rgba(255, 255, 255, .20) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .16),
      0 0 14px rgba(255, 255, 255, .14) !important;
  }
}

@media (min-width: 769px) {
  body .credits-section {
    max-width: 1204px !important;
    margin: 0 auto 300px !important;
    padding: 0 !important;
  }

  body .credits-table-wrap {
    position: relative !important;

    width: 1204px !important;
    max-width: calc(100vw - 100px) !important;
    margin: 0 auto !important;

    border: 0.2px solid rgba(255, 255, 255, .42) !important;
    background: transparent !important;

    overflow: hidden !important;
    box-shadow: none !important;
    isolation: isolate !important;
  }

  body .credits-table-wrap::before,
  body .credits-table-wrap::after {
    display: none !important;
    content: none !important;
  }

  body .credits-table {
    width: 100% !important;
    min-width: 0 !important;

    table-layout: fixed !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;

    background: transparent !important;
  }

  body .credits-table th,
  body .credits-table td,
  body .credits-table td.ct-label {
    padding: 0 !important;
    margin: 0 !important;

    border: 0.2px solid rgba(255, 255, 255, .34) !important;
    background: transparent !important;

    vertical-align: middle !important;
    box-sizing: border-box !important;

    font-family: 'Inter', sans-serif !important;
  }

  body .credits-table th {
    height: 66px !important;

    color: rgba(255, 255, 255, .58) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    letter-spacing: 3.4px !important;
    text-transform: uppercase !important;
    text-align: center !important;
  }

  body .credits-table td,
  body .credits-table td.ct-label {
    height: 67px !important;
  }

  /* Действие */
  body .credits-table th:nth-child(1),
  body .credits-table td:nth-child(1) {
    width: 361px !important;
    padding-left: 32px !important;
    padding-right: 18px !important;

    color: #fff !important;
    text-align: left !important;

    border-right: 0.2px dashed rgba(255, 255, 255, .28) !important;
  }

  body .credits-table td:nth-child(1) {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    letter-spacing: -0.2px !important;
  }

  body .credits-table th:nth-child(1) {
    text-align: left !important;
    padding-left: 32px !important;
  }

  /* Описание */
  body .credits-table th:nth-child(2),
  body .credits-table td:nth-child(2),
  body .credits-table td.ct-label {
    display: table-cell !important;

    width: 659px !important;
    padding-left: 32px !important;
    padding-right: 32px !important;

    color: rgba(255, 255, 255, .48) !important;
    text-align: left !important;

    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    letter-spacing: -0.1px !important;

    border-left: 0 !important;
    border-right: 0 !important;
  }

  body .credits-table th:nth-child(2) {
    text-align: center !important;
    font-weight: 700 !important;
    letter-spacing: 3.4px !important;
  }

  /* Кредиты */
  body .credits-table th:nth-child(3),
  body .credits-table td:nth-child(3) {
    width: 184px !important;
    min-width: 184px !important;
    max-width: 184px !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    color: #fff !important;
    text-align: center !important;

    background: rgba(16, 25, 39, 0.74) !important;

    border-left: 0.2px solid rgba(255, 255, 255, .42) !important;
    border-right: 0.2px solid rgba(255, 255, 255, .42) !important;

    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, .18),
      inset -1px 0 0 rgba(255, 255, 255, .06) !important;
  }

  body .credits-table th:nth-child(3) {
    color: rgba(255, 255, 255, .72) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    letter-spacing: 3.4px !important;
  }

  body .credits-table td:nth-child(3) {
    font-weight: 700 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;

    text-shadow: 0 0 12px rgba(255, 255, 255, .18) !important;
  }

  body .credits-table td:nth-child(3)::before,
  body .credits-table td:nth-child(3)::after,
  body .credits-table th:nth-child(3)::before,
  body .credits-table th:nth-child(3)::after {
    display: none !important;
    content: none !important;
  }

  body .credits-table tr:last-child td,
  body .credits-table tr:last-child td.ct-label {
    border-bottom: 0.2px solid rgba(255, 255, 255, .34) !important;
  }
}

@media (max-width: 599px) {
  .faq-item {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* ============================================================
   TABLET CREDITS TABLE FIX: 769px–1024px
   Override the min-width:769px section which uses pixel widths
   and overflow:hidden — breaks table at 820px (iPad Air).
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  body .credits-table-wrap {
    overflow-x: auto !important;
    overflow-y: visible !important;
    width: 100% !important;
    max-width: none !important;
  }

  body .credits-table {
    width: 100% !important;
    min-width: 560px !important;
  }

  body .credits-table th:nth-child(1),
  body .credits-table td:nth-child(1) {
    width: 30% !important;
  }

  body .credits-table th:nth-child(2),
  body .credits-table td:nth-child(2),
  body .credits-table td.ct-label {
    width: 48% !important;
  }

  body .credits-table th:nth-child(3),
  body .credits-table td:nth-child(3) {
    width: 22% !important;
  }

  body .credits-table th,
  body .credits-table td {
    font-size: clamp(10px, 1.5vw, 14px) !important;
    padding: 0 clamp(8px, 1.6vw, 18px) !important;
  }
}

/* ============================================================
   TABLET PRICING BUTTONS FIX: 769px–1024px
   clamp(9.5px, 1.2vw, 12px) at 820px = ~10px — too small.
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .pc-btn,
  .pc-btn1,
  .price-card-popular .pc-btn,
  .price-card-popular .pc-btn1,
  .price-card:nth-child(3) .pc-btn,
  .price-card:nth-child(3) .pc-btn1 {
    height: 44px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    border-radius: 8px !important;
    padding: 0 10px !important;
  }
}

/* iPad Mini (768px) — same button fix, 769px rule misses it by 1px */
@media (min-width: 600px) and (max-width: 1024px) {
  .pc-btn,
  .pc-btn1,
  .price-card-popular .pc-btn,
  .price-card-popular .pc-btn1,
  .price-card:nth-child(3) .pc-btn,
  .price-card:nth-child(3) .pc-btn1 {
    height: 44px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    border-radius: 8px !important;
    padding: 0 10px !important;
    inset: auto !important;
    position: static !important;
    margin: auto 0 0 !important;
    width: 100% !important;
  }
}

/* Ghost button border visibility fix on tablets */
@media (min-width: 600px) and (max-width: 1024px) {
  .pc-btn-ghost,
  .pc-btn1.pc-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
  }

  .pc-btn-ghost:hover,
  .pc-btn1.pc-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55) !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }
}

/* Override height:auto from .pricing-grid .price-card>* — buttons need fixed height */
@media (min-width: 600px) and (max-width: 1024px) {
  .pricing-grid .price-card > .pc-btn1,
  .pricing-grid .price-card > .pc-btn {
    height: 44px !important;
    min-height: 44px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    position: static !important;
    width: 100% !important;
    margin: auto 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    inset: auto !important;
    transform: none !important;
  }
}
