:root {
  --ink: #111827;
  --muted: #5f6673;
  --line: #e6e8ec;
  --paper: #ffffff;
  --soft: #f7f7f3;
  --blue: #1f3f8b;
  --sky: #9ed2ef;
  --gold: #f7c948;
  --mint: #d9f0e5;
  --focus: #0f766e;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.11);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body:has(.site-nav.is-open) {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--container));
  min-height: 78px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.82rem;
}

.brand-text {
  display: grid;
  gap: 2px;
  font-size: 1rem;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

.icon-button svg,
.button svg,
.text-link svg,
.inline-social svg,
.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section-tight {
  padding: 78px 0;
}

.section-band {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 4.45rem;
  max-width: 880px;
}

mark {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 56%, rgba(247, 201, 72, 0.72) 56%);
}

.hero-text strong {
  color: var(--ink);
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  max-width: 760px;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100svh - 78px);
  padding-top: 48px;
  padding-bottom: 72px;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.14rem;
}

.hero-actions,
.form-actions,
.next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-tags span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.2);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button-ghost {
  width: 100%;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 28px -16px -20px 22px;
  z-index: -1;
  background: linear-gradient(135deg, var(--sky), var(--gold) 58%, var(--mint));
  border-radius: 8px;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-showcase {
  position: relative;
  width: min(100%, 560px);
  min-height: 520px;
  margin-left: auto;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 40px 18px 22px 28px;
  z-index: -1;
  background: radial-gradient(circle at 18% 20%, rgba(247, 201, 72, 0.25), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(158, 210, 239, 0.42), transparent 34%),
    #f5f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mockup {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
}

.phone-mockup {
  top: 54px;
  left: 6px;
  width: 118px;
  height: 214px;
  padding: 15px 10px 12px;
  transform: rotate(-7deg);
  background: #111827;
}

.phone-top {
  width: 38px;
  height: 7px;
  margin: 0 auto 14px;
  background: #0b1220;
  border-radius: 99px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.social-grid span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), #0f172a 62%, var(--gold));
}

.phone-mockup p,
.timeline-mockup p {
  margin: 12px 0 0;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.flyer-mockup {
  top: 18px;
  left: 150px;
  width: 174px;
  min-height: 206px;
  padding: 20px;
  color: white;
  background: linear-gradient(160deg, #1f3f8b, #111827);
}

.flyer-mockup::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(247, 201, 72, 0.6);
  border-radius: 8px;
}

.flyer-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.flyer-mockup strong {
  position: relative;
  display: block;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.flyer-mockup small {
  position: relative;
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.laptop-mockup {
  top: 54px;
  right: 0;
  width: 244px;
  height: 158px;
  padding: 12px;
  transform: rotate(4deg);
}

.browser-bar {
  display: flex;
  gap: 5px;
  padding-bottom: 11px;
}

.browser-bar span {
  width: 7px;
  height: 7px;
  background: #cdd5e1;
  border-radius: 50%;
}

.site-preview {
  display: grid;
  gap: 11px;
  min-height: 112px;
  padding: 18px;
  color: white;
  background: linear-gradient(135deg, #111827, #1f3f8b);
  border-radius: 8px;
}

.site-preview strong {
  font-size: 1.08rem;
}

.site-preview span {
  width: 86%;
  height: 8px;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 99px;
}

.site-preview span:last-child {
  width: 58%;
}

.timeline-mockup {
  left: 10px;
  bottom: 58px;
  width: 328px;
  min-height: 164px;
  padding: 16px;
  background: #0b1220;
}

.timeline-screen {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 18px);
  gap: 6px;
}

.clip,
.audio {
  border-radius: 5px;
}

.clip-a {
  grid-column: 1 / 4;
  background: #ef5da8;
}

.clip-b {
  grid-column: 4 / 7;
  background: #60a5fa;
}

.clip-c {
  grid-column: 7 / 10;
  background: #22c55e;
}

.clip-d {
  grid-column: 10 / 13;
  background: #8b5cf6;
}

.audio-a {
  grid-column: 1 / 8;
  grid-row: 3;
  background: #14b8a6;
}

.audio-b {
  grid-column: 5 / 13;
  grid-row: 4;
  background: #2dd4bf;
}

.vertical-video {
  right: 30px;
  bottom: 28px;
  width: 132px;
  height: 210px;
  padding: 18px;
  display: grid;
  align-content: end;
  color: white;
  transform: rotate(9deg);
  background: linear-gradient(180deg, rgba(31, 63, 139, 0.25), #111827),
    linear-gradient(135deg, #1f3f8b, #0f172a);
}

.play-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
}

.play-dot::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 13px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--ink);
}

.vertical-video strong {
  font-size: 1.75rem;
  line-height: 1;
}

.vertical-video small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.digital-card {
  position: absolute;
  right: 88px;
  top: 252px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  font-weight: 900;
}

.digital-card svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-grid,
.projects-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.offer-card,
.project-card a,
.portfolio-block,
.result-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.price {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.02rem;
}

.service-card,
.offer-card,
.portfolio-block,
.result-panel {
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.05);
}

.card-kicker {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--mint);
  border-radius: 8px;
}

.card-kicker svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card {
  list-style: none;
}

.project-card a {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.project-order {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--muted);
  font-weight: 900;
}

.project-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: -26px -26px 26px;
  padding: 34px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.project-logo-wrap img {
  max-height: 160px;
  object-fit: contain;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat {
  min-width: 0;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.mission-list,
.offer-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.mission-list li,
.offer-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.mission-list li::before,
.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.text-link,
.inline-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 46px;
  background: var(--ink);
  border-radius: 8px;
}

.problem-section h2,
.problem-section p {
  color: white;
}

.problem-copy p:last-child {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
}

.problem-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.problem-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.problem-item p {
  margin: 0;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 950;
}

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

.method-step {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.method-step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.about-media {
  position: relative;
  isolation: isolate;
}

.inline-social {
  margin-top: 12px;
  text-decoration: none;
}

.about-copy .button {
  margin-top: 8px;
  margin-right: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 116px;
}

.contact-intro code {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 5px;
}

.contact-form {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 750;
}

fieldset {
  padding: 0;
  margin: 0 0 22px;
  border: 0;
}

legend {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 850;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-group legend {
  grid-column: 1 / -1;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  margin: 0;
  background: white;
  border: 1px solid #d9dde5;
  border-radius: 8px;
  font-weight: 760;
}

.choice-group input {
  width: 17px;
  height: 17px;
  padding: 0;
  accent-color: var(--blue);
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9dde5;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

.form-note,
.form-status,
.response-note {
  margin: 0;
  font-size: 0.93rem;
}

.response-note {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}

.form-status[data-tone="error"] {
  color: #b42318;
}

.form-status[data-tone="success"] {
  color: #067647;
}

.form-status[data-tone="info"] {
  color: var(--blue);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 52px;
  padding-top: 70px;
}

.page-hero h1,
.legal-hero h1 {
  font-size: 3.8rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.project-identity {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 46px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-identity img {
  max-height: 230px;
  object-fit: contain;
}

.project-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-block ul,
.legal-content ul {
  padding-left: 22px;
  color: var(--muted);
}

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

.asset-slot {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 16px;
  background: white;
  border: 1px dashed #c9ced8;
  border-radius: 8px;
}

.asset-slot span {
  font-weight: 850;
}

.asset-slot small {
  color: var(--muted);
}

.result-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.legal-hero {
  max-width: 900px;
  padding-bottom: 42px;
}

.legal-content {
  max-width: 900px;
}

.legal-content article,
.legal-warning {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-warning {
  margin-top: 18px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  margin-top: 24px;
  padding: 62px max(20px, calc((100vw - var(--container)) / 2)) 28px;
  color: white;
  background: var(--ink);
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(135px, 1fr));
  gap: 34px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.footer-grid .footer-subtitle {
  margin-top: 24px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
}

.footer-brand {
  margin-bottom: 18px;
  color: white;
}

.footer-brand .brand-logo {
  width: 180px;
  padding: 8px;
  background: white;
  border-radius: 8px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.social-link.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1024px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .about-section,
  .contact-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .about-media {
    max-width: 520px;
  }

  .hero-showcase {
    margin-right: auto;
  }

  .services-grid,
  .projects-grid,
  .offers-grid,
  .asset-grid,
  .project-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-intro {
    position: static;
  }

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

  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, var(--container));
    min-height: 68px;
  }

  .icon-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .section {
    width: min(100% - 28px, var(--container));
    padding: 64px 0;
  }

  .section-band {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  h1,
  .page-hero h1,
  .legal-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    gap: 34px;
    padding-top: 30px;
  }

  .hero-showcase {
    width: min(100%, 430px);
    min-height: 430px;
  }

  .phone-mockup {
    top: 42px;
    width: 94px;
    height: 176px;
  }

  .flyer-mockup {
    left: 116px;
    width: 146px;
    min-height: 174px;
  }

  .flyer-mockup strong {
    font-size: 1.25rem;
  }

  .laptop-mockup {
    top: 74px;
    width: 178px;
    height: 128px;
  }

  .timeline-mockup {
    width: min(100% - 84px, 270px);
    min-height: 142px;
    bottom: 54px;
  }

  .vertical-video {
    right: 14px;
    width: 106px;
    height: 176px;
  }

  .digital-card {
    right: 70px;
    top: 224px;
    max-width: 210px;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .services-grid,
  .projects-grid,
  .offers-grid,
  .method-grid,
  .portfolio-layout,
  .asset-grid,
  .stats-grid,
  .project-stats,
  .form-grid,
  .choice-group,
  .result-section,
  .footer-grid,
  .problem-section {
    grid-template-columns: 1fr;
  }

  .service-card,
  .offer-card,
  .project-card a,
  .portfolio-block,
  .contact-form,
  .result-panel,
  .problem-section {
    padding: 22px;
  }

  .project-logo-wrap {
    min-height: 180px;
    margin: -22px -22px 22px;
  }

  .asset-slot {
    min-height: 150px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-text small {
    display: none;
  }

  h1,
  .page-hero h1,
  .legal-hero h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .brand-logo {
    width: 142px;
  }

  .hero-showcase {
    min-height: 390px;
  }

  .laptop-mockup {
    right: 0;
    width: 156px;
  }

  .flyer-mockup {
    left: 100px;
    width: 132px;
  }

  .timeline-mockup {
    width: 238px;
  }

  .digital-card {
    right: 42px;
    top: 213px;
    font-size: 0.86rem;
  }

  .project-identity {
    padding: 28px;
  }
}

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