:root {
  --bg: #101010;
  --panel: #1b1b1b;
  --panel-2: #222222;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.14);
  --soft-line: rgba(255, 255, 255, 0.08);
  --accent: #ffbf00;
  --accent-2: #e1942e;
  --cyan: #20d5ff;
  --magenta: #f052a8;
  --max: 1140px;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 95px 95px;
  color: var(--text);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.brand-caption {
  display: block;
  max-width: 94px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 12px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-contact-row {
  display: none;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-icon svg,
.contact-card svg,
.footer-contact-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon[href*="t.me"] svg,
.contact-icon[href*="viber"] svg,
.contact-card[href*="t.me"] svg,
.contact-card[href*="viber"] svg,
.footer-contact-link[href*="t.me"] svg,
.footer-contact-link[href*="viber"] svg {
  fill: currentColor;
  stroke: none;
}

.contact-icon:hover,
.contact-icon:focus-visible,
.contact-card:hover,
.contact-card:focus-visible,
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

main {
  overflow: hidden;
}

section {
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  gap: 64px;
  min-height: calc(100vh - 92px);
  padding-top: 74px;
  padding-bottom: 64px;
  align-items: center;
}

.hero::before,
.services::before,
.works::before,
.cta::before {
  position: absolute;
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.18), rgba(32, 213, 255, 0.08));
  content: "";
  transform: rotate(45deg);
}

.hero::before {
  left: max(24px, calc((100vw - var(--max)) / 2 - 52px));
  top: 42%;
}

.hero-content,
.section-heading,
.cta-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.22;
}

.lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #e7e7e7;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #101010;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 660px;
  margin: 0;
}

.hero-facts div {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.hero-facts dt {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::after {
  position: absolute;
  inset: auto -1px -1px -1px;
  height: 28%;
  background: linear-gradient(transparent, rgba(16, 16, 16, 0.86));
  content: "";
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(260px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.78);
  backdrop-filter: blur(14px);
}

.media-badge span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.media-badge strong {
  font-size: 28px;
  font-weight: 900;
}

.services,
.works,
.cta {
  position: relative;
}

.services,
.benefits,
.pricing,
.why-masons,
.works,
.process,
.requirements,
.faq,
.cta {
  padding-top: clamp(78px, 9vw, 124px);
  padding-bottom: clamp(78px, 9vw, 124px);
  border-top: 1px solid var(--soft-line);
}

.services::before {
  right: max(24px, calc((100vw - var(--max)) / 2 - 42px));
  top: 138px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.wide {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.service-card,
.requirement-grid article,
.pricing-grid article,
.why-grid article {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.service-card.is-featured {
  background: linear-gradient(180deg, rgba(255, 191, 0, 0.16), rgba(255, 255, 255, 0.035));
}

.service-card p,
.benefit-list p,
.work-item p,
.steps p,
.requirement-grid p,
.pricing-grid p,
.why-grid p,
.faq p,
.cta p,
.footer span,
.footer a {
  color: var(--muted);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 78px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 30px;
}

.benefit-list article,
.steps li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.icon-dot,
.steps span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--accent);
  font-weight: 900;
}

.icon-dot::before {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--accent));
  content: "";
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--text);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.1;
}

.stats span {
  color: var(--muted);
}

.pricing {
  background: rgba(255, 255, 255, 0.018);
}

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

.pricing-grid article {
  min-height: 280px;
}

.pricing-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.pricing-cta {
  margin-top: 34px;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 34px;
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.calculator-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calculator-copy h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.calculator-copy p,
.calculator-result p {
  color: var(--muted);
}

.calculator-panel {
  display: grid;
  gap: 16px;
}

.calculator-panel label {
  display: grid;
  gap: 8px;
}

.calculator-panel label span {
  color: #eeeeee;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-panel input,
.calculator-panel select {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--panel);
  color: var(--text);
  outline: none;
}

.calculator-panel input:focus,
.calculator-panel select:focus {
  border-color: var(--accent);
}

.calculator-result {
  padding: 24px;
  border: 1px solid var(--line);
  background: #101010;
}

.calculator-result span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
}

.calculator-result p {
  margin-bottom: 0;
}

.calculator-tiers {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-tiers li {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 14px;
}

.calculator-tiers strong {
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

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

.why-grid article {
  min-height: 235px;
}

.works::before {
  left: max(24px, calc((100vw - var(--max)) / 2 - 42px));
  top: 148px;
}

.work-list {
  display: grid;
  gap: 70px;
}

.work-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: 56px;
  align-items: stretch;
}

.work-item.reverse {
  grid-template-columns: minmax(0, 0.64fr) minmax(240px, 0.36fr);
}

.work-item.reverse div {
  order: 2;
}

.work-item div {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 0;
}

.work-item span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-item img,
.process-media img {
  width: 100%;
  height: 330px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.process-media img {
  height: 560px;
}

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

.requirements {
  background: rgba(255, 255, 255, 0.018);
}

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

.requirement-grid article {
  min-height: 250px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 70px;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.accordion summary {
  min-height: 74px;
  padding: 22px 58px 22px 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
  position: relative;
}

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

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--accent);
  content: "+";
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 0;
  padding: 0 24px 24px;
}

.cta {
  padding-bottom: 0;
  text-align: center;
}

.cta::before {
  right: max(24px, calc((100vw - var(--max)) / 2 - 42px));
  top: 170px;
}

.cta-inner {
  max-width: 920px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0;
  text-align: left;
}

.contact-card {
  display: grid;
  min-width: 220px;
  min-height: 156px;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-card svg {
  margin-bottom: 4px;
}

.contact-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-value {
  color: var(--text);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.contact-card:hover .contact-value,
.contact-card:focus-visible .contact-value {
  color: var(--accent);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #eeeeee;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--panel);
  color: var(--text);
  outline: none;
}

.contact-form input {
  height: 62px;
  padding: 0 18px;
}

.contact-form select {
  height: 62px;
  padding: 0 18px;
  appearance: none;
}

.contact-form input[type="file"] {
  height: auto;
  min-height: 62px;
  padding: 18px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-note.is-success {
  color: #9ff0b5;
}

.form-note.is-error {
  color: #ff9a9a;
}

.form-note.is-loading {
  color: var(--accent);
}

.ticker {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 90px calc(max(24px, (100vw - var(--max)) / 2) * -1) 0;
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(28px, 6vw, 82px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.footer {
  padding-top: 54px;
  padding-bottom: 36px;
  border-top: 1px solid var(--line);
  background: #101010;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 1.15fr 1.4fr;
  column-gap: 48px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
  padding-inline: 32px;
}

.footer-brand,
.footer-column {
  align-self: start;
}

.footer-column {
  min-width: 0;
}

.footer h2 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.2;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 9px;
}

.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}

.footer-contact-link span {
  margin-bottom: 0;
  white-space: nowrap;
}

.footer-contact-link svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.footer-bottom {
  max-width: 1220px;
  margin: 40px auto 0;
  padding-inline: 32px;
}

.copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 14px;
}

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

@media (max-width: 1200px) {
  .contact-panel {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .footer {
    padding-top: 50px;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 34px;
  }
}

@media (max-width: 1100px) {
  .header-contacts {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(16, 16, 16, 0.97);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .menu-open .nav {
    transform: translateY(0);
  }

  .nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--soft-line);
  }

  .nav-contact-row {
    display: flex;
    gap: 10px;
    padding-top: 18px;
  }

  .hero,
  .split-section,
  .faq {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .service-grid,
  .requirement-grid,
  .pricing-grid,
  .why-grid,
  .calculator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .work-item,
  .work-item.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .work-item.reverse div {
    order: 0;
  }

  .work-item div {
    min-height: auto;
    padding: 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 34px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 86px;
  }

  section,
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-inner,
  .footer-bottom {
    padding-inline: 18px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    height: 48px;
    max-width: 120px;
  }

  .brand-caption {
    max-width: 82px;
    font-size: 10px;
  }

  .brand strong {
    font-size: 19px;
  }

  h1 {
    font-size: clamp(34px, 10.6vw, 44px);
    line-height: 1.14;
  }

  .lead {
    font-size: 17px;
  }

  .hero-facts,
  .service-grid,
  .requirement-grid,
  .pricing-grid,
  .why-grid,
  .calculator,
  .contact-panel,
  .stats,
  .contact-form,
  .footer-inner {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .footer-brand {
    justify-self: start;
  }

  .brand-logo-footer {
    width: 122px;
  }

  .contact-card {
    min-width: 0;
  }

  .contact-value,
  .footer-contact-link span {
    font-size: clamp(14px, 4vw, 16px);
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

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

  .service-card,
  .requirement-grid article,
  .pricing-grid article,
  .why-grid article {
    min-height: auto;
    padding: 24px;
  }

  .service-number {
    margin-bottom: 48px;
  }

  .benefit-list article,
  .steps li {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
  }

  .icon-dot,
  .steps span {
    width: 62px;
    height: 62px;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .process-media img,
  .work-item img {
    height: 280px;
  }

  .ticker {
    justify-content: flex-start;
  }

  .hero::before,
  .services::before,
  .works::before,
  .cta::before {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 18px;
    bottom: 16px;
    left: 18px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 1px solid rgba(16, 16, 16, 0.35);
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #101010;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-sticky-cta.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(120%);
  }
}
