/* KartonVisa — styles matching Kartonpay visual language */
:root {
  --green-dark: #51703d;
  --green: #52703e;
  --green-mid: #435e32;
  --lime: #b8d86b;
  --lime-soft: #c8e08a;
  --text: #472400;
  --text-soft: rgba(71, 36, 0, 0.78);
  --red: #a92500;
  --red-hover: #8b1b00;
  --white: #ffffff;
  --cream: #f4f7eb;
  --surface: rgba(255, 255, 255, 0.12);
  --surface-strong: rgba(255, 255, 255, 0.18);
  --border: rgba(255, 255, 255, 0.22);
  --shadow: 0 18px 40px rgba(2, 18, 2, 0.22);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --header-h: 72px;
  --max: 1120px;
  --font-display: "Roboto Condensed", "Arial Narrow", sans-serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--green-dark);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(184, 216, 107, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(71, 36, 0, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(2, 18, 2, 0.12);
  background: rgba(184, 216, 107, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.logo img {
  width: 132px;
  height: auto;
}

.logo__tag {
  display: none;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.burger {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(71, 36, 0, 0.08);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 99;
  background: #c5df7f;
  padding: 1rem 1.25rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(71, 36, 0, 0.1);
  box-shadow: 0 16px 32px rgba(2, 18, 2, 0.15);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.55rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(169, 37, 0, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(169, 37, 0, 0.34);
}

.btn:active {
  transform: translateY(0);
}

.btn--lg {
  min-height: 56px;
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border: 1.5px solid rgba(71, 36, 0, 0.35);
}

.btn--ghost:hover {
  background: rgba(71, 36, 0, 0.06);
  box-shadow: none;
}

.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 24px rgba(2, 18, 2, 0.12);
}

.btn--white:hover {
  background: var(--cream);
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header .btn {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.2rem) 0 3.5rem;
  background: linear-gradient(180deg, #b8d86b 0%, #7fa04f 42%, #51703d 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.28), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 230, 160, 0.22), transparent 38%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--lime);
  font-size: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 42ch;
  margin-bottom: 1.35rem;
  color: var(--text);
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(71, 36, 0, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  isolation: isolate;
}

/* Floating service chips around the card */
.hero-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-orbit__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(71, 36, 0, 0.12);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(2, 18, 2, 0.14);
  white-space: nowrap;
  animation: chip-float 4.8s ease-in-out infinite;
}

.hero-orbit__chip--1 {
  top: 6%;
  left: 2%;
  animation-delay: 0s;
}

.hero-orbit__chip--2 {
  top: 18%;
  right: 0;
  animation-delay: 0.6s;
}

.hero-orbit__chip--3 {
  bottom: 38%;
  left: -2%;
  animation-delay: 1.1s;
}

.hero-orbit__chip--4 {
  bottom: 28%;
  right: 2%;
  animation-delay: 1.7s;
}

.hero-orbit__chip--5 {
  top: -2%;
  left: 42%;
  animation-delay: 2.2s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.card-visual {
  width: min(100%, 360px);
  aspect-ratio: 1.62 / 1;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05)),
    linear-gradient(145deg, #2f4524 0%, #51703d 45%, #6f9348 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 30px 60px rgba(20, 30, 10, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 1.35rem 1.5rem;
  color: #fff;
  transform: rotate(-6deg);
  animation: card-float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.card-visual::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto -20%;
  height: 120%;
  background: radial-gradient(circle, rgba(184, 216, 107, 0.35), transparent 60%);
  pointer-events: none;
}

.card-visual__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}

.card-visual__chip {
  width: 42px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8d48b, #c9a84c 50%, #f0e2a8);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.card-visual__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.card-visual__number {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.card-visual__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.card-visual__label {
  font-size: 0.65rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-visual__name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.card-visual__visa {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-style: italic;
}

.pay-badges {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding: 0.55rem;
  min-height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(20, 30, 10, 0.18);
  contain: layout;
}

.pay-badges img {
  width: 72px;
  height: 28px;
  max-width: none;
  box-sizing: content-box;
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
  background: #fff;
  border: 1px solid rgba(71, 36, 0, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 18px rgba(2, 18, 2, 0.2);
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes card-float {
  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-10px);
  }
}

/* Logo strip (kartonpay-style marquee) */
.logo-strip {
  background: var(--green-dark);
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  margin-top: 0;
  min-height: 74px;
  contain: layout;
}

.logo-marquee {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: logo-scroll 55s linear infinite;
  will-change: transform;
  min-height: 58px;
  align-items: center;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  min-height: 50px;
}

.logo-marquee__item {
  flex: 0 0 auto;
  width: 86px;
  height: 50px;
}

.logo-marquee__item img {
  height: 50px;
  width: 86px;
  max-width: none;
  border-radius: 12px;
  box-shadow: 0.1rem 0.2rem 0.5rem rgba(2, 18, 2, 0.25);
  background: #fff;
  display: block;
  object-fit: cover;
  aspect-ratio: 86 / 50;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* AI / snippet answer block */
.answer-block {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.answer-block h2 {
  margin-bottom: 0.85rem;
}

.answer-block__text {
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 52rem;
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.answer-block__facts {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  max-width: 44rem;
}

.answer-block__facts li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  opacity: 0.95;
}

.answer-block__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
}

.answer-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
  opacity: 0.75;
}

.seo-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 52rem;
}

.seo-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.seo-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 800;
}

.seo-list--dark {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(71, 36, 0, 0.12);
  color: var(--text);
}

.seo-list--dark li::before {
  color: var(--red);
}

.section--lime .seo-list--dark {
  margin-bottom: 1.5rem;
}

.blog-teasers {
  display: grid;
  gap: 0.85rem;
}

.blog-teaser {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(71, 36, 0, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  min-height: 100%;
}

.blog-teaser h3 a:hover {
  color: var(--red);
}

.blog-teaser h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.blog-teaser h3 a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-teaser p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

@media (min-width: 700px) {
  .blog-teasers {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sections common */
.section {
  padding: 4rem 0;
  position: relative;
}

.section--green {
  background: var(--green-dark);
  color: var(--white);
}

.section--lime {
  background: linear-gradient(180deg, #9fc35a 0%, #b8d86b 100%);
  color: var(--text);
}

.section--soft {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(184, 216, 107, 0.22), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(71, 36, 0, 0.18), transparent 40%),
    #5d7d46;
  color: var(--white);
}

.section__head {
  margin-bottom: 2rem;
  max-width: 42rem;
}

/* Before / After compare block */
.compare {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
}

.compare__col {
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 100%;
}

.compare__col--before {
  background:
    linear-gradient(160deg, rgba(169, 37, 0, 0.22), rgba(255, 255, 255, 0.06) 55%),
    rgba(20, 30, 12, 0.22);
  border-color: rgba(255, 180, 160, 0.28);
}

.compare__col--after {
  background:
    linear-gradient(160deg, rgba(184, 216, 107, 0.28), rgba(255, 255, 255, 0.08) 55%),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 216, 107, 0.45);
}

.compare__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare__col--before .compare__tag {
  background: rgba(169, 37, 0, 0.85);
  color: #fff;
}

.compare__col--after .compare__tag {
  background: var(--lime);
  color: var(--text);
}

.compare__list {
  display: grid;
  gap: 0.75rem;
}

.compare__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.95;
}

.compare__list svg {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.compare__col--before .compare__list svg {
  color: #ffb4a0;
}

.compare__col--after .compare__list svg {
  color: var(--lime);
}

.compare__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--lime);
}

.compare__arrow svg {
  width: 28px;
  height: 28px;
}

.about-text {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52rem;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.65rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__lead {
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.92;
}

.section--lime .section__lead {
  color: var(--text-soft);
}

/* Benefits */
.benefits {
  display: grid;
  gap: 1rem;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  background: var(--surface-strong);
}

.benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(184, 216, 107, 0.22);
  margin-bottom: 0.9rem;
  color: var(--lime);
}

.benefit__icon svg {
  width: 22px;
  height: 22px;
}

.benefit h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.benefit p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Audience */
.audience {
  display: grid;
  gap: 1rem;
}

.audience-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(71, 36, 0, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}

.audience-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: var(--lime);
}

.audience-card__icon svg {
  width: 24px;
  height: 24px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.audience-card p {
  color: var(--text-soft);
  flex: 1;
}

.audience-card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.35rem 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.step p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.section__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(71, 36, 0, 0.35);
  background: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}

.service-chip:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
}

.services-note {
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* Situations block */
.situations {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(71, 36, 0, 0.12), transparent 50%),
    linear-gradient(145deg, #d4e892 0%, #b8d86b 38%, #8fb54e 72%, #6a9140 100%);
}

.situations::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(71, 36, 0, 0.08) 0 1px, transparent 1.5px);
  background-size: 28px 28px, 36px 36px;
  opacity: 0.7;
}

.situations__box {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.situations__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.situations__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 28rem;
  margin-bottom: 1.15rem;
}

.situations__tags li {
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--text);
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.situations__note {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  max-width: 28rem;
  color: var(--text);
}

.situations__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.situations__card-mock {
  width: min(100%, 340px);
  transform: rotate(7deg);
  animation: card-float 5.5s ease-in-out infinite;
}

@media (min-width: 900px) {
  .situations {
    padding: 4.25rem 0;
    min-height: 420px;
    display: flex;
    align-items: center;
  }

  .situations__box {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .situations__card-mock {
    width: 380px;
  }
}

/* Features extras */
.extras {
  display: grid;
  gap: 1rem;
}

.extra {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
}

.extra h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.extra p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.faq-item__q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.85;
}

.faq-item.is-open .faq-item__q svg {
  transform: rotate(180deg);
}

.faq-item__a {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq-item.is-open .faq-item__a {
  display: block;
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final CTA */
.final-cta {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #b8d86b 0%, #8fb54e 50%, #51703d 100%);
  text-align: center;
  color: var(--text);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.final-cta p {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-soft);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.final-cta .btn {
  margin-inline: 0;
}

.final-cta .btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(71, 36, 0, 0.28);
  color: var(--text);
  box-shadow: none;
}

.final-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

/* Footer */
.footer {
  background: #3f5730;
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__brand img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.footer__note {
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 36ch;
  opacity: 0.85;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--lime);
}

.footer__bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Cookie notification (kartonpay-style) */
.notification {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: min(29rem, calc(100vw - 2rem));
  padding: 0.65rem 0.7rem;
  border-radius: 1rem;
  background: #51703e;
  box-shadow: 0 -0.25rem 1.5rem rgba(71, 36, 0, 0.18);
  color: #fff;
}

.notification.is-visible {
  display: flex;
}

.notification__left {
  flex: 1;
  min-width: 0;
}

.notification__left p {
  margin: 0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.25;
}

.notification__left a {
  color: var(--lime);
  text-decoration: underline;
}

.notification__close {
  flex-shrink: 0;
  width: auto;
  min-width: 5.5rem;
  min-height: 2.1rem;
  height: 2.1rem;
  margin: 0;
  padding: 0 0.85rem;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: none;
}

.notification__close:hover {
  background: var(--red-hover);
  transform: none;
  box-shadow: none;
}

@media (max-width: 639px) {
  .notification {
    left: 1rem;
    right: 1rem;
    bottom: 5.25rem; /* над плавающей кнопкой Telegram */
    width: auto;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.25rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
  color: #fff;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--lime);
  margin-bottom: 0.55rem;
}

.pricing-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.pricing-card--accent {
  background: rgba(184, 216, 107, 0.16);
  border-color: rgba(184, 216, 107, 0.45);
}

.pricing-card--accent .pricing-card__price {
  color: #fff;
}

/* Reveal: opacity only — translateY вызывает CLS */
.reveal {
  opacity: 0;
  transition: opacity 0.55s ease;
}

.reveal.is-in {
  opacity: 1;
}

/* Floating Telegram */
.float-tg {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2aabee;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(42, 171, 238, 0.4);
  transition: transform 0.2s;
}

.float-tg:hover {
  transform: scale(1.06);
}

.float-tg svg {
  width: 28px;
  height: 28px;
}

/* Responsive */
@media (min-width: 640px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .extras {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .logo__tag {
    display: inline;
  }

  .compare {
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
  }

  .compare__arrow {
    display: flex;
  }
}

@media (min-width: 900px) {
  .burger,
  .mobile-nav {
    display: none !important;
  }

  .nav {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 3.5rem);
    padding-bottom: 4.5rem;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: center;
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .card-visual {
    width: 400px;
  }

  .hero__visual {
    min-height: 380px;
  }

  .hero-orbit__chip {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card-visual,
  .hero-orbit__chip,
  .logo-marquee,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
