:root {
  --offers-bg: #ffffff;
  --offers-surface: #ffffff;
  --offers-border: #edf0f3;
  --offers-text: #313848;
  --offers-muted: #6f7683;
  --offers-green: #0b8f37;
  --offers-green-dark: #06782d;
  --offers-yellow: #ffd84b;
  --offers-shadow: 0 22px 48px rgba(29, 36, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.offers-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--offers-bg);
  color: var(--offers-text);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a,
button,
input {
  font: inherit;
}

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

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

.offers-benefits-page {
  padding: clamp(24px, 2.8vw, 34px) 0 clamp(28px, 3vw, 44px);
}

body.offers-page .site-footer.site-footer--directory {
  margin-top: 24px;
}

.offers-benefits {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.offers-benefits__intro {
  max-width: 780px;
  margin: 0 auto clamp(24px, 2.8vw, 34px);
  text-align: center;
}

.offers-benefits__intro h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.offers-benefits__intro p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #5b667a;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.offers-benefits__panel {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-template-rows: minmax(450px, auto) minmax(340px, auto);
  grid-template-areas:
    "transport transport transport transport transport transport student student student student"
    "business business business business cashback cashback cashback referral referral referral";
  gap: clamp(16px, 1.8vw, 22px);
}

.benefit-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid #e6ebf1;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.benefit-tile:hover {
  border-color: #d7e1eb;
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.benefit-tile--large {
  grid-area: transport;
}

.benefit-tile--student {
  grid-area: student;
}

.benefit-tile--cashback {
  grid-area: cashback;
}

.benefit-tile--business {
  grid-area: business;
}

.benefit-tile--referral {
  grid-area: referral;
}

.benefit-tile__placeholder {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  min-height: 118px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf2f7 0%, #f7fafc 100%);
  outline: 0 solid rgba(115, 194, 85, 0);
  outline-offset: 0;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, outline-color 0.18s ease, outline-width 0.18s ease;
}

.benefit-tile__placeholder.has-test-image {
  aspect-ratio: var(--placeholder-image-aspect, 16 / 9);
  min-height: 0 !important;
  background: transparent !important;
}

.benefit-tile__placeholder.is-drag-over {
  outline: 3px solid rgba(115, 194, 85, 0.5);
  outline-offset: 4px;
  box-shadow: inset 0 0 0 999px rgba(115, 194, 85, 0.08);
}

.benefit-tile__placeholder .hero-placeholder-upload-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.benefit-tile__placeholder .hero-gallery-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.benefit-tile__placeholder .hero-gallery-upload-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 225, 235, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #2f7c25;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.benefit-tile__placeholder .hero-gallery-upload-button:hover,
.benefit-tile__placeholder .hero-gallery-upload-button:focus-visible {
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
  transform: translateY(-1px);
}

.benefit-tile__placeholder .hero-gallery-upload-button:focus-visible {
  outline: 3px solid rgba(115, 194, 85, 0.28);
  outline-offset: 3px;
}

.benefit-tile__placeholder .hero-gallery-upload-button .material-icons-round {
  font-size: 23px;
}

body.offers-page .benefit-tile__placeholder .hero-gallery-upload-button {
  display: none !important;
}

.benefit-tile--large .benefit-tile__placeholder {
  flex: 1 1 auto;
  min-height: 190px;
  background: linear-gradient(135deg, #e9f0f6 0%, #f5f8fb 100%);
}

.benefit-tile--student .benefit-tile__placeholder {
  min-height: 190px;
}

.benefit-tile--cashback .benefit-tile__placeholder {
  min-height: 174px;
}

.benefit-tile--student,
.benefit-tile--cashback {
  padding-inline: clamp(20px, 1.8vw, 24px);
}

.benefit-tile--business,
.benefit-tile--referral {
  gap: 16px;
}

.benefit-tile--business .benefit-tile__placeholder {
  min-height: 174px;
}

.benefit-tile--business {
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-tile--business .benefit-tile__placeholder {
  flex: 0 0 auto;
  min-height: 174px;
  background: linear-gradient(135deg, #e9f0f6 0%, #f6f9fc 100%);
}

.benefit-tile--referral .benefit-tile__placeholder {
  min-height: 174px;
}

.benefit-tile--referral .benefit-tile__value {
  font-size: clamp(20px, 2vw, 30px);
}

.benefit-tile--referral p {
  font-size: 14px;
}

.benefit-tile__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.benefit-tile--large .benefit-tile__content,
.benefit-tile--student .benefit-tile__content {
  flex: 1 1 auto;
}

.benefit-tile--business .benefit-tile__content,
.benefit-tile--cashback .benefit-tile__content,
.benefit-tile--referral .benefit-tile__content {
  flex: 1 1 auto;
}

.benefit-tile--large .benefit-tile__content {
  max-width: 660px;
}

.benefit-tile__value {
  color: #0b7f32;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.benefit-tile h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.benefit-tile--cashback h2 {
  font-size: clamp(22px, 1.8vw, 27px);
}

.benefit-tile--referral h2 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.benefit-tile p {
  margin: 0;
  color: #5f6b7a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.benefit-tile__coupon {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid #d9ead1;
  border-radius: 13px;
  background: #f4fbf1;
  color: #176f2c;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.benefit-tile--large .benefit-tile__coupon,
.benefit-tile--student .benefit-tile__coupon {
  margin-top: auto;
}

.benefit-tile__coupon .material-icons-round {
  font-size: 18px;
}

.benefit-tile__coupon:hover,
.benefit-tile__coupon:focus-visible {
  background: #e9f8e4;
  border-color: #b8dfa9;
  color: #2f7c25;
  transform: translateY(-1px);
}

.benefit-tile__coupon.is-copied {
  background: #0b8f37;
  border-color: #0b8f37;
  color: #ffffff;
}

.benefit-tile__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 12px;
  background: #0b8f37;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.benefit-tile--business .benefit-tile__button,
.benefit-tile--cashback .benefit-tile__button,
.benefit-tile--referral .benefit-tile__button {
  margin-top: auto;
}

.benefit-tile__button:hover {
  background: #06782d;
  transform: translateY(-1px);
}

.offers-copy-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.offer-steps {
  width: 100%;
  max-width: 1300px;
  margin: clamp(52px, 6vw, 82px) auto 0;
  padding: 0 5%;
}

.offer-steps__intro {
  margin: 0 auto clamp(20px, 2.8vw, 30px);
  text-align: center;
}

.offer-steps__intro h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.offer-steps__intro p {
  margin: 8px 0 0;
  color: #687386;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.45;
}

.offer-steps__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(12px, 1.6vw, 20px);
}

.offer-step-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid #e6ebf1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.06);
}

.offer-step-card__number {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #10b657;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(16, 182, 87, 0.24);
}

.offer-step-card__content h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.offer-step-card__content p {
  margin: 7px 0 0;
  color: #687386;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.offer-step-card__icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #62b248;
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(17, 24, 39, 0.08));
}

.offer-step-card__icon--code {
  color: #f59e0b;
}

.offer-step-card__icon--booking {
  color: #2563eb;
}

.offer-step-card__icon--saving {
  color: #18b75b;
}

.offer-steps__connector {
  align-self: center;
  width: 100%;
  border-top: 3px dotted rgba(115, 194, 85, 0.52);
}

.offers-faq-section {
  width: 100%;
  max-width: 1300px;
  margin-top: clamp(18px, 2.4vw, 28px);
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

.offers-faq-section .home-faq-shell {
  padding: clamp(20px, 2.4vw, 28px);
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.055);
}

.offers-faq-section .home-faq-sidebar h2 {
  color: #111827;
}

.offers-faq-section .home-faq-tab.is-active {
  background: #111827;
  border-color: #111827;
}

.offers-faq-section .home-faq-item {
  border-color: #e6ebf1;
}

.offers-cta-block {
  width: 100%;
  max-width: 1300px;
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  padding: 0 5%;
}

.offers-cta {
  width: 100%;
  min-height: clamp(118px, 10vw, 138px);
  padding: 16px clamp(22px, 3.8vw, 38px);
  display: grid;
  grid-template-columns: clamp(140px, 15vw, 180px) minmax(0, 1fr) clamp(110px, 9vw, 132px) auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  overflow: hidden;
  border: 1px solid #e2f0df;
  border-radius: 24px;
  background: #f2fbf0;
  box-shadow: 0 16px 34px rgba(20, 83, 45, 0.06);
}

.offers-cta__content {
  min-width: 0;
}

.offers-cta__figure {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers-cta__figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(20, 83, 45, 0.1));
}

.offers-cta__figure--people {
  align-self: center;
  justify-self: start;
  width: clamp(140px, 15vw, 180px);
  margin-bottom: 0;
  transform: translateY(-4px);
}

.offers-cta__figure--gift {
  justify-self: center;
  width: clamp(110px, 9vw, 132px);
}

.offers-cta__content h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.offers-cta__content p {
  margin: 8px 0 0;
  color: #687386;
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 600;
  line-height: 1.45;
}

.offers-cta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offers-cta__button {
  min-width: 168px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(0, 184, 64, 0.2);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.offers-cta__button:hover,
.offers-cta__button:focus-visible {
  transform: translateY(-1px);
}

.offers-cta__button:focus-visible {
  outline: 3px solid rgba(17, 24, 39, 0.14);
  outline-offset: 3px;
}

.offers-cta__button--primary {
  border: 1px solid #0b8f37;
  background: #0b8f37;
  color: #ffffff;
}

.offers-cta__button--primary:hover,
.offers-cta__button--primary:focus-visible {
  background: #06782d;
  border-color: #06782d;
  box-shadow: 0 14px 26px rgba(0, 184, 64, 0.24);
}

.offers-trust-strip {
  width: 100%;
  max-width: 1300px;
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  padding: 0 5%;
}

.offers-trust-strip__inner {
  width: 100%;
  padding: 13px clamp(22px, 3.4vw, 34px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 3.8vw, 58px);
  border: 1px solid #e6ebf1;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.045);
}

.offers-trust-strip__item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.offers-trust-strip__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 179, 68, 0.22);
  border-radius: 50%;
  background: #f2fbf0;
  color: #0b7f32;
  font-size: 28px;
}

.offers-trust-strip__item h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.offers-trust-strip__item p {
  margin: 4px 0 0;
  color: #5f6c7e;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 700;
  line-height: 1.25;
}

.offers-faq-blog {
  width: 100%;
  max-width: 1300px;
  margin: clamp(56px, 6.5vw, 90px) auto 0;
  padding: 0 5%;
}

.offers-faq-blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 2.8vw, 30px);
}

.offers-faq-blog__header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.offers-faq-blog__header p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #687386;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.5;
}

.offers-faq-blog__link {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #d9ead1;
  border-radius: 12px;
  background: #f4fbf1;
  color: #3e8e2f;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.offers-faq-blog__link:hover {
  background: #e9f8e4;
  border-color: #b8dfa9;
  transform: translateY(-1px);
}

.offers-faq-blog__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.45fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.offers-faq-blog__feature {
  min-height: 100%;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid #e6ebf1;
  border-radius: 24px;
  background: linear-gradient(135deg, #f7fbf4 0%, #ffffff 58%, #f5f9fc 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.offers-faq-blog__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #e9f8e4;
  color: #3e8e2f;
  font-size: 12px;
  font-weight: 800;
}

.offers-faq-blog__feature h3 {
  margin: 18px 0 0;
  color: #111827;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.offers-faq-blog__feature p {
  margin: 14px 0 0;
  color: #5f6b7a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
}

.offers-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offers-faq-item {
  border: 1px solid #e6ebf1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.045);
  overflow: hidden;
}

.offers-faq-item summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 58px 18px 22px;
  color: #111827;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
  letter-spacing: -0.025em;
}

.offers-faq-item summary::-webkit-details-marker {
  display: none;
}

.offers-faq-item summary::after {
  content: "add";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #f4fbf1;
  color: #3e8e2f;
  font-family: "Material Icons Round";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.offers-faq-item[open] summary::after {
  content: "remove";
}

.offers-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #5f6b7a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.offers-shell {
  width: 100%;
  max-width: 1300px;
  padding: 0 5%;
  margin: 0 auto;
}

.offers-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--offers-border);
}

.offers-header__container {
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.offers-header__container--utility {
  min-height: 62px;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--offers-border);
}

.offers-header__container--nav {
  min-height: 72px;
  justify-content: space-between;
  gap: 28px;
}

.offers-header__city,
.offers-header__phones,
.offers-header__audience {
  display: flex;
  align-items: center;
}

.offers-header__city {
  gap: 6px;
  color: #6d7482;
  font-size: 15px;
  font-weight: 600;
}

.offers-header__city .material-icons-round:first-child {
  color: var(--offers-green);
  font-size: 18px;
}

.offers-header__city .material-icons-round:last-child {
  font-size: 18px;
  color: #8a92a3;
}

.offers-header__audience {
  gap: 6px;
  flex: 1 1 auto;
  justify-content: center;
}

.offers-header__audience-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 16px;
  color: #8a92a3;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.offers-header__audience-link:hover,
.offers-header__audience-link.is-active {
  background: #eef1f5;
  color: var(--offers-text);
}

.offers-header__phones {
  gap: 18px;
}

.offers-header__phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.offers-header__phone-block a {
  color: var(--offers-text);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.offers-header__phone-block span {
  color: #86b765;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.offers-header__call {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--offers-green);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(115, 194, 85, 0.28);
}

.offers-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.offers-logo__mark {
  position: relative;
  width: 34px;
  height: 22px;
}

.offers-logo__mark::before,
.offers-logo__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 4px;
  background: var(--offers-yellow);
  transform-origin: center;
}

.offers-logo__mark::before {
  top: 0;
  width: 28px;
  height: 7px;
  transform: rotate(-24deg) translateX(2px);
}

.offers-logo__mark::after {
  top: 8px;
  width: 18px;
  height: 7px;
  transform: rotate(35deg) translateX(7px);
}

.offers-logo__text {
  color: #2f3645;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: lowercase;
}

.offers-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1 1 auto;
}

.offers-nav a {
  position: relative;
  padding: 6px 0;
  color: #313848;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.offers-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 4px;
  border-radius: 999px;
  background: var(--offers-green);
}

.offers-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.offers-header__action,
.offers-header__login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #e7ebef;
  background: #ffffff;
  color: #6c7382;
}

.offers-header__action {
  width: 44px;
}

.offers-header__action--accent {
  background: #ffe366;
  border-color: #ffe366;
  color: #5c5530;
}

.offers-header__login {
  gap: 8px;
  padding: 0 18px;
  color: var(--offers-text);
  font-weight: 700;
}

.offers-main {
  padding: 28px 0 0;
}

.offers-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a2a9b5;
  font-size: 14px;
  font-weight: 600;
}

.offers-title {
  margin: 58px 0 52px;
  color: #2e3444;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
  word-spacing: 0.08em;
}

.offers-title span {
  white-space: nowrap;
}

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 4vw, 68px);
}

.offer-card--hero {
  padding-bottom: 6px;
}

.offer-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.offer-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.offer-card__media img.offer-image--trim-bottom {
  clip-path: inset(0 0 22px 0);
}

.offer-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

@media (min-width: 1181px) {
  .offer-card__content {
    order: 1;
  }

  .offer-card__media {
    order: 2;
    justify-content: flex-end;
  }
}

.offer-card__content h2 {
  margin: 0;
  color: #2f3645;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.offer-card__content p {
  margin: 0;
  max-width: 34rem;
  color: var(--offers-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.48;
}

.offer-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--offers-green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 28px rgba(115, 194, 85, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.offer-card__button:hover {
  background: var(--offers-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(115, 194, 85, 0.28);
}

.offers-footer {
  margin-top: 76px;
  padding: 30px 0 26px;
  border-top: 1px solid var(--offers-border);
}

.offers-footer__top,
.offers-footer__body,
.offers-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.offers-footer__top {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--offers-border);
}

.offers-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offers-footer__nav a {
  color: #3b4354;
  font-size: 15px;
  font-weight: 700;
}

.offers-footer__stores {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offers-store-badge {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 14px;
  background: #ffffff;
}

.offers-store-badge img {
  height: 34px;
  width: auto;
}

.offers-store-badge--text {
  border: 1px solid var(--offers-border);
  color: #444d5f;
  font-size: 14px;
  font-weight: 800;
}

.offers-footer__body {
  align-items: flex-start;
  padding: 28px 0;
}

.offers-footer__meta {
  flex: 1 1 64%;
  max-width: 780px;
}

.offers-footer__meta p {
  margin: 0;
  color: #5f6777;
  font-size: 15px;
  line-height: 1.62;
}

.offers-footer__legal-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.offers-footer__legal-links a {
  color: #364054;
  font-size: 15px;
  font-weight: 700;
}

.offers-footer__aside {
  flex: 0 0 min(360px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.offers-footer__subscription {
  width: 100%;
  padding: 26px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: var(--offers-shadow);
}

.offers-footer__subscription strong {
  display: block;
  max-width: 18rem;
  color: #2f3645;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.offers-footer__subscription-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 14px;
  margin-top: 18px;
}

.offers-footer__subscription-form input {
  height: 58px;
  padding: 0 20px;
  border: 1px solid #dbe2ec;
  border-radius: 18px;
  background: #ffffff;
  color: #2f3645;
  font-size: 16px;
  outline: none;
}

.offers-footer__subscription-form button {
  border: none;
  border-radius: 18px;
  background: var(--offers-green);
  color: #ffffff;
  cursor: pointer;
}

.offers-footer__brand-card {
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #d9e64a;
  color: #59612b;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(85, 98, 42, 0.18);
}

.offers-footer__brand-card span {
  font-size: 28px;
  line-height: 1;
}

.offers-footer__brand-card small {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}

.offers-footer__bottom {
  padding-top: 10px;
  color: #8f96a3;
  font-size: 14px;
  font-weight: 600;
}

.offers-call-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.offers-call-widget__bubble {
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffffff;
  color: #737a87;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 18px 32px rgba(29, 36, 51, 0.1);
}

.offers-call-widget__button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--offers-green);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(115, 194, 85, 0.28);
}

@media (max-width: 1180px) {
  .offers-benefits__panel {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    grid-template-rows: minmax(390px, auto) minmax(330px, auto);
    grid-template-areas:
      "transport transport transport transport transport transport student student student student"
      "business business business business cashback cashback cashback referral referral referral";
    gap: clamp(12px, 1.8vw, 18px);
  }

  .offers-faq-blog__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .offers-faq-blog__feature {
    min-height: auto;
  }

  .benefit-tile {
    gap: 14px;
    padding: clamp(14px, 2vw, 22px);
    border-radius: 20px;
  }

  .benefit-tile--large .benefit-tile__placeholder,
  .benefit-tile--student .benefit-tile__placeholder {
    min-height: clamp(150px, 19vw, 190px);
  }

  .benefit-tile--business .benefit-tile__placeholder,
  .benefit-tile--cashback .benefit-tile__placeholder,
  .benefit-tile--referral .benefit-tile__placeholder {
    min-height: clamp(130px, 17vw, 174px);
  }

  .benefit-tile h2 {
    font-size: clamp(19px, 2.6vw, 30px);
  }

  .benefit-tile p {
    font-size: 13px;
  }

  .benefit-tile__coupon,
  .benefit-tile__button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .offer-steps__grid {
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
    gap: clamp(8px, 1.4vw, 14px);
  }

  .offer-steps__connector {
    width: 100%;
  }

  .offer-step-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px;
  }

  .offer-step-card__content {
    min-width: 0;
  }

  .offer-step-card__content h3 {
    font-size: clamp(15px, 2vw, 18px);
    overflow-wrap: anywhere;
  }

  .offer-step-card__content p {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .offer-step-card__icon {
    font-size: 28px;
  }

  .offers-header__container--utility {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .offers-header__audience {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .offer-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .offer-card__media {
    min-height: 0;
  }

  .offer-card__content h2 {
    font-size: clamp(30px, 4.6vw, 42px);
  }

  .offers-footer__body {
    flex-direction: column;
  }

  .offers-footer__meta,
  .offers-footer__aside {
    max-width: none;
    width: 100%;
  }

  .offers-footer__aside {
    align-items: flex-start;
  }
}

@media (min-width: 980px) and (max-width: 1139px) {
  .offers-benefits,
  .offer-steps,
  body.offers-page .offers-faq-section,
  .offers-cta-block,
  .offers-trust-strip {
    padding-right: 4%;
    padding-left: 4%;
  }

  .offers-cta {
    grid-template-columns: clamp(130px, 15vw, 164px) minmax(0, 1fr) 112px auto;
    padding-right: clamp(24px, 4vw, 38px);
    padding-left: clamp(24px, 4vw, 38px);
  }

  .offers-cta__actions {
    grid-column: auto;
    justify-self: end;
  }

  .offers-cta__figure--people {
    width: clamp(130px, 15vw, 164px);
  }

  .offers-cta__figure--gift {
    width: 112px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .offers-benefits,
  .offer-steps,
  body.offers-page .offers-faq-section,
  .offers-cta-block,
  .offers-trust-strip {
    padding-right: 3%;
    padding-left: 3%;
  }

  .offers-cta {
    grid-template-columns: clamp(122px, 17vw, 150px) minmax(0, 1fr) 104px;
    grid-template-areas:
      "people content gift"
      "people actions gift";
    align-items: center;
    gap: 10px clamp(18px, 3vw, 24px);
    padding-right: clamp(22px, 4vw, 32px);
    padding-left: clamp(22px, 4vw, 32px);
  }

  .offers-cta__actions {
    grid-area: actions;
    justify-self: start;
    width: 100%;
  }

  .offers-cta__button {
    min-width: 0;
    width: min(220px, 100%);
  }

  .offers-cta__figure--people {
    grid-area: people;
    width: clamp(122px, 17vw, 150px);
  }

  .offers-cta__figure--gift {
    grid-area: gift;
    width: 104px;
  }

  .offers-cta__content {
    grid-area: content;
  }
}

@media (max-width: 979px) {
  .offer-steps {
    margin-top: clamp(48px, 7vw, 64px);
  }

  .offer-steps__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .offer-steps__connector {
    width: 3px;
    height: 22px;
    justify-self: center;
    border-top: 0;
    border-left: 3px dotted rgba(115, 194, 85, 0.52);
  }

  .offer-step-card {
    min-height: 126px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 22px;
  }

  .offer-step-card__content h3 {
    font-size: clamp(18px, 2.6vw, 20px);
    overflow-wrap: normal;
  }

  .offer-step-card__content p {
    font-size: 15px;
    overflow-wrap: normal;
  }

  .offer-step-card__icon {
    font-size: 34px;
  }
}

@media (max-width: 840px) {
  .offers-header {
    position: static;
  }

  .offers-header__container--utility,
  .offers-header__container--nav {
    width: calc(100vw - 28px);
  }

  .offers-header__phones {
    width: 100%;
    justify-content: space-between;
  }

  .offers-header__container--nav {
    min-height: 0;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .offers-logo__text {
    font-size: 28px;
  }

  .offers-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px 22px;
    flex-wrap: wrap;
  }

  .offers-nav a.is-active::after {
    bottom: -8px;
  }

  .offers-header__actions {
    margin-left: auto;
  }

  .offers-main {
    padding-top: 10px;
  }

  .offers-title {
    margin: 34px 0 34px;
  }

  .offers-list {
    gap: 44px;
  }

  .offers-footer {
    margin-top: 48px;
  }

  .offers-footer__top,
  .offers-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .offers-benefits,
  .offer-steps,
  body.offers-page .offers-faq-section,
  .offers-cta-block,
  .offers-trust-strip {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (min-width: 641px) and (max-width: 767px) {
  .offers-cta {
    min-height: auto;
    padding: 24px;
    grid-template-columns: minmax(0, 1fr) clamp(108px, 18vw, 128px);
    grid-template-areas:
      "content gift"
      "actions gift";
    align-items: center;
    gap: 16px 22px;
    border-radius: 22px;
    background: #ffffff;
  }

  .offers-cta__figure--people {
    display: none;
  }

  .offers-cta__figure--gift {
    grid-area: gift;
    justify-self: end;
    align-self: center;
    width: clamp(108px, 18vw, 128px);
  }

  .offers-cta__content {
    grid-area: content;
  }

  .offers-cta__content h2 {
    max-width: 16em;
    font-size: clamp(28px, 4.8vw, 32px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .offers-cta__content p {
    max-width: 34ch;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.42;
  }

  .offers-cta__actions {
    grid-area: actions;
    width: 100%;
    justify-self: start;
  }

  .offers-cta__button {
    min-width: 0;
    width: min(280px, 100%);
    min-height: 54px;
  }
}

@media (max-width: 640px) {
  body.home-page.offers-page {
    padding-top: 74px !important;
  }

  .offers-benefits-page {
    padding: 8px 0 28px;
  }

  body.offers-page .site-footer.site-footer--directory {
    margin-top: 20px;
  }

  .offer-steps {
    margin-top: 48px;
  }

  .offer-steps__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .offer-steps__connector {
    width: 3px;
    height: 22px;
    justify-self: center;
    border-top: 0;
    border-left: 3px dotted rgba(115, 194, 85, 0.52);
  }

  .offers-faq-blog {
    margin-top: 50px;
    padding: 0 14px;
  }

  .offers-faq-blog__header {
    display: block;
    text-align: center;
  }

  .offers-faq-blog__header p {
    margin-inline: auto;
  }

  .offers-faq-blog__link {
    margin-top: 16px;
  }

  body.offers-page .offers-faq-section .home-faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  body.offers-page .offers-faq-section .home-faq-tab {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  body.offers-page .offers-faq-section .home-faq-shell {
    padding: 18px 14px 14px;
    border-radius: 24px;
  }

  .offers-faq-blog__feature,
  .offers-faq-item {
    border-radius: 18px;
  }

  .offers-faq-item summary {
    min-height: 58px;
    padding: 16px 54px 16px 18px;
    font-size: 16px;
  }

  .offers-faq-item p {
    padding: 0 18px 18px;
  }

  .offers-benefits__intro h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .offers-cta-block {
    margin-top: 18px;
  }

  .offers-trust-strip {
    margin-top: 18px;
  }

  .offers-trust-strip__inner {
    padding: 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    border-radius: 18px;
  }

  .offers-trust-strip__item {
    justify-content: flex-start;
  }

  .offers-cta {
    min-height: auto;
    padding: 22px 20px 20px;
    grid-template-columns: minmax(0, 1fr) clamp(82px, 24vw, 108px);
    grid-template-areas:
      "content gift"
      "actions actions";
    align-items: start;
    gap: 18px 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(20, 83, 45, 0.07);
  }

  .offers-cta__figure--people {
    display: none;
  }

  .offers-cta__figure--gift {
    grid-area: gift;
    justify-self: end;
    align-self: center;
    width: clamp(82px, 24vw, 108px);
    margin-top: -2px;
  }

  .offers-cta__content {
    grid-area: content;
    max-width: none;
    padding-top: 0;
  }

  .offers-cta__content h2 {
    max-width: none;
    font-size: clamp(24px, 6.8vw, 30px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .offers-cta__content p {
    max-width: 25ch;
    margin-top: 10px;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.42;
  }

  .offers-cta__actions {
    grid-area: actions;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 0;
  }

  .offers-cta__button {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 18px;
    font-size: 16px;
    box-shadow:
      0 14px 26px rgba(0, 184, 64, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .offers-cta__button .material-icons-round {
    font-size: 25px;
  }

  .offers-benefits__panel {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
    grid-template-rows: none;
    padding: 0;
    border-radius: 0;
  }

  .offer-step-card {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 18px;
    border-radius: 18px;
    gap: 14px;
  }

  .offer-step-card__icon {
    grid-column: auto;
    justify-self: end;
    font-size: 30px;
  }

  .benefit-tile,
  .benefit-tile--large,
  .benefit-tile--student,
  .benefit-tile--cashback,
  .benefit-tile--referral,
  .benefit-tile--business {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .benefit-tile {
    min-height: auto;
    border-radius: 18px;
  }

  .benefit-tile__placeholder,
  .benefit-tile--large .benefit-tile__placeholder,
  .benefit-tile--student .benefit-tile__placeholder,
  .benefit-tile--cashback .benefit-tile__placeholder,
  .benefit-tile--referral .benefit-tile__placeholder,
  .benefit-tile--business .benefit-tile__placeholder {
    flex-basis: auto;
    min-height: 150px;
  }

  .offers-header__container--utility {
    gap: 14px;
  }

  .offers-header__city,
  .offers-header__phones,
  .offers-header__audience {
    width: 100%;
  }

  .offers-header__audience {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .offers-header__phones {
    gap: 10px;
    align-items: stretch;
  }

  .offers-header__phone-block {
    align-items: flex-start;
    flex: 1 1 0;
  }

  .offers-header__phone-block a {
    font-size: 15px;
  }

  .offers-logo__text {
    font-size: 25px;
  }

  .offers-nav {
    gap: 14px 18px;
  }

  .offers-nav a {
    font-size: 15px;
  }

  .offers-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .offer-card__content {
    gap: 16px;
  }

  .offer-card__content p {
    font-size: 15px;
  }

  .offer-card__button {
    width: 100%;
    justify-content: center;
  }

  .offers-footer__legal-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .offers-footer__subscription-form {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .offers-footer__subscription-form input {
    height: 52px;
    font-size: 15px;
  }

  .offers-call-widget {
    right: 14px;
    bottom: 16px;
  }

  .offers-call-widget__bubble {
    display: none;
  }
}
