/* 09-tariffs.css — PRICE PAGE — MODERN LIGHT / GLASS — redesigned hero */

:root {
  --bg: #efefef;
  --bg-soft: #f5f5f5;
  --bg-card: rgba(255, 255, 255, 0.56);
  --bg-card-strong: rgba(255, 255, 255, 0.82);

  --ink: #202020;
  --ink-2: #4c4c4c;
  --ink-3: #7b7b7b;

  --line: rgba(32, 32, 32, 0.09);
  --line-strong: rgba(32, 32, 32, 0.16);
  --line-soft: rgba(255, 255, 255, 0.44);

  --accent: #ff4d4d;
  --accent-hover: #f90202;

  --shadow-xs: 0 8px 18px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 22px 54px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.12);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-xl: 46px;

  --maxw: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);

  --hero-space-top: 12px;
  --hero-space-bottom: 86px;
  --hero-title-size: 68px;
  --hero-title-line: .94;
  --hero-title-spacing: -.065em;
  --hero-title-weight: 900;
  --hero-accent-size: clamp(22px, 2.2vw, 30px);
  --hero-accent-line: 1.08;
  --hero-accent-spacing: -.035em;
  --hero-accent-weight: 700;
  --hero-lead-size: 17px;
  --hero-lead-line: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 14%, rgba(255,255,255,.82) 0 180px, transparent 360px),
    radial-gradient(circle at 85% 12%, rgba(255,77,77,.045) 0 140px, transparent 320px),
    radial-gradient(circle at 82% 80%, rgba(255,77,77,.05) 0 180px, transparent 360px),
    linear-gradient(180deg, #f0f0f0 0%, #ebebeb 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-repeat: no-repeat;
  overflow-x: clip;
}

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

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

.tariffPage {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
}

.tariffPage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.28),
    rgba(255,255,255,0) 26%,
    rgba(255,255,255,.24) 100%
  );
}

.tariffPage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .35;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 96px,
      rgba(0,0,0,.018) 96px,
      rgba(0,0,0,.018) 97px
    );
}

.tariffContainer {
  width: min(var(--maxw), calc(100% - 40px));
  margin-inline: auto;
}

.tariffSection {
  padding: 54px 0;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .14s; }

/* HEADINGS */

.sectionKicker,
.tariffFinalCta__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sectionTitle,
.tariffFinalCta__title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.02;
  font-weight: 550;
  letter-spacing: -.04em;
  color: var(--ink);
  text-wrap: balance;
}

.sectionText,
.tariffFinalCta__text {
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.72;
}

/* HERO */

.tariffHero {
  padding-top: var(--hero-space-top);
  padding-bottom: var(--hero-space-bottom);
  overflow: hidden;
}

.tariffHero__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(320px, 460px);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.tariffHero__content {
  max-width: 620px;
}

.tariffTitle {
  margin: 0;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  font-weight: var(--hero-title-weight);
  color: var(--ink);
  letter-spacing: var(--hero-title-spacing);
  text-wrap: balance;
}

.tariffTitle__mainLine {
  display: inline-flex;
  align-items: flex-end;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 8px;
  position: relative;
}

.tariffTitle__mainText {
  display: inline-block;
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  letter-spacing: var(--hero-title-spacing);
  font-weight: var(--hero-title-weight);
  color: var(--ink);
  background:
    linear-gradient(
      110deg,
      var(--ink) 0%,
      var(--ink) 30%,
      rgba(255,77,77,.75) 42%,
      #ff4d4d 48%,
      #f90202 50%,
      #ff4d4d 52%,
      rgba(255,77,77,.75) 58%,
      var(--ink) 70%,
      var(--ink) 100%
    );
  background-size: 300% 100%;
  background-position: 145% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tariffTitleRun 9.8s linear infinite;
  will-change: background-position;
}

.tariffTitle__mainLine::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      110deg,
      rgba(255,77,77,.28) 0%,
      rgba(255,77,77,.28) 30%,
      rgba(255,77,77,.7) 42%,
      #ff4d4d 48%,
      #f90202 50%,
      #ff4d4d 52%,
      rgba(255,77,77,.7) 58%,
      rgba(255,77,77,.28) 70%,
      rgba(255,77,77,.28) 100%
    );
  background-size: 300% 100%;
  background-position: 145% 50%;
  box-shadow: 0 6px 18px rgba(255,77,77,.16);
  animation: tariffTitleRun 9.8s linear infinite;
  will-change: background-position;
}

@keyframes tariffTitleRun {
  0% { background-position: 145% 50%; }
  28% { background-position: 145% 50%; }
  82% { background-position: -45% 50%; }
  100% { background-position: -45% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .tariffTitle__mainText,
  .tariffTitle__mainLine::after {
    animation: none;
    background-position: 50% 50%;
  }
}

.tariffTitle__accent {
  display: block;
  color: var(--accent);
  font-size: var(--hero-accent-size);
  line-height: var(--hero-accent-line);
  margin-top: 12px;
  letter-spacing: var(--hero-accent-spacing);
  font-weight: var(--hero-accent-weight);
}

.tariffHeroPrice {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.tariffHeroPrice__value {
  font-size: clamp(44px, 5.2vw, 50px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -.055em;
  color: var(--ink);
}

.tariffHeroPrice__meta {
  padding-bottom: 8px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.tariffLead {
  margin: 20px 0 0;
  max-width: 520px;
  color: var(--ink-2);
  font-size: var(--hero-lead-size);
  line-height: var(--hero-lead-line);
}

.tariffPoints {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-width: 520px;
}

.tariffPoint {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(32,32,32,.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,0,0,.045);
}

.tariffPoint__dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,77,77,.10);
}

.tariffActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* HERO CARD */

.tariffHero__visual {
  position: relative;
  min-width: 0;
}

.tariffHeroCard {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tariffHeroCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid var(--line-soft);
}

.tariffHeroCard__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ececec;
}

.tariffHeroCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tariffHeroCard__bottom {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(245,245,245,.94) 100%);
  border-top: 1px solid var(--line);
}

.tariffHeroCard__priceRow {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.tariffHeroCard__price {
  color: var(--accent);
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tariffHeroCard__priceNote {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.45;
}

.tariffHeroCard__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.tariffHeroChip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

/* BUTTONS */

.tariffBtn,
.tariffFinalBtn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition:
    transform .28s var(--ease),
    box-shadow .28s var(--ease),
    border-color .28s var(--ease),
    background .28s var(--ease),
    color .28s var(--ease);
}

.tariffBtn__icon,
.tariffFinalBtn__icon {
  font-size: 18px;
  line-height: 1;
  transition: transform .24s var(--ease);
}

.tariffBtn:hover .tariffBtn__icon,
.tariffFinalBtn:hover .tariffFinalBtn__icon {
  transform: translateX(4px);
}

.tariffBtn--primary,
.tariffFinalBtn--primary {
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255,77,77,.20);
}

.tariffBtn--primary:hover,
.tariffFinalBtn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,77,77,.24);
}

.tariffBtn--ghost,
.tariffFinalBtn--ghost {
  background: rgba(255,255,255,.46) !important;
  color: var(--ink) !important;
  border-color: var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 700;
}

.tariffBtn--ghost:hover,
.tariffFinalBtn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.72) !important;
  color: var(--accent) !important;
}

/* PANEL */

.tariffPanel {
  position: relative;
  border-radius: 40px;
  padding: 44px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tariffPanel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid var(--line-soft);
}

.tariffPanel__head {
  margin-bottom: 34px;
  text-align: center;
}

.tariffPanel__head .sectionText {
  margin-inline: auto;
}

.tariffPanel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tariffMiniCard {
  padding: 28px 24px;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease),
    border-color .25s var(--ease);
}

.tariffMiniCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,77,77,.16);
}

.tariffMiniCard__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255,77,77,.08);
  border: 1px solid rgba(255,77,77,.14);
  color: var(--accent);
  font-size: 22px;
}

.tariffMiniCard h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 560;
  letter-spacing: -.02em;
}

.tariffMiniCard p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.68;
}

/* FINAL CTA */

.tariffFinalCta {
  padding-top: 74px;
  padding-bottom: 100px;
}

.tariffFinalCta__card {
  position: relative;
  text-align: center;
  border-radius: 34px;
  padding: 58px 40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.62) 100%);
  border: 1px solid var(--line);
  box-shadow:
    0 24px 60px rgba(0,0,0,.07),
    inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tariffFinalCta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid var(--line-soft);
}

.tariffFinalCta__title {
  max-width: 860px;
  margin-inline: auto;
}

.tariffFinalCta__text {
  margin: 0 auto;
  max-width: 760px;
}

.tariffFinalCta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  :root {
    --hero-title-size: clamp(52px, 6vw, 68px);
  }

  .tariffHero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tariffHero__content {
    max-width: 760px;
  }

  .tariffHero__visual {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    order: -1;
  }

  .tariffPanel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --hero-space-top: 0px;
    --hero-space-bottom: 52px;
    --hero-title-size: clamp(34px, 10.5vw, 46px);
    --hero-title-line: .98;
    --hero-title-spacing: -.05em;
    --hero-title-weight: 900;
    --hero-accent-size: clamp(19px, 5.8vw, 25px);
    --hero-accent-line: 1.1;
    --hero-accent-weight: 800;
  }

  .tariffContainer {
    width: min(var(--maxw), calc(100% - 20px));
  }

  .tariffHero {
    padding-top: var(--hero-space-top);
    padding-bottom: var(--hero-space-bottom);
  }

  .tariffSection {
    padding: 42px 0;
  }

  .sectionKicker,
  .tariffFinalCta__kicker {
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: .1em;
    margin-bottom: 14px;
  }

  .sectionTitle,
  .tariffFinalCta__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
  }

  .tariffTitle {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
    font-weight: var(--hero-title-weight);
    letter-spacing: var(--hero-title-spacing);
  }

  .tariffTitle__accent {
    font-size: var(--hero-accent-size);
    line-height: var(--hero-accent-line);
    margin-top: 10px;
    font-weight: var(--hero-accent-weight);
  }

  .tariffHeroPrice {
    margin-top: 18px;
    gap: 10px;
  }

  .tariffHeroPrice__value {
    font-size: clamp(38px, 10vw, 44px);
  }

  .tariffHeroPrice__meta {
    font-size: 14px;
    padding-bottom: 5px;
  }

  .tariffLead,
  .sectionText,
  .tariffFinalCta__text {
    font-size: 15px;
    line-height: 1.68;
  }

  .tariffLead {
    margin-top: 18px;
  }

  .tariffPoints {
    margin-top: 20px;
    gap: 8px;
  }

  .tariffPoint {
    min-height: 42px;
    font-size: 12px;
  }

  .tariffActions,
  .tariffFinalCta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tariffBtn,
  .tariffFinalBtn {
    width: 100%;
    min-height: 54px;
  }

  .tariffPanel {
    padding: 24px;
    border-radius: 28px;
  }

  .tariffPanel__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tariffMiniCard {
    padding: 24px 20px;
  }

  .tariffMiniCard h3 {
    font-size: 18px;
  }

  .tariffFinalCta {
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .tariffFinalCta__card {
    padding: 28px 18px;
    border-radius: 28px;
  }
}

@media (max-width: 560px) {
  :root {
    --hero-title-size: clamp(32px, 10vw, 40px);
    --hero-title-line: 1;
    --hero-title-spacing: -.045em;
    --hero-accent-size: clamp(18px, 5.6vw, 23px);
  }
}

@media (max-width: 390px) {
  :root {
    --hero-title-size: 30px;
    --hero-title-line: 1.02;
    --hero-title-spacing: -.035em;
    --hero-accent-size: 18px;
    --hero-accent-line: 1.14;
  }

  .tariffContainer {
    width: min(var(--maxw), calc(100% - 16px));
  }

  .tariffTitle {
    font-size: var(--hero-title-size);
    line-height: var(--hero-title-line);
    letter-spacing: var(--hero-title-spacing);
  }

  .tariffTitle__accent {
    font-size: var(--hero-accent-size);
    line-height: var(--hero-accent-line);
  }

  .tariffMiniCard h3 {
    font-size: 17px;
  }

  .tariffMiniCard p {
    font-size: 13px;
  }

  .tariffFinalCta__title {
    font-size: 26px;
  }
}

/* 2026 compact event-focused redesign */
.tariffHero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr);
  gap: clamp(34px, 5vw, 68px);
}

.tariffHero {
  padding-top: 30px;
  padding-bottom: 58px;
}

.tariffLead {
  max-width: 560px;
  margin-top: 18px;
  font-size: 17px;
}

.tariffEventPills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.tariffEventPill {
  min-width: 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.tariffEventPill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,77,77,.24);
}

.tariffEventPill__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,77,77,.09);
  color: var(--accent);
  font-size: 19px;
}

.tariffEventPill strong,
.tariffEventPill small {
  display: block;
}

.tariffEventPill strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.tariffEventPill small {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 11px;
  line-height: 1.3;
}

.tariffEventPill__arrow {
  color: var(--ink-3);
  font-size: 15px;
}

.tariffShowcase {
  position: relative;
  padding: 24px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,77,77,.12), transparent 30%),
    rgba(255,255,255,.66);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.tariffShowcase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.62);
  pointer-events: none;
}

.tariffShowcase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tariffShowcase__top span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.tariffShowcase__top strong {
  color: var(--accent);
  font-size: 25px;
  letter-spacing: -.04em;
}

.tariffShowcase__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}

.tariffShowcaseCard {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 28px rgba(0,0,0,.055);
}

.tariffShowcaseCard--wedding {
  background: linear-gradient(145deg, #fff4f6, #f3dfe6);
}

.tariffShowcaseCard--birthday {
  background: linear-gradient(145deg, #fff7df, #f0e8ff);
}

.tariffShowcaseCard__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(255,255,255,.76);
  color: var(--accent);
  font-size: 21px;
}

.tariffShowcaseCard span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.tariffShowcase__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tariffShowcase__list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 650;
}

.tariffShowcase__list i {
  color: var(--accent);
  font-size: 16px;
}

.tariffPanel {
  padding: 34px;
}

.tariffPanel__head {
  margin-bottom: 24px;
}

.tariffPanel__grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tariffPanel__grid--compact .tariffMiniCard {
  padding: 22px;
}

.tariffPanel__grid--compact .tariffMiniCard__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  font-size: 19px;
}

.tariffPanel__grid--compact .tariffMiniCard h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.tariffPanel__grid--compact .tariffMiniCard p {
  font-size: 13px;
  line-height: 1.5;
}

.tariffFinalCta {
  padding-top: 34px;
  padding-bottom: 82px;
}

.tariffFinalCta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 36px;
  text-align: left;
}

.tariffFinalCta__title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
}

.tariffFinalCta__actions {
  margin-top: 0;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .tariffPanel__grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .tariffHero { padding-top: 8px; padding-bottom: 40px; }
  .tariffHero__grid { grid-template-columns: 1fr; }
  .tariffHero__visual { order: -1; max-width: none; }
  .tariffEventPills { grid-template-columns: 1fr; }
  .tariffEventPill { min-height: 76px; }
  .tariffShowcase { padding: 18px; border-radius: 28px; }
  .tariffShowcaseCard { min-height: 140px; border-radius: 22px; }
  .tariffShowcase__list { grid-template-columns: 1fr; }
  .tariffPanel { padding: 22px 18px; }
  .tariffPanel__grid--compact { grid-template-columns: 1fr; }
  .tariffFinalCta__card { align-items: stretch; flex-direction: column; padding: 26px 20px; text-align: left; }
  .tariffFinalCta__actions { width: 100%; }
}

@media (max-width: 420px) {
  .tariffShowcase__cards { grid-template-columns: 1fr; }
  .tariffShowcaseCard { min-height: 118px; }
}

/* 2026-06-30 — title clipping fix */
.tariffHero {
  overflow: visible;
}

.tariffHero__content {
  min-width: 0;
  padding-left: 4px;
}

.tariffTitle {
  padding-left: 2px;
}

.tariffTitle__mainLine {
  display: block;
  width: fit-content;
  max-width: calc(100% - 4px);
  padding-left: 2px;
}

.tariffTitle__mainText {
  letter-spacing: -.055em;
}

@media (max-width: 768px) {
  .tariffHero__content {
    padding-left: 2px;
  }

  .tariffTitle {
    padding-left: 1px;
  }

  .tariffTitle__mainLine {
    max-width: calc(100% - 2px);
    padding-left: 1px;
  }

  .tariffTitle__mainText {
    letter-spacing: -.04em;
  }
}

/* 2026-06-30 — definitive hero horizontal clipping fix */
html,
body,
.tariffPage {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.tariffHero {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

.tariffHero .tariffContainer {
  width: min(var(--maxw), calc(100% - 40px));
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 6px;
}

.tariffHero__grid {
  min-width: 0;
  max-width: 100%;
}

.tariffHero__content,
.tariffTitle,
.tariffTitle__mainLine,
.tariffTitle__mainText,
.tariffTitle__accent {
  position: relative;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  transform: none !important;
  max-width: 100%;
}

.tariffHero__content {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.tariffTitle {
  width: 100%;
  padding: 0;
  overflow: visible;
}

.tariffTitle__mainLine {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 0 8px;
  overflow: visible;
}

.tariffTitle__mainText {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding-left: 2px;
  letter-spacing: -.045em;
  white-space: normal;
  overflow-wrap: normal;
}

.tariffTitle__mainLine::after {
  left: 2px;
  right: 0;
}

@media (max-width: 768px) {
  .tariffHero .tariffContainer {
    width: calc(100% - 20px);
    padding-inline: 4px;
  }

  .tariffHero__content {
    padding-inline: 6px;
  }

  .tariffTitle__mainText {
    padding-left: 1px;
    letter-spacing: -.025em;
  }
}

@media (max-width: 390px) {
  .tariffHero .tariffContainer {
    width: calc(100% - 16px);
  }

  .tariffHero__content {
    padding-inline: 5px;
  }

  .tariffTitle__mainText {
    font-size: 29px;
    letter-spacing: -.015em;
  }
}
