:root {
  --paper: #fbf5ec;
  --surface: #fffdf7;
  --surface-warm: #fff8df;
  --ink: #151c2a;
  --muted: #657084;
  --line: rgba(21, 28, 42, 0.16);
  --accent: #ff6a4a;
  --teal: #09bea8;
  --blue: #09a5ed;
  --gold: #c89a2c;
  --deal-yellow: #f7ce38;
  --money-green: #087d62;
  --deep-green: #075f48;
  --card-mint: #eaf8ef;
  --card-sky: #e9f4fb;
  --card-sun: #fbf1d7;
  --card-rose: #faede8;
  --shadow-soft: 0 20px 46px rgba(45, 58, 74, 0.075);
  --shadow-deal: 0 24px 54px rgba(45, 58, 74, 0.095);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  overflow-x: clip;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.38)),
    linear-gradient(rgba(21, 28, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 28, 42, 0.016) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 44px 44px, 44px 44px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

.page {
  min-height: 100%;
}

.site-header {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 18px max(24px, 6vw) 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  margin: 0;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 106px;
  height: 106px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(45, 58, 74, 0.15));
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  min-width: 0;
  color: var(--ink);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-domain {
  position: relative;
  font-size: 52px;
  font-weight: 430;
  line-height: 0.92;
  color: var(--ink);
}

.brand-domain::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 5px;
  bottom: -7px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deal-yellow), var(--teal), var(--blue));
  opacity: 0.78;
}

.brand-business-name {
  position: relative;
  margin-left: 24px;
  color: var(--ink);
  font-size: 52px;
  font-weight: 360;
  line-height: 0.96;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-business-name::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 6px;
  bottom: -7px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--deal-yellow), var(--blue));
  opacity: 0.58;
}

.brand-add-offer {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  isolation: isolate;
  overflow: hidden;
  flex: 0 1 448px;
  max-width: 448px;
  min-height: 50px;
  margin-left: auto;
  padding: 11px 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(122deg, #686e77 0%, #2f353e 36%, #111720 72%, #3d444e 100%);
  background-size: 190% 100%;
  color: #fffdf6;
  box-shadow:
    0 20px 42px rgba(21, 28, 42, 0.24),
    0 7px 17px rgba(21, 28, 42, 0.13),
    0 0 0 1px rgba(21, 28, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -18px 30px rgba(0, 0, 0, 0.22);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
  text-align: center;
  text-wrap: balance;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-position 520ms ease;
}

.brand-add-offer > span {
  position: relative;
  z-index: 1;
}

.telegram-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.18) 28%, transparent 58%),
    linear-gradient(145deg, #38bdf8 0%, #229ed9 48%, #1477bd 100%);
  box-shadow:
    0 8px 16px rgba(20, 119, 189, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -8px 14px rgba(6, 52, 94, 0.18);
}

.telegram-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #ffffff;
  transform: translateX(-1px);
}

.brand-add-offer::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.035) 44%, rgba(255, 255, 255, 0)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 42%, rgba(255, 255, 255, 0.1) 62%, transparent);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26);
  pointer-events: none;
  z-index: -1;
}

.brand-add-offer::after {
  content: "";
  position: absolute;
  top: -58%;
  left: -42%;
  width: 52%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.22;
  pointer-events: none;
  transform: rotate(18deg);
  animation: brand-add-offer-shimmer 4.2s ease-in-out infinite;
  z-index: 0;
}

.brand-add-offer:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background-position: 100% 50%;
  box-shadow:
    0 23px 46px rgba(21, 28, 42, 0.27),
    0 8px 19px rgba(21, 28, 42, 0.16),
    0 0 0 1px rgba(21, 28, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -18px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.brand-add-offer:focus-visible {
  outline: 2px solid rgba(9, 190, 168, 0.72);
  outline-offset: 3px;
}

@keyframes brand-add-offer-shimmer {
  0%,
  100% {
    transform: translateX(-10%) rotate(18deg);
  }

  48% {
    transform: translateX(310%) rotate(18deg);
  }
}

.hero {
  min-height: clamp(420px, calc(58svh - 98px), 590px);
  display: grid;
  grid-template-columns: minmax(590px, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 32px;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 max(24px, 7vw) 26px;
  overflow: hidden;
}

.hero__copy {
  max-width: 860px;
  min-width: 0;
  transform: none;
}

.hero__eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  max-width: min(860px, 100%);
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-title__main {
  display: block;
  font-size: 58px;
  font-weight: 360;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 16px;
  max-width: 940px;
  margin-top: 16px;
  color: #374258;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-title__route span {
  display: inline-block;
}

.hero-title__route > span:first-child {
  white-space: nowrap;
}

.hero-title__from {
  color: var(--ink);
  font-size: 1.7em;
  line-height: 0.96;
}

.hero-title__handoff {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hero-title__to {
  color: var(--ink);
  font-size: 1.1em;
  font-weight: 360;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-title__business {
  flex: 0 0 100%;
  margin-top: 6px;
  background: linear-gradient(105deg, #080a0d 0%, #303846 28%, #0d1118 48%, #525966 61%, #111722 78%, #050608 100%);
  background-size: 230% 100%;
  color: #0b0e13;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.05em;
  font-weight: 380;
  line-height: 1.02;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 28px rgba(21, 28, 42, 0.14);
  -webkit-text-fill-color: transparent;
  animation: business-title-sheen 9s ease-in-out infinite;
}

@keyframes business-title-sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-deal-cta-shimmer {
  0%,
  100% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-add-offer::after {
    animation: none;
  }

  .hero-deal-cta::before {
    animation: none;
    transform: translateX(-120%);
  }

  .hero-deal-cta {
    animation: none;
    background-position: 0% 50%;
    transition-duration: 0.01ms;
  }
}

.hero-title__arrow {
  width: 174px;
  height: 57px;
  flex: 0 0 174px;
  color: #3f444b;
  filter: drop-shadow(0 2px 0 rgba(21, 28, 42, 0.06));
  transform: translateY(3px);
}

.hero-title__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-deal-cta-wrap {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-deal-cta {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  min-height: 56px;
  max-width: min(100%, 720px);
  padding: 14px 18px;
  border: 1px solid rgba(21, 28, 42, 0.19);
  border-radius: 11px;
  background: linear-gradient(120deg, #0d4e84 0%, #2a73c2 45%, #3b88ce 75%, #0d4e84 100%);
  background-size: 210% 100%;
  background-position: 0% 50%;
  color: #f7fbff;
  box-shadow:
    0 16px 30px rgba(13, 78, 132, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -16px 24px rgba(8, 20, 36, 0.2);
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.26;
  text-wrap: balance;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-position 560ms ease;
  z-index: 0;
}

.hero-deal-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.16) 52%, transparent 68%);
  transform: translateX(-120%);
  mix-blend-mode: soft-light;
  animation: hero-deal-cta-shimmer 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-deal-cta:hover::before {
  animation-duration: 2.2s;
}

.hero-deal-cta:hover {
  border-color: rgba(21, 28, 42, 0.3);
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(13, 78, 132, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -16px 24px rgba(8, 20, 36, 0.2);
}

.hero-deal-cta:focus-visible {
  outline: 2px solid rgba(9, 190, 168, 0.72);
  outline-offset: 3px;
}

.hero-deal-cta__text {
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.hero-deal-cta__telegram {
  width: 31px;
  height: 31px;
  flex-basis: 31px;
}

.mark {
  font-style: normal;
  white-space: nowrap;
}

.mark--teal {
  color: var(--teal);
}

.mark--blue {
  color: var(--blue);
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3d4758;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.offer-list {
  display: grid;
  gap: 13px;
  max-width: 620px;
  margin: 30px 0 0;
  padding-top: 2px;
}

.offer-list p {
  position: relative;
  margin: 0;
  padding-left: 27px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.46;
  letter-spacing: 0;
}

.offer-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 11px 0 0 var(--gold);
}

.offer-list span {
  color: var(--ink);
  font-weight: 500;
}

.hero__note {
  max-width: 610px;
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transform: translate(-18px, 0);
}

.hero__visual picture {
  display: block;
  width: 104%;
  max-width: 980px;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  filter: drop-shadow(0 26px 38px rgba(45, 58, 74, 0.12));
  object-fit: contain;
}

.founder-offers {
  position: relative;
  padding: 32px max(24px, 7.5vw) 88px;
  border-top: 1px solid rgba(21, 28, 42, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 252, 244, 0.44)),
    linear-gradient(rgba(21, 28, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 28, 42, 0.014) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.founder-offers::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 28, 42, 0.14), transparent);
}

.founder-offers__intro {
  max-width: 1040px;
  margin-bottom: 44px;
}

.section-eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  max-width: 1160px;
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.founder-offers__intro > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #3d4758;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.offer-cards {
  display: block;
  column-count: 2;
  column-gap: 16px;
  max-width: 1260px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  display: inline-flex;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
  vertical-align: top;
  min-height: 420px;
  aspect-ratio: auto;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(21, 28, 42, 0.14);
  border-radius: 8px;
  color: var(--ink);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(255, 255, 255, 0.46) inset;
}

.offer-card__telegram {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  margin-top: 34px;
  padding: 12px 20px;
  border: 1px solid rgba(7, 82, 142, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(118deg, #1a8fd6 0%, #229ed9 48%, #0f6fb4 100%);
  color: #f7fbff;
  box-shadow:
    0 14px 28px rgba(34, 158, 217, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -14px 22px rgba(6, 52, 94, 0.14);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  text-wrap: balance;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-card__telegram .telegram-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.16) 26%, transparent 58%),
    linear-gradient(145deg, #54c7ff 0%, #229ed9 44%, #0878bf 100%);
  box-shadow:
    0 9px 18px rgba(5, 84, 147, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -10px 16px rgba(5, 49, 91, 0.22);
}

.offer-card__telegram .telegram-icon svg {
  width: 27px;
  height: 27px;
  filter: drop-shadow(0 1px 1px rgba(5, 49, 91, 0.28));
}

.offer-card__telegram:hover {
  border-color: rgba(7, 82, 142, 0.32);
  box-shadow:
    0 17px 32px rgba(34, 158, 217, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -14px 22px rgba(6, 52, 94, 0.14);
  transform: translateY(-1px);
}

.offer-card__telegram:focus-visible {
  outline: 2px solid rgba(9, 190, 168, 0.72);
  outline-offset: 3px;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), rgba(255, 255, 255, 0.08) 74%);
}

.offer-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 76px;
  height: 76px;
  border-right: 1px solid rgba(21, 28, 42, 0.12);
  border-bottom: 1px solid rgba(21, 28, 42, 0.12);
  border-radius: 0 0 8px 0;
  opacity: 0.28;
  pointer-events: none;
}

.offer-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.offer-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 10px 17px 10px 12px;
  border: 1px solid rgba(21, 28, 42, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fffdf7 0%, #f2ead8 100%);
  color: #2c3038;
  font-size: 20px;
  font-weight: 430;
  line-height: 1.1;
  text-wrap: balance;
  box-shadow:
    0 12px 24px rgba(45, 58, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-card__tag span {
  display: block;
}

.offer-card__tag-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  filter: drop-shadow(0 7px 11px rgba(8, 125, 98, 0.2));
}

.offer-card__tag--media {
  border-color: rgba(9, 165, 237, 0.22);
  background: linear-gradient(180deg, #f2fbff, #ccefff);
  color: #16445a;
  box-shadow: 0 12px 26px rgba(9, 165, 237, 0.12);
}

.offer-card__saving {
  min-width: 146px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(8, 125, 98, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow:
    0 18px 34px rgba(45, 58, 74, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.offer-card__saving span {
  display: block;
  color: #667086;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.offer-card__saving strong {
  display: block;
  margin-top: 8px;
  color: var(--money-green);
  font-size: 58px;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

.offer-card__saving--green {
  border-color: rgba(8, 125, 98, 0.2);
}

.offer-card__saving--green strong {
  color: #087d62;
}

.offer-card__main {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.offer-card__lead {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.offer-card--mint {
  --card-accent: var(--teal);
  background: var(--card-mint);
}

.offer-card--direct {
  --card-accent: #6f756f;
  align-self: start;
  min-height: 0;
  aspect-ratio: auto;
  justify-content: flex-start;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #fcfbf7 0%, #f7f5ef 58%, #f4f7f2 100%);
  border-color: rgba(21, 28, 42, 0.12);
  box-shadow:
    0 20px 44px rgba(45, 58, 74, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.offer-card--direct::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 82, 78, 0.42), rgba(255, 255, 255, 0.04) 76%);
}

.offer-card--direct .offer-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: stretch;
  gap: 14px;
}

.offer-card--direct .offer-card__tag {
  min-height: 96px;
  padding: 12px 17px 12px 11px;
  font-size: 32px;
  font-weight: 430;
  line-height: 1.03;
  border-color: rgba(21, 28, 42, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(255, 254, 249, 0.82), rgba(245, 241, 231, 0.7));
  box-shadow:
    0 10px 22px rgba(45, 58, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.offer-card--direct .offer-card__tag-icon {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
}

.offer-card--direct .offer-card__tag-icon--bill {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  transform: rotate(-1deg);
  box-shadow:
    0 8px 15px rgba(7, 95, 72, 0.18),
    0 0 0 1px rgba(7, 95, 72, 0.12);
}

.offer-card--direct .offer-card__saving {
  min-width: 0;
  padding: 13px 14px 12px;
  border-color: rgba(21, 28, 42, 0.12);
  background: rgba(255, 255, 252, 0.62);
  box-shadow:
    0 12px 24px rgba(45, 58, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.offer-card--direct .offer-card__saving span {
  font-size: 15px;
}

.offer-card--direct .offer-card__saving strong {
  margin-top: 7px;
  color: #126b58;
  font-size: 38px;
  font-weight: 430;
}

.offer-card--direct .offer-card__main {
  margin-top: 0;
  padding: 2px 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-card--direct .offer-card__main p {
  max-width: none;
  margin: 0;
  color: #313b4e;
  font-size: 23px;
  line-height: 1.34;
}

.offer-card--direct .offer-card__price {
  margin-top: 0;
  padding: 19px 21px;
  border-color: rgba(21, 28, 42, 0.09);
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 12px 26px rgba(45, 58, 74, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-card--sky {
  --card-accent: var(--blue);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 48%),
    var(--card-sky);
}

.offer-card--topup {
  --card-accent: #6f756f;
  min-height: 500px;
  aspect-ratio: auto;
  justify-content: flex-start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #fbfcfa 0%, #f6f5ef 54%, #fbfaf5 100%);
  border-color: rgba(21, 28, 42, 0.12);
  box-shadow:
    0 20px 44px rgba(45, 58, 74, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.offer-card--topup::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 82, 78, 0.42), rgba(255, 255, 255, 0.04) 76%);
}

.offer-card--chatgpt {
  --card-accent: #167c68;
  min-height: 0;
  aspect-ratio: auto;
  justify-content: flex-start;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #f5fbf7 0%, #eef8ff 52%, #fff7df 100%);
  border-color: rgba(22, 124, 104, 0.18);
  box-shadow:
    var(--shadow-deal),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.offer-card--chatgpt::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(22, 124, 104, 0.58), rgba(255, 255, 255, 0.08) 74%);
}

.offer-card--chatgpt-pro {
  --card-accent: #229ed9;
  min-height: 0;
  aspect-ratio: auto;
  justify-content: flex-start;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #eef9ff 0%, #f6fbf2 50%, #fff8df 100%);
  border-color: rgba(34, 158, 217, 0.2);
  box-shadow:
    var(--shadow-deal),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.offer-card--chatgpt-pro::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(34, 158, 217, 0.68), rgba(255, 255, 255, 0.08) 74%);
}

.offer-card--ads-setup {
  --card-accent: #7d947f;
  min-height: 430px;
  aspect-ratio: auto;
  justify-content: flex-start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 43%),
    linear-gradient(145deg, #f8fcf8 0%, #f8f4ea 56%, #f4f8ff 100%);
  border-color: rgba(21, 28, 42, 0.14);
  box-shadow:
    0 22px 48px rgba(45, 58, 74, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.offer-card--ads-setup::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(85, 111, 90, 0.56), rgba(255, 255, 255, 0.08) 74%);
}

.offer-card--landing {
  --card-accent: #09a5ed;
  min-height: 390px;
  aspect-ratio: auto;
  justify-content: flex-start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 43%),
    linear-gradient(145deg, #eef9ff 0%, #f7fbef 50%, #fff4d5 100%);
  border-color: rgba(9, 165, 237, 0.2);
  box-shadow:
    var(--shadow-deal),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.offer-card--video {
  --card-accent: #ff6a4a;
  min-height: 0;
  aspect-ratio: auto;
  justify-content: flex-start;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #fff6ed 0%, #eef9ff 50%, #eef8ef 100%);
  border-color: rgba(255, 106, 74, 0.18);
  box-shadow:
    var(--shadow-deal),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.offer-card--tidycal {
  --card-accent: #6f9fda;
  min-height: 0;
  aspect-ratio: auto;
  justify-content: flex-start;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #f4f8ff 0%, #eef8ef 52%, #fff7df 100%);
  border-color: rgba(111, 159, 218, 0.22);
  box-shadow:
    var(--shadow-deal),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.offer-card--sendfox {
  --card-accent: #ff8a3d;
  min-height: 0;
  aspect-ratio: auto;
  justify-content: flex-start;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #fff7ed 0%, #eef8ef 52%, #fff8df 100%);
  border-color: rgba(255, 138, 61, 0.22);
  box-shadow:
    var(--shadow-deal),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.chatgpt-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.chatgpt-copy__icon {
  padding: 0;
  background: transparent;
}

.offer-card--chatgpt .chatgpt-copy :where(p) {
  max-width: none;
  margin: 0;
  color: #3d4758;
  font-size: 18px;
  line-height: 1.36;
}

.offer-card--chatgpt .chatgpt-copy__product {
  color: var(--ink);
  font-size: 44px;
  font-weight: 430;
  line-height: 1.02;
  text-wrap: balance;
}

.offer-card--chatgpt .chatgpt-copy__payment {
  margin-top: 18px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.24;
}

.offer-card--chatgpt .chatgpt-copy__promo {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  padding: 11px 14px;
  border: 1px solid rgba(22, 124, 104, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(241, 253, 248, 0.88), rgba(229, 242, 236, 0.76));
  color: #126b58;
  font-size: 24px;
  line-height: 1.18;
  box-shadow:
    0 12px 24px rgba(45, 58, 74, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.chatgpt-copy__pricing {
  display: grid;
  gap: 7px;
  max-width: 580px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(21, 28, 42, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 48%),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 12px 26px rgba(45, 58, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.chatgpt-copy__pricing-head,
.chatgpt-copy__pricing-row {
  display: grid;
  grid-template-columns: minmax(118px, 1.15fr) minmax(108px, 0.95fr) minmax(108px, 0.95fr);
  gap: 10px;
  align-items: center;
}

.offer-card--chatgpt .chatgpt-copy__pricing-head span {
  color: #657084;
  font-size: 13px;
  line-height: 1.18;
}

.offer-card--chatgpt .chatgpt-copy__pricing-row {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(22, 124, 104, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.62);
}

.offer-card--chatgpt .chatgpt-copy__pricing-row span {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.offer-card--chatgpt .chatgpt-copy__pricing-row span:not(:first-child) {
  color: #126b58;
  white-space: nowrap;
}

.chatgpt-copy__group {
  margin-top: 28px;
}

.offer-card--chatgpt .chatgpt-copy__label {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.offer-card--chatgpt .chatgpt-copy__group p + p {
  margin-top: 8px;
}

.offer-card--chatgpt .chatgpt-copy__details p {
  margin-top: 7px;
  font-size: 17px;
  line-height: 1.34;
}

.chatgpt-pro-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.offer-card--chatgpt-pro .chatgpt-pro-copy :where(p) {
  max-width: none;
  margin: 0;
  color: #3d4758;
  font-size: 18px;
  line-height: 1.34;
}

.offer-card--chatgpt-pro .chatgpt-pro-copy__product {
  color: var(--ink);
  font-size: 44px;
  font-weight: 430;
  line-height: 1.03;
  text-wrap: balance;
}

.chatgpt-pro-copy__price {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(34, 158, 217, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, rgba(232, 248, 255, 0.9), rgba(255, 255, 255, 0.62));
  box-shadow:
    0 12px 26px rgba(45, 58, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.chatgpt-pro-copy__price span {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.chatgpt-pro-copy__price span:first-child {
  color: #0d6fa8;
  font-size: 27px;
}

.chatgpt-pro-copy__lead {
  margin-top: 16px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.28;
}

.offer-card--chatgpt-pro .chatgpt-pro-copy__renewal {
  display: inline-flex;
  max-width: 100%;
  margin-top: 14px;
  padding: 10px 13px;
  border: 1px solid rgba(22, 124, 104, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(238, 251, 246, 0.92), rgba(229, 242, 236, 0.74));
  color: #126b58;
  font-size: 21px;
  line-height: 1.22;
  box-shadow:
    0 12px 24px rgba(45, 58, 74, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.chatgpt-pro-copy__steps {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding: 13px;
  border: 1px solid rgba(34, 158, 217, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 48%),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    0 12px 26px rgba(45, 58, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-card--chatgpt-pro .chatgpt-pro-copy__label {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.chatgpt-pro-copy__step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(34, 158, 217, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.62);
}

.chatgpt-pro-copy__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, #54c7ff, #1582c8);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  box-shadow:
    0 8px 16px rgba(34, 158, 217, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.offer-card--chatgpt-pro .chatgpt-pro-copy__step p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
}

.offer-card--chatgpt-pro .chatgpt-pro-copy__trust {
  display: inline-flex;
  max-width: 100%;
  margin-top: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(22, 124, 104, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(241, 253, 248, 0.9), rgba(229, 242, 236, 0.78));
  color: #126b58;
  font-size: 20px;
  line-height: 1.2;
  box-shadow:
    0 12px 24px rgba(45, 58, 74, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-card--chatgpt-pro .chatgpt-pro-copy__payment {
  margin-top: 18px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

.ads-setup-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.offer-card--ads-setup .ads-setup-copy :where(p) {
  max-width: 560px;
  margin: 20px 0 0;
  color: #3d4758;
  font-size: 21px;
  line-height: 1.36;
}

.offer-card--topup .offer-service-title,
.offer-card--ads-setup .offer-service-title {
  margin-bottom: 20px;
}

.offer-card--ads-setup .ads-setup-copy__badge {
  display: block;
  max-width: 100%;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 40px;
  font-weight: 430;
  line-height: 1.06;
  text-wrap: balance;
  box-shadow: none;
}

.offer-card--ads-setup .ads-setup-copy__badge::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 148, 127, 0.72), rgba(125, 148, 127, 0));
}

.offer-card--ads-setup .ads-setup-copy__experience {
  color: var(--ink);
  font-size: 27px;
  line-height: 1.22;
}

.offer-card--ads-setup .ads-setup-copy__rate {
  color: #3d4758;
  font-size: 25px;
}

.offer-card--ads-setup .ads-setup-copy__rate strong {
  color: #0a725c;
  font-size: 1.22em;
  font-weight: 470;
  line-height: 1;
  white-space: nowrap;
}

.offer-card--ads-setup .ads-setup-copy__result {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.landing-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.offer-card--landing .landing-copy :where(p) {
  max-width: 560px;
  margin: 20px 0 0;
  color: #3d4758;
  font-size: 23px;
  line-height: 1.34;
}

.offer-card--landing .landing-copy__badge {
  display: block;
  max-width: 100%;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 42px;
  font-weight: 430;
  line-height: 1.04;
  text-wrap: balance;
  box-shadow: none;
}

.offer-card--landing .landing-copy__promise {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.offer-card--landing .landing-copy__price {
  color: var(--money-green);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.video-copy {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.offer-card--video .video-copy :where(p) {
  max-width: none;
  margin: 0;
  color: #3d4758;
  font-size: 20px;
  line-height: 1.38;
}

.offer-card--video .video-copy__product {
  color: var(--ink);
  font-size: 64px;
  font-weight: 430;
  line-height: 0.96;
  letter-spacing: 0;
}

.offer-card--video .video-copy__headline {
  max-width: 960px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 430;
  line-height: 1.06;
  text-wrap: balance;
}

.offer-card--video .video-copy__subline {
  max-width: 820px;
  margin-top: 18px;
  color: #3d4758;
  font-size: 26px;
  line-height: 1.28;
}

.offer-card--video .video-copy__price {
  margin-top: 28px;
  color: var(--money-green);
  font-size: 62px;
  font-weight: 500;
  line-height: 0.95;
}

.offer-card--video .video-copy__lifetime {
  margin-top: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.video-copy__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 34px;
}

.offer-service-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.offer-service-icon {
  display: block;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border: 1px solid rgba(45, 58, 74, 0.12);
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 14px 28px rgba(45, 58, 74, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.offer-card--video .video-copy__group p {
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.36;
}

.offer-card--video .video-copy__group .video-copy__label {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.tidycal-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.tidycal-copy__product-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tidycal-copy__icon {
  display: block;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border: 1px solid rgba(111, 159, 218, 0.16);
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 14px 28px rgba(45, 58, 74, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.offer-card--tidycal .tidycal-copy :where(p) {
  max-width: none;
  margin: 0;
  color: #3d4758;
  font-size: 18px;
  line-height: 1.36;
}

.offer-card--tidycal .tidycal-copy__product {
  color: var(--ink);
  font-size: 46px;
  font-weight: 430;
  line-height: 1;
  text-wrap: balance;
}

.offer-card--tidycal .tidycal-copy__subline {
  margin-top: 16px;
  color: #3d4758;
  font-size: 24px;
  line-height: 1.25;
}

.offer-card--tidycal .tidycal-copy__price {
  margin-top: 26px;
  color: var(--money-green);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.95;
}

.offer-card--tidycal .tidycal-copy__lifetime {
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.offer-card--tidycal .tidycal-copy__usual {
  margin-top: 8px;
  color: #657084;
  font-size: 18px;
}

.tidycal-copy__group {
  margin-top: 28px;
}

.offer-card--tidycal .tidycal-copy__label {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.offer-card--tidycal .tidycal-copy__group p + p {
  margin-top: 8px;
}

.offer-card--tidycal .tidycal-copy__features p {
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.32;
}

.offer-card--tidycal .tidycal-copy__features .tidycal-copy__label {
  margin-bottom: 12px;
  font-size: 23px;
}

.offer-card--tidycal .tidycal-copy__final {
  margin-top: 30px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.sendfox-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}

.offer-card--sendfox .sendfox-copy :where(p) {
  max-width: none;
  margin: 0;
  color: #3d4758;
  font-size: 18px;
  line-height: 1.36;
}

.offer-card--sendfox .sendfox-copy__product {
  color: var(--ink);
  font-size: 43px;
  font-weight: 430;
  line-height: 1.02;
  text-wrap: balance;
}

.offer-card--sendfox .sendfox-copy__subline {
  margin-top: 16px;
  color: #3d4758;
  font-size: 24px;
  line-height: 1.25;
}

.offer-card--sendfox .sendfox-copy__price {
  margin-top: 26px;
  color: var(--money-green);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.offer-card--sendfox .sendfox-copy__usual {
  margin-top: 8px;
  color: #657084;
  font-size: 18px;
}

.sendfox-copy__group {
  margin-top: 28px;
}

.offer-card--sendfox .sendfox-copy__label {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.offer-card--sendfox .sendfox-copy__group p + p {
  margin-top: 8px;
}

.offer-card--sendfox .sendfox-copy__features p {
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.32;
}

.offer-card--sendfox .sendfox-copy__features .sendfox-copy__label {
  margin-bottom: 12px;
  font-size: 23px;
}

.offer-card--sendfox .sendfox-copy__final {
  margin-top: 30px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.offer-card--sun {
  --card-accent: var(--gold);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 50%),
    var(--card-sun);
}

.offer-card--rose {
  --card-accent: var(--accent);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 50%),
    var(--card-rose);
}

.offer-card h3 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 430;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.offer-card h3::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--card-accent), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

.offer-card--direct h3 {
  max-width: 520px;
  font-size: 44px;
  line-height: 1.04;
}

.offer-card--topup h3 {
  max-width: 540px;
  font-size: 40px;
  font-weight: 430;
  line-height: 1.06;
}

.offer-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 22px 0 0;
  color: #3d4758;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0;
}

.offer-card__price {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(21, 28, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.offer-card__price > span {
  color: #255071;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
}

.offer-card__price p {
  margin: 0;
  color: #3d4758;
  font-size: 17px;
  line-height: 1.35;
}

.offer-card__price--direct p {
  font-size: 23px;
  line-height: 1.26;
}

.offer-card__price strong {
  color: #087d62;
  font-weight: 500;
  white-space: nowrap;
}

.price-blue {
  color: #253247;
  font-weight: 450;
}

.topup-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding-top: 6px;
}

.topup-copy :where(p) {
  max-width: 560px;
  margin-top: 17px;
  color: #3d4758;
  font-size: 20px;
  line-height: 1.36;
}

.topup-copy .offer-card__lead {
  margin-top: 24px;
  font-size: 24px;
}

.topup-copy__badge {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(21, 28, 42, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 254, 249, 0.78), rgba(244, 241, 232, 0.68));
  color: #323947;
  font-size: 21px;
  line-height: 1.18;
  box-shadow:
    0 10px 22px rgba(45, 58, 74, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.topup-copy__saving {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 16px;
  color: #657084;
}

.topup-copy__saving strong {
  color: #126b58;
  font-size: 46px;
  font-weight: 430;
  line-height: 0.96;
  white-space: nowrap;
}

.topup-copy p strong {
  color: #126b58;
  font-size: 1.1em;
  font-weight: 430;
  line-height: 1;
  white-space: nowrap;
}

.topup-copy__total {
  margin-top: 24px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.32;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 20px 5vw 0;
  }

  .brand-mark {
    width: 88px;
    height: 88px;
  }

  .brand-domain {
    font-size: 42px;
  }

  .brand-business-name {
    margin-left: 14px;
    font-size: 42px;
  }

  .brand-add-offer {
    flex-basis: 370px;
    max-width: 370px;
    min-height: 46px;
    padding: 10px 16px 11px;
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-content: start;
    gap: 14px;
    padding: 12px 7vw 20px;
  }

  .hero__copy {
    max-width: 860px;
    transform: none;
  }

  .hero-title {
    max-width: 820px;
  }

  .hero-title__main {
    font-size: 52px;
  }

  .hero-title__route {
    font-size: 30px;
  }

  .hero-deal-cta-wrap {
    margin-top: 20px;
  }

  .hero-deal-cta {
    min-height: 53px;
    font-size: 18px;
    max-width: min(100%, 640px);
    padding: 13px 16px;
  }

  .hero-deal-cta__text {
    font-size: 17px;
  }

  .hero__lead {
    max-width: 720px;
    font-size: 28px;
  }

  .hero__visual {
    justify-content: flex-start;
    transform: none;
  }

  .hero__visual picture {
    width: 94%;
    max-width: 760px;
  }

  .hero__visual img {
    width: 100%;
  }

  .founder-offers {
    padding: 30px 7vw 78px;
  }

  .offer-card {
    min-height: 390px;
    padding: 28px;
  }
}

@media (min-width: 1680px) {
  .hero-title__main {
    font-size: 64px;
  }

  .hero-title__route {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .brand-lockup {
    flex-wrap: wrap;
  }

  .brand-add-offer {
    flex: 0 1 360px;
    max-width: 360px;
    margin: 12px 0 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 22px 0;
  }

  .brand-lockup {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand-mark {
    width: 92px;
    height: 92px;
  }

  .brand-text {
    gap: 10px;
  }

  .brand-domain {
    font-size: 38px;
  }

  .brand-business-name {
    flex-basis: 100%;
    margin: 10px 0 0 0;
    font-size: 42px;
  }

  .brand-business-name::after {
    left: 2px;
    right: 4px;
    bottom: -8px;
    height: 5px;
  }

  .brand-add-offer {
    flex: 0 1 360px;
    max-width: 360px;
    min-height: 48px;
    margin: 14px 0 0;
    padding: 12px 20px 13px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    gap: 10px;
    padding: 10px 22px 16px;
  }

  .hero__copy {
    transform: none;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .hero-title__main {
    font-size: 39px;
    line-height: 1.02;
    max-width: 9.6em;
  }

  .hero-title__route {
    gap: 8px 11px;
    margin-top: 14px;
    font-size: 25px;
    line-height: 1.2;
  }

  .hero-title__route > span:first-child {
    white-space: normal;
  }

  .hero-title__from {
    font-size: 1.45em;
  }

  .hero-title__arrow {
    width: 130px;
    height: 42px;
    flex-basis: 130px;
  }

  .hero-title__handoff {
    gap: 10px;
  }

  .hero-title__to {
    font-size: 1em;
  }

  .hero-title__business {
    font-size: 1.6em;
  }

  .hero-deal-cta-wrap {
    margin-top: 18px;
    gap: 12px;
  }

  .hero-deal-cta {
    width: fit-content;
    min-height: 50px;
    max-width: 100%;
    font-size: 17px;
    padding: 12px 15px;
  }

  .hero-deal-cta__text {
    font-size: 16px;
  }

  .hero-deal-cta__telegram {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.22;
  }

  .offer-list {
    margin-top: 28px;
  }

  .offer-list p {
    font-size: 16px;
  }

  .hero__note {
    margin-top: 28px;
    font-size: 15px;
  }

  .hero__visual img {
    width: calc(100% + 12px);
    max-width: none;
    margin-left: -6px;
    filter: drop-shadow(0 18px 24px rgba(45, 58, 74, 0.08));
  }

  .founder-offers {
    padding: 26px 22px 34px;
  }

  .founder-offers__intro {
    margin-bottom: 28px;
  }

  .section-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  h2 {
    font-size: 31px;
    line-height: 1.14;
  }

  .founder-offers__intro > p:last-child {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.38;
  }

  .offer-cards {
    column-count: 1;
    column-gap: 0;
  }

  .offer-card {
    min-height: min(78svh, 650px);
    aspect-ratio: auto;
    margin-bottom: 10px;
    padding: 26px 22px;
  }

  .offer-card--direct {
    min-height: auto;
    gap: 16px;
    padding: 26px 22px;
  }

  .offer-card__top {
    flex-wrap: wrap;
    gap: 14px;
  }

  .offer-card--direct .offer-card__top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-card__tag {
    min-height: 58px;
    padding: 9px 12px 9px 9px;
    font-size: 16px;
  }

  .offer-card--direct .offer-card__tag {
    min-height: 62px;
    gap: 10px;
    font-size: 27px;
    line-height: 1.05;
  }

  .offer-card__tag-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .offer-card--direct .offer-card__tag-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .offer-card__saving {
    width: 100%;
    min-width: 116px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 13px 14px;
    text-align: left;
  }

  .offer-card__saving span {
    font-size: 14px;
  }

  .offer-card__saving strong {
    margin-top: 0;
    font-size: 44px;
  }

  .offer-card__main {
    margin-top: 26px;
  }

  .offer-card--direct .offer-card__main {
    margin-top: 0;
    padding: 16px;
  }

  .offer-card--direct .offer-card__main p {
    font-size: 21px;
    line-height: 1.32;
  }

  .offer-card h3 {
    font-size: 34px;
    line-height: 1.08;
  }

  .offer-card--direct h3 {
    font-size: 37px;
    line-height: 1.06;
  }

  .offer-card--topup {
    min-height: auto;
  }

  .offer-card--topup h3 {
    font-size: 33px;
    line-height: 1.08;
  }

  .offer-card--ads-setup {
    min-height: auto;
  }

  .offer-card--landing {
    min-height: auto;
  }

  .offer-card--chatgpt,
  .offer-card--chatgpt-pro {
    min-height: auto;
    padding: 26px 22px;
  }

  .offer-card--video {
    min-height: auto;
    padding: 26px 22px;
  }

  .offer-card--tidycal {
    min-height: auto;
    padding: 26px 22px;
  }

  .offer-card--sendfox {
    min-height: auto;
    padding: 26px 22px;
  }

  .offer-card--ads-setup .ads-setup-copy :where(p) {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.38;
  }

  .offer-card--ads-setup .ads-setup-copy__badge {
    font-size: 31px;
    line-height: 1.08;
  }

  .offer-card--ads-setup .ads-setup-copy__experience {
    font-size: 22px;
    line-height: 1.26;
  }

  .offer-card--ads-setup .ads-setup-copy__rate {
    font-size: 20px;
  }

  .offer-card--ads-setup .ads-setup-copy__result {
    font-size: 22px;
    line-height: 1.24;
  }

  .offer-card--landing .landing-copy :where(p) {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1.38;
  }

  .offer-card--landing .landing-copy__badge {
    font-size: 31px;
    line-height: 1.08;
  }

  .offer-card--landing .landing-copy__promise {
    font-size: 24px;
    line-height: 1.22;
  }

  .offer-card--landing .landing-copy__price {
    font-size: 38px;
  }

  .offer-service-title {
    gap: 14px;
  }

  .offer-service-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .chatgpt-copy__icon {
    padding: 0;
  }

  .offer-card--chatgpt .chatgpt-copy__product {
    font-size: 35px;
  }

  .offer-card--chatgpt .chatgpt-copy__payment {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.28;
  }

  .offer-card--chatgpt .chatgpt-copy__promo {
    margin-top: 14px;
    padding: 10px 12px;
    font-size: 20px;
    line-height: 1.24;
  }

  .chatgpt-copy__pricing {
    margin-top: 14px;
    padding: 11px;
  }

  .chatgpt-copy__pricing-head,
  .chatgpt-copy__pricing-row {
    grid-template-columns: minmax(94px, 1fr) minmax(76px, 0.8fr) minmax(76px, 0.8fr);
    gap: 7px;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-head span {
    font-size: 11px;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-row {
    min-height: 38px;
    padding: 7px 8px;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-row span {
    font-size: 15px;
  }

  .offer-card--chatgpt .chatgpt-copy__label {
    font-size: 21px;
  }

  .offer-card--chatgpt .chatgpt-copy :where(p) {
    font-size: 17px;
    line-height: 1.4;
  }

  .offer-card--chatgpt .chatgpt-copy__details p {
    font-size: 16px;
    line-height: 1.36;
  }

  .offer-card--chatgpt-pro .chatgpt-pro-copy__product {
    font-size: 34px;
    line-height: 1.06;
  }

  .chatgpt-pro-copy__price {
    margin-top: 14px;
    padding: 11px 12px;
  }

  .chatgpt-pro-copy__price span {
    font-size: 18px;
  }

  .chatgpt-pro-copy__price span:first-child {
    font-size: 22px;
  }

  .chatgpt-pro-copy__lead,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__renewal,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__trust,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__payment {
    font-size: 20px;
    line-height: 1.28;
  }

  .chatgpt-pro-copy__steps {
    margin-top: 18px;
    padding: 12px;
  }

  .offer-card--chatgpt-pro .chatgpt-pro-copy__label {
    font-size: 21px;
  }

  .chatgpt-pro-copy__step {
    grid-template-columns: 31px 1fr;
    gap: 9px;
    padding: 8px 10px;
  }

  .offer-card--chatgpt-pro .chatgpt-pro-copy__step p,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__faq p {
    font-size: 16px;
  }

  .offer-card--video .video-copy__headline {
    margin-top: 18px;
    font-size: 31px;
    line-height: 1.1;
  }

  .offer-card--video .video-copy__product {
    font-size: 46px;
  }

  .offer-card--video .video-copy__subline {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.32;
  }

  .offer-card--video .video-copy__price {
    margin-top: 22px;
    font-size: 44px;
  }

  .offer-card--video .video-copy__lifetime {
    font-size: 20px;
  }

  .video-copy__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }

  .offer-card--video .video-copy__group .video-copy__label {
    font-size: 22px;
  }

  .offer-card--video .video-copy__group p {
    font-size: 17px;
    line-height: 1.4;
  }

  .offer-card--tidycal .tidycal-copy__product {
    font-size: 36px;
  }

  .tidycal-copy__product-row {
    gap: 14px;
  }

  .tidycal-copy__icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .offer-card--tidycal .tidycal-copy__subline {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.3;
  }

  .offer-card--tidycal .tidycal-copy__price {
    margin-top: 22px;
    font-size: 44px;
  }

  .offer-card--tidycal .tidycal-copy__lifetime {
    font-size: 20px;
  }

  .offer-card--tidycal .tidycal-copy__label {
    font-size: 21px;
  }

  .offer-card--tidycal .tidycal-copy :where(p) {
    font-size: 17px;
    line-height: 1.4;
  }

  .offer-card--tidycal .tidycal-copy__features p {
    font-size: 16px;
    line-height: 1.36;
  }

  .offer-card--tidycal .tidycal-copy__final {
    font-size: 19px;
    line-height: 1.32;
  }

  .offer-card--sendfox .sendfox-copy__product {
    font-size: 34px;
  }

  .offer-card--sendfox .sendfox-copy__subline {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.3;
  }

  .offer-card--sendfox .sendfox-copy__price {
    margin-top: 22px;
    font-size: 36px;
  }

  .offer-card--sendfox .sendfox-copy__label {
    font-size: 21px;
  }

  .offer-card--sendfox .sendfox-copy :where(p) {
    font-size: 17px;
    line-height: 1.4;
  }

  .offer-card--sendfox .sendfox-copy__features p {
    font-size: 16px;
    line-height: 1.36;
  }

  .offer-card--sendfox .sendfox-copy__final {
    font-size: 19px;
    line-height: 1.32;
  }

  .topup-copy :where(p) {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.4;
  }

  .topup-copy .offer-card__lead {
    margin-top: 20px;
    font-size: 20px;
  }

  .topup-copy__badge {
    padding: 10px 12px;
    font-size: 18px;
  }

  .topup-copy__saving {
    gap: 8px;
  }

  .topup-copy__saving strong {
    font-size: 42px;
  }

  .topup-copy__total {
    margin-top: 20px;
    font-size: 20px;
  }

  .offer-card p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.42;
  }

  .offer-card__lead {
    font-size: 20px;
  }

  .offer-card__price {
    margin-top: 26px;
    padding: 16px;
  }

  .offer-card__price > span {
    font-size: 20px;
  }

  .offer-card__price p {
    font-size: 16px;
  }

  .offer-card__price--direct p {
    font-size: 21px;
  }
}

@media (max-width: 440px) {
  .brand-mark {
    width: 84px;
    height: 84px;
  }

  .brand-business-name {
    font-size: 39px;
  }

  .brand-add-offer {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-title__main {
    font-size: 38px;
    max-width: 9.6em;
  }

  .hero-title__route {
    font-size: 25px;
  }

  .hero-title__from {
    font-size: 1.36em;
  }

  .hero-title__business {
    font-size: 1.34em;
  }

  .hero-deal-cta {
    font-size: 16px;
    min-height: 48px;
    padding: 11px 13px;
  }

  .hero-deal-cta__text {
    font-size: 15px;
  }

  .hero-deal-cta__telegram {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

}

@media (max-width: 400px) {
  .brand-text {
    gap: 8px;
  }

  .brand-domain {
    font-size: 34px;
  }

  .brand-business-name {
    font-size: 36px;
  }

  .brand-add-offer {
    width: 100%;
    max-width: 360px;
  }

  .hero-title__main {
    font-size: 36px;
    max-width: 9.6em;
  }

  .hero-title__route {
    font-size: 23px;
  }

  .hero-title__from {
    font-size: 1.36em;
  }

  .hero-title__arrow {
    width: 114px;
    height: 37px;
    flex-basis: 114px;
  }

  .hero-title__handoff {
    gap: 8px;
  }

  .hero-title__to {
    font-size: 0.98em;
  }

  .hero-title__business {
    font-size: 1.3em;
  }

  .offer-card h3 {
    font-size: 30px;
  }

  .offer-card--direct h3 {
    font-size: 35px;
  }

  .offer-card__tag {
    font-size: 15px;
  }

  .offer-card__tag-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .offer-card--direct .offer-card__tag-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .offer-card--direct .offer-card__tag {
    font-size: 24px;
  }

  .offer-card__tag--media {
    font-size: 14px;
  }

  .offer-card__saving {
    min-width: 0;
  }

  .offer-card__saving strong {
    font-size: 40px;
  }

  .offer-card__price strong {
    white-space: normal;
  }

  .offer-card--topup h3 {
    font-size: 30px;
  }

  .topup-copy__saving strong {
    font-size: 40px;
  }

  .offer-card--direct .offer-card__main p {
    font-size: 19px;
  }

  .offer-card--ads-setup .ads-setup-copy__badge {
    font-size: 29px;
  }

  .offer-card--ads-setup .ads-setup-copy__experience,
  .offer-card--ads-setup .ads-setup-copy__result {
    font-size: 20px;
  }

  .offer-card--landing .landing-copy__badge {
    font-size: 29px;
  }

  .offer-card--landing .landing-copy__promise {
    font-size: 22px;
  }

  .offer-card--landing .landing-copy__price {
    font-size: 34px;
  }

  .offer-service-title {
    align-items: flex-start;
    gap: 12px;
  }

  .offer-service-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .chatgpt-copy__icon {
    padding: 0;
  }

  .offer-card--chatgpt .chatgpt-copy__product {
    font-size: 31px;
  }

  .offer-card--chatgpt .chatgpt-copy__payment {
    font-size: 18px;
  }

  .offer-card--chatgpt .chatgpt-copy__promo {
    font-size: 18px;
  }

  .chatgpt-copy__pricing {
    padding: 10px;
  }

  .chatgpt-copy__pricing-head,
  .chatgpt-copy__pricing-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-head {
    display: none;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-row {
    min-height: 0;
    padding: 9px 10px;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-row span {
    font-size: 16px;
  }

  .offer-card--chatgpt .chatgpt-copy__pricing-row span:not(:first-child) {
    display: inline-flex;
  }

  .offer-card--chatgpt-pro .chatgpt-pro-copy__product {
    font-size: 30px;
  }

  .chatgpt-pro-copy__price span {
    font-size: 16px;
  }

  .chatgpt-pro-copy__price span:first-child {
    font-size: 20px;
  }

  .chatgpt-pro-copy__lead,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__renewal,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__trust,
  .offer-card--chatgpt-pro .chatgpt-pro-copy__payment {
    font-size: 18px;
  }

  .chatgpt-pro-copy__step {
    grid-template-columns: 1fr;
  }

  .chatgpt-pro-copy__step span {
    width: 26px;
    height: 26px;
  }

  .offer-card--video .video-copy__headline {
    font-size: 29px;
  }

  .offer-card--video .video-copy__product {
    font-size: 42px;
  }

  .offer-card--video .video-copy__price {
    font-size: 40px;
  }

  .offer-card--tidycal .tidycal-copy__product {
    font-size: 33px;
  }

  .tidycal-copy__product-row {
    align-items: flex-start;
    gap: 12px;
  }

  .tidycal-copy__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .offer-card--tidycal .tidycal-copy__price {
    font-size: 40px;
  }

  .offer-card--sendfox .sendfox-copy__product {
    font-size: 31px;
  }

  .offer-card--sendfox .sendfox-copy__price {
    font-size: 33px;
  }
}
