:root {
  --red: #d8132f;
  --ink: #171828;
  --muted: #6a6d7e;
  --paper: #f7f7fb;
  --white: #ffffff;
  --line: rgba(23, 24, 40, 0.12);
  --shadow: 0 24px 70px rgba(23, 24, 40, 0.12);
  --container: 1240px;
  --desktop-gutter: 320px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.cursor-glow {
  display: none;
}

.header-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: 104px;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 20px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  isolation: isolate;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 18px 46px rgba(23, 24, 40, 0);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -20px -10px -12px;
  z-index: -1;
  border-radius: 999px;
}

.header-hover-zone:hover + .site-header,
.site-header.is-hero-visible,
.site-header.is-desktop-visible,
.site-header:hover,
.site-header:focus-within {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(23, 24, 40, 0.08);
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.brand img {
  width: 198px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 4vw, 62px);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a,
.header-action {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--red);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(216, 19, 47, 0.18);
}

.header-action:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.header-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  display: none;
}

.back-to-top {
  display: none;
}

.section {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
}

.hero {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 148px 0 56px;
  background-image: url("assets/hero_agencia_gv_1_1x.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
a,
button {
  text-wrap: pretty;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.15vw, 3.55rem);
  line-height: 1.1;
  font-weight: 600;
}

.hero h1 span {
  color: var(--red);
}

.hero h1 .no-break {
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.9vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 34px;
  color: #686b7c;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(216, 19, 47, 0.24);
}

.button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 220ms ease;
}

.button:hover svg,
.portfolio-cta:hover svg,
.package-cta:hover svg,
.final-cta:hover svg:last-child {
  transform: translateX(5px);
}

.hero-button {
  font-size: 0.95rem;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.64);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-mark::before {
  position: absolute;
  width: min(74vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 19, 47, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  content: "";
  transform: rotate(-4deg);
}

.hero-mark img {
  position: relative;
  width: min(62vw, 360px);
  animation: floatMark 7s ease-in-out infinite;
}

.hero-stat {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: min(280px, 76%);
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.problem-section,
.cta {
  width: min(1040px, calc(100% - var(--desktop-gutter)));
  padding: 96px 0;
}

.problem-section {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  padding: 96px 0 68px;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.red-rule {
  display: block;
  width: 66px;
  height: 5px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: var(--red);
}

.problem-copy h2 {
  max-width: 580px;
  margin-bottom: 34px;
  font-size: clamp(2.35rem, 3.25vw, 3.85rem);
  line-height: 1.08;
  font-weight: 600;
}

.problem-copy h2 span,
.problem-alert,
.problem-banner h3 span {
  color: var(--red);
}

.problem-lines {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.25vw, 1.32rem);
  line-height: 1.5;
  font-weight: 400;
}

.problem-alert {
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.2vw, 1.24rem);
  line-height: 1.45;
  font-weight: 400;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-card,
.problem-banner {
  border: 1px solid rgba(23, 24, 40, 0.04);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 52px rgba(23, 24, 40, 0.1);
  backdrop-filter: blur(14px);
}

.problem-card {
  display: grid;
  grid-template-columns: 62px 1px 1fr;
  align-items: center;
  min-height: 98px;
  padding: 0 34px;
  gap: 26px;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.problem-card:hover {
  border-color: rgba(216, 19, 47, 0.18);
  box-shadow: 0 26px 70px rgba(23, 24, 40, 0.14);
  transform: translateX(-10px);
}

.problem-card:hover .problem-icon svg,
.problem-banner:hover .banner-icon svg {
  transform: scale(1.06) rotate(-2deg);
}

.problem-card h3,
.problem-banner h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.28vw, 1.35rem);
  line-height: 1.2;
  font-weight: 600;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
}

.problem-icon svg,
.banner-icon svg {
  width: 46px;
  height: 46px;
  transition: transform 260ms ease;
}

.problem-icon path,
.problem-icon circle,
.problem-icon rect,
.banner-icon path,
.banner-icon circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-icon .accent,
.banner-icon path,
.banner-icon circle {
  stroke: var(--red);
}

.problem-icon .accent-fill {
  fill: var(--white);
  stroke: var(--red);
}

.problem-icon .accent-box {
  stroke: var(--red);
}

.problem-divider {
  display: block;
  width: 1px;
  height: 50px;
  background: var(--red);
}

.problem-banner {
  display: grid;
  grid-template-columns: 82px 1px 1fr;
  align-items: center;
  gap: 34px;
  min-height: 132px;
  margin-top: 42px;
  padding: 0 76px;
}

.banner-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 19, 47, 0.12);
}

.problem-banner h3 {
  font-size: clamp(1.55rem, 1.95vw, 2.05rem);
  line-height: 1.18;
}

.problem-list .problem-card:nth-child(2) {
  transition-delay: 80ms;
}

.problem-list .problem-card:nth-child(3) {
  transition-delay: 160ms;
}

.problem-list .problem-card:nth-child(4) {
  transition-delay: 240ms;
}

.problem-list .problem-card:nth-child(5) {
  transition-delay: 320ms;
}

.visual-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(4, 7, 13, 0.98) 0%, rgba(4, 7, 13, 0.9) 34%, rgba(4, 7, 13, 0.2) 72%),
    url("assets/visual_flow_bg_1_1x.webp") center right / cover no-repeat;
  color: var(--white);
}

.visual-section::before {
  position: absolute;
  inset: auto auto -28% -12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 19, 47, 0.28), rgba(216, 19, 47, 0));
  content: "";
  pointer-events: none;
}

.visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 760px;
  margin: 0 auto;
  padding: 92px 0;
}

.visual-copy {
  width: min(100%, 610px);
}

.visual-copy .red-rule {
  margin-bottom: 36px;
}

.visual-copy h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(2.45rem, 3.15vw, 3.7rem);
  line-height: 1.12;
  font-weight: 600;
}

.visual-copy h2 span {
  color: var(--red);
}

.visual-list {
  display: grid;
  max-width: 440px;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}

.visual-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.16vw, 1.18rem);
  line-height: 1.35;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-14px);
  transition: color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.visual-list li:hover {
  border-color: rgba(216, 19, 47, 0.65);
  color: var(--white);
  transform: translateX(8px);
}

.visual-copy.is-visible .visual-list li {
  animation: listItemIn 620ms ease forwards;
}

.visual-copy.is-visible .visual-list li:nth-child(2) {
  animation-delay: 80ms;
}

.visual-copy.is-visible .visual-list li:nth-child(3) {
  animation-delay: 160ms;
}

.visual-copy.is-visible .visual-list li:nth-child(4) {
  animation-delay: 240ms;
}

.visual-copy.is-visible .visual-list li:nth-child(5) {
  animation-delay: 320ms;
}

.visual-list svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-note span {
  display: block;
  width: 92px;
  height: 3px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--red);
}

.visual-note p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  line-height: 1.48;
  font-weight: 400;
}

.visual-note strong {
  color: var(--white);
  font-weight: 600;
}

.process-section {
  background: var(--white);
  color: var(--ink);
}

.process-inner {
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  margin: 0 auto;
  padding: 96px 0 104px;
}

.process-heading {
  margin-bottom: 54px;
}

.process-heading p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  color: var(--red);
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.process-heading p span {
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.process-heading h2 {
  max-width: 560px;
  font-size: clamp(2.35rem, 3vw, 3.6rem);
  line-height: 1.1;
  font-weight: 600;
}

.process-heading h2 span {
  color: var(--red);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 44px);
}

.process-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 28px 26px 32px;
  border: 1px solid rgba(23, 24, 40, 0.04);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(23, 24, 40, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.process-card:hover {
  border-color: rgba(216, 19, 47, 0.16);
  box-shadow: 0 28px 72px rgba(23, 24, 40, 0.13);
  transform: translateY(-8px);
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 40%;
  right: calc(clamp(24px, 3.2vw, 44px) * -1 + 6px);
  width: calc(clamp(24px, 3.2vw, 44px) - 10px);
  border-top: 3px dotted var(--red);
  content: "";
}

.process-card:not(:last-child)::before {
  position: absolute;
  top: calc(40% - 5px);
  right: calc(clamp(24px, 3.2vw, 44px) * -1 - 2px);
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  content: "";
  transform: rotate(45deg);
}

.process-number {
  color: var(--red);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 700;
}

.process-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  align-self: center;
  margin: 22px 0 22px;
  border-radius: 50%;
  background: rgba(216, 19, 47, 0.08);
  transition: transform 260ms ease, background 260ms ease;
}

.process-icon img {
  width: 74px;
  max-height: 74px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.process-card:hover .process-icon {
  background: rgba(216, 19, 47, 0.12);
  transform: translateY(-4px);
}

.process-card:hover .process-icon img {
  transform: scale(1.05);
}

.process-card h3 {
  max-width: 210px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.35vw, 1.42rem);
  line-height: 1.25;
  font-weight: 600;
}

.process-rule {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--red);
}

.process-card p {
  max-width: 220px;
  margin: 0;
  color: rgba(23, 24, 40, 0.68);
  font-size: clamp(0.94rem, 1.04vw, 1rem);
  line-height: 1.52;
  font-weight: 400;
}

.process-grid .process-card:nth-child(2) {
  transition-delay: 80ms;
}

.process-grid .process-card:nth-child(3) {
  transition-delay: 160ms;
}

.process-grid .process-card:nth-child(4) {
  transition-delay: 240ms;
}

.portfolio-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 82%, rgba(216, 19, 47, 0.16), transparent 28%),
    linear-gradient(120deg, #05080e 0%, #080b12 52%, #030509 100%);
  color: var(--white);
}

.portfolio-inner {
  display: grid;
  grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
  gap: clamp(58px, 6vw, 96px);
  align-items: center;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 760px;
  margin: 0 auto;
  padding: 98px 0;
}

.portfolio-copy h2 {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(2.15rem, 2.65vw, 3.05rem);
  line-height: 1.16;
  font-weight: 600;
}

.portfolio-copy h2 span {
  color: var(--red);
}

.portfolio-copy h2 .no-break {
  white-space: nowrap;
}

.portfolio-copy h2 .title-line {
  display: inline-block;
  color: var(--white);
  white-space: nowrap;
}

.portfolio-copy p {
  max-width: 380px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.96rem, 1.06vw, 1.05rem);
  line-height: 1.55;
  font-weight: 400;
}

.portfolio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  min-width: 250px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.portfolio-cta:hover {
  background: #b90f27;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(216, 19, 47, 0.28);
  transform: translateY(-2px);
}

.portfolio-cta svg,
.portfolio-nav svg,
.portfolio-card-body svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.portfolio-nav {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.portfolio-nav:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.portfolio-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-dots::before,
.portfolio-dots::after {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.portfolio-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.portfolio-dots button.is-active {
  background: var(--red);
  transform: scale(1.15);
}

.portfolio-carousel {
  overflow: hidden;
  min-width: 0;
  padding: 12px 0;
}

.portfolio-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card {
  position: relative;
  flex: 0 0 clamp(360px, 34vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  transition: border-color 320ms ease, transform 320ms ease;
}

.portfolio-card.is-active {
  border-color: rgba(255, 255, 255, 0.26);
}

.portfolio-card:hover {
  border-color: rgba(216, 19, 47, 0.42);
  transform: translateY(-4px);
}

.portfolio-art {
  position: relative;
  display: grid;
  aspect-ratio: 1044 / 1176;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #10131a;
}

.portfolio-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 700ms ease;
}

.portfolio-card.is-active .portfolio-art img {
  animation: subtleZoom 9s ease-in-out infinite alternate;
}

.portfolio-card:hover .portfolio-art img {
  transform: scale(1.035);
}

.portfolio-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 24px 22px;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.74) 54%, rgba(8, 10, 16, 0.92) 100%);
  pointer-events: none;
}

.portfolio-card-body p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio-card-body h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 600;
}

.portfolio-card-body span {
  display: block;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 400;
}

.portfolio-card-body svg {
  position: absolute;
  right: 28px;
  bottom: 34px;
  color: var(--red);
  transition: transform 220ms ease;
}

.portfolio-card:hover .portfolio-card-body svg {
  transform: translateX(5px);
}

.package-section {
  min-height: 760px;
  background: url("assets/packages_bg_1_1x.webp") center right / cover no-repeat;
}

.package-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(360px, 0.62fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 760px;
  margin: 0 auto;
  padding: 96px 0;
}

.package-copy {
  max-width: 520px;
}

.package-copy .red-rule {
  margin-bottom: 36px;
}

.package-copy h2 {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(2.2rem, 2.85vw, 3.35rem);
  line-height: 1.12;
  font-weight: 600;
}

.package-copy h2 span {
  color: var(--red);
}

.package-copy p {
  max-width: 380px;
  margin-bottom: 28px;
  color: rgba(23, 24, 40, 0.62);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.5;
  font-weight: 400;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 64px;
  min-width: 310px;
  padding: 0 30px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(216, 19, 47, 0.22);
  font-size: 1.02rem;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.package-cta:hover {
  box-shadow: 0 24px 48px rgba(216, 19, 47, 0.28);
  transform: translateY(-2px);
}

.package-cta svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: transform 220ms ease;
}

.package-card {
  max-width: 420px;
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 72px rgba(23, 24, 40, 0.14);
  backdrop-filter: blur(18px);
}

.package-card article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 24, 40, 0.1);
  transition: transform 220ms ease;
}

.package-card article:hover {
  transform: translateX(6px);
}

.package-card.is-visible article {
  animation: listItemIn 620ms ease forwards;
}

.package-card.is-visible article:nth-child(2) {
  animation-delay: 100ms;
}

.package-card.is-visible article:nth-child(3) {
  animation-delay: 200ms;
}

.package-card article:first-child {
  padding-top: 0;
}

.package-card article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.package-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 19, 47, 0.12);
  transition: transform 220ms ease, background 220ms ease;
}

.package-card article:hover .package-icon {
  background: rgba(216, 19, 47, 0.16);
  transform: scale(1.05);
}

.package-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.package-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.2;
  font-weight: 600;
}

.package-card p {
  margin: 0;
  color: rgba(23, 24, 40, 0.62);
  font-size: 0.98rem;
  line-height: 1.42;
  font-weight: 400;
}

.feedback-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(216, 19, 47, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
  color: var(--ink);
}

.feedback-inner {
  display: grid;
  grid-template-columns: minmax(330px, 0.62fr) minmax(520px, 0.9fr);
  gap: clamp(54px, 6vw, 104px);
  align-items: center;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 760px;
  margin: 0 auto;
  padding: 96px 0;
}

.feedback-copy h2 {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(2.25rem, 3vw, 3.55rem);
  line-height: 1.12;
  font-weight: 600;
}

.feedback-copy h2 span {
  display: block;
  color: var(--red);
}

.feedback-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(23, 24, 40, 0.62);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.55;
  font-weight: 400;
}

.feedback-stage {
  display: grid;
  justify-items: center;
  gap: 34px;
  min-width: 0;
  width: 100%;
}

.feedback-window {
  position: relative;
  width: min(100%, 680px);
  overflow: hidden;
}

.feedback-stack {
  display: flex;
  gap: 22px;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-card {
  flex: 0 0 clamp(214px, 18vw, 292px);
  width: clamp(214px, 18vw, 292px);
  aspect-ratio: 466 / 850;
  overflow: hidden;
  border-radius: 22px;
  background: #111419;
  box-shadow: 0 24px 58px rgba(23, 24, 40, 0.16);
}

.feedback-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feedback-card.is-active {
  box-shadow: 0 28px 70px rgba(23, 24, 40, 0.2);
}

.feedback-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.feedback-nav {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.feedback-nav:hover {
  background: rgba(216, 19, 47, 0.08);
  transform: translateY(-2px);
}

.feedback-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feedback-dots {
  display: flex;
  gap: 14px;
  align-items: center;
}

.feedback-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 24, 40, 0.16);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.feedback-dots button.is-active {
  background: var(--red);
  transform: scale(1.16);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-6px);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 86px;
  color: var(--red);
  font-weight: 900;
}

.service-card p,
.step p,
.price-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  padding: clamp(30px, 6vw, 64px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.workflow-panel .eyebrow {
  color: #ff5b6d;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.step p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: var(--red);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  white-space: nowrap;
}

.cta {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 36px;
  padding: 46px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cta img {
  width: 96px;
}

.final-section {
  background: var(--red);
  color: var(--white);
}

.final-inner {
  display: flex;
  align-items: center;
  width: min(var(--container), calc(100% - var(--desktop-gutter)));
  min-height: 100vh;
  margin: 0 auto;
  padding: 96px 0 76px;
}

.final-copy {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 3vw, 46px);
  align-items: center;
  justify-content: center;
  width: 100%;
}

.final-details {
  max-width: 470px;
  padding-left: clamp(26px, 2.8vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.final-copy h2 {
  justify-self: end;
  width: 100%;
  max-width: 520px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 3.05vw, 3.65rem);
  line-height: 1.1;
  font-weight: 600;
}

.final-copy h2 span {
  display: block;
}

.final-copy h2 span:nth-child(n + 3) {
  color: var(--ink);
}

.final-dot {
  display: inline !important;
  color: var(--white);
}

.final-details > p {
  max-width: 450px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.55;
  font-weight: 400;
}

.final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 320px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--white);
  color: var(--red);
  box-shadow: 0 18px 42px rgba(23, 24, 40, 0.14);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.final-cta:hover {
  box-shadow: 0 24px 56px rgba(23, 24, 40, 0.18);
  transform: translateY(-2px);
}

.final-cta svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.final-cta svg:last-child {
  fill: currentColor;
  stroke: none;
}

.final-bottom {
  display: grid;
  gap: 24px;
  max-width: 470px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.final-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 400;
}

.final-bottom strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.final-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.final-socials a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.final-socials a:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.final-socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 22px max(calc((100% - var(--container)) / 2), calc(var(--desktop-gutter) / 2)) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--red);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

[data-reveal].is-visible .red-rule,
.process-heading.is-visible p span,
.visual-copy.is-visible .visual-note span {
  animation: lineGrow 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy.is-visible h1,
.problem-copy.is-visible h2,
.visual-copy.is-visible h2,
.process-heading.is-visible h2,
.portfolio-copy.is-visible h2,
.package-copy.is-visible h2 {
  animation: titleLift 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feedback-copy.is-visible h2 {
  animation: titleLift 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.final-copy.is-visible h2 span {
  animation: titleLineIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.final-copy.is-visible h2 span:nth-child(2) {
  animation-delay: 70ms;
}

.final-copy.is-visible h2 span:nth-child(3) {
  animation-delay: 140ms;
}

.final-copy.is-visible h2 span:nth-child(4) {
  animation-delay: 210ms;
}

.final-copy.is-visible .final-details {
  animation: detailIn 820ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
}

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
    transform-origin: left center;
  }
  to {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

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

@keyframes titleLineIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes listItemIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subtleZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.055);
  }
}

@media (max-width: 1320px) and (min-width: 861px) {
  :root {
    --desktop-gutter: 80px;
  }

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

  .process-card {
    min-height: 300px;
  }

  .process-card::before,
  .process-card::after {
    display: none;
  }

  .feedback-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feedback-copy h2,
  .feedback-copy p {
    max-width: 640px;
  }

  .feedback-window {
    width: min(100%, 620px);
  }

  .final-inner {
    align-items: flex-start;
    min-height: auto;
  }

  .final-copy {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-copy h2 {
    justify-self: start;
  }

  .final-details {
    max-width: 560px;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --desktop-gutter: 32px;
  }

  .site-header {
    position: absolute;
    top: 36px;
    grid-template-columns: 1fr auto;
    gap: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .header-hover-zone {
    display: none;
  }

  .site-header::before {
    display: none;
  }

  .back-to-top {
    position: fixed;
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 12;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    background: rgba(216, 19, 47, 0.94);
    color: var(--white);
    box-shadow: 0 18px 42px rgba(23, 24, 40, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  }

  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .section {
    width: min(100% - 32px, 720px);
  }

  .brand img {
    width: 138px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section-heading,
  .workflow-panel,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    gap: 32px;
  }

  .hero-mark {
    min-height: 360px;
  }

  .hero-stat {
    right: 18px;
    bottom: 4px;
  }

  .problem-section {
    width: min(100% - 32px, 720px);
    padding: 78px 0 54px;
  }

  .problem-grid,
  .problem-banner {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    gap: 42px;
  }

  .red-rule {
    margin-bottom: 30px;
  }

  .problem-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(2.05rem, 6.2vw, 2.65rem);
  }

  .problem-lines {
    margin-bottom: 30px;
  }

  .problem-card {
    grid-template-columns: 58px 1px 1fr;
    min-height: 96px;
    padding: 0 22px;
    gap: 20px;
  }

  .problem-icon {
    width: 58px;
    height: 58px;
  }

  .problem-icon svg {
    width: 46px;
    height: 46px;
  }

  .problem-banner {
    gap: 22px;
    min-height: auto;
    padding: 28px 24px;
  }

  .problem-banner .problem-divider {
    width: 72px;
    height: 1px;
  }

  .problem-banner h3 {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
  }

  .visual-section {
    min-height: auto;
    background-position: center calc(100% + 120px);
    background:
      linear-gradient(180deg, rgba(4, 7, 13, 0.98) 0%, rgba(4, 7, 13, 0.9) 42%, rgba(4, 7, 13, 0.08) 100%),
      url("assets/visual_flow_mobile_bg_1x.webp") center bottom / cover no-repeat;
  }

  .visual-inner {
    width: min(100% - 32px, 720px);
    min-height: auto;
    padding: 78px 0 360px;
  }

  .visual-copy {
    width: min(100%, 560px);
  }

  .visual-copy h2 {
    font-size: clamp(2.05rem, 6vw, 2.65rem);
  }

  .visual-list {
    max-width: 100%;
  }

  .process-inner {
    width: min(100% - 32px, 720px);
    padding: 78px 0 86px;
  }

  .process-heading {
    margin-bottom: 38px;
  }

  .process-heading h2 {
    font-size: clamp(2.05rem, 5.8vw, 2.7rem);
  }

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

  .process-card {
    min-height: 330px;
    padding: 26px;
  }

  .process-card::before,
  .process-card::after {
    display: none;
  }

  .portfolio-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    min-height: auto;
    padding: 78px 0;
    gap: 42px;
  }

  .portfolio-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 5.8vw, 2.7rem);
  }

  .portfolio-controls {
    margin-top: 24px;
  }

  .portfolio-card {
    flex-basis: min(82vw, 520px);
  }

  .portfolio-art {
    min-height: 0;
  }

  .package-section {
    min-height: auto;
    background: url("assets/packages_bg_1_1x.webp") right bottom / cover no-repeat;
  }

  .package-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    min-height: auto;
    padding: 78px 0 360px;
    gap: 34px;
  }

  .package-copy {
    max-width: 520px;
  }

  .package-copy .red-rule {
    margin-bottom: 30px;
  }

  .package-copy h2 {
    font-size: clamp(2rem, 5.8vw, 2.65rem);
  }

  .package-card {
    max-width: 460px;
    padding: 26px 30px;
  }

  .feedback-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    min-height: auto;
    padding: 78px 0;
    gap: 40px;
  }

  .feedback-copy h2 {
    font-size: clamp(2rem, 5.8vw, 2.65rem);
  }

  .feedback-stage {
    gap: 26px;
  }

  .feedback-window {
    width: min(100%, 620px);
  }

  .feedback-card {
    flex-basis: min(56vw, 290px);
    width: min(56vw, 290px);
  }

  .final-inner {
    align-items: flex-start;
    width: min(100% - 32px, 720px);
    min-height: 100svh;
    padding: 78px 0 66px;
  }

  .final-copy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-details {
    max-width: 560px;
    padding-left: 0;
    border-left: 0;
    order: 2;
  }

  .final-copy h2 {
    justify-self: start;
    order: 1;
    font-size: clamp(2rem, 5.8vw, 2.75rem);
  }

  .final-bottom {
    max-width: 100%;
  }

  .cta {
    padding: 32px 24px;
  }
}

@media (max-width: 560px) {
  :root {
    --desktop-gutter: 24px;
  }

  .site-header {
    top: 22px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    width: calc(100% - 36px);
    padding: 0;
  }

  .brand img {
    width: 134px;
  }

  .header-action {
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
    gap: 8px;
    font-size: 0.78rem;
    box-shadow: 0 13px 28px rgba(216, 19, 47, 0.2);
  }

  .header-action svg {
    width: 19px;
    height: 19px;
  }

  .mobile-menu {
    display: grid;
    gap: 5px;
    width: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu span {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .mobile-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header .nav-links {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(23, 24, 40, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 50px rgba(23, 24, 40, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav-links a {
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
  }

  .site-header .nav-links a:hover {
    background: rgba(216, 19, 47, 0.08);
    color: var(--red);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero {
    align-items: flex-start;
    min-height: 184vw;
    padding: 126px 0 0;
    background-image:
      linear-gradient(180deg, #ffffff 0%, #ffffff 13%, rgba(255, 255, 255, 0.94) 19%, rgba(255, 255, 255, 0) 34%),
      url("assets/hero_mobile_agencia_gv_1_1x.webp");
    background-position: center top, center 80px;
    background-size: 100% 100%, 100% auto;
  }

  .hero-copy.section {
    width: calc(100% - 56px);
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(2rem, 7.2vw, 2.42rem);
    line-height: 1.16;
    font-weight: 600;
  }

  .hero h1 .no-break {
    white-space: nowrap;
  }

  .hero-text {
    max-width: 320px;
    margin-bottom: 26px;
    font-size: clamp(0.88rem, 3.2vw, 0.95rem);
    line-height: 1.58;
  }

  .hero-button {
    justify-content: space-between;
    width: 318px;
    max-width: 100%;
    min-height: 56px;
    padding: 0 20px 0 24px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .hero-button svg {
    width: 24px;
    height: 24px;
  }

  .hero-mark::before {
    width: 92vw;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row strong {
    font-size: 2.2rem;
  }

  .problem-section {
    width: calc(100% - 56px);
  }

  .problem-grid {
    gap: 30px;
  }

  .red-rule {
    width: 54px;
    height: 3px;
    margin-bottom: 28px;
  }

  .problem-copy h2 {
    margin-bottom: 26px;
    font-size: clamp(1.95rem, 6.8vw, 2.35rem);
    line-height: 1.14;
  }

  .problem-lines {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .problem-alert {
    font-size: 1rem;
    line-height: 1.48;
  }

  .problem-list {
    gap: 14px;
  }

  .problem-card {
    grid-template-columns: 48px 1px 1fr;
    gap: 18px;
    min-height: 88px;
    padding: 0 22px;
    border-radius: 12px;
    box-shadow: 0 18px 46px rgba(23, 24, 40, 0.08);
  }

  .problem-card h3 {
    font-size: 1rem;
    line-height: 1.28;
  }

  .problem-icon {
    width: 48px;
    height: 48px;
  }

  .problem-icon svg {
    width: 38px;
    height: 38px;
  }

  .problem-divider {
    height: 52px;
  }

  .problem-banner {
    grid-template-columns: 62px 1px 1fr;
    gap: 16px;
    min-height: 150px;
    margin-top: 26px;
    padding: 24px 18px;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(23, 24, 40, 0.08);
  }

  .problem-banner .problem-divider {
    width: 1px;
    height: 82px;
  }

  .banner-icon {
    width: 62px;
    height: 62px;
  }

  .banner-icon svg {
    width: 38px;
    height: 38px;
  }

  .problem-banner h3 {
    font-size: clamp(1.12rem, 4.2vw, 1.22rem);
    line-height: 1.28;
  }

  .visual-inner {
    width: calc(100% - 56px);
    min-height: 1040px;
    padding: 64px 0 500px;
    align-items: flex-start;
  }

  .visual-section::before {
    opacity: 0;
  }

  .visual-copy .red-rule {
    width: 54px;
    height: 3px;
    margin-bottom: 30px;
  }

  .visual-copy h2 {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: clamp(1.95rem, 6.8vw, 2.35rem);
    line-height: 1.15;
  }

  .visual-list li {
    grid-template-columns: 38px 1fr;
    gap: 18px;
    min-height: 55px;
    font-size: 1rem;
    font-weight: 500;
  }

  .visual-list svg {
    width: 26px;
    height: 26px;
  }

  .visual-note {
    margin-top: 28px;
  }

  .visual-note span {
    width: 72px;
    height: 4px;
    margin-bottom: 28px;
  }

  .visual-note p {
    max-width: 310px;
    font-size: 0.98rem;
  }

  .process-inner {
    width: min(100% - 56px, 420px);
    padding: 72px 0 84px;
  }

  .process-heading {
    margin-bottom: 36px;
  }

  .process-heading p {
    gap: 14px;
    margin-bottom: 26px;
    font-size: 0.82rem;
    letter-spacing: 0;
  }

  .process-heading p span {
    width: 46px;
    height: 3px;
  }

  .process-heading h2 {
    max-width: 300px;
    font-size: clamp(1.95rem, 6.8vw, 2.35rem);
    line-height: 1.12;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-card {
    display: grid;
    grid-template-columns: clamp(82px, 21vw, 96px) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    align-items: center;
    column-gap: clamp(16px, 4.4vw, 22px);
    min-height: auto;
    padding: clamp(22px, 5.8vw, 28px) clamp(18px, 5vw, 26px);
    border-color: rgba(23, 24, 40, 0.03);
    border-radius: 9px;
    box-shadow: 0 18px 46px rgba(23, 24, 40, 0.07);
  }

  .process-icon {
    grid-column: 1;
    grid-row: 1 / span 4;
    width: clamp(82px, 21vw, 96px);
    height: clamp(82px, 21vw, 96px);
    align-self: center;
    margin: 0;
    background: radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.55), transparent 46%), rgba(216, 19, 47, 0.09);
  }

  .process-icon img {
    width: clamp(56px, 14.8vw, 68px);
    max-height: clamp(56px, 14.8vw, 68px);
  }

  .process-number {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 5.8vw, 1.95rem);
  }

  .process-card h3 {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 14px;
    font-size: clamp(1.02rem, 3.8vw, 1.18rem);
    line-height: 1.28;
  }

  .process-rule {
    grid-column: 2;
    grid-row: 3;
    width: 46px;
    height: 3px;
    margin-bottom: 14px;
  }

  .process-card p {
    grid-column: 2;
    grid-row: 4;
    color: rgba(23, 24, 40, 0.62);
    font-size: clamp(0.88rem, 3.2vw, 0.95rem);
    line-height: 1.5;
  }

  .process-card h3,
  .process-card p {
    max-width: 100%;
  }

  .portfolio-inner {
    width: calc(100% - 56px);
    padding: 72px 0;
    gap: 44px;
  }

  .portfolio-cta {
    width: 100%;
    min-width: 0;
  }

  .portfolio-controls {
    justify-content: space-between;
    gap: 14px;
  }

  .portfolio-dots {
    gap: 9px;
  }

  .portfolio-dots::before,
  .portfolio-dots::after {
    width: 18px;
  }

  .portfolio-card {
    flex: 0 0 calc(32% - 4px);
    height: clamp(330px, 92vw, 430px);
    min-width: 0;
    border-color: rgba(255, 255, 255, 0.2);
    transition:
      border-color 320ms ease,
      transform 320ms ease;
  }

  .portfolio-card.is-active {
    flex-basis: calc(68% - 8px);
  }

  .portfolio-art {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .mock-laptop {
    width: 76%;
    min-height: 150px;
    padding: 22px;
  }

  .mock-phone {
    width: 70px;
    height: 124px;
  }

  .portfolio-card-body {
    min-height: 0;
    padding: 52px 18px 18px;
  }

  .portfolio-card-body p {
    margin-bottom: 7px;
    font-size: 0.62rem;
    letter-spacing: 0;
  }

  .portfolio-card-body h3 {
    font-size: clamp(1rem, 4.4vw, 1.4rem);
    line-height: 1.08;
  }

  .portfolio-card.is-active .portfolio-card-body {
    padding: 58px 22px 22px;
  }

  .portfolio-card.is-active .portfolio-card-body h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .portfolio-carousel {
    overflow: hidden;
    padding: 0;
  }

  .portfolio-track {
    gap: 12px;
    align-items: stretch;
  }

  .package-section {
    background: url("assets/packages_mobile_bg_full_1_1x.webp") center bottom / 100% auto no-repeat;
  }

  .package-inner {
    width: calc(100% - 56px);
    padding: 76px 0 clamp(390px, 76vw, 470px);
    gap: 42px;
  }

  .package-copy .red-rule {
    width: 54px;
    height: 3px;
    margin-bottom: 28px;
  }

  .package-copy h2 {
    max-width: 390px;
    margin-bottom: 24px;
    font-size: clamp(2.32rem, 9.8vw, 3rem);
    line-height: 1.1;
  }

  .package-copy h2 span {
    display: block;
  }

  .package-copy p {
    max-width: 330px;
    margin-bottom: 30px;
    font-size: clamp(0.98rem, 4.2vw, 1.12rem);
    line-height: 1.5;
  }

  .package-cta {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 56px;
    justify-content: space-between;
    gap: 18px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 0.98rem;
  }

  .package-card {
    max-width: 100%;
    padding: 28px 24px;
    border-color: rgba(23, 24, 40, 0.04);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 56px rgba(23, 24, 40, 0.1);
  }

  .package-card article {
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .package-icon {
    width: 64px;
    height: 64px;
    background: rgba(216, 19, 47, 0.11);
  }

  .package-icon svg {
    width: 34px;
    height: 34px;
  }

  .package-card h3 {
    margin-bottom: 8px;
    font-size: clamp(1.12rem, 4.8vw, 1.28rem);
    line-height: 1.18;
  }

  .package-card p {
    font-size: clamp(0.94rem, 4vw, 1.04rem);
    line-height: 1.42;
  }

  .feedback-inner {
    width: calc(100% - 56px);
    padding: 72px 0;
    gap: 38px;
  }

  .feedback-copy h2 {
    font-size: clamp(1.9rem, 6.6vw, 2.35rem);
    line-height: 1.16;
  }

  .feedback-copy p {
    font-size: 0.96rem;
  }

  .feedback-window {
    width: min(100%, 420px);
  }

  .feedback-card {
    flex-basis: min(68vw, 252px);
    width: min(68vw, 252px);
    border-radius: 18px;
  }

  .feedback-controls {
    gap: 14px;
  }

  .feedback-dots {
    gap: 9px;
  }

  .feedback-dots button {
    width: 7px;
    height: 7px;
  }

  .feedback-nav {
    width: 38px;
    height: 38px;
  }

  .final-inner {
    width: min(100% - 52px, 430px);
    min-height: 100svh;
    padding: clamp(96px, 24vw, 126px) 0 68px;
  }

  .final-copy {
    gap: 48px;
  }

  .final-copy h2 {
    margin-bottom: 0;
    font-size: clamp(2.75rem, 12.4vw, 4rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
  }

  .final-details > p {
    max-width: 100%;
    margin-bottom: 42px;
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.56);
    font-size: clamp(1.35rem, 5.1vw, 1.62rem);
    line-height: 1.46;
  }

  .final-cta {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    justify-content: space-between;
    gap: 18px;
    padding: 0 clamp(24px, 7vw, 34px);
    border-radius: 12px;
    font-size: clamp(1.18rem, 4.6vw, 1.42rem);
    font-weight: 700;
  }

  .final-cta svg {
    width: 34px;
    height: 34px;
  }

  .final-bottom {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 54px;
    padding-top: 42px;
    border-top-color: rgba(255, 255, 255, 0.5);
  }

  .final-bottom p {
    font-size: clamp(1.18rem, 4.6vw, 1.48rem);
    line-height: 1.5;
  }

  .final-bottom strong {
    margin-top: 4px;
    font-weight: 700;
  }

  .final-socials {
    gap: 24px;
    padding-left: 0;
    border-left: 0;
  }

  .final-socials a {
    width: 82px;
    height: 82px;
    font-size: 1.55rem;
  }

  .final-socials svg {
    width: 34px;
    height: 34px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 370px) {
  .final-inner {
    width: calc(100% - 44px);
  }

  .final-copy h2 {
    font-size: clamp(2.4rem, 11.7vw, 2.72rem);
  }

  .final-details > p {
    padding-left: 22px;
    font-size: 1.16rem;
  }

  .final-cta {
    min-height: 66px;
    gap: 14px;
    padding: 0 20px;
    font-size: 1.04rem;
  }

  .final-cta svg {
    width: 30px;
    height: 30px;
  }

  .final-socials a {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 400px) {
  .site-header {
    top: 18px;
    gap: 9px;
    width: calc(100% - 28px);
  }

  .brand img {
    width: 122px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 11px;
    gap: 6px;
    font-size: 0.72rem;
  }

  .header-action svg {
    width: 18px;
    height: 18px;
  }

  .mobile-menu {
    width: 29px;
    gap: 4px;
  }

  .mobile-menu span {
    height: 3px;
  }

  .hero {
    min-height: 190vw;
    padding-top: 104px;
    background-position: center top, center 70px;
  }

  .hero-copy.section {
    width: calc(100% - 52px);
  }

  .hero h1 {
    font-size: clamp(1.88rem, 7.2vw, 2.12rem);
  }

  .hero-text {
    max-width: 300px;
    font-size: 0.88rem;
  }

  .hero-button {
    width: 100%;
    min-height: 54px;
    font-size: 0.86rem;
  }

  .process-inner {
    width: min(100% - 44px, 360px);
  }

  .process-card {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 15px;
    padding: 22px 18px;
  }

  .process-icon {
    width: 72px;
    height: 72px;
  }

  .process-icon img {
    width: 50px;
    max-height: 50px;
  }

  .process-number {
    margin-bottom: 11px;
    font-size: 1.75rem;
  }

  .process-card h3 {
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .process-rule {
    margin-bottom: 14px;
  }

  .process-card p {
    font-size: 0.86rem;
  }
}

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