:root {
  --bg: #f7f5ef;
  --surface: #fffdf8;
  --ink: #1b1a18;
  --muted: #4d5868;
  --line: rgba(27, 26, 24, 0.12);
  --soft: #f6f0e4;
  --blue: #1d66f6;
  --blue-dark: #1049c9;
  --violet: #6f5af6;
  --green: #12a47c;
  --amber: #d48a09;
  --shadow: 0 14px 34px rgba(27, 26, 24, 0.07);
  --header-h: 96px;
  --page-pad: max(22px, min(5vw, 64px), env(safe-area-inset-left));
  --page-pad-r: max(22px, min(5vw, 64px), env(safe-area-inset-right));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(150deg, #fffdf7 0%, var(--bg) 46%, #fff8dc 100%);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-wrap: break-word;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports not (overflow-x: clip) {
  body {
    overflow-x: hidden;
  }
}

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

[id] {
  scroll-margin-top: 18px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(29, 102, 246, 0.25);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p,
li,
h1,
h2,
h3 {
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: calc(76px + env(safe-area-inset-top));
  padding:
    calc(14px + env(safe-area-inset-top)) max(24px, calc((100vw - 1180px) / 2))
    14px;
  background: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid rgba(27, 26, 24, 0.08);
  backdrop-filter: blur(14px);
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 420;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0.8px 0.8px 0 rgba(255, 255, 255, 0.86),
    2px 2px 8px rgba(27, 26, 24, 0.08);
  white-space: nowrap;
}

.logo-mark {
  width: clamp(38px, 3.3vw, 46px);
  height: auto;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.76))
    drop-shadow(0 10px 18px rgba(27, 26, 24, 0.14));
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.nav a,
.contact-links a {
  transition: color 150ms ease;
}

.nav a:hover,
.contact-links a:hover {
  color: var(--blue);
}

.trend-cta {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(183, 135, 18, 0.4);
  border-radius: 10px;
  color: var(--ink);
  background: #fff3bb;
  box-shadow:
    0 8px 18px rgba(183, 135, 18, 0.12);
  font-size: 13px;
  font-weight: 740;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.trend-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.02);
  box-shadow:
    0 11px 22px rgba(183, 135, 18, 0.16);
}

.header-note-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-contact-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section {
  padding-right: max(var(--page-pad-r), calc((100vw - 1180px) / 2));
  padding-left: max(var(--page-pad), calc((100vw - 1180px) / 2));
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  min-height: auto;
  padding-top: clamp(66px, 8vw, 112px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  max-width: 950px;
  margin-bottom: 20px;
  font-size: clamp(43px, 5.15vw, 72px);
  font-weight: 570;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86),
    0 3px 8px rgba(27, 26, 24, 0.06);
}

.title-accent {
  color: #1d66f6;
  font-weight: 650;
  text-shadow: none;
}

.title-line {
  display: block;
  margin-top: 0.12em;
}

.hero-lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-actions .primary {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  font-weight: 720;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.hero-secondary:hover {
  border-color: rgba(29, 102, 246, 0.36);
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  color: #46505f;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.35;
  list-style: none;
}

.hero-facts li {
  display: inline;
  padding: 0;
}

.hero-facts li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 18px 3px 0;
  border-radius: 50%;
  background: rgba(27, 26, 24, 0.28);
}

.guerilla-service-section {
  padding-top: 0;
  padding-bottom: 74px;
  background: #fffdf8;
}

.guerilla-service {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(22px, 3.6vw, 46px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 430px;
  padding: clamp(30px, 4.8vw, 60px);
  border: 1px solid rgba(27, 26, 24, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 43%, rgba(255, 244, 180, 0.55) 100%),
    repeating-linear-gradient(-8deg, rgba(27, 26, 24, 0.035) 0 1px, transparent 1px 12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 58px rgba(183, 135, 18, 0.16);
}

.guerilla-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 211, 55, 0.34), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(24, 70, 38, 0.16), transparent 24%);
  pointer-events: none;
}

.guerilla-service-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.guerilla-service h2 {
  max-width: 840px;
  margin-bottom: 18px;
  color: #1b1a18;
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 520;
  line-height: 0.96;
}

.guerilla-service p {
  max-width: 740px;
  margin-bottom: 28px;
  color: #3d463e;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.48;
}

.guerilla-art {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 26, 24, 0.18);
  border-radius: 8px;
  background: #efe2bd;
  box-shadow:
    0 18px 42px rgba(27, 26, 24, 0.16),
    -18px 18px 0 rgba(255, 211, 55, 0.16);
  transform: rotate(-1deg);
}

.guerilla-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.06), transparent 40%),
    linear-gradient(180deg, transparent 72%, rgba(27, 26, 24, 0.16));
  pointer-events: none;
}

.guerilla-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% center;
}

.guerilla-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 62px;
  padding: 0 26px;
  border: 1px solid rgba(27, 26, 24, 0.72);
  border-radius: 8px;
  color: #fffdf8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #1f2d1f, #284c32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 32px rgba(27, 26, 24, 0.16);
  font-size: 17px;
  font-weight: 860;
  line-height: 1;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.guerilla-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 20px 38px rgba(27, 26, 24, 0.2);
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  width: 100%;
  max-width: 960px;
  margin-top: clamp(34px, 4vw, 50px);
  text-align: left;
}

.hero-proof-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 250, 236, 0.98));
  box-shadow: 0 20px 42px rgba(27, 26, 24, 0.06);
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
}

.hero-proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(24px, 3vw, 34px);
  left: clamp(24px, 3vw, 34px);
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgba(29, 102, 246, 0.82), rgba(212, 138, 9, 0.5));
}

.hero-proof h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 620;
  line-height: 1.12;
}

.hero-proof-lead {
  max-width: 780px;
  margin-bottom: 18px;
  color: #275fd8;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 620;
  line-height: 1.22;
}

.hero-proof p {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.hero-proof p:last-child {
  margin-bottom: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 760;
  text-align: center;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1f6feb, #4d64e6);
  box-shadow: 0 14px 28px rgba(29, 102, 246, 0.2);
}

.primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), #5a45df);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.18);
  background-position: 0 0, 0% 50%;
  background-size: 100% 100%, 220% 220%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -16px 28px rgba(5, 18, 44, 0.12),
    0 16px 34px rgba(27, 26, 24, 0.12);
  backdrop-filter: blur(14px) saturate(1.18);
  animation: contact-liquid-shift 10s ease-in-out infinite;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-position 520ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.contact-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0));
  opacity: 0.72;
  pointer-events: none;
}

.contact-button:hover {
  transform: translateY(-1px);
  background-position: 0 0, 100% 50%;
}

.contact-button:active {
  transform: translateY(0);
}

.contact-button.telegram {
  color: #ffffff;
  border-color: rgba(100, 190, 255, 0.5);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.14) 31%, transparent 58%),
    linear-gradient(130deg, #38bdf2 0%, #2497ef 24%, #1d66f6 52%, #4d62e8 78%, #2fc4ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -18px 30px rgba(13, 54, 157, 0.22),
    0 16px 32px rgba(29, 102, 246, 0.24);
}

.contact-button.telegram:hover {
  border-color: rgba(125, 210, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    inset 0 -18px 30px rgba(13, 54, 157, 0.18),
    0 20px 38px rgba(29, 102, 246, 0.28);
}

.contact-button.whatsapp {
  color: #ffffff;
  border-color: rgba(92, 230, 156, 0.52);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18) 31%, transparent 58%),
    linear-gradient(130deg, #a7f6c9 0%, #4be28d 24%, #25d366 48%, #149875 76%, #075e54 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -18px 30px rgba(4, 85, 69, 0.2),
    0 16px 32px rgba(18, 164, 124, 0.2);
}

.contact-button.whatsapp:hover {
  color: #ffffff;
  border-color: rgba(124, 242, 178, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -18px 30px rgba(4, 85, 69, 0.16),
    0 20px 38px rgba(18, 164, 124, 0.24);
}

.contact-button.vk {
  color: #ffffff;
  border-color: rgba(123, 178, 255, 0.52);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.16) 31%, transparent 58%),
    linear-gradient(130deg, #a8ccff 0%, #67a5ff 24%, #347ff0 52%, #225ebd 78%, #17498f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -18px 30px rgba(16, 61, 132, 0.22),
    0 16px 32px rgba(47, 111, 216, 0.22);
}

.contact-button.vk:hover {
  border-color: rgba(155, 199, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -18px 30px rgba(16, 61, 132, 0.18),
    0 20px 38px rgba(47, 111, 216, 0.26);
}

@keyframes contact-liquid-shift {
  0% {
    background-position: 0 0, 0% 50%;
  }

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

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

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.header-contact-actions .contact-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 18px rgba(27, 26, 24, 0.08);
}

.step-kicker,
.price-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 920;
}

.price-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.benefit-card p,
.price-panel p,
.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.bonus-section {
  padding-top: 54px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, #fff8dc 0%, #fffdf8 100%);
}

.benefit-grid {
  display: grid;
  grid-template-areas:
    "bonus proof";
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 1.14fr);
  gap: 18px;
  align-items: stretch;
}

.benefit-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.06;
}

.benefit-card p {
  line-height: 1.55;
}

.bonus-card {
  position: relative;
  grid-area: bonus;
  overflow: hidden;
  min-height: 446px;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 3vw, 34px);
  border-width: 1px;
  border-color: rgba(164, 105, 0, 0.24);
  background:
    linear-gradient(145deg, #fffdf8 0%, #fff3c5 54%, #ffe392 100%);
  box-shadow: 0 18px 42px rgba(183, 135, 18, 0.13);
}

.bonus-note {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.bonus-note img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(121, 93, 38, 0.24);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 34px rgba(91, 67, 21, 0.16);
}

.bonus-card .step-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
}

.bonus-card h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(32px, 2.7vw, 42px);
  line-height: 1.05;
}

.bonus-note-text {
  display: block;
  margin-top: 8px;
  font-size: 0.6em;
  font-weight: 400;
  line-height: 1.18;
}

.proof-card {
  position: relative;
  grid-area: proof;
  overflow: hidden;
  min-height: 446px;
  padding: clamp(38px, 3.6vw, 48px);
  border-width: 1px;
  border-color: rgba(183, 135, 18, 0.32);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 82%, rgba(255, 211, 55, 0.2), transparent 26%),
    linear-gradient(145deg, #fffdf8 0%, #fff8d8 58%, #fff0a9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 58px rgba(183, 135, 18, 0.16);
}

.proof-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(183, 135, 18, 0.16);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.36;
}

.proof-card .step-kicker {
  display: block;
  max-width: min(100%, 680px);
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 430;
  line-height: 1.16;
}

.proof-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(32px, 2.8vw, 43px);
  font-weight: 430;
  line-height: 1.08;
}

.proof-card p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #34302a;
  font-size: clamp(19px, 1.45vw, 22px);
  font-weight: 380;
  line-height: 1.66;
}

.proof-card .text-link {
  position: relative;
  z-index: 1;
  min-height: 58px;
  padding: 0 22px;
  border-color: rgba(23, 105, 214, 0.3);
  border-radius: 12px;
  color: #1769d6;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(23, 105, 214, 0.08);
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 460;
  line-height: 1.1;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.proof-card .text-link:hover {
  color: #0b4fb3;
  border-color: rgba(11, 79, 179, 0.48);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 32px rgba(23, 105, 214, 0.13);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(18, 164, 124, 0.22);
  border-radius: 10px;
  color: #08785b;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(18, 164, 124, 0.1);
  font-size: 14px;
  font-weight: 900;
}

.vat-section {
  padding-top: 0;
  padding-bottom: 66px;
  background: #fffdf8;
}

.vat-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.34fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(183, 135, 18, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 16%, rgba(29, 102, 246, 0.11), transparent 28%),
    linear-gradient(145deg, #fffdf8 0%, #fff8d8 58%, #fff0a9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 54px rgba(183, 135, 18, 0.14);
}

.vat-kicker {
  position: relative;
  isolation: isolate;
  display: block;
  width: fit-content;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212, 138, 9, 0.34);
  color: #382500;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 860;
  line-height: 1.15;
}

.vat-card h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 520;
  line-height: 1;
}

.vat-lead {
  color: #1f5fd6;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 620;
  line-height: 1.12;
}

.vat-card p {
  max-width: 760px;
  margin-bottom: 10px;
  color: #34302a;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.52;
}

.vat-card p:last-child {
  margin-bottom: 0;
}

.vat-card .vat-price-note {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  max-width: none;
  margin-top: 14px;
  align-items: baseline;
  font-size: clamp(18px, 1.28vw, 19px);
  line-height: 1.42;
}

.vat-price-note strong {
  color: #1f5fd6;
  font-weight: 820;
}

.vat-price-note span {
  white-space: nowrap;
}

.vat-price-zero {
  color: #08785b;
  font-weight: 820;
}

.vat-saving {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(29, 102, 246, 0.26);
  border-radius: 8px;
  color: #1f5fd6;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.84)),
    linear-gradient(135deg, rgba(29, 102, 246, 0.14), rgba(255, 211, 55, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(29, 102, 246, 0.12);
}

.vat-saving span {
  margin-bottom: 4px;
  color: #4d5a72;
  font-size: 16px;
  font-weight: 620;
}

.vat-saving strong {
  color: #1f5fd6;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.92;
}

.final-section {
  padding-top: 66px;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  background: #fffdf8;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(380px, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
}

.price-panel,
.contact-panel {
  padding: 28px;
}

.price-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, #fffdf8, #f7f1e6);
}

.price-label {
  display: block;
  width: auto;
  margin-bottom: 22px;
  padding: 0;
  color: #1f5fd6;
  text-align: left;
  font-size: clamp(24px, 2.35vw, 32px);
  font-weight: 820;
  line-height: 1.08;
}

.price-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.04;
}

.contact-panel {
  color: #1f2a3d;
  border: 1px solid rgba(183, 135, 18, 0.16);
  background: linear-gradient(145deg, #fffdf1 0%, #fff8d4 100%);
  box-shadow: 0 14px 32px rgba(183, 135, 18, 0.08);
}

.contact-panel p {
  margin-bottom: 18px;
  color: #5f6680;
}

.contact-panel .contact-actions {
  justify-items: center;
  gap: 8px;
}

.contact-panel .contact-button {
  width: clamp(220px, 52%, 280px);
  min-height: 62px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 18px;
  letter-spacing: 0;
}

.contact-panel .contact-icon {
  width: 22px;
  height: 22px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: #50627f;
  font-size: 16px;
  font-weight: 620;
  text-align: center;
}

.contact-links .whatsapp-link {
  color: #0c6a4f;
}

.contact-links .email-link {
  flex-basis: 100%;
  color: #1769d6;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 460;
  line-height: 1.08;
  text-align: center;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.contact-links .email-link:hover {
  color: #0b4fb3;
}

.mobile-sticky-cta {
  display: none;
}

.bottom-contact-section {
  padding-top: 0;
  padding-bottom: calc(86px + env(safe-area-inset-bottom));
  background: #f7f3ea;
}

.bottom-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 461px);
  margin: 0 auto;
}

.bottom-contact-actions .contact-button {
  min-height: 58px;
}

.trends-section {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
  background: #fff8dc;
}

.trends-section::before {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(27, 26, 24, 0.045) 1px, transparent 1px);
  background-size: 100% 38px;
  pointer-events: none;
  opacity: 0.22;
}

.trends-section::after {
  content: "";
  position: absolute;
  right: max(var(--page-pad-r), calc((100vw - 1180px) / 2));
  bottom: 64px;
  left: max(var(--page-pad), calc((100vw - 1180px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 135, 18, 0.36), transparent);
  pointer-events: none;
}

.notes-section-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
  max-width: 1180px;
  margin: 0 auto 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(183, 135, 18, 0.28);
  color: #17140f;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 330;
  line-height: 1.02;
}

.notes-section-label span {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.notes-section-label::after {
  content: "";
  flex: 1 1 180px;
  min-width: 120px;
  height: 2px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd337, rgba(27, 26, 24, 0.18), transparent);
}

.post-article {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding:
    clamp(8px, 1.2vw, 14px) 0 clamp(8px, 1.2vw, 14px)
    clamp(24px, 3.2vw, 42px);
  border-left: 3px solid rgba(183, 135, 18, 0.64);
}

.post-article::before,
.post-article::after {
  content: "";
  display: block;
  width: min(180px, 46%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd337, rgba(183, 135, 18, 0.24), transparent);
}

.post-article::before {
  margin-bottom: 34px;
}

.post-article::after {
  margin-top: 48px;
}

.post-article + .post-article {
  margin-top: clamp(64px, 7vw, 96px);
}

.post-head {
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(183, 135, 18, 0.18);
}

.post-head h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 56px);
}

.post-head p,
.post-chapter p {
  margin-bottom: 17px;
  color: #263446;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.68;
}

.post-head p:last-child,
.post-chapter p:last-child {
  margin-bottom: 0;
}

.post-body {
  display: grid;
  gap: 42px;
  margin-top: 48px;
}

.post-chapter + .post-chapter {
  padding-top: 42px;
  border-top: 1px solid rgba(183, 135, 18, 0.16);
}

.post-chapter h3 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.14;
}

.post-chapter h3 span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 38px;
  margin-top: 3px;
  border: 1px solid rgba(183, 135, 18, 0.42);
  border-radius: 8px;
  color: #6e4a05;
  background: linear-gradient(180deg, #fff6bc, #ffd84a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 22px rgba(183, 135, 18, 0.12);
  font-size: 15px;
  font-weight: 720;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 900px;
  }

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

  .final-grid {
    grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(24px, 4vw, 52px);
  }

  .benefit-grid {
    grid-template-areas:
      "bonus proof";
  }

}

@media (max-width: 1080px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 92px;
  }

  .site-header {
    gap: 12px;
    padding-right: var(--page-pad-r);
    padding-left: var(--page-pad);
  }

  .section {
    padding-right: var(--page-pad-r);
    padding-left: var(--page-pad);
  }

  .header-contact-actions .contact-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .vat-card {
    grid-template-columns: 1fr;
  }

  .vat-saving {
    width: min(100%, 320px);
    min-height: 150px;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .benefit-grid {
    grid-template-areas:
      "bonus"
      "proof";
    grid-template-columns: 1fr;
  }

  .bonus-card,
  .proof-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 74px;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: calc(var(--header-h) + env(safe-area-inset-top));
    padding-top: calc(8px + env(safe-area-inset-top));
    padding-bottom: 8px;
  }

  .logo {
    min-width: 0;
    gap: 7px;
    font-size: clamp(34px, 9.4vw, 40px);
    font-weight: 300;
    line-height: 0.9;
  }

  .logo-mark {
    width: clamp(40px, 10.2vw, 44px);
  }

  .header-contact-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
  }

  .header-contact-actions .contact-button {
    min-width: 0;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .trend-cta {
    min-width: 0;
    width: 100%;
    max-width: none;
    min-height: 40px;
    padding: 0 9px;
    font-size: 10px;
    line-height: 1.12;
    white-space: normal;
  }

  .header-note-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    min-width: 0;
    width: 100%;
  }

  .hero {
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 42px;
  }

  h1 {
    margin-bottom: 0;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.08;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-proof-card {
    min-width: 0;
    padding: 16px;
  }

  .hero-proof-card::before {
    right: 16px;
    left: 16px;
  }

  .hero-proof h2 {
    font-size: 23px;
  }

  .hero-proof-lead {
    font-size: 18px;
  }

  .hero-proof p {
    font-size: 15px;
    line-height: 1.48;
  }

  h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  h3 {
    font-size: 22px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .bonus-section,
  .vat-section,
  .final-section,
  .guerilla-service-section,
  .trends-section {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .guerilla-service-section {
    padding-top: 0;
  }

  .guerilla-service {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }

  .guerilla-service::before {
    background:
      radial-gradient(circle at 72% 44%, rgba(255, 211, 55, 0.32), transparent 34%),
      radial-gradient(circle at 100% 92%, rgba(24, 70, 38, 0.14), transparent 28%);
  }

  .guerilla-service p {
    font-size: 17px;
    line-height: 1.45;
  }

  .guerilla-service h2 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1;
  }

  .guerilla-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .guerilla-art {
    min-height: 230px;
    order: -1;
    transform: rotate(-0.4deg);
  }

  .vat-card {
    padding: 20px;
  }

  .vat-kicker {
    font-size: 16px;
  }

  .vat-card h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .vat-lead {
    font-size: clamp(21px, 6.5vw, 27px);
  }

  .vat-card p {
    font-size: 17px;
    line-height: 1.5;
  }

  .vat-price-note {
    display: grid;
    gap: 2px;
  }

  .vat-price-note span {
    white-space: normal;
  }

  .vat-saving {
    width: 100%;
    min-height: 132px;
    padding: 18px;
  }

  .vat-saving strong {
    font-size: clamp(56px, 18vw, 74px);
  }

  .bottom-contact-section {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .notes-section-label {
    gap: 12px;
    margin-bottom: 26px;
    padding-top: 16px;
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1;
  }

  .notes-section-label span {
    white-space: normal;
  }

  .notes-section-label::after {
    flex-basis: 100%;
    min-width: 120px;
    max-width: 220px;
    margin-bottom: 0;
  }

  .post-article {
    padding-left: 18px;
    border-left-width: 2px;
  }

  .post-article::before {
    margin-bottom: 24px;
  }

  .post-article::after {
    margin-top: 34px;
  }

  .bottom-contact-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 230px);
  }

  .bottom-contact-actions .contact-button {
    min-height: 52px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
  }

  .bonus-section {
    padding-top: 34px;
  }

  .post-head {
    padding-bottom: 24px;
  }

  .post-head h2 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.08;
  }

  .post-head p,
  .post-chapter p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
  }

  .post-body {
    gap: 32px;
    margin-top: 34px;
  }

  .post-chapter + .post-chapter {
    padding-top: 32px;
  }

  .post-chapter h3 {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.12;
  }

  .post-chapter h3 span {
    min-width: 44px;
    min-height: 32px;
    margin-top: 1px;
    font-size: 13px;
  }

  .benefit-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-areas:
      "bonus"
      "proof";
  }

  .benefit-card {
    min-height: 0;
    padding: 18px;
  }

  .benefit-card h3 {
    font-size: 25px;
    line-height: 1.1;
  }

  .bonus-card {
    min-height: 0;
    padding: 22px;
  }

  .bonus-note {
    max-width: 100%;
  }

  .bonus-card h3 {
    font-size: 29px;
    line-height: 1.02;
  }

  .proof-card {
    padding: 26px;
  }

  .proof-card h3 {
    font-size: 30px;
    line-height: 1.04;
  }

  .proof-card p {
    font-size: 18px;
    line-height: 1.62;
  }

  .proof-card .step-kicker {
    padding: 12px 13px;
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .proof-card .text-link {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: clamp(20px, 5.6vw, 24px);
  }

  .text-link {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .price-panel,
  .contact-panel {
    padding: 20px;
  }

  .contact-panel .contact-button {
    width: clamp(208px, 64%, 248px);
    min-height: 58px;
    font-size: 17px;
  }

  .contact-links {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: max(18px, env(safe-area-inset-left));
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(27, 26, 24, 0.1);
    border-radius: 13px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 10px 26px rgba(27, 26, 24, 0.12);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-sticky-cta .contact-button {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 620;
    box-shadow: none;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 360px) {
  :root {
    --page-pad: max(18px, env(safe-area-inset-left));
    --page-pad-r: max(18px, env(safe-area-inset-right));
  }

  .logo {
    font-size: 34px;
  }

  .logo-mark {
    width: 38px;
  }

  .header-contact-actions .contact-button {
    padding: 0 10px;
    font-size: 12px;
  }

  .trend-cta {
    max-width: 176px;
    padding: 0 9px;
    font-size: 11px;
  }

  h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
