:root {
  --bg: #fffceb;
  --ink: #131313;
  --ink-soft: #717171;
  --green: #96a576;
  --green-light: #c4d0a8;
  --red: #de1620;
  --wine: #230002;
  --white: #ffffff;
  --section-width: 1280px;
  --content-width: 1200px;
  --shadow-soft: 0 16px 60px rgba(19, 19, 19, 0.08);
  --page-pad: 40px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(150, 165, 118, 0.32) 0, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(222, 22, 32, 0.08) 0, transparent 24%),
    radial-gradient(circle at 30% 80%, rgba(35, 0, 2, 0.08) 0, transparent 32%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.block {
  width: min(var(--section-width), 100%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(var(--section-width), 100%);
  min-height: 116px;
  margin: 0 auto;
  padding: 28px var(--page-pad) 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-logo-mark {
  width: 52px;
  height: 51px;
}

.site-logo-type {
  width: 223px;
  height: 41px;
}

.site-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex: 1;
  padding-right: 0;
}

.site-phone,
.site-discuss {
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.site-discuss {
  color: var(--green);
}

.site-menu {
  display: grid;
  gap: 7px;
  cursor: pointer;
}

.site-menu span {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 10px var(--page-pad) 0;
}

.hero-title {
  position: relative;
  min-height: 620px;
}

.hero-title h1 {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: clamp(172px, 13.9vw, 205px);
  line-height: 0.76;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--wine);
}

.hero-title h1 span {
  display: block;
}

.hero-title h1 span:last-child {
  margin-left: 306px;
  margin-top: 18px;
}

.hero-title p {
  position: absolute;
  right: 78px;
  bottom: 56px;
  max-width: 364px;
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
}

.hero-play {
  position: absolute;
  left: 40px;
  bottom: 96px;
  width: 94px;
  height: 94px;
  border-radius: 999px;
  background: rgba(255, 252, 235, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.hero-play:hover {
  transform: scale(1.04);
}

.hero-play img {
  width: 100%;
  height: 100%;
}

.hero-cards {
  display: flex;
  gap: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.55s ease, opacity 0.45s ease, margin-top 0.45s ease;
}

.hero.is-playing .hero-cards {
  height: 625px;
  margin-top: 40px;
  opacity: 1;
}

.hero-card {
  flex: 0 0 427px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 625px;
  padding: 40px;
  background: var(--bg);
  border-right: 2px solid var(--green);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background: url("https://www.figma.com/api/mcp/asset/eee0bb9b-4321-4184-9d1d-0b61b91c7405") center/cover no-repeat;
  pointer-events: none;
}

.hero-card-copy,
.hero-card img {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  margin: 0 0 12px;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 56px;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.hero-card img {
  align-self: center;
  max-height: 380px;
  object-fit: contain;
}

.message-grid {
  display: grid;
  grid-template-columns: 1.12fr 1.68fr 2fr;
  margin-top: 40px;
  padding: 0 40px;
}

.message-cell {
  display: flex;
  align-items: center;
  min-height: 127px;
  padding: 24px 36px;
  border: 1px solid var(--ink);
  border-right-width: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 72px;
  line-height: 0.9;
  text-transform: uppercase;
  background: rgba(255, 252, 235, 0.9);
}

.message-cell:nth-child(3),
.message-cell:nth-child(6) {
  border-right-width: 1px;
}

.message-cell:nth-child(n + 4) {
  border-top-width: 0;
}

.message-accent {
  justify-content: center;
  font-style: italic;
}

.message-script {
  justify-content: center;
  font-style: italic;
}

.projects {
  position: relative;
  margin-top: 40px;
  padding: 40px;
  overflow: hidden;
}

.projects-bg-text {
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 175px;
  line-height: 0.92;
  text-transform: uppercase;
  pointer-events: none;
}

.projects-bg-text span {
  position: absolute;
  white-space: nowrap;
}

.projects-bg-text span:first-child {
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
}

.projects-bg-text span:last-child {
  top: 234px;
  left: 50%;
  transform: translateX(-66%);
}

.projects-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 655px 1fr;
  gap: 40px;
  align-items: center;
}

.projects-cube {
  width: 655px;
  height: 565px;
}

.projects-cube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-copy {
  display: grid;
  gap: 40px;
  align-self: stretch;
  color: var(--white);
  padding-top: 110px;
}

.projects-copy h2,
.section-title,
.pricing h3,
.service-copy h3,
.audience-text h3,
.process-panel h3 {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.projects-copy h2 {
  font-size: 56px;
}

.projects-copy p,
.pricing-lead,
.price-card p,
.service-copy p,
.audience-text p,
.process-description,
.contact-meta {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.projects-copy a,
.projects-link,
.service-more {
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--green);
}

.projects-meta {
  margin: 12px 0 0;
  text-align: center;
  color: var(--white);
}

.projects-link {
  display: block;
  margin-top: 26px;
  text-align: center;
}

.services,
.audience,
.process {
  padding: 112px var(--page-pad) 0;
}

.section-title {
  font-size: 160px;
}

.services .section-title {
  margin-bottom: 10px;
  font-size: clamp(124px, 11vw, 168px);
  line-height: 0.86;
}

.section-title-green {
  color: var(--green);
}

.section-title-white {
  color: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 44px 0 42px;
  border-top: 1px solid rgba(19, 19, 19, 0.85);
}

.service-row:first-of-type {
  border-top: 0;
  padding-top: 34px;
}

.service-main {
  display: grid;
  grid-template-columns: 104px minmax(0, 720px);
  gap: 34px;
  align-items: flex-start;
}

.service-icon {
  position: relative;
  flex: 0 0 104px;
  width: 104px;
  height: 104px;
}

.service-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-icon-brand img:nth-child(1) { inset: 42px 45px 0 0; }
.service-icon-brand img:nth-child(2) { inset: 45px 0 0 45px; }
.service-icon-brand img:nth-child(3) { inset: 0 0 45px 45px; }
.service-icon-brand img:nth-child(4) { inset: 20px 45px 25px 0; }

.service-icon-web span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  border-radius: 73px;
}

.service-icon-web span:nth-child(1) {
  top: 0;
  background: var(--red);
}

.service-icon-web span:nth-child(2) {
  top: 26px;
  background: var(--green);
}

.service-icon-web span:nth-child(3) {
  top: 52px;
  background: var(--green-light);
}

.service-icon-ui img:first-child {
  inset: 0 17px 17px 0;
}

.service-icon-ui img:last-child {
  inset: 17px 0 0 17px;
}

.service-icon-creative img:first-child,
.service-icon-creative img:last-child {
  inset: 0;
}

.service-icon-subscription span:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 31px;
  height: 31px;
  background: var(--red);
}

.service-icon-subscription span:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: var(--green);
}

.service-icon-packaging img:first-child {
  inset: 0;
}

.service-icon-packaging img:nth-child(2) {
  inset: 20px 10px 0 10px;
}

.service-icon-packaging img:last-child {
  inset: 38px 18px 0 18px;
}

.service-copy {
  max-width: 720px;
}

.service-copy h3,
.audience-text h3,
.process-panel h3,
.price-card h3 {
  font-size: 41px;
  line-height: 0.95;
  margin-bottom: 14px;
}

.service-copy p {
  font-size: 21px;
  line-height: 1.22;
}

.service-more {
  align-self: end;
  padding-bottom: 4px;
  white-space: nowrap;
  font-size: 46px;
}

.service-row-open .service-main {
  width: 100%;
  grid-template-columns: 104px minmax(0, 1fr);
  justify-content: stretch;
}

.service-row-open .service-copy {
  max-width: 720px;
  width: 100%;
}

.service-actions {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.service-price,
.service-write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 147px;
  min-height: 64px;
  padding: 0 28px;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.service-price {
  color: var(--green);
  border: 2px solid var(--green);
}

.service-write {
  color: var(--white);
  background: var(--green);
}

.service-close {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.service-close img {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
}

.audience-grid {
  display: grid;
  gap: 50px;
  margin-top: 100px;
}

.audience-item {
  display: grid;
  gap: 28px;
  align-items: start;
}

.audience-item-right {
  grid-template-columns: 1fr 793px;
}

.audience-item-left {
  grid-template-columns: 678px 1fr;
}

.audience-text {
  align-self: center;
  max-width: 553px;
}

.audience-visual {
  position: relative;
  border: 1px solid rgba(19, 19, 19, 0.85);
  background: rgba(247, 243, 221, 0.88);
  min-height: 493px;
  overflow: hidden;
}

.audience-item-right .audience-visual {
  width: 793px;
  min-height: 548px;
}

.audience-item-left .audience-visual {
  width: 678px;
}

.audience-visual::before,
.contact-green-block::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    radial-gradient(circle at center, rgba(150, 165, 118, 0.4), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.audience-visual-boxes {
  padding: 82px 76px 64px 78px;
}

.audience-visual-boxes .box {
  position: absolute;
  width: 263px;
  height: 286px;
  background: var(--green);
  box-shadow: inset -16px -12px 0 rgba(255, 255, 255, 0.14);
  transform: skewY(-8deg);
}

.audience-visual-boxes .box::before {
  content: "✿";
  position: absolute;
  right: 44px;
  top: 92px;
  font-size: 68px;
  color: var(--white);
}

.audience-visual-boxes .box:nth-child(1) { left: 78px; top: 197px; }
.audience-visual-boxes .box:nth-child(2) { left: 265px; top: 131px; }
.audience-visual-boxes .box:nth-child(3) { left: 448px; top: 68px; }

.audience-visual-bottles {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-grid {
  display: grid;
  grid-template-columns: repeat(11, 31px);
  gap: 13px;
  row-gap: 35px;
}

.bottle-grid span {
  position: relative;
  width: 31px;
  height: 93px;
  border-radius: 14px 14px 8px 8px;
  background: var(--green);
}

.bottle-grid span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: -14px;
  width: 13px;
  height: 20px;
  border-radius: 5px 5px 0 0;
  background: inherit;
}

.bottle-grid .is-red {
  background: var(--red);
}

.audience-visual-cards {
  display: grid;
  grid-template-columns: repeat(4, 135px);
  gap: 10px;
  padding: 65px 72px;
}

.audience-visual-cards span {
  position: relative;
  width: 135px;
  height: 158px;
  padding: 8px;
  border-radius: 6px;
  background: var(--green);
}

.audience-visual-cards span::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto;
  height: 114px;
  border-radius: 3px;
  background: var(--green-light);
}

.audience-visual-cards span::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 24px;
  width: 80px;
  height: 80px;
  background: rgba(150, 165, 118, 0.8);
  clip-path: polygon(50% 0, 70% 30%, 100% 50%, 70% 70%, 50% 100%, 30% 70%, 0 50%, 30% 30%);
}

.audience-visual-cards .is-red::after {
  background: var(--red);
}

.audience-visual-horses {
  min-height: 584px;
}

.audience-visual-horses div {
  position: absolute;
  width: 174px;
  height: 178px;
  background: rgba(196, 208, 168, 0.9);
  border: 4px solid var(--green);
}

.audience-visual-horses div::before {
  content: "♞";
  position: absolute;
  inset: 18px;
  font-size: 120px;
  color: rgba(150, 165, 118, 0.9);
  line-height: 1;
}

.audience-visual-horses div:nth-child(1) { left: 70px; top: 80px; }
.audience-visual-horses div:nth-child(2) { left: 260px; top: 196px; }
.audience-visual-horses div:nth-child(3) { left: 450px; top: 325px; }

.process-layout {
  display: grid;
  grid-template-columns: 339px 1fr;
  gap: 100px;
  margin-top: 100px;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 51px;
  line-height: 0.92;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.process-step.is-active {
  color: var(--red);
  padding-left: 28px;
}

.process-step.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 17px;
  background: var(--red);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.process-panel {
  display: grid;
  gap: 20px;
  align-content: start;
}

.process-time {
  margin: 0;
  color: #878787;
  font-size: 20px;
}

.process-bar {
  height: 50px;
  background: var(--green-light);
  overflow: hidden;
}

.process-bar span {
  display: block;
  height: 100%;
  width: 16.666%;
  background: var(--red);
  transition: width 0.35s ease;
}

.pricing {
  margin-top: 100px;
  padding: 40px 40px 80px;
  background: var(--wine);
  color: var(--white);
  overflow: hidden;
}

.pricing-lead {
  max-width: 401px;
  margin-top: 30px;
}

.pricing-track {
  display: flex;
  gap: 20px;
  margin-top: 100px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.price-card {
  flex: 0 0 530px;
  display: grid;
  gap: 30px;
  min-height: 500px;
  padding: 24px;
  background: var(--bg);
  color: var(--ink);
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-head img {
  width: 54px;
  height: 56px;
}

.price-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 83px;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 30px;
  background: #878787;
  color: var(--white);
  font-weight: 700;
}

.price-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.price-result::after {
  content: "+";
  font-size: 42px;
  line-height: 1;
}

.price-cta,
.pricing-discuss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 18px 30px 16px;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.price-cta {
  width: 100%;
  background: var(--green);
  color: var(--white);
}

.pricing-discuss {
  margin-top: 80px;
  background: var(--red);
  color: var(--white);
}

.contact {
  position: relative;
  min-height: 620px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 489px 1fr;
  min-height: 620px;
}

.contact-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.contact-nav a {
  display: block;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 96px;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--green);
}

.contact-icons {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.contact-icons img:first-child {
  width: 61px;
  height: 52px;
}

.contact-icons img:last-child {
  width: 74px;
  height: 43px;
}

.contact-art {
  position: relative;
  overflow: hidden;
}

.contact-green-block {
  position: absolute;
  right: 0;
  top: 200px;
  width: 640px;
  height: 420px;
  background: var(--green);
}

.contact-art img {
  position: absolute;
  right: -36px;
  top: 34px;
  width: 942px;
  max-width: none;
}

@media (max-width: 1024px) {
  .site-header,
  .hero,
  .message-grid,
  .projects,
  .services,
  .audience,
  .process,
  .pricing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    flex-direction: row;
    align-items: flex-start;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 14px;
  }

  .site-header-right {
    padding-right: 0;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
  }

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

  .hero-title {
    min-height: auto;
  }

  .hero-title h1 {
    font-size: clamp(118px, 16vw, 156px);
  }

  .hero-title h1 span:last-child {
    margin-left: 152px;
    margin-top: 6px;
  }

  .hero-title p {
    position: static;
    margin-top: 26px;
    max-width: 420px;
  }

  .hero-play {
    position: static;
    margin-top: 24px;
  }

  .hero.is-playing .hero-cards {
    height: auto;
  }

  .hero-cards {
    flex-direction: column;
  }

  .hero-card {
    min-height: auto;
  }

  .message-grid,
  .projects-layout,
  .service-row,
  .audience-item,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .message-cell:nth-child(2n) {
    border-right-width: 1px;
  }

  .message-cell:nth-child(n + 3) {
    border-top-width: 0;
  }

  .projects-cube,
  .audience-item-right .audience-visual,
  .audience-item-left .audience-visual {
    width: 100%;
  }

  .projects-copy {
    color: var(--ink);
    padding-top: 0;
  }

  .projects-copy h2,
  .projects-meta {
    color: var(--ink);
  }

  .service-row-open .service-main {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .service-actions {
    flex-direction: column;
  }

  .contact-nav a {
    font-size: 72px;
  }

  .contact-art {
    min-height: 420px;
  }

  .contact-green-block {
    inset: auto 0 0 auto;
    width: 100%;
    height: 260px;
  }

  .contact-art img {
    right: -120px;
    top: -10px;
    width: 700px;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 20px;
  }

  .site-header {
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .site-logo-type {
    width: 154px;
    height: auto;
  }

  .site-logo-mark {
    width: 42px;
    height: 41px;
  }

  .site-phone,
  .site-discuss {
    font-size: 18px;
  }

  .site-discuss {
    display: none;
  }

  .site-header-right {
    gap: 12px;
    align-items: center;
  }

  .site-phone {
    max-width: 128px;
    text-align: right;
    line-height: 0.92;
  }

  .site-menu span {
    width: 34px;
    height: 3px;
  }

  .hero-title h1 {
    font-size: clamp(56px, 14.8vw, 74px);
    line-height: 0.84;
  }

  .hero-title h1 span:last-child {
    margin-left: 38px;
    margin-top: 6px;
  }

  .hero-title p {
    max-width: 290px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-play {
    margin-top: 18px;
    width: 72px;
    height: 72px;
  }

  .hero-card {
    flex-basis: auto;
    padding: 24px;
  }

  .hero-card h2,
  .projects-copy h2,
  .service-copy h3,
  .audience-text h3,
  .process-panel h3,
  .price-card h3 {
    font-size: 30px;
  }

  .section-title {
    font-size: 92px;
  }

  .services {
    padding-top: 84px;
  }

  .services .section-title {
    margin-bottom: 12px;
    font-size: 72px;
    line-height: 0.9;
  }

  .service-row {
    gap: 14px;
    padding: 24px 0;
  }

  .service-row:first-of-type {
    padding-top: 24px;
  }

  .service-main,
  .service-row-open .service-main {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .service-copy h3 {
    font-size: 28px;
    line-height: 0.98;
    margin-bottom: 10px;
  }

  .service-copy p {
    font-size: 16px;
    line-height: 1.28;
  }

  .service-more {
    padding-bottom: 0;
    font-size: 34px;
  }

  .service-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .service-price,
  .service-write {
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    font-size: 28px;
  }

  .service-close {
    align-self: start;
  }

  .service-close img {
    margin-bottom: 0;
  }

  .message-grid {
    grid-template-columns: 1fr;
  }

  .message-cell {
    border-right-width: 1px;
    border-top-width: 0;
    min-height: 92px;
    font-size: 54px;
  }

  .message-cell:first-child {
    border-top-width: 1px;
  }

  .process-step {
    font-size: 38px;
  }

  .price-card {
    flex-basis: calc(100vw - 40px);
  }

  .contact-nav a {
    font-size: 58px;
  }

  .contact-icons {
    gap: 24px;
  }

  .contact-meta {
    font-size: 16px;
  }
}
