﻿:root {
  --bg: #f8fbf8;
  --surface: #ffffff;
  --surface-strong: rgba(255, 255, 255, 0.86);
  --text: #090d0b;
  --muted: #66736b;
  --line: rgba(12, 36, 24, 0.12);
  --green: #19b84f;
  --green-dark: #063d27;
  --green-deep: #092f21;
  --lime: #7bdc6f;
  --neon: #55cf62;
  --ink: #050706;
  --cream: #fff4de;
  --cream-soft: #fff9ec;
  --shadow: 0 24px 70px rgba(4, 38, 24, 0.14);
  --shadow-strong: 0 36px 96px rgba(5, 33, 22, 0.24);
  --radius: 8px;
  --pill: 999px;
  --container: 1180px;
  --body-font: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-300.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-400.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-500.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-600.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-700.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-800.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/nunito/nunito-900.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(25, 184, 79, 0.08), transparent 34%),
    linear-gradient(245deg, rgba(5, 7, 6, 0.04), transparent 34%),
    var(--bg);
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.58;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

body.policy-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
p,
a,
button,
span,
strong,
small,
li {
  overflow-wrap: break-word;
}

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section-pad {
  padding: 86px 0;
}

.section-pad.compact {
  padding: 64px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: #fff;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(14, 44, 30, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 46px rgba(3, 30, 19, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  width: 232px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 10px 24px rgba(15, 80, 43, 0.12));
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, var(--ink), var(--green-dark) 54%, var(--neon));
  box-shadow: 0 12px 34px rgba(7, 139, 69, 0.28);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.brand-copy strong span {
  color: var(--green);
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: #1f2c26;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--ink), var(--green), var(--neon));
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg,
.btn svg,
.floating-call svg,
.icon-box svg,
.messenger-icon svg,
.contact-item svg,
.float-card svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--pill);
  padding: 0 20px;
  font-weight: 850;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.54) 45%, transparent 70%);
  transform: translateX(-110%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 58px rgba(16, 184, 63, 0.28),
    0 0 0 1px rgba(57, 255, 40, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  animation: buttonShine 1s ease;
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(135deg, #0b2619, #128a42 58%, #2fc45b);
  box-shadow:
    0 18px 42px rgba(18, 138, 66, 0.24),
    0 9px 18px rgba(18, 138, 66, 0.16),
    0 0 0 1px rgba(47, 196, 91, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.btn-light {
  min-height: 44px;
  color: var(--green-dark);
  border: 1px solid rgba(7, 139, 69, 0.26);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(8, 61, 39, 0.08);
}

.btn-outline {
  color: var(--green-dark);
  border: 1px solid rgba(8, 61, 39, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(9, 47, 33, 0.08);
}

.btn-xl {
  min-height: 58px;
  padding: 0 28px;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--green-dark);
  transition: transform 0.2s ease;
}

.menu-toggle span + span {
  margin-top: -10px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(9, 47, 33, 0.08);
  background:
    radial-gradient(circle at -2% 6%, #fff 0 48px, transparent 49px),
    radial-gradient(circle at 2% 52%, #fff 0 18px, transparent 19px),
    linear-gradient(95deg, var(--cream-soft) 0%, #fff4dd 42%, #e9f9ee 70%, #e3f5ee 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -7% -64px;
  z-index: -1;
  height: 138px;
  background:
    radial-gradient(58% 96% at 18% 72%, rgba(217, 186, 130, 0.42), transparent 68%),
    radial-gradient(46% 80% at 78% 60%, rgba(199, 165, 112, 0.34), transparent 72%),
    linear-gradient(180deg, transparent, rgba(231, 203, 154, 0.64));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  filter: blur(0.2px);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(9, 47, 33, 0.06) 1px, transparent 1.2px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to right, #000 0%, transparent 55%);
  opacity: 0.7;
}

.hero-kinetic {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-kinetic span {
  position: absolute;
  left: -18%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 40, 0.56), rgba(255, 255, 255, 0.8), transparent);
  filter: drop-shadow(0 0 14px rgba(57, 255, 40, 0.55));
  transform: rotate(-18deg);
  opacity: 0.64;
}

.hero-kinetic span:nth-child(1) {
  top: 21%;
}

.hero-kinetic span:nth-child(2) {
  top: 44%;
  animation-delay: -3.4s;
}

.hero-kinetic span:nth-child(3) {
  top: 68%;
  animation-delay: -6.8s;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1fr);
  align-items: center;
  gap: 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.lead-copy h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.04;
  font-family: var(--display-font);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: 56px;
  line-height: 1.02;
}

.hero h1 span,
.section-heading h2 span,
.lead-copy h2 span,
.footer-heading h2 span {
  color: var(--green);
}

.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  color: #26352d;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.messengers a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #22362c;
  font-weight: 800;
}

.messenger-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 12px 24px rgba(7, 139, 69, 0.24);
}

.flying-tags {
  position: relative;
  min-height: 44px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 24px;
  pointer-events: none;
}

.flying-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(57, 255, 40, 0.18);
  border-radius: var(--pill);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(16, 184, 63, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.flying-tags span:nth-child(1) {
  top: 7px;
}

.flying-tags span:nth-child(2) {
  top: 0;
}

.flying-tags span:nth-child(3) {
  top: 9px;
}

.flying-tags span:nth-child(4) {
  top: 1px;
}

.flying-tags span:nth-child(5) {
  top: 7px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual-mobile {
  display: none;
}

.mockup-scene {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
}

.mockup-glow {
  position: absolute;
  inset: 30px 0 16px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 70% 28%, rgba(25, 184, 79, 0.2), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(5, 7, 6, 0.11), transparent 34%);
  filter: blur(4px);
}

.device {
  position: absolute;
  overflow: hidden;
  border: 10px solid #080b09;
  border-radius: 18px;
  background: #f6fbf7;
  box-shadow:
    0 28px 74px rgba(5, 7, 6, 0.2),
    0 10px 24px rgba(25, 184, 79, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.device::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 34%);
  pointer-events: none;
}

.desktop-device {
  top: 76px;
  right: 0;
  width: min(100%, 570px);
  height: 330px;
  border-bottom-width: 18px;
}

.phone-device {
  left: 28px;
  top: 162px;
  width: 158px;
  height: 270px;
  border-width: 8px;
  border-radius: 22px;
  z-index: 3;
}

.device-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: #ffffff;
  border-bottom: 1px solid rgba(9, 47, 33, 0.08);
}

.device-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #86d979;
}

.device img {
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
  object-position: top center;
}

.profit-badge {
  position: absolute;
  top: 62px;
  right: 28px;
  z-index: 4;
  min-width: 158px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 56px rgba(5, 7, 6, 0.13);
}

.profit-badge svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.profit-badge span {
  color: #4f5f55;
  font-size: 12px;
  font-weight: 800;
}

.profit-badge strong {
  font-size: 34px;
  line-height: 1;
}

.briefcase-badge {
  position: absolute;
  top: 34px;
  right: 184px;
  z-index: 5;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #1ac85b, #109e43);
  box-shadow: 0 22px 46px rgba(18, 138, 66, 0.26);
}

.briefcase-badge svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.soft-sand {
  position: absolute;
  left: -30px;
  right: -80px;
  bottom: 12px;
  height: 104px;
  z-index: 4;
  border-radius: 50% 50% 0 0 / 78% 78% 0 0;
  background:
    radial-gradient(46% 80% at 25% 24%, rgba(255, 255, 255, 0.7), transparent 62%),
    linear-gradient(180deg, #fff4dc, #e8c997);
  box-shadow: 0 -18px 38px rgba(214, 181, 127, 0.18);
}

.visual-shell {
  position: absolute;
  inset: 58px 34px 54px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54)),
    linear-gradient(135deg, rgba(57, 255, 40, 0.18), rgba(5, 7, 6, 0.12));
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transform-style: preserve-3d;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.76) 36%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(7, 139, 69, 0.05) 0 1px, transparent 1px 28px);
  transform: translateX(-70%);
}

.visual-topline {
  position: absolute;
  top: 22px;
  left: 24px;
  display: flex;
  gap: 8px;
}

.visual-topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0.72;
}

.visual-screen {
  position: absolute;
  inset: 62px 28px 28px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 7, 6, 0.98), rgba(9, 47, 33, 0.96) 58%, rgba(5, 7, 6, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.visual-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent, rgba(43, 214, 111, 0.15), transparent),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05), transparent 38%);
  pointer-events: none;
}

.screen-header,
.screen-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.screen-header small,
.screen-stats small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.screen-header strong {
  font-size: 24px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9ffe8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px var(--lime);
}

.growth-chart {
  position: relative;
  z-index: 1;
  height: 210px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 14px;
  margin: 44px 0 28px;
}

.growth-chart span {
  display: block;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(180deg, #baffaa, var(--neon) 36%, var(--green) 78%, #082215);
  box-shadow: 0 0 38px rgba(43, 214, 111, 0.24);
}

.screen-stats div {
  min-width: 0;
  flex: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.screen-stats strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

.float-card {
  position: absolute;
  z-index: 4;
  width: 222px;
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.float-card svg {
  width: 27px;
  height: 27px;
  color: var(--green);
}

.float-card span {
  color: #445149;
  font-size: 13px;
  font-weight: 800;
}

.float-card strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.float-card-a {
  top: 34px;
  right: 0;
}

.float-card-b {
  right: 22px;
  bottom: 44px;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: tickerMove 28s linear infinite;
}

.ticker span {
  padding: 10px 18px;
  border: 1px solid rgba(9, 47, 33, 0.1);
  border-radius: 999px;
  color: #345143;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(5, 33, 22, 0.06);
  font-weight: 850;
}

.plans-section {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  padding: 78px 0 42px;
  background: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
}

.plan-card {
  position: relative;
  min-height: 318px;
  display: grid;
  align-content: start;
  padding: 42px 34px 34px;
  border: 1px solid rgba(9, 47, 33, 0.16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 7, 6, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 184, 79, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.plan-card:hover {
  transform: translateY(-7px);
  border-color: rgba(25, 184, 79, 0.38);
  box-shadow: 0 34px 86px rgba(5, 7, 6, 0.12);
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-hit {
  border-color: var(--green);
  box-shadow: 0 28px 82px rgba(16, 158, 67, 0.13);
}

.plan-label {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-hit .plan-label {
  color: #0d7e38;
}

.plan-card h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-family: var(--display-font);
  font-size: 23px;
  line-height: 1.15;
  overflow-wrap: normal;
}

.plan-line {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 2px;
  margin: 26px 0 20px;
  background: var(--green);
}

.plan-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--display-font);
  font-size: 32px;
  line-height: 1;
}

.plan-card a {
  position: relative;
  z-index: 1;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 26px;
  border-radius: var(--pill);
  color: #0d6dcf;
  background: #f5f6f5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.plan-card a:hover,
.plan-card a:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #0b2619, #19b84f);
  box-shadow: 0 16px 34px rgba(25, 184, 79, 0.22);
}

.plan-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #7a837e;
  font-size: 15px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-size: 40px;
}

.section-subtitle {
  max-width: 650px;
  margin: 16px auto 0;
  color: #596a61;
  font-size: 17px;
  line-height: 1.5;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.service-card,
.benefit-card,
.case-card,
.process-step,
.contact-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(6, 61, 39, 0.06);
  overflow: hidden;
}

.info-card::before,
.service-card::before,
.benefit-card::before,
.case-card::before,
.process-step::before,
.contact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(57, 255, 40, 0.1), rgba(5, 7, 6, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.info-card:hover::before,
.service-card:hover::before,
.benefit-card:hover::before,
.case-card:hover::before,
.process-step:hover::before,
.contact-item:hover::before {
  opacity: 1;
}

.info-card,
.service-card,
.benefit-card {
  min-height: 210px;
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.service-card:hover,
.benefit-card:hover,
.case-card:hover,
.contact-item:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 139, 69, 0.26);
  box-shadow: 0 26px 70px rgba(6, 61, 39, 0.12);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(7, 139, 69, 0.1);
  box-shadow: inset 0 0 0 1px rgba(7, 139, 69, 0.12);
}

.icon-box.glow {
  color: var(--green);
  background: rgba(57, 255, 40, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(57, 255, 40, 0.18),
    0 14px 32px rgba(16, 184, 63, 0.12);
}

.info-card h3,
.service-card h3,
.benefit-card h3,
.case-content h3,
.process-step h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.info-card p,
.service-card p,
.benefit-card p,
.case-content p,
.process-step p,
.lead-copy p,
.form-note,
.form-status {
  color: var(--muted);
}

.info-card p,
.service-card p,
.benefit-card p,
.process-step p {
  margin: 14px 0 0;
  font-size: 15px;
}

.solution-section,
.cases-section {
  position: relative;
}

.solution-section::before,
.cases-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 40, 0.28), rgba(5, 7, 6, 0.18), transparent);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  counter-reset: case-card;
}

.case-card {
  counter-increment: case-card;
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-color: rgba(14, 82, 48, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 249, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 74px rgba(6, 61, 39, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
  animation: none !important;
}

.case-card::before {
  z-index: 2;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.48), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(30, 191, 86, 0.12), transparent 32%);
}

.case-card::after {
  content: "0" counter(case-card);
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  color: rgba(6, 61, 39, 0.13);
  font-family: var(--display-font);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 139, 69, 0.24);
  box-shadow:
    0 36px 92px rgba(6, 61, 39, 0.16),
    0 18px 42px rgba(20, 185, 87, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.case-media {
  position: relative;
  height: 190px;
  min-height: 190px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(8, 56, 35, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 12%, rgba(20, 185, 87, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, #ecf7f1);
  box-shadow:
    0 16px 34px rgba(6, 61, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  isolation: isolate;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 24, 15, 0.02), transparent 54%, rgba(4, 24, 15, 0.2)),
    linear-gradient(120deg, transparent 8%, rgba(255, 255, 255, 0.44) 34%, transparent 56%);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.case-card:hover .case-media::after {
  opacity: 1;
  animation: imageSweep 1.05s ease;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.cases-grid .case-card:nth-child(2) .case-media img,
.cases-grid .case-card:nth-child(4) .case-media img,
.cases-grid .case-card:nth-child(5) .case-media img,
.cases-grid .case-card:nth-child(6) .case-media img {
  object-position: top center;
}

.case-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04);
}

.case-media.is-error::before {
  content: "Превью проекта";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-weight: 900;
}

.case-media.is-error img {
  opacity: 0;
}

.case-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
}

.case-kicker {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(25, 184, 79, 0.34);
  border-radius: 999px;
  color: var(--green);
  background:
    linear-gradient(180deg, rgba(25, 184, 79, 0.1), rgba(25, 184, 79, 0.045)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 10px 22px rgba(25, 184, 79, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.case-content h3 {
  margin-top: 13px;
  color: #07130d;
  font-size: 21px;
  line-height: 1.12;
}

.case-content p {
  margin: 11px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(57, 255, 40, 0.62), var(--green));
  opacity: 0.26;
}

.process-step {
  min-height: 230px;
  padding: 84px 22px 24px;
  text-align: center;
  overflow: visible;
}

.process-step span {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(7, 139, 69, 0.26), 0 0 0 8px rgba(7, 139, 69, 0.08);
  font-weight: 900;
}

.lead-section {
  padding-top: 42px;
}

.lead-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 44px;
  align-items: center;
  padding: 50px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 139, 69, 0.3), transparent 24%),
    linear-gradient(235deg, rgba(57, 255, 40, 0.16), transparent 28%),
    linear-gradient(145deg, #050706, #0c3323 55%, #050706);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.lead-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px),
    linear-gradient(110deg, transparent, rgba(43, 214, 111, 0.12), transparent);
  opacity: 0.82;
}

.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-copy h2 {
  max-width: 720px;
  font-size: 38px;
}

.lead-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form .form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-form label span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.lead-form input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0 16px;
  color: #fff;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.lead-form input:focus {
  border-color: rgba(43, 214, 111, 0.72);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 4px rgba(43, 214, 111, 0.12);
}

.lead-form .consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.lead-form .consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--green);
  box-shadow: none;
}

.lead-form .consent-check span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 12px;
}

.lead-form .form-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.lead-form .inline-policy-link {
  color: #ffd56a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-shadow: 0 0 18px rgba(255, 213, 106, 0.22);
}

.lead-form .inline-policy-link:hover,
.lead-form .inline-policy-link:focus-visible {
  color: #fff2b8;
}

.form-status {
  min-height: 18px;
  color: #d9ffe8;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0 26px;
  background: #fff;
  border-top: 1px solid rgba(9, 47, 33, 0.08);
}

.footer-heading {
  margin-bottom: 26px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.contact-item {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  font-size: 13px;
  font-weight: 900;
}

.contact-item strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-item small {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(9, 47, 33, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--green-dark);
  font-weight: 900;
}

.floating-call {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 22px 56px rgba(7, 139, 69, 0.34), 0 0 0 10px rgba(7, 139, 69, 0.12);
  transition: transform 0.22s ease;
}

.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-4px) scale(1.03);
}

.floating-call svg {
  width: 27px;
  height: 27px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 43;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 184, 79, 0.28);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #20bd55, #087f3a);
  box-shadow:
    0 24px 62px rgba(5, 33, 22, 0.18),
    0 0 0 10px rgba(25, 184, 79, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-5px);
  box-shadow:
    0 30px 74px rgba(5, 33, 22, 0.22),
    0 0 0 12px rgba(25, 184, 79, 0.12);
}

.back-to-top svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  transform: rotate(-90deg);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links button,
.inline-policy-link,
.cookie-link {
  padding: 0;
  border: 0;
  color: var(--green-dark);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible,
.inline-policy-link:hover,
.inline-policy-link:focus-visible,
.cookie-link:hover,
.cookie-link:focus-visible {
  color: var(--green);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: min(100% - 32px, 980px);
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  padding: 16px 18px 16px 24px;
  border: 1px solid rgba(9, 47, 33, 0.14);
  border-radius: 18px;
  color: #68736d;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 58px rgba(5, 33, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
  animation: cookieIn 0.35s ease both;
}

.cookie-copy p {
  margin: 0;
  color: #69736e;
  font-size: 15px;
  line-height: 1.42;
}

.cookie-copy button {
  padding: 0;
  border: 0;
  color: #139648;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions .btn {
  min-width: 150px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  white-space: nowrap;
  font-size: 15px;
}

.cookie-actions .cookie-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(9, 47, 33, 0.14);
  box-shadow: none;
}

.cookie-link {
  min-height: 46px;
  padding: 0 8px;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.policy-modal[hidden] {
  display: none;
}

.policy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 6, 0.54);
  backdrop-filter: blur(12px);
}

.policy-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-height: min(86vh, 860px);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 30px;
  border: 1px solid rgba(25, 184, 79, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 8%, rgba(25, 184, 79, 0.12), transparent 22%),
    #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.32);
}

.policy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(9, 47, 33, 0.12);
  border-radius: 50%;
  color: #10251a;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.policy-dialog h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display-font);
  font-size: 34px;
  line-height: 1.08;
}

.policy-date {
  margin: 10px 0 18px;
  color: #68756e;
  font-size: 14px;
}

.policy-content {
  overflow: auto;
  padding-right: 8px;
}

.policy-content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.policy-content h3:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0;
  color: #526159;
  line-height: 1.55;
}

.policy-content a {
  color: var(--green-dark);
  font-weight: 900;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.policy-actions .btn {
  min-height: 50px;
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal.is-visible {
  animation: revealSoft 0.55s ease both;
}

@keyframes buttonShine {
  to {
    transform: translateX(110%);
  }
}

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

@keyframes imageSweep {
  to {
    transform: translateX(100%);
  }
}

@keyframes lightRail {
  0% {
    transform: translateX(-20vw) rotate(-18deg);
    opacity: 0;
  }
  16%,
  78% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(142vw) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes revealSoft {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tagDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes cardBreath {
  0%,
  100% {
    box-shadow: 0 14px 40px rgba(6, 61, 39, 0.06);
  }
  50% {
    box-shadow: 0 20px 52px rgba(16, 184, 63, 0.11);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: premiumFlow 11s ease-in-out infinite alternate;
  }

  .hero-kinetic span {
    animation: lightRail 8.5s linear infinite;
  }

  .visual-shell::before {
    animation: visualSweep 5.6s ease-in-out infinite;
  }

  .float-card-a {
    animation: cardFloat 6.8s ease-in-out infinite;
  }

  .float-card-b {
    animation: cardFloat 7.6s ease-in-out infinite reverse;
  }

  .growth-chart span {
    animation: barGlow 2.8s ease-in-out infinite alternate;
  }

  .flying-tags span {
    animation: tagDrift 5.4s ease-in-out infinite;
  }

  .flying-tags span:nth-child(2) {
    animation-delay: -1.4s;
  }

  .flying-tags span:nth-child(3) {
    animation-delay: -2.6s;
  }

  .flying-tags span:nth-child(4) {
    animation-delay: -3.8s;
  }

  .info-card,
  .service-card,
  .benefit-card,
  .case-card,
  .process-step,
  .plan-card {
    animation: cardBreath 7.5s ease-in-out infinite;
  }

  .service-card,
  .process-step:nth-child(even),
  .case-card:nth-child(even),
  .plan-card:nth-child(even) {
    animation-delay: -2.2s;
  }

  .floating-call {
    animation: callPulse 2.4s ease-in-out infinite;
  }
}

@keyframes premiumFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes visualSweep {
  0%,
  46% {
    transform: translateX(-78%);
  }
  100% {
    transform: translateX(78%);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes barGlow {
  from {
    filter: brightness(0.96);
  }
  to {
    filter: brightness(1.16);
  }
}

@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 22px 56px rgba(7, 139, 69, 0.34), 0 0 0 10px rgba(7, 139, 69, 0.12);
  }
  50% {
    box-shadow: 0 26px 64px rgba(7, 139, 69, 0.42), 0 0 0 15px rgba(57, 255, 40, 0.12);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 34px;
  }

  .hero h1 {
    font-size: 54px;
  }

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

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

@media (max-width: 940px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(9, 47, 33, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .main-nav a:hover {
    background: rgba(7, 139, 69, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .btn-light {
    display: none;
  }

  .phone-link {
    font-size: 0;
  }

  .phone-link svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 19px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .mockup-scene {
    min-height: 470px;
  }

  .visual-shell {
    inset: 34px 64px 42px 0;
  }

  .float-card-a {
    right: 0;
  }

  .float-card-b {
    right: 22px;
  }

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

  .process-line::before {
    display: none;
  }

  .lead-panel {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}

@media (max-width: 680px) {
  .section-pad,
  .section-pad.compact {
    padding: 54px 0;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    font-size: 11px;
  }

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

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions,
  .messengers {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .messengers a {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .mockup-scene {
    min-height: 420px;
  }

  .desktop-device {
    top: 44px;
    width: 92%;
    height: 238px;
    border-width: 8px;
    border-bottom-width: 14px;
    border-radius: 16px;
  }

  .phone-device {
    left: 6px;
    top: 128px;
    width: 118px;
    height: 210px;
    border-width: 7px;
  }

  .profit-badge {
    top: 18px;
    right: 4px;
    min-width: 132px;
    padding: 14px;
    border-radius: 16px;
  }

  .profit-badge strong {
    font-size: 26px;
  }

  .briefcase-badge {
    width: 62px;
    height: 62px;
    top: 0;
    right: 138px;
    border-radius: 14px;
  }

  .briefcase-badge svg {
    width: 30px;
    height: 30px;
  }

  .soft-sand {
    left: -18px;
    right: -18px;
    bottom: 20px;
    height: 86px;
  }

  .visual-shell {
    inset: 26px 0 54px;
    border-radius: 20px;
  }

  .visual-screen {
    inset: 56px 18px 18px;
    padding: 18px;
  }

  .screen-header strong {
    font-size: 21px;
  }

  .growth-chart {
    height: 160px;
    gap: 10px;
    margin: 34px 0 20px;
  }

  .screen-stats {
    gap: 10px;
  }

  .screen-stats div {
    padding: 12px;
  }

  .screen-stats strong {
    font-size: 22px;
  }

  .float-card {
    width: 178px;
    min-height: 108px;
    padding: 14px;
  }

  .float-card strong {
    font-size: 24px;
  }

  .float-card-a {
    top: 0;
  }

  .float-card-b {
    right: auto;
    left: 0;
    bottom: 6px;
  }

  .ticker {
    display: none;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .lead-copy h2 {
    font-size: 30px;
  }

  .card-grid.four,
  .cases-grid,
  .process-line,
  .contacts-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-section {
    padding: 54px 0 24px;
  }

  .plan-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .info-card,
  .service-card,
  .benefit-card {
    min-height: auto;
    padding: 22px;
  }

  .case-media,
  .case-media img {
    height: 190px;
  }

  .process-step {
    min-height: auto;
  }

  .lead-panel {
    padding: 24px;
    border-radius: 18px;
  }

  .lead-form {
    padding: 16px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-call {
    left: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 176px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-heading h2,
  .lead-copy h2 {
    font-size: 27px;
  }

  .btn-xl {
    padding: 0 16px;
  }

  .case-media,
  .case-media img {
    height: 170px;
  }
}

/* Premium upgrade pass */
.hero {
  min-height: 700px;
}

.hero::before {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
}

.hero h1 {
  max-width: 630px;
  font-size: 58px;
  line-height: 1.02;
}

.hero-text {
  max-width: 600px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 22px;
}

.hero-proof span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(25, 184, 79, 0.14);
  border-radius: 16px;
  color: #20352b;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 34px rgba(5, 7, 6, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.mockup-scene {
  min-height: 500px;
  perspective: 1200px;
}

.mockup-scene::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 3%;
  bottom: 72px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 42, 24, 0.14);
  filter: blur(22px);
}

.desktop-device {
  top: 64px;
  right: 0;
  z-index: 2;
  width: min(100%, 590px);
  height: 348px;
  transform: rotateY(-2deg) rotateX(1deg);
}

.phone-device {
  left: 0;
  bottom: 38px;
  z-index: 4;
  width: 168px;
  height: 296px;
  transform: rotateY(7deg) rotateZ(-1.2deg);
}

.device {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.device:hover {
  box-shadow:
    0 34px 88px rgba(5, 7, 6, 0.24),
    0 16px 34px rgba(25, 184, 79, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.desktop-device img,
.phone-device img {
  object-position: top center;
}

.site-orbit {
  position: absolute;
  z-index: 6;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--pill);
  color: #0e4a27;
  border: 1px solid rgba(25, 184, 79, 0.2);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(5, 7, 6, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-orbit-a {
  top: 48px;
  left: 142px;
}

.site-orbit-b {
  right: 18px;
  bottom: 100px;
}

.site-orbit-c {
  left: 182px;
  bottom: 58px;
}

.hero-call-card {
  position: absolute;
  right: 46px;
  bottom: 20px;
  z-index: 8;
  width: 224px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 62px rgba(5, 7, 6, 0.16);
}

.hero-call-card svg {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0b5a2b, #1db954);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.hero-call-card span {
  color: #5c6c63;
  font-size: 12px;
  font-weight: 800;
}

.hero-call-card strong {
  line-height: 1;
  font-size: 18px;
}

.mockup-note {
  position: absolute;
  left: 205px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #0d2618;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(5, 7, 6, 0.12);
}

.mockup-note span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-note strong {
  font-size: 16px;
}

.soft-sand,
.briefcase-badge,
.profit-badge,
.site-orbit {
  display: none;
}

.plans-section .section-heading {
  margin-bottom: 22px;
}

.included-section {
  background: #f4f6f4;
}

.included-section .section-heading {
  max-width: 860px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 38px;
  margin-top: 42px;
}

.included-item {
  position: relative;
  padding-left: 46px;
}

.included-item span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #20bd55, #0b7e39);
  box-shadow: 0 12px 28px rgba(25, 184, 79, 0.22);
}

.included-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.included-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.included-item p {
  margin: 14px 0 0;
  color: #838b86;
}

.included-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.reviews-section {
  background:
    radial-gradient(circle at 8% 92%, rgba(25, 184, 79, 0.1), transparent 26%),
    #f5f6f5;
}

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

.review-card {
  min-height: 300px;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(5, 7, 6, 0.07);
}

.review-large {
  grid-row: auto;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.review-top strong {
  font-family: var(--display-font);
  font-size: 22px;
  line-height: 1.2;
}

.review-top a {
  color: #0b78d0;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: #747d78;
  font-size: 17px;
  line-height: 1.6;
}

.review-card span {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: #f4f5f4;
}

.faq-section::before,
.faq-section::after {
  content: "?";
  position: absolute;
  z-index: 0;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display-font);
  font-size: 94px;
  font-weight: 900;
}

.faq-section::before {
  left: -62px;
  top: 110px;
  background: #1db954;
}

.faq-section::after {
  right: -70px;
  bottom: 84px;
  background: #0d6dcf;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 7, 6, 0.94), rgba(7, 57, 34, 0.94)),
    var(--green-dark);
  box-shadow: var(--shadow-strong);
}

.faq-aside h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 36px;
  line-height: 1.05;
}

.faq-aside p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin: 18px 0 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(5, 7, 6, 0.05);
  overflow: hidden;
}

.faq-item summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 47, 33, 0.15);
  border-radius: 50%;
  color: var(--text);
  font-size: 28px;
  font-weight: 500;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #fff;
  background: var(--green);
}

.faq-item p {
  margin: -4px 26px 24px;
  color: #707b75;
  font-size: 16px;
}

.site-footer {
  padding-top: 72px;
  background:
    linear-gradient(180deg, #fff, #f7faf8);
}

.contacts-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(9, 47, 33, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(25, 184, 79, 0.16), transparent 34%),
    #fff;
  box-shadow: 0 30px 84px rgba(5, 7, 6, 0.08);
}

.contacts-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 44px;
  line-height: 1.05;
}

.contacts-copy h2 span {
  color: var(--green);
}

.contacts-copy p:not(.eyebrow) {
  max-width: 460px;
  color: #69766f;
  margin: 18px 0 28px;
  font-size: 17px;
}

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

.contact-item {
  min-height: 118px;
  border-radius: 18px;
}

.contact-item span {
  border-radius: 14px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.consultant-pill {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 42;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(9, 47, 33, 0.1);
  border-radius: var(--pill);
  color: #fff;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(5, 7, 6, 0.18);
  color: var(--text);
}

.consultant-pill span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.consultant-pill strong {
  font-size: 14px;
}

@keyframes heroScreenPan {
  from {
    object-position: top center;
  }
  to {
    object-position: center center;
  }
}

@keyframes heroPhonePan {
  from {
    object-position: top left;
  }
  to {
    object-position: center left;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .desktop-device {
    animation: deviceFloat 8.5s ease-in-out infinite;
  }

  .phone-device {
    animation: phoneFloat 7.2s ease-in-out infinite;
  }

  .consultant-pill {
    animation: consultantNudge 3.2s ease-in-out infinite;
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: rotateY(-2deg) rotateX(1deg) translateY(0);
  }
  50% {
    transform: rotateY(-1deg) rotateX(1.4deg) translateY(-8px);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotateY(7deg) rotateZ(-1.2deg) translateY(0);
  }
  50% {
    transform: rotateY(6deg) rotateZ(-1deg) translateY(8px);
  }
}

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

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

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

  .faq-layout,
  .contacts-panel {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 38px;
  }

  .included-grid,
  .reviews-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .flying-tags {
    display: none;
  }

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

  .messengers a {
    width: auto;
    min-height: 40px;
    gap: 7px;
    font-size: 12px;
  }

  .messenger-icon {
    width: 32px;
    height: 32px;
  }

  .desktop-device {
    top: 22px;
    right: 0;
    width: 94%;
    height: 236px;
  }

  .phone-device {
    top: 110px;
    left: 0;
    width: 122px;
    height: 218px;
  }

  .site-orbit {
    display: none;
  }

  .hero-call-card {
    display: none;
  }

  .mockup-note {
    left: 132px;
    right: 0;
    bottom: 34px;
    padding: 12px 14px;
  }

  .mockup-note strong {
    font-size: 14px;
  }

  .included-section,
  .reviews-section,
  .faq-section {
    padding: 58px 0;
  }

  .included-item {
    padding: 22px 22px 22px 64px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(5, 7, 6, 0.05);
  }

  .included-item span {
    top: 24px;
    left: 22px;
  }

  .review-large {
    grid-row: auto;
  }

  .review-card,
  .contacts-panel,
  .faq-aside {
    padding: 24px;
    border-radius: 22px;
  }

  .faq-item summary {
    min-height: 72px;
    padding: 18px;
    font-size: 17px;
  }

  .contacts-copy h2 {
    font-size: 32px;
  }

  .consultant-pill {
    right: 14px;
    bottom: 88px;
    min-height: 52px;
    padding-right: 12px;
  }

  .consultant-pill strong {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

/* MegaGroup-style hero reset */
.hero.section-pad {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(9, 47, 33, 0.08);
  background:
    radial-gradient(circle at -1% 18%, #fff 0 52px, transparent 53px),
    radial-gradient(circle at 2% 54%, #fff 0 18px, transparent 19px),
    linear-gradient(95deg, #fff4dd 0%, #fff5df 43%, #ebf8ed 69%, #dcf7f0 100%);
}

.hero::before,
.hero::after,
.hero-grid-bg,
.hero-kinetic,
.hero .messengers,
.hero .flying-tags,
.hero .hero-proof,
.hero .ticker {
  display: none !important;
}

.hero-layout {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(390px, 0.43fr) minmax(570px, 0.57fr);
  gap: 0;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 0 40px;
}

.hero .eyebrow {
  margin-bottom: 12px;
  color: #14b957;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 570px;
  color: #050706;
  font-family: var(--display-font);
  font-size: clamp(38px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin-top: 16px;
  color: #202b24;
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 30px;
}

.hero .btn-primary {
  min-width: 192px;
  min-height: 64px;
  justify-content: center;
  border-radius: 34px;
  box-shadow:
    0 18px 34px rgba(20, 185, 87, 0.26),
    0 8px 18px rgba(6, 61, 39, 0.14);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  height: 430px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 -22vw 0 8%;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 24%, rgba(113, 231, 121, 0.26), transparent 24%),
    radial-gradient(circle at 38% 62%, rgba(255, 244, 221, 0.54), transparent 34%),
    linear-gradient(90deg, rgba(235, 248, 237, 0.18), rgba(203, 247, 239, 0.9));
}

.mockup-scene {
  position: relative;
  z-index: 1;
  height: 430px;
  min-height: 430px;
  perspective: none;
  transform: none !important;
}

.mockup-scene::after,
.mockup-note {
  display: none !important;
}

.mockup-glow {
  position: absolute;
  inset: 56px 0 42px 5%;
  z-index: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 62% 40%, rgba(20, 185, 87, 0.2), transparent 36%),
    radial-gradient(circle at 42% 72%, rgba(6, 61, 39, 0.13), transparent 34%);
  filter: blur(20px);
  opacity: 0.9;
}

.hero-visual-chip {
  position: absolute;
  top: 54px;
  right: 120px;
  z-index: 6;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #21c85c, #0c8f43);
  box-shadow:
    0 22px 44px rgba(20, 185, 87, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-visual-chip svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.hero .device {
  border-color: #050706;
  background: #f9fbf8;
  box-shadow:
    0 24px 54px rgba(5, 7, 6, 0.22),
    0 10px 22px rgba(20, 185, 87, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: none !important;
}

.hero .device:hover {
  box-shadow:
    0 30px 68px rgba(5, 7, 6, 0.25),
    0 14px 30px rgba(20, 185, 87, 0.12);
}

.hero .device-bar {
  height: 24px;
  gap: 7px;
  padding: 0 12px;
  background: #fff;
}

.hero .device-bar span {
  width: 7px;
  height: 7px;
  background: #9de28e;
}

.hero .device img {
  height: calc(100% - 24px);
}

.desktop-device {
  top: 72px;
  right: 0;
  z-index: 2;
  width: min(94%, 610px);
  height: 294px;
  border-width: 8px;
  border-bottom-width: 12px;
  border-radius: 16px;
  transform: none !important;
}

.phone-device {
  top: 136px;
  left: 36px;
  z-index: 4;
  width: 126px;
  height: 238px;
  border-width: 7px;
  border-radius: 22px;
  transform: none !important;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(340px, 0.45fr) minmax(500px, 0.55fr);
  }

  .hero h1 {
    font-size: 40px;
  }

  .desktop-device {
    width: min(96%, 550px);
    height: 278px;
  }

  .phone-device {
    left: 4px;
  }
}

@media (max-width: 820px) {
  .hero.section-pad {
    min-height: auto;
    padding: 38px 0 28px;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.06;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 318px;
    height: 318px;
  }

  .hero-visual::before {
    inset: 0 -20px;
    border-radius: 26px;
  }

  .mockup-scene {
    min-height: 318px;
    height: 318px;
  }

  .mockup-glow {
    inset: 42px 0 28px;
  }

  .hero-visual-chip {
    top: 18px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .hero-visual-chip svg {
    width: 28px;
    height: 28px;
  }

  .desktop-device {
    top: 34px;
    right: 0;
    width: 92%;
    height: 184px;
    border-width: 7px;
    border-bottom-width: 10px;
  }

  .phone-device {
    top: 118px;
    left: 0;
    width: 92px;
    height: 174px;
    border-width: 6px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-visual {
    height: 292px;
    min-height: 292px;
  }

  .mockup-scene {
    height: 292px;
    min-height: 292px;
  }

  .desktop-device {
    height: 168px;
  }

  .phone-device {
    top: 108px;
    width: 84px;
    height: 160px;
  }
}

/* Restored premium hero details and animated project showcase */
.hero.section-pad {
  min-height: 670px;
  align-items: flex-start;
}

.hero-layout {
  min-height: 610px;
  grid-template-columns: minmax(390px, 0.42fr) minmax(590px, 0.58fr);
}

.hero-copy {
  padding: 58px 0 104px;
}

.hero h1 {
  font-size: clamp(42px, 3.5vw, 54px);
}

.hero-text {
  max-width: 590px;
}

.hero-actions {
  align-items: center;
}

.hero .btn-outline {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(5, 7, 6, 0.08);
}

.hero .messengers {
  display: flex !important;
  max-width: 560px;
  gap: 20px;
  margin-top: 26px;
}

.hero .messengers a {
  min-height: 40px;
  color: #20352b;
  font-size: 16px;
}

.hero .flying-tags {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  min-height: 32px;
  height: auto;
  margin-top: 18px;
}

.hero .flying-tags span {
  position: static;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  animation: heroTagFloat 5.8s ease-in-out infinite;
}

.hero .flying-tags span:nth-child(2) {
  animation-delay: -1.4s;
}

.hero .flying-tags span:nth-child(3) {
  animation-delay: -2.6s;
}

.hero .flying-tags span:nth-child(4) {
  animation-delay: -3.8s;
}

.hero .flying-tags span:nth-child(5) {
  animation-delay: -4.8s;
}

.hero .hero-proof {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 20px;
}

.hero .hero-proof span {
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(5, 7, 6, 0.06);
}

.hero-visual {
  min-height: 610px;
  height: 610px;
}

.hero-visual::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(113, 231, 121, 0.22), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(255, 244, 221, 0.58), transparent 34%),
    linear-gradient(90deg, rgba(235, 248, 237, 0.18), rgba(203, 247, 239, 0.9));
}

.mockup-scene {
  height: 610px;
  min-height: 610px;
}

.mockup-glow {
  inset: 82px 0 110px 5%;
  animation: premiumGlow 7s ease-in-out infinite alternate;
}

.hero-visual-chip {
  top: 82px;
  right: 110px;
  animation: premiumFloat 5.8s ease-in-out infinite;
}

.desktop-device {
  top: 118px;
  right: 0;
  width: min(96%, 628px);
  height: 314px;
}

.phone-device {
  top: 198px;
  left: 30px;
  width: 132px;
  height: 244px;
}

.hero-call-card {
  right: 40px;
  bottom: 146px;
  z-index: 7;
  display: grid !important;
  animation: premiumFloat 6.6s ease-in-out infinite reverse;
}

.soft-sand {
  left: 116px;
  right: -8px;
  bottom: 86px;
  z-index: 1;
  display: block !important;
  height: 72px;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 56% 48%, rgba(8, 54, 35, 0.18), transparent 56%),
    radial-gradient(ellipse at 74% 34%, rgba(62, 212, 93, 0.16), transparent 46%),
    radial-gradient(ellipse at 38% 60%, rgba(255, 255, 255, 0.42), transparent 52%);
  box-shadow: none;
  opacity: 0.82;
  filter: blur(8px);
  transform: perspective(720px) rotateX(64deg);
  transform-origin: center;
}

.soft-sand::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10px;
  height: 22px;
  border-radius: 999px;
  background: rgba(5, 49, 31, 0.2);
  filter: blur(18px);
}

.soft-sand::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), rgba(81, 226, 111, 0.28), transparent);
  box-shadow: 0 0 18px rgba(81, 226, 111, 0.18);
  opacity: 0.58;
}

.hero .hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 6;
  display: block !important;
  padding: 10px 0;
  border: 0;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero .hero-ticker .ticker-track {
  gap: 12px;
  animation-duration: 32s;
}

.hero .hero-ticker span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-color: rgba(25, 184, 79, 0.16);
  color: #244236;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 16px 34px rgba(5, 33, 22, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.hero .hero-ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20bd55, #0b7e39);
  box-shadow: 0 0 18px rgba(32, 189, 85, 0.42);
}

.project-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.1fr);
  gap: 34px;
  align-items: center;
  margin: 0 0 28px;
  padding: 34px;
  border: 1px solid rgba(9, 47, 33, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 20%, rgba(25, 184, 79, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(5, 7, 6, 0.96), rgba(8, 52, 34, 0.94));
  box-shadow: 0 36px 110px rgba(5, 33, 22, 0.18);
  overflow: hidden;
  transform-style: preserve-3d;
}

.project-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.1) 36%, transparent 56%),
    radial-gradient(circle at 8% 92%, rgba(25, 184, 79, 0.18), transparent 22%);
  pointer-events: none;
  animation: showcaseShimmer 8s ease-in-out infinite;
}

.project-showcase-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}

.project-showcase-copy .eyebrow {
  color: #65d879;
}

.project-showcase-copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display-font);
  font-size: 34px;
  line-height: 1.12;
}

.project-showcase-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.project-motion {
  position: relative;
  z-index: 2;
  min-height: 360px;
}

.project-aura {
  position: absolute;
  inset: 28px 0;
  border-radius: 46px;
  background:
    radial-gradient(circle at 64% 34%, rgba(25, 184, 79, 0.35), transparent 32%),
    radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.18), transparent 28%);
  filter: blur(28px);
  animation: premiumGlow 6.4s ease-in-out infinite alternate;
}

.project-screen {
  position: absolute;
  overflow: hidden;
  border: 7px solid #050706;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.project-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.3) 38%, transparent 58%);
  transform: translateX(-120%);
  animation: projectScreenSweep 5.8s ease-in-out infinite;
}

.project-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-screen-main {
  top: 38px;
  right: 8px;
  z-index: 3;
  width: 72%;
  height: 250px;
  animation: projectMainFloat 7s ease-in-out infinite;
}

.project-screen-left,
.project-screen-right {
  z-index: 2;
  width: 42%;
  height: 162px;
  opacity: 0.92;
  filter: saturate(0.9);
}

.project-screen-left {
  left: 2px;
  bottom: 30px;
  transform: rotate(-4deg);
  animation: projectSideFloat 7.6s ease-in-out infinite;
}

.project-screen-right {
  right: 32px;
  bottom: 0;
  transform: rotate(4deg);
  animation: projectSideFloat 7.2s ease-in-out infinite reverse;
}

.project-scan {
  position: absolute;
  top: 26px;
  right: 18px;
  z-index: 5;
  width: 2px;
  height: 280px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(88, 230, 117, 0.9), transparent);
  box-shadow: 0 0 26px rgba(88, 230, 117, 0.75);
  animation: projectScan 4.8s ease-in-out infinite;
}

.project-stat {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 6;
  min-width: 146px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.project-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-stat strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display-font);
  font-size: 28px;
  line-height: 1;
}

.case-card {
  will-change: transform;
}

.cases-grid .case-card:nth-child(odd) {
  animation: caseBreath 8.5s ease-in-out infinite;
}

.cases-grid .case-card:nth-child(even) {
  animation: caseBreath 9.2s ease-in-out infinite reverse;
}

@keyframes premiumFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes premiumGlow {
  from {
    opacity: 0.62;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes heroTagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes showcaseShimmer {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-4%);
  }
  50% {
    opacity: 0.95;
    transform: translateX(4%);
  }
}

@keyframes projectMainFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes projectSideFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes projectScreenSweep {
  0%,
  30% {
    transform: translateX(-120%);
  }
  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes projectScan {
  0%,
  100% {
    transform: translateX(-310px);
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
}

@keyframes caseBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1120px) {
  .hero.section-pad {
    min-height: 720px;
  }

  .hero-layout {
    min-height: 660px;
    grid-template-columns: minmax(340px, 0.45fr) minmax(500px, 0.55fr);
  }

  .hero .hero-proof {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero .hero-proof span {
    min-height: 48px;
  }

  .desktop-device {
    width: min(96%, 560px);
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero.section-pad {
    padding: 38px 0 78px;
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .hero .messengers {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero .flying-tags {
    height: auto;
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero .flying-tags span {
    position: static;
  }

  .hero .hero-proof {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 16px;
  }

  .hero .hero-proof span {
    min-height: 48px;
  }

  .hero-visual {
    height: 366px;
    min-height: 366px;
  }

  .mockup-scene {
    height: 366px;
    min-height: 366px;
  }

  .desktop-device {
    top: 34px;
    width: 92%;
    height: 184px;
  }

  .phone-device {
    top: 118px;
    width: 92px;
    height: 174px;
  }

  .hero-visual-chip {
    top: 18px;
    right: 28px;
  }

  .hero-call-card {
    right: 16px;
    bottom: 42px;
    width: 196px;
  }

  .soft-sand {
    left: 50px;
    right: -8px;
    bottom: 44px;
    height: 56px;
  }

  .hero .hero-ticker {
    bottom: 18px;
    padding: 8px 0;
  }

  .hero .hero-ticker span {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
  }

  .project-showcase {
    padding: 24px;
    border-radius: 24px;
  }

  .project-showcase-copy h3 {
    font-size: 28px;
  }

  .project-motion {
    min-height: 300px;
  }

  .project-screen-main {
    width: 86%;
    height: 190px;
  }

  .project-screen-left,
  .project-screen-right {
    width: 48%;
    height: 118px;
  }

  .project-stat {
    min-width: 118px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-visual {
    height: 340px;
    min-height: 340px;
  }

  .mockup-scene {
    height: 340px;
    min-height: 340px;
  }

  .hero-call-card {
    width: 176px;
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .hero-call-card strong {
    font-size: 16px;
  }

  .soft-sand {
    left: 42px;
    right: -10px;
    bottom: 38px;
    height: 50px;
  }

  .project-showcase {
    padding: 20px;
  }

  .project-motion {
    min-height: 272px;
  }

  .project-screen-main {
    top: 42px;
    height: 162px;
  }

  .project-screen-left,
  .project-screen-right {
    height: 96px;
  }
}

/* Premium pricing section */
.plans-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
  background:
    radial-gradient(circle at 12% 22%, rgba(25, 184, 79, 0.08), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(6, 61, 39, 0.08), transparent 24%),
    linear-gradient(180deg, #fff, #f7faf7);
}

.plans-section::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 184, 79, 0.32), transparent);
}

.plans-section .section-heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.plans-section .section-heading h2 {
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.05;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  min-height: 646px;
  display: flex;
  flex-direction: column;
  padding: 34px 24px 24px;
  border: 1px solid rgba(10, 123, 60, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 80% 6%, rgba(25, 184, 79, 0.1), transparent 28%);
  box-shadow:
    0 28px 84px rgba(5, 33, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(25, 184, 79, 0.16), transparent 36%, rgba(255, 255, 255, 0.72));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -18px;
  height: 34px;
  border-radius: 999px;
  background: rgba(5, 49, 31, 0.12);
  filter: blur(22px);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.pricing-card:hover {
  transform: translateY(-9px);
  border-color: rgba(25, 184, 79, 0.56);
  box-shadow:
    0 38px 104px rgba(5, 33, 22, 0.14),
    0 16px 36px rgba(25, 184, 79, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card:hover::before,
.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card-featured {
  border-color: rgba(25, 184, 79, 0.7);
  box-shadow:
    0 34px 100px rgba(25, 184, 79, 0.14),
    0 18px 44px rgba(5, 33, 22, 0.08);
}

.pricing-card-subscription {
  border-color: rgba(9, 47, 33, 0.18);
}

.price-badge {
  position: absolute;
  top: -22px;
  left: 42px;
  z-index: 3;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(25, 184, 79, 0.36);
  border-radius: 999px;
  color: #0a8f40;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(5, 33, 22, 0.08);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.price-badge svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.price-badge span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 47, 33, 0.22);
  border-radius: 50%;
  color: #65736b;
  font-size: 13px;
  font-weight: 900;
}

.price-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.price-head > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #20bd55, #087f3a);
  box-shadow: 0 18px 38px rgba(25, 184, 79, 0.2);
}

.price-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.pricing-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display-font);
  font-size: 27px;
  line-height: 1.05;
}

.price-subtitle {
  position: relative;
  z-index: 2;
  min-height: 52px;
  margin: 12px 0 0;
  color: #68756e;
  font-size: 16px;
  line-height: 1.35;
}

.price-divider {
  position: relative;
  z-index: 2;
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, rgba(9, 47, 33, 0.15), transparent);
}

.price-features {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  min-height: 168px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #27382f;
  font-size: 15px;
  line-height: 1.25;
}

.price-features svg {
  width: 19px;
  height: 19px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  filter: drop-shadow(0 8px 16px rgba(25, 184, 79, 0.2));
}

.price-options {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 26px;
}

.price-option {
  position: relative;
  padding: 13px 14px;
  border: 1px solid rgba(9, 47, 33, 0.1);
  border-radius: 16px;
  background: rgba(247, 250, 247, 0.82);
}

.price-option.is-recommended {
  border-color: rgba(25, 184, 79, 0.36);
  background:
    linear-gradient(135deg, rgba(25, 184, 79, 0.11), rgba(255, 255, 255, 0.88)),
    #fff;
  box-shadow: inset 3px 0 0 var(--green);
}

.price-option span {
  display: block;
  color: #5e6c64;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-option strong {
  display: block;
  margin-top: 4px;
  color: #050706;
  font-family: var(--display-font);
  font-size: 21px;
  line-height: 1.08;
}

.price-option small {
  display: block;
  margin-top: 5px;
  color: #7c8781;
  font-size: 12px;
  line-height: 1.25;
}

.price-button {
  position: relative;
  z-index: 2;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0b5a2b, #20bd55);
  box-shadow:
    0 18px 38px rgba(25, 184, 79, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-button:hover,
.price-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 52px rgba(25, 184, 79, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.pricing-note {
  position: relative;
  z-index: 1;
  max-width: 880px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  margin: 34px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(25, 184, 79, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 250, 243, 0.9)),
    #fff;
  box-shadow: 0 24px 70px rgba(5, 33, 22, 0.07);
}

.pricing-note span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #20bd55, #087f3a);
  box-shadow: 0 18px 42px rgba(25, 184, 79, 0.2);
}

.pricing-note svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.pricing-note p {
  margin: 0;
  color: #526159;
  font-size: 16px;
}

.pricing-note strong {
  color: #0d2618;
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .pricing-card {
    min-height: 610px;
  }
}

@media (max-width: 680px) {
  .plans-section {
    padding: 64px 0 58px;
  }

  .plans-section .section-heading {
    margin-bottom: 34px;
  }

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

  .pricing-card {
    min-height: auto;
    padding: 32px 20px 22px;
    border-radius: 22px;
  }

  .price-badge {
    left: 20px;
    max-width: calc(100% - 40px);
    font-size: 12px;
  }

  .price-subtitle,
  .price-features {
    min-height: 0;
  }

  .pricing-card h3 {
    font-size: 25px;
  }

  .price-option strong {
    font-size: 20px;
  }

  .pricing-note {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-call,
  .consultant-pill,
  .back-to-top {
    display: none;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 12px 12px 14px;
    border-radius: 16px;
  }

  .cookie-copy p {
    font-size: 14px;
    line-height: 1.28;
  }

  .cookie-actions .btn {
    min-width: 58px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 16px;
  }

  .policy-modal {
    padding: 10px;
  }

  .policy-dialog {
    max-height: 92vh;
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .policy-dialog h2 {
    padding-right: 36px;
    font-size: 26px;
  }

  .policy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Hero video showcase */
.hero-video-scene {
  isolation: isolate;
}

.mockup-scene.hero-video-scene {
  transform: translateX(92px) !important;
}

.hero-video-scene::before {
  content: "";
  position: absolute;
  top: 84px;
  right: -66px;
  z-index: 1;
  width: min(108%, 760px);
  height: 548px;
  border-radius: 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 74% 20%, rgba(255, 232, 172, 0.34), transparent 24%),
    radial-gradient(circle at 10% 72%, rgba(20, 185, 87, 0.22), transparent 34%),
    rgba(246, 255, 249, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 34px 96px rgba(4, 35, 23, 0.12);
  backdrop-filter: blur(18px);
}

.hero-video-scene .mockup-glow {
  inset: 88px -72px 24px 3%;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(20, 185, 87, 0.1)),
    radial-gradient(ellipse at 70% 38%, rgba(255, 219, 139, 0.22), transparent 42%),
    radial-gradient(ellipse at 56% 46%, rgba(20, 185, 87, 0.24), transparent 58%),
    radial-gradient(ellipse at 42% 74%, rgba(5, 7, 6, 0.22), transparent 52%);
  filter: blur(24px);
  animation: none !important;
}

.hero-video-ambient {
  position: absolute;
  top: 82px;
  right: -98px;
  z-index: 2;
  width: min(116%, 790px);
  height: 568px;
  pointer-events: none;
  border-radius: 58px;
  object-fit: cover;
  object-position: center;
  opacity: 0.46;
  filter: blur(34px) saturate(1.55) contrast(1.06);
  transform: scale(1.06);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, #000 0 54%, transparent 78%);
}

.hero-video-frame {
  position: absolute;
  top: 112px;
  right: -48px;
  z-index: 3;
  width: min(104%, 704px);
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.18), transparent 28%),
    #07130d;
  box-shadow:
    0 54px 128px rgba(5, 7, 6, 0.32),
    0 22px 48px rgba(20, 185, 87, 0.16),
    0 0 0 10px rgba(255, 255, 255, 0.2),
    0 0 82px rgba(35, 208, 106, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  transform: none;
  transition: none;
  will-change: auto;
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 0 2px rgba(255, 220, 142, 0.12),
    inset 0 0 64px rgba(255, 255, 255, 0.08),
    inset 0 -130px 118px rgba(3, 18, 11, 0.2);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 238, 190, 0.15), transparent 28%),
    linear-gradient(135deg, #07130d, #10271a 56%, #0c2218);
  filter: saturate(1.06) contrast(1.02);
  transform: none;
  transition: none;
}

.hero-video-topline {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 6;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #eaf8ef;
  background: rgba(4, 21, 13, 0.62);
  box-shadow:
    0 12px 26px rgba(3, 18, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.hero-video-topline span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.hero-video-topline span:first-child {
  background: #20bd55;
  box-shadow: 0 0 18px rgba(32, 189, 85, 0.5);
}

.hero-video-topline strong {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-video-shine,
.hero-video-fade {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-video-shine {
  background: linear-gradient(112deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 52%, transparent 66% 100%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: none;
  animation: none !important;
}

.hero-video-fade {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 238, 190, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(2, 18, 10, 0.08), transparent 34%, rgba(2, 18, 10, 0.24)),
    linear-gradient(90deg, rgba(2, 18, 10, 0.28), transparent 22%, transparent 72%, rgba(2, 18, 10, 0.22));
  opacity: 0.96;
  transition: none;
}

.hero-video-stat {
  position: absolute;
  z-index: 7;
  min-width: 86px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  color: #07130d;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 255, 249, 0.78)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 26px 62px rgba(5, 7, 6, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.hero-video-stat span {
  display: block;
  color: #587063;
  font-size: 8px;
  font-weight: 800;
}

.hero-video-stat strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.05;
}

.hero-video-stat-top {
  top: 62px;
  left: 28px;
}

.hero-video-stat-bottom {
  left: 164px;
  bottom: -68px;
  width: 112px;
  padding: 7px 9px;
}

.hero-video-stat-bottom strong {
  font-size: 11px;
  line-height: 1.08;
}

.hero-video-scene .hero-call-card {
  top: 42px;
  right: 18px;
  bottom: auto;
  width: 218px;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 249, 0.8)),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 28px 68px rgba(5, 7, 6, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  animation: none !important;
}

.hero-video-scene .hero-call-card svg {
  width: 38px;
  height: 38px;
  padding: 9px;
}

.hero-video-scene .hero-call-card strong {
  align-self: center;
  font-size: 14px;
  line-height: 1.12;
}

.hero-video-scene .soft-sand {
  left: 94px;
  right: -46px;
  bottom: 42px;
  height: 90px;
  opacity: 0.76;
}

@keyframes heroVideoShine {
  0%,
  38% {
    transform: translateX(-82%);
    opacity: 0;
  }

  48% {
    opacity: 0.82;
  }

  62%,
  100% {
    transform: translateX(82%);
    opacity: 0;
  }
}

@media (max-width: 1500px) {
  .mockup-scene.hero-video-scene {
    transform: translateX(62px) !important;
  }
}

@media (max-width: 1120px) {
  .mockup-scene.hero-video-scene {
    transform: translateX(46px) !important;
  }

  .hero-video-scene::before {
    top: 82px;
    right: -36px;
    width: min(106%, 638px);
    height: 484px;
  }

  .hero-video-ambient {
    top: 88px;
    right: -66px;
    width: min(112%, 650px);
    height: 500px;
    opacity: 0.4;
    filter: blur(30px) saturate(1.45) contrast(1.05);
  }

  .hero-video-frame {
    top: 118px;
    right: -30px;
    width: min(98%, 570px);
    height: 428px;
  }

  .hero-video-stat-top {
    top: 72px;
    left: 24px;
  }

  .hero-video-stat-bottom {
    left: 64px;
    bottom: -62px;
    width: 106px;
  }

  .hero-video-scene .hero-call-card {
    top: 50px;
    right: 8px;
    bottom: auto;
    width: 198px;
  }
}

@media (max-width: 820px) {
  .mockup-scene.hero-video-scene {
    transform: none !important;
  }

  .hero-visual {
    height: 418px;
    min-height: 418px;
  }

  .mockup-scene.hero-video-scene {
    height: 418px;
    min-height: 418px;
  }

  .hero-video-scene::before {
    top: 0;
    right: -12px;
    left: -12px;
    width: auto;
    height: 342px;
    border-radius: 30px;
  }

  .hero-video-ambient {
    top: 0;
    left: -18px;
    right: -18px;
    width: auto;
    height: 320px;
    border-radius: 32px;
    opacity: 0.28;
    filter: blur(22px) saturate(1.35);
    transform: scale(1.04);
  }

  .hero-video-frame {
    top: 18px;
    left: 0;
    right: 0;
    width: 100%;
    height: 292px;
    border-radius: 24px;
  }

  .hero-video-stat {
    min-width: 82px;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .hero-video-stat strong {
    font-size: 11px;
  }

  .hero-video-stat-top {
    top: -38px;
    left: 8px;
  }

  .hero-video-stat-bottom {
    left: 0;
    bottom: -34px;
    width: 102px;
  }

  .hero-video-scene .hero-call-card {
    top: -66px;
    right: 8px;
    bottom: auto;
    width: 166px;
    grid-template-columns: 32px 1fr;
    padding: 8px 9px;
  }

  .hero-video-scene .soft-sand {
    left: 36px;
    right: 0;
    bottom: 28px;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    height: 388px;
    min-height: 388px;
  }

  .mockup-scene.hero-video-scene {
    height: 388px;
    min-height: 388px;
  }

  .hero-video-frame {
    height: 262px;
  }

  .hero-video-ambient {
    height: 292px;
    opacity: 0.22;
  }

  .hero-video-topline {
    height: 34px;
    padding: 0 12px;
  }

  .hero-video-topline strong {
    font-size: 11px;
  }

  .hero-video-stat {
    min-width: 76px;
  }

  .hero-video-stat-bottom {
    width: 96px;
  }

  .hero-video-stat-bottom strong {
    font-size: 10px;
    line-height: 1.08;
  }

  .hero-video-stat-top {
    top: -38px;
  }

  .hero-video-stat-bottom {
    bottom: -28px;
  }

  .hero-video-scene .hero-call-card {
    width: 154px;
    top: -66px;
  }
}

@media (max-width: 680px) {
  .hero .messengers {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.72fr);
    align-items: start;
    gap: 10px;
    max-width: 100%;
    margin-top: 22px;
  }

  .hero .messengers a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 8px 12px 8px 8px;
    border: 1px solid rgba(18, 166, 73, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(5, 49, 31, 0.07);
  }

  .hero .messengers a:nth-child(1) {
    transform: translateY(0);
  }

  .hero .messengers a:nth-child(2) {
    transform: translateY(12px);
  }

  .hero .flying-tags {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    margin-top: 30px;
  }

  .hero .flying-tags span {
    min-height: 34px;
    display: inline-flex;
    justify-content: center;
    padding: 0 12px;
    white-space: nowrap;
    animation: none !important;
  }

  .hero .flying-tags span:nth-child(1) {
    grid-column: 1 / 6;
  }

  .hero .flying-tags span:nth-child(2) {
    grid-column: 6 / 10;
  }

  .hero .flying-tags span:nth-child(3) {
    grid-column: 10 / 13;
  }

  .hero .flying-tags span:nth-child(4) {
    grid-column: 1 / 8;
  }

  .hero .flying-tags span:nth-child(5) {
    grid-column: 7 / 13;
  }

  .hero .hero-proof {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
    margin-top: 18px;
  }

  .hero .hero-proof span {
    min-height: 62px;
    align-items: center;
    padding: 14px 15px;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(5, 49, 31, 0.07);
  }

  .hero .hero-proof span:nth-child(1) {
    grid-column: 1 / 10;
  }

  .hero .hero-proof span:nth-child(2) {
    grid-column: 3 / 13;
  }

  .hero .hero-proof span:nth-child(3) {
    grid-column: 1 / 11;
    margin-left: 14px;
  }

  .included-grid,
  .cases-grid,
  .reviews-grid,
  .contacts-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
  }

  .included-item,
  .case-card,
  .review-card,
  .contact-item {
    width: auto;
  }

  .included-item:nth-child(odd),
  .case-card:nth-child(odd),
  .review-card:nth-child(odd) {
    grid-column: 1 / 12;
  }

  .included-item:nth-child(even),
  .case-card:nth-child(even),
  .review-card:nth-child(even) {
    grid-column: 2 / 13;
  }

  .included-item:nth-child(4n),
  .case-card:nth-child(4n),
  .review-card:nth-child(4n) {
    grid-column: 3 / 13;
  }

  .included-item:nth-child(5n),
  .case-card:nth-child(5n),
  .review-card:nth-child(5n) {
    grid-column: 1 / 13;
  }

  .pricing-grid {
    justify-items: start;
  }

  .pricing-card {
    width: calc(100% - 14px);
  }

  .pricing-card:nth-child(even) {
    justify-self: end;
  }

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

  .price-option:nth-child(odd) {
    grid-column: 1 / 12;
  }

  .price-option:nth-child(even) {
    grid-column: 2 / 13;
  }

  .price-option.is-recommended {
    grid-column: 1 / 13;
  }

  .contacts-grid .contact-item:nth-child(1) {
    grid-column: 1 / 11;
  }

  .contacts-grid .contact-item:nth-child(2) {
    grid-column: 2 / 13;
  }

  .contacts-grid .contact-item:nth-child(3) {
    grid-column: 1 / 10;
  }

  .contacts-grid .contact-item:nth-child(4) {
    grid-column: 3 / 13;
  }

  .contacts-grid .contact-item:nth-child(5) {
    grid-column: 1 / 12;
  }
}

@media (max-width: 420px) {
  .hero .messengers {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero .messengers a:nth-child(2) {
    width: calc(100% - 42px);
    justify-self: end;
    transform: none;
  }

  .hero .flying-tags span:nth-child(1) {
    grid-column: 1 / 7;
  }

  .hero .flying-tags span:nth-child(2) {
    grid-column: 7 / 12;
  }

  .hero .flying-tags span:nth-child(3) {
    grid-column: 2 / 5;
  }

  .hero .flying-tags span:nth-child(4) {
    grid-column: 1 / 9;
  }

  .hero .flying-tags span:nth-child(5) {
    grid-column: 4 / 13;
  }
}

/* Final mobile polish before publishing */
@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad,
  .section-pad.compact,
  .included-section,
  .reviews-section,
  .faq-section {
    padding: 52px 0;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand-logo {
    width: 190px;
    height: auto;
  }

  .hero.section-pad {
    display: block;
    padding: 34px 0 58px;
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual-desktop {
    display: none !important;
  }

  .hero-visual-mobile {
    display: block;
    margin: 22px 0 22px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(34px, 8vw, 42px);
    line-height: 1.04;
  }

  .hero-text {
    max-width: none;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
  }

  .hero-actions .btn,
  .hero .messengers a,
  .lead-copy .btn,
  .contacts-copy .btn {
    width: 100%;
  }

  .hero .messengers {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero .messengers a,
  .hero .messengers a:nth-child(1),
  .hero .messengers a:nth-child(2) {
    width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .hero .flying-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 0;
    margin-top: 18px;
  }

  .hero .flying-tags span,
  .hero .flying-tags span:nth-child(n) {
    position: static;
    flex: 0 1 auto;
    grid-column: auto;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1;
    transform: none;
    animation: none !important;
  }

  .hero .hero-proof {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
    margin-top: 16px;
  }

  .hero .hero-proof span,
  .hero .hero-proof span:nth-child(n) {
    grid-column: auto;
    min-height: auto;
    margin: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .hero .hero-ticker {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: block !important;
    margin: 24px 0 18px;
    padding: 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    z-index: 1;
  }

  .hero .hero-ticker span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    height: 342px;
    min-height: 342px;
  }

  .hero-video-scene::before {
    top: 22px;
    right: -10px;
    left: -10px;
    height: 284px;
    border-radius: 28px;
  }

  .hero-video-ambient {
    top: 22px;
    left: -14px;
    right: -14px;
    height: 270px;
    opacity: 0.22;
  }

  .hero-video-frame {
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    height: 242px;
    border-radius: 23px;
  }

  .hero-video-stat-top {
    top: 0;
    left: 10px;
  }

  .hero-video-stat-bottom {
    left: 12px;
    bottom: 6px;
    width: 122px;
  }

  .hero-video-scene .hero-call-card {
    top: 0;
    right: 8px;
    width: min(190px, 52%);
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .hero-video-scene .hero-call-card svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .hero-video-scene .hero-call-card strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .included-grid,
  .cases-grid,
  .reviews-grid,
  .contacts-grid,
  .price-options {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .included-item,
  .case-card,
  .review-card,
  .contact-item,
  .price-option,
  .pricing-card,
  .pricing-card:nth-child(even),
  .price-option:nth-child(odd),
  .price-option:nth-child(even),
  .price-option.is-recommended,
  .contacts-grid .contact-item:nth-child(n) {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
    margin: 0 !important;
  }

  .plans-section {
    margin-top: 0;
  }

  .case-card,
  .review-card,
  .contacts-panel,
  .faq-aside,
  .lead-panel {
    border-radius: 22px;
  }

  .lead-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .lead-form {
    padding: 18px;
  }

  .footer-bottom {
    display: grid;
    gap: 14px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-actions .btn {
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .policy-dialog {
    width: 100%;
    max-height: 92vh;
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .policy-dialog h2 {
    padding-right: 38px;
    font-size: 26px;
  }

  .policy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-logo {
    width: 164px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    height: 324px;
    min-height: 324px;
  }

  .hero-video-frame {
    height: 226px;
  }

  .hero-video-topline strong {
    font-size: 10px;
  }

  .hero-video-stat-bottom {
    display: none;
  }

  .hero-video-scene .hero-call-card {
    width: 168px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-copy p {
    font-size: 14px;
    line-height: 1.28;
  }

  .cookie-actions .btn {
    font-size: 14px;
  }

}

@media (max-width: 350px) {
  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

.floating-call,
.consultant-pill,
.back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

body.show-floating-actions .floating-call,
body.show-floating-actions .consultant-pill,
body.show-floating-actions .back-to-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.show-floating-actions .floating-call:hover,
body.show-floating-actions .floating-call:focus-visible {
  transform: translateY(-4px) scale(1.03);
}

body.show-floating-actions .back-to-top:hover,
body.show-floating-actions .back-to-top:focus-visible {
  transform: translateY(-5px) scale(1);
}


/* Reference hero screen */
body {
  --body-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #f9fbf5;
  font-family: var(--body-font);
}

.page-noise {
  opacity: 0.018;
}

.site-header {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 120;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .container.header-inner {
  width: min(calc(100% - 82px), 1586px);
  min-height: 104px;
  padding: 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow:
    0 26px 74px rgba(37, 67, 45, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 246px;
  max-height: 76px;
  object-fit: contain;
  transform: translateX(-2px);
}

.main-nav {
  gap: 47px;
  margin-left: auto;
  margin-right: auto;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #101815;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #008f42;
}

.header-actions {
  gap: 24px;
}

.phone-link {
  gap: 11px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: #050806;
}

.phone-link svg {
  width: 18px;
  height: 18px;
}

.header-actions .btn-light {
  min-height: 52px;
  padding: 0 32px;
  border-color: rgba(0, 112, 53, 0.42);
  background: rgba(255, 255, 255, 0.52);
  color: #063d27;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 120, 60, 0.08);
}

.header-actions .btn-light:hover,
.header-actions .btn-light:focus-visible {
  background: #0a8f45;
  color: #fff;
  border-color: #0a8f45;
  box-shadow: 0 20px 42px rgba(0, 120, 60, 0.20);
  transform: translateY(-1px);
}

.hero.section-pad {
  position: relative;
  min-height: 928px;
  padding: 154px 0 64px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 47%, rgba(97, 214, 172, 0.28), transparent 35%),
    radial-gradient(circle at 19% 50%, rgba(255, 223, 161, 0.44), transparent 40%),
    linear-gradient(112deg, #fff6e3 0%, #f9f2e5 40%, #e5fff5 100%);
  border-bottom: 0;
}

.hero.section-pad::before {
  content: "";
  position: absolute;
  left: -260px;
  top: 150px;
  width: 640px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.84) 0 44%, transparent 45%);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.hero.section-pad::after {
  content: "";
  position: absolute;
  right: -290px;
  bottom: -290px;
  width: 920px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 225, 183, 0.24), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.hero .container.hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 170px), 1510px);
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 46px;
  min-height: 705px;
  padding-top: 2px;
}

.hero-copy {
  max-width: 652px;
  padding: 0;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px;
  color: #008f42;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #19b84f;
  box-shadow:
    0 0 0 7px rgba(25, 184, 79, 0.12),
    0 0 18px rgba(25, 184, 79, 0.24);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: #050505;
  font-family: var(--display-font);
  font-size: clamp(58px, 4.55vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.hero-text {
  max-width: 664px;
  margin: 26px 0 0;
  color: rgba(13, 20, 17, 0.84);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.hero-actions .btn {
  min-width: 232px;
  min-height: 66px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-actions .btn-primary {
  border: 0;
  background:
    linear-gradient(135deg, #087539 0%, #19ae55 100%);
  color: #fff;
  box-shadow:
    0 18px 34px rgba(0, 135, 65, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 46px rgba(0, 135, 65, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-actions .btn-primary svg {
  width: 19px;
  height: 19px;
  transition: transform 0.24s ease;
}

.hero-actions .btn-primary:hover svg,
.hero-actions .btn-primary:focus-visible svg {
  transform: translateX(5px);
}

.hero-actions .btn-outline {
  min-width: 230px;
  border: 1px solid rgba(75, 61, 35, 0.20);
  background: rgba(255, 255, 255, 0.62);
  color: #101815;
  box-shadow:
    0 18px 44px rgba(66, 50, 22, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.hero-actions .btn-outline:hover,
.hero-actions .btn-outline:focus-visible {
  border-color: rgba(0, 143, 66, 0.36);
  background: rgba(255, 255, 255, 0.84);
  transform: translateY(-2px);
}

.hero .messengers {
  display: grid;
  grid-template-columns: 200px 210px;
  gap: 18px;
  margin-top: 30px;
}

.hero .messengers a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 80, 40, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 18px 42px rgba(55, 47, 30, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  transform: none;
}

.hero .messengers a:hover,
.hero .messengers a:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 48px rgba(0, 100, 45, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero .messenger-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #087539, #19ae55);
  box-shadow: 0 14px 30px rgba(0, 120, 60, 0.22);
}

.hero .messengers a:nth-child(2) .messenger-icon {
  background: linear-gradient(135deg, #22a9ee, #4cc4ff);
  box-shadow: 0 14px 30px rgba(40, 165, 225, 0.22);
}

.hero .messenger-icon svg {
  width: 20px;
  height: 20px;
}

.messenger-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.messenger-copy strong {
  overflow: hidden;
  color: #101815;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.018em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.messenger-copy small {
  color: rgba(35, 45, 39, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.hero .flying-tags {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 600px;
  margin: 30px 0 0;
  opacity: 1;
  pointer-events: none;
  transform: none;
}

.hero .flying-tags span {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(0, 80, 40, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #101815;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.01em;
  box-shadow:
    0 12px 28px rgba(60, 48, 25, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.hero .flying-tags svg,
.hero .flying-tags img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  color: #101815;
}

.hero .hero-proof {
  width: 596px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 26px 70px rgba(44, 38, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.hero .hero-proof span {
  min-height: 74px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  color: #101815;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.hero .hero-proof span + span {
  border-left: 1px solid rgba(10, 30, 20, 0.10);
}

.hero .hero-proof svg {
  width: 24px;
  height: 24px;
  padding: 4px;
  border: 1px solid rgba(0, 143, 66, 0.28);
  border-radius: 50%;
  color: #008f42;
}

.hero .hero-ticker {
  display: none !important;
}

.hero-visual-mobile {
  display: none !important;
}

.hero-visual-desktop {
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: visible;
}

.mockup-scene.hero-video-scene {
  position: relative;
  width: 100%;
  height: 640px;
  min-height: 640px;
  overflow: visible;
  transform: none !important;
  perspective: none;
}

.mockup-scene.hero-video-scene::before {
  content: "";
  position: absolute;
  top: 118px;
  left: 64px;
  right: -2px;
  height: 472px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.24));
  box-shadow:
    0 34px 110px rgba(0, 82, 46, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px);
  pointer-events: none;
}

.mockup-scene.hero-video-scene::after {
  content: "";
  position: absolute;
  left: 238px;
  right: 22px;
  bottom: 0;
  height: 130px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(96, 220, 173, 0.34), transparent 67%);
  filter: blur(2px);
  pointer-events: none;
}

.mockup-scene .mockup-glow {
  position: absolute;
  top: 44px;
  right: 18px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 213, 144, 0.17), transparent 62%);
  filter: blur(10px);
  opacity: 1;
}

.hero-video-ambient {
  display: none;
}

.hero-video-frame {
  position: absolute;
  top: 137px;
  left: 24px;
  right: 42px;
  width: auto;
  height: 456px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background: #0b1711;
  box-shadow:
    0 28px 70px rgba(6, 35, 23, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.34) inset;
  transform: none;
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: inherit;
  pointer-events: none;
  z-index: 7;
}

.hero-video-topline {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  right: 0;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(180deg, rgba(10, 21, 16, 0.98), rgba(14, 25, 19, 0.94));
  color: #e8f3ee;
}

.hero-video-topline span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 0;
  opacity: 1;
}

.hero-video-topline span:nth-child(1) {
  background: #ff7d45;
}

.hero-video-topline span:nth-child(2) {
  background: #f3bd34;
}

.hero-video-topline span:nth-child(3) {
  background: #57c86b;
}

.hero-video-topline strong {
  min-width: 138px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: transparent;
  font-size: 0;
}

.hero-video-topline strong::before {
  content: "Ваш сайт";
  color: rgba(239, 247, 242, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.hero-video-topline::after {
  content: "web-leads.ru";
  margin-left: auto;
  color: rgba(239, 247, 242, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-video {
  position: absolute;
  inset: 66px 0 0;
  width: 100%;
  height: calc(100% - 66px);
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.hero-video-shine {
  position: absolute;
  inset: 66px 0 0;
  z-index: 3;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(255, 244, 225, 0.08), transparent 30%, rgba(114, 225, 177, 0.12));
  pointer-events: none;
}

.hero-video-fade {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 98px;
  background: linear-gradient(180deg, transparent, rgba(5, 22, 13, 0.68));
  pointer-events: none;
}

.hero-video-stat {
  z-index: 12;
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 42px rgba(28, 39, 31, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.hero-video-stat-top {
  top: 54px;
  left: 75px;
  width: 154px;
  min-height: 74px;
  grid-template-columns: 48px 1fr;
  gap: 9px;
  padding: 13px 16px;
}

.hero-video-stat-top::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #078742, #16b862);
  box-shadow: 0 12px 28px rgba(0, 135, 65, 0.24);
}

.hero-video-stat-top span {
  grid-column: 2;
  color: #151f19;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.05;
}

.hero-video-stat-top strong {
  grid-column: 2;
  color: #050806;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.08;
}

.hero-video-stat-bottom {
  display: none;
}

.hero-video-scene .hero-call-card {
  position: absolute;
  z-index: 12;
  top: 54px;
  right: 74px;
  width: 206px;
  min-height: 74px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 42px rgba(28, 39, 31, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.hero-video-scene .hero-call-card svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #078742, #16b862);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 135, 65, 0.24);
}

.hero-video-scene .hero-call-card strong {
  color: #151f19;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.hero-side-panel,
.hero-growth-card,
.hero-audit-card,
.hero-channel-card {
  position: absolute;
  z-index: 14;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 22px 58px rgba(28, 39, 31, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.hero-side-panel {
  top: 246px;
  right: 40px;
  width: 222px;
  min-height: 192px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
}

.side-brand {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
}

.side-brand span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #07140f;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.side-brand strong {
  color: #111a15;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.side-brand small {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(17, 26, 21, 0.72);
  font-size: 10px;
  font-weight: 800;
}

.side-body {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.side-body small {
  color: rgba(17, 26, 21, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.side-body strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #101815;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.side-body em {
  color: #009846;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.side-body i,
.hero-growth-card i {
  display: block;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 16%, rgba(0, 143, 66, 0.16) 16% 20%, transparent 20% 42%, rgba(0, 143, 66, 0.36) 42% 46%, transparent 46% 64%, rgba(0, 143, 66, 0.64) 64% 68%, transparent 68%),
    linear-gradient(180deg, rgba(0, 143, 66, 0.08), rgba(0, 143, 66, 0.02));
}

.side-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.side-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(17, 26, 21, 0.72);
  font-size: 10px;
  font-weight: 850;
}

.hero-growth-card {
  top: 228px;
  right: -10px;
  width: 96px;
  min-height: 176px;
  display: grid;
  gap: 5px;
  padding: 18px 13px;
  border-radius: 18px;
}

.hero-growth-card svg {
  width: 27px;
  height: 27px;
  color: #009846;
}

.hero-growth-card span,
.hero-growth-card small {
  color: rgba(17, 26, 21, 0.70);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-growth-card strong {
  color: #009846;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-growth-card i {
  height: 38px;
  margin-top: 2px;
}

.hero-audit-card {
  left: 246px;
  bottom: 34px;
  width: 224px;
  min-height: 134px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 13px;
  padding: 19px 20px;
  border-radius: 18px;
  color: #101815;
}

.hero-audit-card span {
  width: 44px;
  height: 44px;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #078742, #16b862);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 135, 65, 0.24);
}

.hero-audit-card span svg {
  width: 21px;
  height: 21px;
}

.hero-audit-card small {
  color: #101815;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-audit-card strong {
  min-height: 40px;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border: 1px solid rgba(0, 143, 66, 0.26);
  border-radius: 999px;
  color: #087539;
  font-size: 13px;
  font-weight: 900;
}

.hero-channel-card {
  right: 38px;
  bottom: 18px;
  width: 226px;
  min-height: 152px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 21px 24px;
  border-radius: 18px;
}

.channel-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-icons svg,
.channel-icons img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.channel-icons svg {
  padding: 6px;
  border-radius: 50%;
  background: #27a8ea;
  color: #fff;
}

.hero-channel-card span {
  margin-top: 6px;
  color: #101815;
  font-size: 15px;
  font-weight: 850;
}

.hero-channel-card strong {
  color: #050806;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-channel-card small {
  color: rgba(17, 26, 21, 0.62);
  font-size: 12px;
  font-weight: 650;
}

.hero-video-scene .soft-sand {
  position: absolute;
  z-index: 1;
  left: 234px;
  right: 42px;
  bottom: 14px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34), rgba(126, 232, 190, 0.20) 56%, transparent 69%);
  box-shadow:
    0 28px 52px rgba(0, 143, 66, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

@media (max-width: 1440px) {
  .site-header .container.header-inner {
    width: min(calc(100% - 48px), 1390px);
    padding: 0 34px;
  }

  .brand-logo {
    width: 218px;
  }

  .main-nav {
    gap: 34px;
  }

  .hero .container.hero-layout {
    width: min(calc(100% - 64px), 1380px);
    grid-template-columns: 0.86fr 1.14fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(52px, 4.45vw, 66px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero .hero-proof {
    width: 560px;
  }

  .hero-video-frame {
    left: 14px;
    right: 26px;
    height: 438px;
  }

  .hero-side-panel {
    right: 26px;
    width: 210px;
  }

  .hero-growth-card {
    right: -16px;
  }
}

@media (max-width: 1180px) {
  .site-header .container.header-inner {
    width: calc(100% - 32px);
    min-height: 82px;
    padding: 0 20px;
    border-radius: 16px;
  }

  .brand-logo {
    width: 196px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero.section-pad {
    min-height: auto;
    padding: 122px 0 56px;
  }

  .hero .container.hero-layout {
    width: min(calc(100% - 32px), 880px);
    display: block;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-text {
    max-width: 720px;
  }

  .hero-visual-desktop {
    display: none !important;
  }

  .hero-visual-mobile {
    display: block !important;
    margin-top: 34px;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    min-height: 520px;
    height: 520px;
  }

  .mockup-scene.hero-video-scene::before {
    top: 74px;
    left: 20px;
    right: 20px;
    height: 362px;
  }

  .hero-video-frame {
    top: 96px;
    left: 0;
    right: 0;
    height: 350px;
  }

  .hero-side-panel {
    right: 22px;
    top: 214px;
  }

  .hero-growth-card {
    right: -2px;
    top: 190px;
  }

  .hero-audit-card {
    left: 84px;
    bottom: 20px;
  }

  .hero-channel-card {
    right: 24px;
    bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 32px rgba(10, 30, 20, 0.08);
    backdrop-filter: blur(16px);
  }

  .site-header .container.header-inner {
    width: 100%;
    min-height: 76px;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand-logo {
    width: 186px;
    max-height: 60px;
  }

  .phone-link {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .header-actions .btn-light {
    display: none;
  }

  .hero.section-pad {
    padding: 30px 0 52px;
  }

  .hero.section-pad::before {
    left: -370px;
    top: 58px;
  }

  .hero .container.hero-layout {
    width: min(calc(100% - 28px), 560px);
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero .eyebrow::before {
    width: 8px;
    height: 8px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-width: 0;
    width: 100%;
    min-height: 58px;
  }

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

  .hero .messengers a {
    min-height: 58px;
  }

  .hero .flying-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .hero .flying-tags span {
    height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-visual-mobile {
    margin-top: 24px;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    min-height: 332px;
    height: 332px;
  }

  .mockup-scene.hero-video-scene::before {
    top: 44px;
    left: 0;
    right: 0;
    height: 254px;
    border-radius: 24px;
  }

  .mockup-scene.hero-video-scene::after,
  .hero-video-scene .soft-sand,
  .hero-side-panel,
  .hero-growth-card,
  .hero-audit-card {
    display: none;
  }

  .hero-video-frame {
    top: 62px;
    height: 228px;
    border-radius: 22px;
  }

  .hero-video-topline {
    height: 44px;
    padding: 0 16px;
    border-radius: 22px 22px 0 0;
  }

  .hero-video-topline span {
    width: 8px;
    height: 8px;
  }

  .hero-video-topline strong {
    display: none;
  }

  .hero-video-topline::after {
    font-size: 10px;
  }

  .hero-video {
    inset-top: 44px;
    top: 44px;
    height: calc(100% - 44px);
  }

  .hero-video-shine,
  .hero-video-fade {
    top: 44px;
  }

  .hero-video-stat-top {
    top: 8px;
    left: 8px;
    width: 126px;
    min-height: 54px;
    grid-template-columns: 32px 1fr;
    padding: 9px 11px;
  }

  .hero-video-stat-top::before {
    width: 28px;
    height: 28px;
  }

  .hero-video-stat-top span {
    font-size: 10px;
  }

  .hero-video-stat-top strong {
    font-size: 13px;
  }

  .hero-video-scene .hero-call-card {
    top: 8px;
    right: 8px;
    width: 174px;
    min-height: 54px;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .hero-video-scene .hero-call-card svg {
    width: 30px;
    height: 30px;
    padding: 8px;
  }

  .hero-video-scene .hero-call-card strong {
    font-size: 11px;
  }

  .hero-channel-card {
    right: 10px;
    bottom: 0;
    width: 174px;
    min-height: 94px;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 15px;
  }

  .channel-icons svg,
  .channel-icons img {
    width: 22px;
    height: 22px;
  }

  .hero-channel-card span {
    display: none;
  }

  .hero-channel-card strong {
    font-size: 14px;
  }

  .hero-channel-card small {
    font-size: 10px;
  }

  .hero .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
    padding: 12px;
    border-radius: 16px;
  }

  .hero .hero-proof span {
    min-height: 52px;
    padding: 0 8px;
    font-size: 13px;
  }

  .hero .hero-proof span + span {
    border-top: 1px solid rgba(10, 30, 20, 0.08);
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 172px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-video-scene .hero-call-card {
    width: 158px;
  }
}

.hero-side-panel,
.hero-growth-card,
.hero-channel-card {
  display: none !important;
}

/* Reference hero geometry tuning */
@media (min-width: 1181px) {
  .hero.section-pad {
    min-height: 928px;
    padding-top: 154px;
    padding-bottom: 44px;
  }

  .hero .container.hero-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 46px;
    min-height: 720px;
  }

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

  .hero h1 {
    max-width: 704px;
    font-size: clamp(56px, 4.1vw, 69px);
    line-height: 1.09;
  }

  .hero-text {
    max-width: 690px;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    height: 720px;
    min-height: 720px;
  }

  .mockup-scene.hero-video-scene::before {
    top: 92px;
    left: 18px;
    right: 18px;
    height: 514px;
  }

  .mockup-scene.hero-video-scene::after {
    left: 132px;
    right: 18px;
    bottom: 2px;
    height: 154px;
  }

  .hero-video-frame {
    top: 90px;
    left: 0;
    right: auto;
    width: min(100%, 748px);
    height: 506px;
  }

  .hero-video-stat-top {
    top: 12px;
    left: 46px;
  }

  .hero-video-scene .hero-call-card {
    top: 12px;
    right: 134px;
  }

  .hero-side-panel {
    top: 218px;
    right: 80px;
  }

  .hero-growth-card {
    top: 206px;
    right: -14px;
  }

  .hero-audit-card {
    left: 102px;
    right: auto;
    top: auto;
    bottom: 34px;
  }

  .hero-channel-card {
    right: 22px;
    bottom: 18px;
  }

  .hero-video-scene .soft-sand {
    left: 126px;
    right: 20px;
    bottom: 8px;
    height: 152px;
  }

  .hero .flying-tags svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hero .flying-tags img {
    stroke: none;
  }
}

@media (min-width: 1441px) {
  .hero .container.hero-layout {
    width: min(calc(100% - 170px), 1510px);
  }

  .hero-video-scene .hero-call-card {
    right: 134px;
  }
}

/* Real monitor stand under the hero video */
.hero-video-frame {
  z-index: 5;
}

.hero-video-scene .soft-sand {
  z-index: 2;
  left: 66px;
  right: -8px;
  bottom: -18px;
  height: 300px;
  border: 0;
  border-radius: 46% 46% 38% 38% / 60% 60% 40% 40%;
  background:
    linear-gradient(180deg, rgba(233, 255, 246, 0) 0%, rgba(233, 255, 246, 0.12) 100%),
    url("assets/media/hero-monitor-stand.png") center bottom / cover no-repeat;
  box-shadow: none;
  filter: saturate(0.98) contrast(1.02);
  opacity: 0.92;
  -webkit-mask-image: radial-gradient(ellipse at 50% 66%, #000 0 58%, rgba(0, 0, 0, 0.94) 68%, transparent 86%);
  mask-image: radial-gradient(ellipse at 50% 66%, #000 0 58%, rgba(0, 0, 0, 0.94) 68%, transparent 86%);
  pointer-events: none;
}

@media (min-width: 1181px) {
  .hero-video-scene .soft-sand {
    left: 66px;
    right: -8px;
    bottom: -24px;
    height: 316px;
  }
}

@media (max-width: 1180px) {
  .hero-video-scene .soft-sand {
    display: block;
    left: 42px;
    right: 24px;
    bottom: -8px;
    height: 210px;
  }
}

@media (max-width: 760px) {
  .hero-video-scene .soft-sand {
    display: none;
  }
}

/* Visible metal neck so the video reads as a monitor on the stand */
.mockup-scene.hero-video-scene::after {
  z-index: 4;
  left: 50%;
  right: auto;
  bottom: 22px;
  width: 290px;
  height: 142px;
  transform: translateX(-50%);
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.78) 0 26%, rgba(212, 222, 214, 0.62) 45%, rgba(38, 162, 102, 0.18) 64%, transparent 72%) center bottom / 270px 58px no-repeat,
    linear-gradient(90deg, rgba(178, 171, 158, 0.56) 0%, #f7f4ee 26%, #d8d1c4 55%, rgba(86, 194, 145, 0.28) 100%) center top / 82px 108px no-repeat;
  box-shadow: none;
  filter:
    drop-shadow(0 20px 28px rgba(15, 50, 30, 0.14))
    drop-shadow(0 0 18px rgba(25, 184, 79, 0.10));
  pointer-events: none;
}

@media (max-width: 1180px) {
  .mockup-scene.hero-video-scene::after {
    bottom: 18px;
    width: 210px;
    height: 108px;
    background:
      radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.78) 0 26%, rgba(212, 222, 214, 0.62) 45%, rgba(38, 162, 102, 0.18) 64%, transparent 72%) center bottom / 200px 44px no-repeat,
      linear-gradient(90deg, rgba(178, 171, 158, 0.56) 0%, #f7f4ee 26%, #d8d1c4 55%, rgba(86, 194, 145, 0.28) 100%) center top / 60px 82px no-repeat;
  }
}

@media (max-width: 760px) {
  .mockup-scene.hero-video-scene::after {
    content: none;
  }
}

@media (min-width: 1181px) {
  .mockup-scene.hero-video-scene::after {
    z-index: 8;
    top: 584px;
    bottom: auto;
    width: 330px;
    height: 138px;
    background:
      radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.92) 0 24%, rgba(202, 206, 195, 0.78) 43%, rgba(25, 184, 79, 0.24) 62%, transparent 74%) center bottom / 320px 66px no-repeat,
      linear-gradient(90deg, rgba(142, 135, 123, 0.64) 0%, #ffffff 28%, #d6d0c4 58%, rgba(87, 198, 148, 0.38) 100%) center top / 104px 102px no-repeat;
    filter:
      drop-shadow(0 22px 28px rgba(15, 50, 30, 0.18))
      drop-shadow(0 0 22px rgba(25, 184, 79, 0.18));
    opacity: 1;
  }
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .mockup-scene.hero-video-scene::after {
    top: 584px;
    width: 300px;
    background:
      radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.92) 0 24%, rgba(202, 206, 195, 0.78) 43%, rgba(25, 184, 79, 0.24) 62%, transparent 74%) center bottom / 292px 62px no-repeat,
      linear-gradient(90deg, rgba(142, 135, 123, 0.64) 0%, #ffffff 28%, #d6d0c4 58%, rgba(87, 198, 148, 0.38) 100%) center top / 94px 102px no-repeat;
  }
}

.hero-monitor-stand {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 604px;
  width: 238px;
  height: 94px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.94) 0 22%, rgba(209, 213, 202, 0.78) 45%, rgba(25, 184, 79, 0.20) 64%, transparent 75%) center bottom / 226px 46px no-repeat,
    linear-gradient(90deg, rgba(145, 138, 125, 0.54) 0%, #ffffff 28%, #d9d2c6 60%, rgba(87, 198, 148, 0.32) 100%) center top / 70px 70px no-repeat;
  filter:
    drop-shadow(0 14px 18px rgba(15, 50, 30, 0.14))
    drop-shadow(0 0 14px rgba(25, 184, 79, 0.12));
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-monitor-stand {
    top: 604px;
    width: 218px;
    background:
      radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.94) 0 22%, rgba(209, 213, 202, 0.78) 45%, rgba(25, 184, 79, 0.20) 64%, transparent 75%) center bottom / 208px 44px no-repeat,
      linear-gradient(90deg, rgba(145, 138, 125, 0.54) 0%, #ffffff 28%, #d9d2c6 60%, rgba(87, 198, 148, 0.32) 100%) center top / 64px 70px no-repeat;
  }
}

@media (max-width: 1180px) {
  .hero-monitor-stand {
    top: 430px;
    width: 240px;
    height: 108px;
    background:
      radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.95) 0 22%, rgba(211, 214, 203, 0.84) 42%, rgba(25, 184, 79, 0.26) 62%, transparent 75%) center bottom / 234px 52px no-repeat,
      linear-gradient(90deg, rgba(145, 138, 125, 0.68) 0%, #ffffff 28%, #d9d2c6 58%, rgba(87, 198, 148, 0.44) 100%) center top / 72px 78px no-repeat;
  }
}

@media (max-width: 760px) {
  .hero-monitor-stand {
    display: none;
  }
}

.mockup-scene.hero-video-scene::after {
  content: none;
}

/* Use the supplied stand artwork as-is, not a CSS imitation */
.hero-monitor-stand {
  display: none !important;
}

.hero-video-scene .soft-sand {
  display: block !important;
  position: absolute !important;
  z-index: 4 !important;
  top: 178px !important;
  left: -26px !important;
  right: -26px !important;
  bottom: auto !important;
  height: 548px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    url("assets/media/hero-monitor-stand.png") center top / 980px auto no-repeat !important;
  box-shadow: none !important;
  filter: saturate(1.02) contrast(1.01) !important;
  transform: none !important;
  transform-origin: center center !important;
  opacity: 0.98 !important;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 100%) !important;
  -webkit-mask-composite: source-in !important;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 100%) !important;
  mask-composite: intersect !important;
  pointer-events: none !important;
}

.hero-video-scene .soft-sand::before,
.hero-video-scene .soft-sand::after {
  content: none !important;
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-video-scene .soft-sand {
    top: 180px !important;
    left: -22px !important;
    right: -22px !important;
    height: 540px !important;
    background-size: 910px auto !important;
  }
}

@media (max-width: 1180px) {
  .hero-video-scene .soft-sand {
    top: 108px !important;
    left: -18px !important;
    right: -18px !important;
    height: 374px !important;
    background-size: 670px auto !important;
  }
}

@media (max-width: 760px) {
  .hero-video-scene .soft-sand {
    display: none !important;
  }
}

/* Tighter placement of the supplied stand artwork */
@media (min-width: 1181px) {
  .hero-video-scene .soft-sand {
    top: 330px !important;
    left: -66px !important;
    right: auto !important;
    width: 880px !important;
    height: 390px !important;
    background:
      url("assets/media/hero-monitor-stand.png") center -112px / 880px auto no-repeat !important;
    opacity: 0.96 !important;
    -webkit-mask-image: radial-gradient(ellipse 44% 66% at 57% 66%, #000 0 58%, rgba(0, 0, 0, 0.88) 68%, transparent 86%) !important;
    mask-image: radial-gradient(ellipse 44% 66% at 57% 66%, #000 0 58%, rgba(0, 0, 0, 0.88) 68%, transparent 86%) !important;
  }
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-video-scene .soft-sand {
    top: 324px !important;
    left: -56px !important;
    width: 820px !important;
    height: 382px !important;
    background-position: center -104px !important;
    background-size: 820px auto !important;
  }
}

/* Requested hero card rearrangement */
.hero-video-scene .hero-call-card {
  display: none !important;
}

.hero-video-stat-top {
  width: 250px !important;
  min-height: 70px !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 12px !important;
  padding: 12px 18px !important;
}

.hero-video-stat-top span,
.hero-video-stat-top strong {
  display: none !important;
}

.hero-video-stat-top::after {
  content: "Сайт под заявки";
  grid-column: 2;
  color: #111a15;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-video-stat-top::before {
  width: 40px !important;
  height: 40px !important;
}

.hero-audit-card {
  right: 22px !important;
  bottom: 116px !important;
  left: auto !important;
  width: 192px !important;
  min-height: 66px !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  grid-template-rows: 1fr !important;
  gap: 10px !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
}

.hero-audit-card span {
  width: 40px !important;
  height: 40px !important;
  grid-row: auto !important;
}

.hero-audit-card span svg {
  width: 19px !important;
  height: 19px !important;
}

.hero-audit-card small {
  font-size: 13px !important;
  line-height: 1.14 !important;
}

.hero-audit-card strong {
  display: none !important;
}

@media (min-width: 1181px) {
  .hero-video-stat-top {
    top: 16px !important;
    left: 82px !important;
  }
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-video-stat-top {
    left: 72px !important;
    width: 238px !important;
  }

  .hero-video-stat-top::after {
    font-size: 13px;
  }

  .hero-audit-card {
    right: 16px !important;
    bottom: 114px !important;
    width: 184px !important;
  }
}

@media (max-width: 760px) {
  .hero-video-stat-top {
    width: 176px !important;
    min-height: 54px !important;
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 8px 10px !important;
  }

  .hero-video-stat-top::before {
    width: 30px !important;
    height: 30px !important;
  }

  .hero-video-stat-top::after {
    font-size: 10px;
  }
}

/* Final card nudges */
.hero-video-stat-top {
  width: 274px !important;
  min-height: 62px !important;
  grid-template-columns: 42px max-content !important;
  padding: 10px 18px 10px 14px !important;
  gap: 12px !important;
}

.hero-video-stat-top::before {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  background:
    url("assets/media/site-builder-pill-icon.svg") center / 22px 22px no-repeat,
    linear-gradient(135deg, #078742, #16b862) !important;
  box-shadow:
    0 12px 28px rgba(0, 135, 65, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}

.hero-video-stat-top::after {
  font-size: 13.5px !important;
  line-height: 1 !important;
}

.hero-audit-card {
  bottom: 86px !important;
}

@media (min-width: 1181px) {
  .hero-video-stat-top {
    top: 24px !important;
    left: 20px !important;
  }
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-video-stat-top {
    top: 24px !important;
    left: 20px !important;
    width: 260px !important;
  }

  .hero-video-stat-top::after {
    font-size: 12.8px !important;
  }

  .hero-audit-card {
    bottom: 84px !important;
  }
}

/* Premium hero CTA panel */
.hero-cta-panel {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  background:
    url("assets/media/hero-cta-waves.svg") center / 104% 110% no-repeat,
    radial-gradient(circle at 9% 11%, rgba(25, 184, 79, 0.16), transparent 31%),
    radial-gradient(circle at 91% 88%, rgba(111, 225, 183, 0.20), transparent 38%),
    radial-gradient(circle at 48% 52%, rgba(255, 246, 220, 0.38), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 249, 235, 0.42));
  box-shadow:
    0 34px 86px rgba(45, 38, 22, 0.10),
    0 14px 42px rgba(0, 130, 61, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(22px);
  isolation: isolate;
}

.hero-cta-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 248, 230, 0.34), rgba(232, 255, 245, 0.24)),
    radial-gradient(circle at 12% 22%, rgba(25, 184, 79, 0.16), transparent 32%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    inset 0 0 70px rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.hero-cta-panel::after {
  content: "";
  position: absolute;
  inset: -22px -18px;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 15%, rgba(25, 184, 79, 0.20), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(111, 225, 183, 0.20), transparent 33%),
    radial-gradient(circle at 46% 34%, rgba(255, 236, 184, 0.20), transparent 40%);
  filter: blur(16px);
  opacity: 0.88;
  pointer-events: none;
}

.hero-cta-panel .hero-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 24px !important;
  margin-top: 0 !important;
}

.hero-cta-panel .hero-actions .btn {
  width: 100%;
  min-width: 0 !important;
  min-height: 80px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease !important;
}

.hero-cta-panel .hero-actions .btn > span:last-child {
  white-space: nowrap;
}

.hero-cta-panel .hero-actions .btn-primary {
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.30), transparent 26%),
    linear-gradient(135deg, #007a3d 0%, #05a64e 55%, #18c36a 100%) !important;
  box-shadow:
    0 28px 48px rgba(0, 130, 61, 0.34),
    0 10px 22px rgba(0, 72, 36, 0.20),
    0 0 0 1px rgba(25, 184, 79, 0.18),
    0 0 34px rgba(25, 184, 79, 0.24),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -5px 16px rgba(0, 73, 38, 0.28) !important;
}

.hero-cta-panel .hero-actions .btn-primary svg {
  order: -1;
  width: 52px !important;
  height: 52px !important;
  padding: 14px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.40), transparent 38%),
    rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -6px 16px rgba(0, 91, 45, 0.14),
    0 12px 26px rgba(0, 91, 45, 0.22);
  stroke-width: 2.4;
}

.hero-cta-panel .hero-actions .btn-primary:hover svg,
.hero-cta-panel .hero-actions .btn-primary:focus-visible svg {
  transform: translateX(3px);
}

.hero-cta-panel .hero-actions .btn-outline {
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(76, 61, 34, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(255, 249, 235, 0.66)) !important;
  box-shadow:
    0 25px 52px rgba(52, 42, 24, 0.08),
    0 10px 24px rgba(70, 54, 24, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(255, 255, 255, 0.55) !important;
}

.hero-cta-panel .hero-actions .btn-outline::before {
  content: none !important;
}

.hero-cta-panel .btn-chat-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 30px rgba(47, 38, 20, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.92),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-cta-panel .btn-chat-icon img {
  width: 52px;
  height: 52px;
  display: block;
}

.hero-cta-panel .btn-outline:hover .btn-chat-icon,
.hero-cta-panel .btn-outline:focus-visible .btn-chat-icon {
  transform: none !important;
  box-shadow:
    0 20px 34px rgba(47, 38, 20, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.96),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero-cta-panel .messengers {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  width: 100% !important;
  max-width: none !important;
  gap: 24px !important;
  margin-top: 24px !important;
}

.hero-cta-panel .messengers a {
  min-height: 86px !important;
  position: relative;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 16px !important;
  padding: 15px 42px 15px 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.88) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 233, 0.54)) !important;
  box-shadow:
    0 24px 54px rgba(44, 38, 24, 0.075),
    0 10px 28px rgba(0, 90, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

.hero-cta-panel .messengers a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #19b84f;
  box-shadow:
    0 0 0 9px rgba(25, 184, 79, 0.08),
    0 0 18px rgba(25, 184, 79, 0.24);
}

.hero-cta-panel .messengers a:nth-child(2)::after {
  background: #28a8ea;
  box-shadow:
    0 0 0 9px rgba(40, 168, 234, 0.08),
    0 0 18px rgba(40, 168, 234, 0.24);
}

.hero-cta-panel .messenger-icon {
  width: 58px !important;
  height: 58px !important;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 18px 34px rgba(0, 132, 61, 0.26),
    0 0 0 11px rgba(255, 255, 255, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}

.hero-cta-panel .messengers a:nth-child(2) .messenger-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow:
    0 18px 34px rgba(31, 168, 236, 0.22),
    0 0 0 11px rgba(255, 255, 255, 0.48) !important;
}

.hero-cta-panel .messenger-icon svg,
.hero-cta-panel .messenger-icon img {
  width: 31px !important;
  height: 31px !important;
}

.hero-cta-panel .messenger-icon img {
  width: 58px !important;
  height: 58px !important;
  display: block;
  object-fit: contain;
}

.hero-cta-panel .messenger-copy {
  gap: 5px;
}

.hero-cta-panel .messenger-copy strong {
  overflow: visible !important;
  font-size: 18px !important;
  letter-spacing: -0.035em;
  text-overflow: clip !important;
}

.hero-cta-panel .messenger-copy small {
  color: rgba(42, 59, 50, 0.64) !important;
  font-size: 15px !important;
  font-weight: 650 !important;
}

.hero-cta-panel .flying-tags {
  display: grid !important;
  grid-template-columns: 1fr 1fr 0.72fr 0.85fr 1.62fr;
  gap: 18px !important;
  max-width: none !important;
  margin-top: 26px !important;
  pointer-events: auto !important;
}

.hero-cta-panel .flying-tags span {
  min-width: 0;
  height: 50px !important;
  justify-content: center;
  gap: 12px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 249, 236, 0.52)) !important;
  color: #17211d !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  box-shadow:
    0 16px 36px rgba(51, 42, 24, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  transform: none !important;
}

.hero-cta-panel .flying-tags svg,
.hero-cta-panel .flying-tags img {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto;
  color: #087b3c !important;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta-panel .flying-tags img {
  padding: 2px;
  border-radius: 6px;
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-cta-panel {
    max-width: 612px;
    margin-top: 28px;
    padding: 18px;
    border-radius: 26px;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 62px !important;
    font-size: 16px !important;
    padding: 0 20px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 68px !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 13px !important;
    padding: 12px 30px 12px 12px !important;
  }

  .hero-cta-panel .messenger-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .hero-cta-panel .messenger-icon img {
    width: 42px !important;
    height: 42px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 15px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 12px !important;
  }

  .hero-cta-panel .flying-tags {
    gap: 10px !important;
  }

  .hero-cta-panel .flying-tags span {
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (max-width: 760px) {
  .hero-cta-panel {
    max-width: none;
    margin-top: 24px;
    padding: 14px;
    border-radius: 24px;
  }

  .hero-cta-panel .hero-actions,
  .hero-cta-panel .messengers {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 58px !important;
    font-size: 15px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 60px !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    padding: 10px 12px !important;
    border-radius: 18px !important;
  }

  .hero-cta-panel .messenger-icon {
    width: 40px !important;
    height: 40px !important;
    box-shadow:
      0 12px 26px rgba(0, 132, 61, 0.20),
      0 0 0 6px rgba(255, 255, 255, 0.44),
      inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
  }

  .hero-cta-panel .messengers a:nth-child(2) .messenger-icon {
    box-shadow:
      0 12px 26px rgba(31, 168, 236, 0.20),
      0 0 0 6px rgba(255, 255, 255, 0.44),
      inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
  }

  .hero-cta-panel .messenger-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .hero-cta-panel .messenger-icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 14px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 11px !important;
  }

  .hero-cta-panel .flying-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .hero-cta-panel .flying-tags span {
    height: 34px !important;
    gap: 7px !important;
    padding: 0 10px !important;
    font-size: 10.5px !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) {
    grid-column: 1 / -1;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Compact CTA panel so the hero benefits fit into the first viewport */
@media (min-width: 1181px) {
  .hero-cta-panel {
    max-width: 610px !important;
    margin-top: 24px !important;
    padding: 14px 16px !important;
    border-radius: 26px !important;
  }

  .hero-cta-panel .hero-actions {
    gap: 16px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 58px !important;
    padding: 0 18px !important;
    font-size: 16px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary,
  .hero-cta-panel .hero-actions .btn-outline {
    gap: 14px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg {
    padding: 10px !important;
  }

  .hero-cta-panel .messengers {
    gap: 16px !important;
    margin-top: 12px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 58px !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 11px !important;
    padding: 9px 30px 9px 10px !important;
    border-radius: 18px !important;
  }

  .hero-cta-panel .messenger-icon,
  .hero-cta-panel .messenger-icon img {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-cta-panel .messenger-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 14px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 11px !important;
  }

  .hero-cta-panel .messengers a::after {
    right: 16px !important;
    width: 8px !important;
    height: 8px !important;
    box-shadow:
      0 0 0 7px rgba(25, 184, 79, 0.08),
      0 0 15px rgba(25, 184, 79, 0.22) !important;
  }

  .hero-cta-panel .messengers a:nth-child(2)::after {
    box-shadow:
      0 0 0 7px rgba(40, 168, 234, 0.08),
      0 0 15px rgba(40, 168, 234, 0.22) !important;
  }

  .hero-cta-panel .flying-tags {
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .hero-cta-panel .flying-tags span {
    height: 30px !important;
    gap: 7px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 13px !important;
    height: 13px !important;
  }

  .hero .hero-proof {
    margin-top: 8px !important;
    padding: 12px 16px !important;
  }

  .hero .hero-proof span {
    min-height: 50px !important;
    font-size: 13px !important;
  }
}

/* Custom check icons in hero benefits */
.hero .hero-proof span {
  grid-template-columns: 46px minmax(0, 1fr);
}

.hero .hero-proof img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 150, 70, 0.18));
}

@media (min-width: 1181px) {
  .hero .hero-proof {
    margin-top: 18px !important;
  }

  .hero .hero-proof span {
    grid-template-columns: 44px minmax(0, 1fr) !important;
  }

  .hero .hero-proof img {
    width: 44px !important;
    height: 44px !important;
  }
}

@media (max-width: 760px) {
  .hero .hero-proof span {
    grid-template-columns: 26px minmax(0, 1fr) !important;
  }

  .hero .hero-proof img {
    width: 26px !important;
    height: 26px !important;
  }
}

/* Airier desktop hero left column */
@media (min-width: 1181px) {
  .hero-cta-panel {
    max-width: 642px !important;
    margin-top: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    isolation: auto !important;
  }

  .hero-cta-panel::before,
  .hero-cta-panel::after {
    display: none !important;
  }

  .hero-cta-panel .hero-actions {
    width: min(100%, 610px);
    display: grid !important;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 22px !important;
    margin-top: 0 !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 66px !important;
    padding: 0 22px !important;
    font-size: 17px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary {
    box-shadow:
      0 24px 52px rgba(0, 130, 61, 0.30),
      0 10px 22px rgba(0, 72, 36, 0.16),
      0 0 30px rgba(25, 184, 79, 0.18),
      inset 0 2px 0 rgba(255, 255, 255, 0.26),
      inset 0 -5px 16px rgba(0, 73, 38, 0.24) !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 42px !important;
    height: 42px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg {
    padding: 11px !important;
  }

  .hero-cta-panel .hero-actions .btn-outline {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 235, 0.62)) !important;
    box-shadow:
      0 18px 42px rgba(52, 42, 24, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.94),
      inset 0 -1px 0 rgba(255, 255, 255, 0.52) !important;
  }

  .hero-cta-panel .messengers {
    width: min(100%, 592px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr) !important;
    gap: 20px !important;
    margin-top: 26px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 74px !important;
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 15px !important;
    padding: 12px 34px 12px 14px !important;
    border-radius: 22px !important;
    box-shadow:
      0 18px 44px rgba(44, 38, 24, 0.065),
      0 8px 22px rgba(0, 90, 42, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .hero-cta-panel .messenger-icon,
  .hero-cta-panel .messenger-icon img {
    width: 46px !important;
    height: 46px !important;
  }

  .hero-cta-panel .messenger-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 15px !important;
    letter-spacing: -0.025em;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 12px !important;
  }

  .hero-cta-panel .messengers a::after {
    right: 18px !important;
    width: 8px !important;
    height: 8px !important;
  }

  .hero-cta-panel .flying-tags {
    width: min(100%, 620px) !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px !important;
    margin-top: 28px !important;
  }

  .hero-cta-panel .flying-tags span {
    flex: 0 0 auto;
    height: 36px !important;
    gap: 8px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    box-shadow:
      0 12px 28px rgba(51, 42, 24, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 15px !important;
    height: 15px !important;
  }

  .hero .hero-proof {
    width: min(100%, 612px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .hero .hero-proof span,
  .hero .hero-proof span:nth-child(n) {
    min-height: 66px !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    border-radius: 20px !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 236, 0.52)) !important;
    box-shadow:
      0 18px 42px rgba(45, 38, 22, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
    font-size: 13px !important;
  }

  .hero .hero-proof span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.86) !important;
  }

  .hero .hero-proof img {
    width: 34px !important;
    height: 34px !important;
  }
}

/* Soft reference background for the first screen */
.hero.section-pad {
  background:
    linear-gradient(105deg, rgba(255, 248, 232, 0.78) 0%, rgba(255, 255, 250, 0.66) 42%, rgba(232, 255, 245, 0.70) 100%),
    radial-gradient(circle at 18% 42%, rgba(255, 224, 166, 0.34), transparent 39%),
    radial-gradient(circle at 82% 50%, rgba(80, 220, 157, 0.22), transparent 38%),
    url("assets/media/hero-soft-background.png") center center / cover no-repeat !important;
}

.hero.section-pad::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0 !important;
  top: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  z-index: 0 !important;
  opacity: 1 !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.44) 0%, rgba(255, 255, 255, 0.62) 48%, rgba(232, 255, 245, 0.38) 100%),
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.62), transparent 34%),
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.34), transparent 42%) !important;
  backdrop-filter: blur(1.2px);
  pointer-events: none;
}

.hero.section-pad::after {
  content: "";
  position: absolute;
  inset: 0;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%, rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 72% 56%, rgba(25, 184, 79, 0.08), transparent 36%) !important;
  pointer-events: none;
}

@media (max-width: 760px) {
  .hero.section-pad {
    background:
      linear-gradient(105deg, rgba(255, 248, 232, 0.84) 0%, rgba(255, 255, 250, 0.70) 45%, rgba(232, 255, 245, 0.76) 100%),
      url("assets/media/hero-soft-background.png") center top / cover no-repeat !important;
  }

  .hero.section-pad::before {
    backdrop-filter: blur(1.6px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 248, 232, 0.46) 48%, rgba(232, 255, 245, 0.40)),
      radial-gradient(circle at 48% 20%, rgba(255, 255, 255, 0.62), transparent 44%) !important;
  }
}

/* Premium mobile and responsive polish */
:root {
  --body-font: "Wix Madefor Text", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display-font: "Wix Madefor Display", "Wix Madefor Text", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  font-family: var(--body-font) !important;
  letter-spacing: -0.012em;
}

h1,
h2,
h3,
.btn,
.main-nav,
.phone-link {
  font-family: var(--display-font) !important;
}

.hero h1 {
  font-weight: 800 !important;
  letter-spacing: -0.052em !important;
}

.hero-text,
.section-subtitle,
.info-card p,
.service-card p,
.benefit-card p,
.process-step p,
.case-content p {
  font-weight: 500;
}

.hero-video-fade {
  display: none !important;
}

.hero-video-shine {
  opacity: 0.42;
  mix-blend-mode: soft-light;
}

@media (min-width: 1181px) {
  .hero-video-stat-top {
    top: 96px !important;
    left: 38px !important;
    z-index: 9 !important;
    width: 286px !important;
    min-height: 54px !important;
    grid-template-columns: 38px max-content !important;
    padding: 8px 18px 8px 10px !important;
    border-color: rgba(255, 255, 255, 0.64) !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow:
      0 16px 36px rgba(5, 18, 12, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
  }

  .hero-video-stat-top::before {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }

  .hero-video-stat-top::after {
    font-size: 13px !important;
  }
}

@media (max-width: 1180px) {
  .hero-video-stat-top {
    z-index: 9 !important;
  }
}

@media (max-width: 760px) {
  body {
    background: #eef5ef;
  }

  .site-header {
    position: sticky !important;
    top: 0;
    z-index: 150;
    background: rgba(255, 255, 255, 0.90) !important;
    border-bottom: 1px solid rgba(6, 61, 39, 0.08);
    box-shadow: 0 14px 36px rgba(6, 35, 23, 0.08);
    backdrop-filter: blur(20px) saturate(1.12);
  }

  .site-header .container.header-inner {
    min-height: 78px !important;
    padding: 0 18px !important;
    gap: 12px;
  }

  .brand-logo {
    width: clamp(158px, 43vw, 188px) !important;
    max-height: 56px !important;
  }

  .header-actions {
    gap: 10px !important;
    margin-left: auto;
  }

  .phone-link,
  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    display: inline-grid !important;
    place-items: center;
    border: 1px solid rgba(6, 61, 39, 0.12) !important;
    border-radius: 14px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 248, 0.84)) !important;
    color: #073d27 !important;
    box-shadow:
      0 12px 26px rgba(6, 35, 23, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .phone-link svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
  }

  .menu-toggle {
    position: relative;
    padding: 0 !important;
  }

  .menu-toggle span {
    position: absolute;
    left: 13px;
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px;
    background: #073d27 !important;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
  }

  .hero.section-pad {
    padding: 26px 0 54px !important;
  }

  .hero .container.hero-layout {
    width: min(calc(100% - 24px), 480px) !important;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero .eyebrow {
    order: 1;
    margin-bottom: 18px !important;
    font-size: 10.5px !important;
    letter-spacing: -0.01em !important;
  }

  .hero h1 {
    order: 2;
    max-width: 100%;
    font-size: clamp(38px, 10.6vw, 47px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-text {
    order: 3;
    max-width: 100%;
    margin-top: 18px !important;
    font-size: 15.5px !important;
    line-height: 1.52 !important;
    letter-spacing: -0.025em;
  }

  .hero-cta-panel {
    order: 4;
    margin-top: 24px !important;
    padding: 14px !important;
    border-radius: 28px !important;
    background:
      url("assets/media/hero-cta-waves.svg") center / 112% 120% no-repeat,
      linear-gradient(140deg, rgba(255, 255, 255, 0.74), rgba(233, 255, 245, 0.48)) !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    box-shadow:
      0 24px 54px rgba(4, 55, 32, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(18px);
  }

  .hero-cta-panel .hero-actions {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 56px !important;
    justify-content: center !important;
    font-size: 15px !important;
    border-radius: 999px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary {
    box-shadow:
      0 18px 34px rgba(0, 130, 61, 0.30),
      0 0 24px rgba(25, 184, 79, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -4px 12px rgba(0, 73, 38, 0.22) !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg {
    width: 38px !important;
    height: 38px !important;
    padding: 10px !important;
    color: #fff !important;
    stroke-width: 2.6 !important;
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.42), transparent 38%),
      rgba(255, 255, 255, 0.15) !important;
  }

  .hero-cta-panel .btn-chat-icon {
    position: relative;
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow:
      0 12px 24px rgba(6, 61, 39, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  }

  .hero-cta-panel .btn-chat-icon img {
    opacity: 0;
  }

  .hero-cta-panel .btn-chat-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8.6C7 7.7 7.7 7 8.6 7h10.8c.9 0 1.6.7 1.6 1.6v6.7c0 .9-.7 1.6-1.6 1.6h-6.5L9 20v-3.1h-.4c-.9 0-1.6-.7-1.6-1.6V8.6Z' stroke='%23008742' stroke-width='2.2' stroke-linejoin='round'/%3E%3Cpath d='M11 11.7h.1M14 11.7h.1M17 11.7h.1' stroke='%23008742' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .hero-cta-panel .messengers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 58px !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 9px !important;
    padding: 9px 24px 9px 9px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    box-shadow:
      0 14px 28px rgba(6, 35, 23, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .hero-cta-panel .messenger-icon,
  .hero-cta-panel .messenger-icon img {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-cta-panel .messenger-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 11.5px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 9.5px !important;
  }

  .hero-cta-panel .flying-tags {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 12px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 2px;
    scrollbar-width: none;
  }

  .hero-cta-panel .flying-tags::-webkit-scrollbar {
    display: none;
  }

  .hero-cta-panel .flying-tags span {
    flex: 0 0 auto;
    height: 32px !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
    border-color: rgba(255, 255, 255, 0.84) !important;
    background: rgba(255, 255, 255, 0.72) !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) {
    grid-column: auto;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 13px !important;
    height: 13px !important;
    color: #007a3d !important;
    stroke-width: 2.5 !important;
  }

  .hero-visual-mobile {
    order: 5;
    display: block !important;
    width: calc(100% + 8px);
    margin: 16px -4px 0 !important;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    min-height: 318px !important;
    height: 318px !important;
  }

  .mockup-scene.hero-video-scene::before {
    top: 44px !important;
    left: 0 !important;
    right: 0 !important;
    height: 248px !important;
    border-radius: 24px !important;
  }

  .hero-video-frame {
    top: 62px !important;
    left: 0 !important;
    right: 0 !important;
    height: 218px !important;
    border-radius: 22px !important;
    box-shadow:
      0 20px 46px rgba(6, 35, 23, 0.18),
      0 1px 0 rgba(255, 255, 255, 0.34) inset !important;
  }

  .hero-video-topline {
    height: 42px !important;
    padding: 0 14px !important;
    border-radius: 22px 22px 0 0 !important;
  }

  .hero-video-topline::after {
    display: block !important;
    font-size: 9px !important;
  }

  .hero-video {
    top: 42px !important;
    height: calc(100% - 42px) !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-video-shine {
    top: 42px !important;
    opacity: 0.20 !important;
  }

  .hero-video-fade {
    display: none !important;
  }

  .hero-video-stat-top {
    top: 54px !important;
    left: 12px !important;
    right: auto !important;
    z-index: 10 !important;
    width: min(246px, calc(100% - 34px)) !important;
    min-height: 50px !important;
    grid-template-columns: 34px minmax(0, max-content) !important;
    gap: 9px !important;
    padding: 8px 14px 8px 9px !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    box-shadow:
      0 14px 30px rgba(5, 18, 12, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .hero-video-stat-top::before {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
    background:
      url("assets/media/site-key-icon.svg") center / 21px 21px no-repeat,
      linear-gradient(135deg, #078742, #16b862) !important;
  }

  .hero-video-stat-top::after {
    max-width: 178px;
    overflow: hidden;
    font-size: 11.5px !important;
    line-height: 1.05 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-video-stat-bottom,
  .hero-side-panel,
  .hero-growth-card,
  .hero-audit-card,
  .hero-channel-card {
    display: none !important;
  }

  .hero .hero-proof {
    order: 6;
    margin-top: 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hero .hero-proof span,
  .hero .hero-proof span:nth-child(n) {
    min-height: 52px !important;
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    box-shadow:
      0 12px 28px rgba(6, 35, 23, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
    font-size: 12.5px !important;
  }

  .hero .hero-proof img {
    width: 30px !important;
    height: 30px !important;
  }

  .cookie-banner {
    right: 10px !important;
    bottom: 10px !important;
    left: 10px !important;
    width: auto !important;
    max-width: none !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
    grid-template-columns: minmax(0, 1fr) 126px !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .cookie-copy p {
    font-size: 10.6px !important;
    line-height: 1.24 !important;
  }

  .cookie-actions {
    margin-top: 0 !important;
  }

  .cookie-actions .btn {
    min-height: 42px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  .site-header .container.header-inner {
    padding: 0 12px !important;
  }

  .brand-logo {
    width: 148px !important;
  }

  .phone-link,
  .menu-toggle {
    width: 41px !important;
    height: 41px !important;
    min-width: 41px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.4vw, 39px) !important;
  }

  .hero-cta-panel {
    padding: 12px !important;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    min-height: 300px !important;
    height: 300px !important;
  }

  .hero-video-frame {
    height: 204px !important;
  }

  .hero-video-stat-top {
    width: min(224px, calc(100% - 28px)) !important;
  }

  .hero-cta-panel .messengers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-cta-panel .messengers a {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    padding-right: 22px !important;
  }

  .hero-cta-panel .messenger-icon,
  .hero-cta-panel .messenger-icon img {
    width: 36px !important;
    height: 36px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 10.8px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 9.2px !important;
  }
}

@media (max-width: 360px) {
  .hero-cta-panel .messengers {
    grid-template-columns: 1fr !important;
  }

  .cookie-banner {
    grid-template-columns: 1fr !important;
  }

  .cookie-actions {
    margin-top: 8px !important;
  }
}

@media (max-width: 760px) {
  .hero-visual-mobile {
    order: 4 !important;
    margin: 22px -4px 0 !important;
  }

  .hero-cta-panel {
    order: 5 !important;
    margin-top: 20px !important;
  }

  .hero .hero-proof {
    order: 6 !important;
  }
}

/* Mobile header, wording and softer typography polish */
@font-face {
  font-family: "Nunito Sans WL";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/nunito-sans/nunito-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans WL";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/nunito-sans/nunito-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans WL";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/nunito-sans/nunito-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans WL";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/nunito-sans/nunito-sans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito Sans WL";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/nunito-sans/nunito-sans-800.ttf") format("truetype");
}

:root {
  --body-font: "Nunito Sans WL", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display-font: "Nunito", "Nunito Sans WL", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  --body-font: "Nunito Sans WL", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display-font: "Nunito", "Nunito Sans WL", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-family: var(--body-font) !important;
  letter-spacing: -0.006em;
}

h1,
h2,
h3,
.btn,
.main-nav,
.phone-link {
  font-family: var(--display-font) !important;
}

.hero h1 {
  font-weight: 800 !important;
  letter-spacing: -0.038em !important;
}

.hero-text {
  letter-spacing: -0.012em !important;
}

.hero-video-stat-top::after {
  content: "Сайт под заявки" !important;
}

.hero-cta-panel .flying-tags span:nth-child(5) {
  min-width: 126px;
  font-size: 0 !important;
}

.hero-cta-panel .flying-tags span:nth-child(5)::after {
  content: "Сайт под заявки";
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-header .container.header-inner {
    min-height: 76px !important;
    align-items: center !important;
  }

  .header-actions {
    align-items: center !important;
    gap: 8px !important;
  }

  .phone-link,
  .menu-toggle {
    position: relative;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    border-radius: 14px !important;
    line-height: 0 !important;
  }

  .phone-link svg {
    display: none !important;
  }

  .phone-link::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.05 3.35 7.65 3c.46-.1.92.14 1.1.58l.78 1.88c.16.39.05.85-.28 1.12l-.92.75c.6 1.18 1.55 2.13 2.73 2.73l.76-.92c.27-.33.72-.44 1.12-.28l1.88.78c.44.18.68.64.58 1.1l-.35 1.6c-.1.45-.48.78-.94.8C8.2 13.4 3.6 8.8 3.87 3.94c.03-.46.35-.84.8-.94Z' stroke='%23073D27' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .menu-toggle span {
    display: none !important;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #073d27;
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .menu-toggle::before {
    transform: translate(-50%, -4px);
  }

  .menu-toggle::after {
    transform: translate(-50%, 4px);
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .main-nav {
    top: 82px !important;
    left: 12px !important;
    right: 12px !important;
    display: grid !important;
    gap: 4px !important;
    align-content: start !important;
    padding: 10px !important;
    height: auto !important;
    max-height: calc(100vh - 98px);
    overflow: auto;
    border-radius: 22px !important;
    border: 1px solid rgba(6, 61, 39, 0.10) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow:
      0 24px 54px rgba(6, 35, 23, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(22px) saturate(1.08);
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) {
    min-width: 112px;
  }

  .hero-cta-panel .flying-tags span:nth-child(5)::after {
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .phone-link,
  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .phone-link::before {
    width: 17px;
    height: 17px;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    width: 17px;
  }
}

/* Final placement for the compact hero visual pill */
.hero-video-stat-top {
  width: 206px !important;
  min-height: 46px !important;
  grid-template-columns: 34px max-content !important;
  gap: 10px !important;
  padding: 7px 14px 7px 9px !important;
  border-radius: 15px !important;
}

.hero-video-stat-top::before {
  width: 34px !important;
  height: 34px !important;
  border-radius: 11px !important;
  background:
    url("assets/media/site-builder-pill-icon.svg") center / 20px 20px no-repeat,
    linear-gradient(135deg, #078742, #16b862) !important;
}

.hero-video-stat-top::after {
  content: "Сайт под заявки" !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.hero-cta-panel .flying-tags span:nth-child(5)::after {
  content: "Сайт под заявки" !important;
}

@media (min-width: 1181px) {
  .hero-video-stat-top {
    top: 66px !important;
    left: 12px !important;
  }
}

@media (max-width: 1440px) and (min-width: 1181px) {
  .hero-video-stat-top {
    top: 66px !important;
    left: 12px !important;
    width: 206px !important;
  }
}

@media (max-width: 760px) {
  .hero-video-stat-top {
    top: 46px !important;
    left: 12px !important;
    width: 198px !important;
    min-height: 46px !important;
    grid-template-columns: 32px max-content !important;
    gap: 9px !important;
    padding: 7px 13px 7px 8px !important;
  }

  .hero-video-stat-top::before {
    width: 32px !important;
    height: 32px !important;
    background:
      url("assets/media/site-builder-pill-icon.svg") center / 19px 19px no-repeat,
      linear-gradient(135deg, #078742, #16b862) !important;
  }

  .hero-video-stat-top::after {
    font-size: 11px !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) {
    min-width: 118px;
  }
}

/* The extra floating label made the hero visual heavier; keep the screen cleaner. */
.hero-video-stat-top {
  display: none !important;
}

/* Final professional mobile hero polish */
.hero-cta-panel .flying-tags span:nth-child(5)::after {
  content: "Сайт под заявки" !important;
}

.hero-cta-panel .flying-tags span:nth-child(5) img {
  content: url("assets/media/bot-tag-green-icon.svg");
}

@media (max-width: 760px) {
  .phone-link,
  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow:
      0 10px 24px rgba(6, 35, 23, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  }

  .phone-link::before {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    transform: none;
    background: url("assets/media/header-phone-clean.svg") center / 19px 19px no-repeat !important;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    width: 17px;
    height: 2px;
  }

  .hero-visual-mobile {
    margin-top: 20px !important;
  }

  .hero-visual,
  .mockup-scene.hero-video-scene {
    min-height: calc(114px + ((100vw - 16px) * 0.5625)) !important;
    height: calc(114px + ((100vw - 16px) * 0.5625)) !important;
    max-height: 352px !important;
  }

  .mockup-scene.hero-video-scene::before {
    top: 32px !important;
    height: calc(78px + ((100vw - 16px) * 0.5625)) !important;
    border-radius: 24px !important;
  }

  .hero-video-frame {
    top: 50px !important;
    height: calc(42px + ((100vw - 16px) * 0.5625)) !important;
    max-height: 278px !important;
    border-radius: 22px !important;
  }

  .hero-video {
    top: 42px !important;
    height: calc(100% - 42px) !important;
    object-fit: cover !important;
    object-position: center bottom !important;
  }

  .hero-video-shine {
    top: 42px !important;
    height: calc(100% - 42px) !important;
  }

  .hero-cta-panel {
    margin-top: 18px !important;
    padding: 12px !important;
    border-radius: 24px !important;
  }

  .hero-cta-panel .hero-actions {
    gap: 10px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 52px !important;
    padding: 0 16px !important;
    gap: 11px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    letter-spacing: -0.015em !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 34px !important;
    height: 34px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg {
    padding: 9px !important;
  }

  .hero-cta-panel .btn-chat-icon::before {
    inset: 9px !important;
  }

  .hero-cta-panel .messengers {
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 54px !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 8px 25px 8px 8px !important;
    border-radius: 17px !important;
  }

  .hero-cta-panel .messengers a::after,
  .hero-cta-panel .messengers a:nth-child(2)::after {
    top: 50% !important;
    right: 13px !important;
    width: 8px !important;
    height: 8px !important;
    transform: translateY(-50%) !important;
  }

  .hero-cta-panel .messenger-icon,
  .hero-cta-panel .messenger-icon img {
    width: 34px !important;
    height: 34px !important;
  }

  .hero-cta-panel .messenger-icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 10.8px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
  }

  .hero-cta-panel .messenger-copy small {
    margin-top: 2px;
    font-size: 8.8px !important;
    line-height: 1.05 !important;
  }

  .hero-cta-panel .flying-tags {
    gap: 7px !important;
    margin-top: 10px !important;
    padding-right: 4px !important;
  }

  .hero-cta-panel .flying-tags span {
    height: 30px !important;
    padding: 0 11px !important;
    gap: 6px !important;
    font-size: 9.5px !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) {
    min-width: 112px !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5)::after {
    font-size: 9.5px !important;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 12px !important;
    height: 12px !important;
  }
}

.hero-cta-panel .flying-tags span:nth-child(5) img {
  display: block !important;
  width: 13px !important;
  height: 13px !important;
  flex: 0 0 13px !important;
  padding: 0 !important;
  opacity: 1 !important;
  filter: none !important;
  content: url("assets/media/bot-tag-green-icon.svg") !important;
}

@media (max-width: 760px) {
  .hero-cta-panel .flying-tags span:nth-child(5) {
    gap: 6px !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) img {
    width: 12px !important;
    height: 12px !important;
    flex-basis: 12px !important;
  }
}

@media (max-width: 390px) {
  .phone-link,
  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .phone-link::before {
    background-size: 18px 18px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 10.2px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 8.3px !important;
  }

  .hero-cta-panel .flying-tags span:nth-child(5) {
    min-width: 108px !important;
  }
}

/* Final hero cleanup: keep service tags in one row and remove old proof cards. */
.hero .hero-proof {
  display: none !important;
}

.hero-cta-panel .flying-tags {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
}

.hero-cta-panel .flying-tags span,
.hero-cta-panel .flying-tags span:nth-child(n) {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  animation: none !important;
}

.hero-cta-panel .flying-tags span:nth-child(5) {
  min-width: 130px !important;
  order: 5 !important;
}

.hero-cta-panel .flying-tags span:nth-child(5)::after {
  content: "Сайт под заявки" !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .hero-cta-panel .flying-tags {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 2px !important;
    scrollbar-width: none;
  }

  .hero-cta-panel .flying-tags::-webkit-scrollbar {
    display: none;
  }
}

/* Mobile service tags marquee */
.hero-cta-panel .flying-tags-track,
.hero-cta-panel .flying-tags-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.hero-cta-panel .flying-tags-group--clone {
  display: none;
}

@media (max-width: 760px) {
  .hero-cta-panel .flying-tags {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    padding: 0 !important;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .hero-cta-panel .flying-tags-track {
    width: max-content;
    gap: 0;
    animation: heroTagsMarquee 18s linear infinite;
    will-change: transform;
  }

  .hero-cta-panel .flying-tags-group {
    flex: 0 0 auto;
    gap: 8px;
    padding-right: 8px;
  }

  .hero-cta-panel .flying-tags-group--clone {
    display: flex;
  }

  .hero-cta-panel .flying-tags span,
  .hero-cta-panel .flying-tags span:nth-child(n) {
    flex: 0 0 auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-panel .flying-tags-track {
    animation: none !important;
  }
}

@keyframes heroTagsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Final visual polish before hosting: keep accents intentional and adaptive. */
.cases-section::before {
  display: none !important;
}

.cases-section .section-heading {
  position: relative;
  isolation: isolate;
}

.cases-section .section-heading::after {
  content: "";
  display: block;
  width: min(220px, 46vw);
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(25, 184, 79, 0.92), rgba(12, 36, 24, 0.18), transparent);
  box-shadow:
    0 0 18px rgba(25, 184, 79, 0.18),
    0 10px 28px rgba(25, 184, 79, 0.08);
  opacity: 0.78;
}

.project-showcase {
  margin-top: 36px;
}

.project-showcase::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), rgba(87, 230, 117, 0.42), transparent);
  opacity: 0.76;
  pointer-events: none;
}

.hero-cta-panel .hero-actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.hero-cta-panel .hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 44%, transparent 64%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 0.28s ease, transform 0.42s ease;
  pointer-events: none;
}

.hero-cta-panel .hero-actions .btn:hover::after,
.hero-cta-panel .hero-actions .btn:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.hero-cta-panel .hero-actions .btn-primary {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(135deg, #006c34 0%, #0ca24a 48%, #23c86a 100%) !important;
  box-shadow:
    0 26px 58px rgba(0, 130, 61, 0.32),
    0 12px 26px rgba(0, 72, 36, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 42px rgba(25, 184, 79, 0.22),
    inset 0 2px 0 rgba(255, 255, 255, 0.30),
    inset 0 -7px 18px rgba(0, 69, 35, 0.28) !important;
}

.hero-cta-panel .hero-actions .btn-primary:hover,
.hero-cta-panel .hero-actions .btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 34px 68px rgba(0, 130, 61, 0.38),
    0 16px 32px rgba(0, 72, 36, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.26),
    0 0 54px rgba(25, 184, 79, 0.28),
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    inset 0 -7px 18px rgba(0, 69, 35, 0.24) !important;
}

.hero-cta-panel .hero-actions .btn-outline {
  border-color: transparent !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 235, 0.72)) padding-box,
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(11, 130, 67, 0.26), rgba(236, 210, 160, 0.38)) border-box !important;
  box-shadow:
    0 20px 48px rgba(52, 42, 24, 0.08),
    0 8px 22px rgba(6, 61, 39, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(255, 255, 255, 0.58) !important;
}

.hero-cta-panel .hero-actions .btn-outline:hover,
.hero-cta-panel .hero-actions .btn-outline:focus-visible {
  transform: translateY(-3px);
  border-color: transparent !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 250, 0.78)) padding-box,
    linear-gradient(120deg, rgba(25, 184, 79, 0.48), rgba(255, 255, 255, 0.88), rgba(25, 184, 79, 0.28)) border-box !important;
  box-shadow:
    0 26px 56px rgba(52, 42, 24, 0.10),
    0 12px 28px rgba(6, 61, 39, 0.06),
    0 0 32px rgba(25, 184, 79, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.62) !important;
}

.hero-cta-panel .btn-chat-icon,
.hero-cta-panel .hero-actions .btn-primary svg {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-cta-panel .hero-actions .btn-outline:hover .btn-chat-icon,
.hero-cta-panel .hero-actions .btn-outline:focus-visible .btn-chat-icon {
  transform: translateX(-2px) scale(1.03) !important;
}

.hero-cta-panel .hero-actions .btn-primary:hover svg,
.hero-cta-panel .hero-actions .btn-primary:focus-visible svg {
  transform: translateX(4px) scale(1.04) !important;
}

@media (max-width: 1180px) {
  .cases-section .section-heading::after {
    margin-top: 18px;
  }

  .project-showcase {
    margin-top: 30px;
  }
}

@media (max-width: 760px) {
  .cases-section .section-heading::after {
    width: 148px;
    height: 2px;
    margin-top: 16px;
  }

  .project-showcase {
    margin-top: 24px;
  }

  .project-showcase::after {
    left: 18px;
    right: 18px;
  }

  .hero-cta-panel .hero-actions .btn-primary:hover,
  .hero-cta-panel .hero-actions .btn-primary:focus-visible,
  .hero-cta-panel .hero-actions .btn-outline:hover,
  .hero-cta-panel .hero-actions .btn-outline:focus-visible {
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-panel .hero-actions .btn,
  .hero-cta-panel .hero-actions .btn::after,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .hero-actions .btn-primary svg {
    transition: none !important;
  }
}

/* Final fix: clone tags exist only for the mobile marquee. */
@media (min-width: 761px) {
  .hero-cta-panel .flying-tags {
    display: flex !important;
    overflow: visible !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .hero-cta-panel .flying-tags-track {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-cta-panel .flying-tags-group {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    padding-right: 0 !important;
  }

  .hero-cta-panel .flying-tags-group--clone {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .hero-cta-panel .flying-tags-group--clone {
    display: flex !important;
  }
}

/* Mobile tap fix: the cookie notice stays visible, but it no longer blocks hero links. */
.cookie-banner {
  pointer-events: none;
}

.cookie-banner .cookie-copy button,
.cookie-banner .cookie-actions,
.cookie-banner .cookie-actions .btn {
  pointer-events: auto;
}

.hero-cta-panel .hero-actions .btn,
.hero-cta-panel .messengers a {
  position: relative;
  z-index: 40;
  touch-action: manipulation;
}

@media (max-width: 760px) {
  .hero-copy,
  .hero-cta-panel {
    position: relative;
    z-index: 30;
  }

  .hero-visual-mobile {
    position: relative;
    z-index: 1;
  }
}

/* Marketing focus polish: keep the hero centered on sites, ads and leads. */
@media (min-width: 761px) {
  .hero-cta-panel {
    max-width: 640px !important;
    margin-top: 30px !important;
    padding: 22px !important;
  }

  .hero-cta-panel .hero-actions {
    gap: 18px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 72px !important;
    font-size: 17px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 46px !important;
    height: 46px !important;
  }

  .hero-cta-panel .messengers {
    gap: 18px !important;
    margin-top: 20px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 74px !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 13px 36px 13px 14px !important;
  }

  .hero-cta-panel .messenger-icon,
  .hero-cta-panel .messenger-icon img {
    width: 48px !important;
    height: 48px !important;
  }

  .hero-cta-panel .messenger-copy strong {
    font-size: 16px !important;
  }

  .hero-cta-panel .messenger-copy small {
    font-size: 13px !important;
  }

  .hero-cta-panel .flying-tags {
    margin-top: 18px !important;
  }

  .hero-cta-panel .flying-tags-group {
    gap: 8px !important;
  }

  .hero-cta-panel .flying-tags span {
    height: 42px !important;
    padding: 0 14px !important;
    gap: 8px !important;
    font-size: 12.5px !important;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 760px) {
  .hero-cta-panel {
    display: contents !important;
  }

  .hero-cta-panel::before,
  .hero-cta-panel::after {
    content: none !important;
    display: none !important;
  }

  .hero-cta-panel .hero-actions {
    order: 4 !important;
    margin-top: 24px !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    background:
      url("assets/media/hero-cta-waves.svg") center / 112% 120% no-repeat,
      linear-gradient(140deg, rgba(255, 255, 255, 0.76), rgba(233, 255, 245, 0.46));
    box-shadow:
      0 22px 48px rgba(4, 55, 32, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
  }

  .hero-visual-mobile {
    order: 5 !important;
    margin-top: 18px !important;
  }

  .hero-cta-panel .messengers {
    order: 6 !important;
    margin-top: 18px !important;
  }

  .hero-cta-panel .flying-tags {
    order: 7 !important;
    margin-top: 28px !important;
    margin-bottom: 10px !important;
  }
}

/* Final hero focus: keep the left side lighter and prioritize the main CTA on phones. */
.hero-video-stat-top {
  display: none !important;
}

.hero-cta-panel .flying-tags span:nth-child(n + 5) {
  display: none !important;
}

.hero-cta-panel .flying-tags span:nth-child(n + 5)::after {
  content: none !important;
}

@media (min-width: 761px) {
  .hero-copy {
    max-width: 710px;
  }

  .hero-cta-panel {
    max-width: 620px !important;
    padding: 20px !important;
    border-radius: 30px !important;
  }

  .hero-cta-panel .hero-actions {
    gap: 16px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 68px !important;
    padding: 0 22px !important;
  }

  .hero-cta-panel .messengers {
    gap: 16px !important;
  }

  .hero-cta-panel .messengers a {
    min-height: 68px !important;
    padding: 12px 32px 12px 13px !important;
  }

  .hero-cta-panel .flying-tags {
    margin-top: 16px !important;
  }

  .hero-cta-panel .flying-tags-group--clone {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-cta-panel {
    display: contents !important;
  }

  .hero-cta-panel .hero-actions {
    order: 4 !important;
    margin-top: 20px !important;
    padding: 10px !important;
  }

  .hero-cta-panel .hero-actions .btn {
    min-height: 58px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }

  .hero-cta-panel .hero-actions .btn-primary svg,
  .hero-cta-panel .btn-chat-icon,
  .hero-cta-panel .btn-chat-icon img {
    width: 38px !important;
    height: 38px !important;
  }

  .hero-visual-mobile {
    order: 5 !important;
    margin-top: 16px !important;
  }

  .hero-cta-panel .messengers {
    order: 6 !important;
    margin-top: 16px !important;
  }

  .hero-cta-panel .flying-tags {
    order: 7 !important;
    margin-top: 28px !important;
    margin-bottom: 10px !important;
  }
}

/* Mobile menu readability: keep the opened menu opaque over the hero title. */
@media (max-width: 940px) {
  .site-header {
    z-index: 1200 !important;
  }

  .main-nav {
    z-index: 1190 !important;
  }

  .main-nav.is-open {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(250, 255, 252, 0.985)) !important;
    border-color: rgba(8, 72, 42, 0.12) !important;
    box-shadow:
      0 26px 64px rgba(6, 36, 24, 0.18),
      0 1px 0 rgba(255, 255, 255, 0.96) inset !important;
    backdrop-filter: none !important;
  }

  .main-nav.is-open a {
    color: #050807 !important;
    background: rgba(255, 255, 255, 0.72);
  }
}

/* Adaptive service chip: long wording should never squeeze or overflow. */
.hero-cta-panel .flying-tags span,
.hero-cta-panel .flying-tags span:nth-child(n) {
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

@media (min-width: 761px) {
  .hero-cta-panel .flying-tags span {
    font-size: 12px !important;
    padding-inline: 13px !important;
  }
}

@media (max-width: 420px) {
  .hero-cta-panel .flying-tags span {
    height: 29px !important;
    padding-inline: 11px !important;
    gap: 7px !important;
    font-size: 10.5px !important;
  }

  .hero-cta-panel .flying-tags svg,
  .hero-cta-panel .flying-tags img {
    width: 12px !important;
    height: 12px !important;
  }
}

/* Mobile hero order: primary CTA first, then video, then secondary contact CTA. */
@media (max-width: 760px) {
  .hero-cta-panel .hero-actions {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .hero-cta-panel .hero-actions .btn-primary {
    order: 4 !important;
    width: 100% !important;
    min-height: 62px !important;
    margin-top: 22px !important;
  }

  .hero-visual-mobile {
    order: 5 !important;
    margin-top: 16px !important;
  }

  .hero-cta-panel .hero-actions .btn-outline {
    order: 6 !important;
    width: 100% !important;
    min-height: 58px !important;
    margin-top: 16px !important;
  }

  .hero-cta-panel .messengers {
    order: 7 !important;
    margin-top: 16px !important;
  }

  .hero-cta-panel .flying-tags {
    order: 8 !important;
    margin-top: 28px !important;
  }
}

/* Keep the back-to-top control available on phones. */
@media (max-width: 680px) {
  .back-to-top {
    display: grid !important;
    z-index: 1250 !important;
    right: 14px !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    width: 52px !important;
    height: 52px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(14px) scale(0.96) !important;
  }

  body.show-floating-actions .back-to-top {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }
}

/* Mobile first screen: remove the service line and lift the content into its place. */
@media (max-width: 760px) {
  .hero .eyebrow {
    display: none !important;
  }

  .hero.section-pad {
    padding-top: 24px !important;
  }

  .hero h1 {
    margin-top: 0 !important;
  }
}
