:root {
  color-scheme: only light;
  --black: #151515;
  --black-deep: #050505;
  --text: #0b0b0b;
  --muted: #747474;
  --line: #e7e7e7;
  --yellow: #ffb612;
  --yellow-bright: #ffd600;
  --yellow-soft: #fff3cf;
  --white: #ffffff;
  --page: #f4f4f4;
  --shadow-yellow: 0 20px 25px rgba(255, 182, 18, 0.33);
  --font: "Tektur", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: only light;
  background: #ffffff;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
  color-scheme: only light;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  color-scheme: only light;
}

.container {
  width: min(1700px, calc(100% - 160px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--black);
  color: var(--white);
}

.header-shell {
  width: min(1700px, calc(100% - 160px));
  min-height: 185px;
  display: grid;
  grid-template-columns: minmax(370px, auto) 1fr auto;
  align-items: center;
  gap: 44px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--yellow);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.brand-text {
  max-width: 300px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.site-nav a:focus-visible,
.header-cta:focus-visible,
.contact-strip a:focus-visible,
.service-cards a:focus-visible,
.footer-line a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.header-cta {
  min-width: 240px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 24px;
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  box-shadow: var(--shadow-yellow);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 32px rgba(255, 182, 18, 0.45);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  padding: 11px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: currentColor;
}

.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-strip {
  width: min(1700px, calc(100% - 160px));
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 22px 38px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: var(--white);
  color: var(--text);
}

.contact-strip a {
  text-decoration: none;
}

.contact-mail,
.phone-link,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-mail,
.phone-link {
  font-size: 20px;
  font-weight: 700;
}

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

.contact-mail svg,
.phone-link svg,
.footer-line svg {
  width: 26px;
  height: 26px;
  fill: var(--yellow);
  flex: 0 0 auto;
}

.phone-link {
  color: var(--text);
}

.round-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--yellow);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 50px 0 76px;
  background: var(--black);
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 430px;
  height: 188px;
  background: var(--white);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(1700px, calc(100% - 160px));
  height: 680px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #252525;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6500ms linear;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.36) 100%);
}

.slide-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 106px 86px;
  color: var(--white);
  opacity: 0;
  transform: translateX(-80px);
}

.hero-slide.is-active .slide-copy {
  opacity: 1;
  transform: translateX(0);
  animation: textInLeft 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms forwards;
}

.slide-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 10px;
  color: var(--black);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 700;
}

.slide-copy h1,
.slide-copy h2 {
  margin: 18px 0 0;
  font-size: 64px;
  line-height: 1.16;
  font-weight: 900;
  text-transform: uppercase;
}

.glass-stats {
  position: absolute;
  right: 88px;
  bottom: 76px;
  z-index: 2;
  width: 670px;
  min-height: 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 60px;
  align-content: center;
  padding: 58px 52px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(35px);
}

.hero-slide.is-active .glass-stats {
  opacity: 1;
  transform: translateY(0);
  animation: glassIn 720ms ease 260ms forwards;
}

.glass-stats strong {
  display: block;
  color: var(--white);
  font-size: 19px;
  line-height: 1.1;
  text-transform: uppercase;
}

.glass-stats span {
  display: block;
  margin-top: 2px;
  color: var(--yellow);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

.slider-controls {
  position: absolute;
  right: 92px;
  top: 50%;
  z-index: 4;
  display: flex;
  gap: 20px;
  transform: translateY(-50%);
}

.slider-controls button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 56px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.slider-controls button:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.slider-dots {
  position: absolute;
  right: 54px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--white);
}

.section-animate {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.steps-section {
  padding: 122px 0 94px;
  background: #f7f7f7;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 120px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

.steps-list strong {
  font-size: 25px;
  line-height: 1.28;
  font-weight: 900;
}

.step-mark {
  position: relative;
  width: 92px;
  min-width: 92px;
  height: 56px;
  display: flex;
  align-items: center;
}

.step-mark::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 182, 18, 0.8);
}

.step-mark i {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--white);
}

.step-mark i::after {
  content: "✓";
  font-size: 22px;
  line-height: 1;
}

.step-mark b {
  position: absolute;
  left: 44px;
  top: -2px;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.about-section {
  padding: 86px 0 96px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr) 430px;
  gap: 74px;
  align-items: start;
}

.about-tall {
  position: relative;
  padding: 0 38px 38px 0;
}

.about-tall img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1020px;
  object-fit: cover;
  border-radius: 30px;
}

.about-tall span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 360px;
  height: 850px;
  border-bottom-right-radius: 36px;
  background: var(--yellow);
}

.label-line {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 4px 12px;
  border-radius: 10px;
  background: #f2f2f2;
  color: var(--text);
  font-size: 19px;
  line-height: 1.1;
}

.about-copy h2,
.services-section h2,
.detail-section h2,
.order-card h2,
.summary-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy p,
.about-copy li,
.detail-section p,
.reasons-grid p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
}

.about-copy p {
  margin: 28px 0 0;
}

.about-copy ul {
  margin: 28px 0 0;
}

.about-side {
  display: grid;
  gap: 38px;
}

.about-side img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 30px;
}

.about-side img:last-child {
  height: 460px;
}

.services-section {
  position: relative;
  padding: 104px 0 168px;
  overflow: hidden;
  background: var(--white);
}

.services-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 96px;
  background: var(--black);
  clip-path: polygon(25% 100%, 100% 100%, 100% 0, 30% 0);
}

.breadcrumbs {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.breadcrumbs a {
  color: #ff9f00;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 76px;
}

.service-cards article {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
}

.service-cards img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
}

.service-cards h3 {
  margin: 34px 0 28px;
  color: var(--muted);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
}

.service-cards a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--text);
  background: var(--yellow);
  box-shadow: 0 16px 22px rgba(255, 182, 18, 0.3);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.detail-section {
  padding: 76px 0 86px;
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.88fr);
  gap: 70px;
  align-items: center;
}

.detail-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
}

.detail-section h3 {
  max-width: 780px;
  margin: 82px 0 36px;
  color: var(--muted);
  font-size: 43px;
  line-height: 1.24;
  font-weight: 900;
}

.lead-text {
  max-width: 830px;
  font-size: 34px;
  line-height: 1.45;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 110px;
  margin-top: 72px;
}

.reasons-grid article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 28px;
  align-items: start;
}

.reasons-grid span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--yellow);
  background: var(--yellow-soft);
  font-size: 44px;
  font-weight: 900;
}

.reasons-grid h4 {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.summary-section {
  padding: 72px 0 116px;
  background: var(--white);
}

.summary-section h2 {
  color: var(--muted);
  font-size: 44px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 42px;
}

.summary-grid article {
  min-height: 260px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.summary-grid span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: var(--yellow-soft);
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
}

.summary-grid h3 {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.order-section {
  position: relative;
  padding: 108px 0 88px;
  overflow: hidden;
  background: var(--black);
}

.order-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 430px;
  height: 170px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.order-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 64px;
  width: 390px;
  height: 120px;
  background: var(--black);
  clip-path: polygon(16% 0, 100% 0, 77% 100%, 0 100%);
}

.order-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.54fr);
  gap: 42px;
  align-items: center;
}

.order-card {
  min-height: 500px;
  padding: 58px 48px;
  border-radius: 30px;
  background: var(--yellow);
  overflow: hidden;
}

.order-card h2 {
  max-width: 720px;
  font-size: 54px;
}

.order-card .label-line {
  max-width: 740px;
  margin-bottom: 6px;
  background: var(--white);
}

.mini-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 150px;
  gap: 10px;
  align-items: center;
  margin-top: 52px;
}

.mini-form input[type="text"],
.mini-form input[type="tel"] {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  padding: 0 20px;
  background: var(--white);
  color: var(--text);
}

.mini-form input.is-invalid {
  box-shadow: inset 0 0 0 3px #111;
}

.mini-form button {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 18px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-weight: 900;
}

.mini-form label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 15px;
}

.mini-form label input {
  accent-color: var(--black);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--black);
  font-weight: 800;
}

.form-status.is-error {
  color: #000;
}

.proof-list {
  display: grid;
  gap: 44px;
}

.proof-list strong {
  display: block;
  color: var(--yellow);
  font-size: 45px;
  line-height: 1;
  font-weight: 900;
}

.proof-list span {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 182, 18, 0.65);
  border-radius: 999px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
}

.site-footer {
  padding: 42px 0;
  background: var(--black-deep);
  color: var(--muted);
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-line a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0d0d0d;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.to-top {
  position: fixed;
  right: 40px;
  bottom: 34px;
  z-index: 30;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #333;
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@keyframes textInLeft {
  from {
    transform: translateX(-40px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes glassIn {
  from {
    transform: translateY(35px);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1400px) {
  .container,
  .header-shell,
  .contact-strip,
  .hero-frame {
    width: min(1180px, calc(100% - 60px));
  }

  .header-shell {
    grid-template-columns: minmax(320px, auto) 1fr auto;
    gap: 24px;
  }

  .site-nav {
    gap: 28px;
  }

  .hero-frame {
    height: 580px;
  }

  .slide-copy {
    margin-left: 54px;
    margin-bottom: 82px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 52px;
  }

  .glass-stats {
    right: 54px;
    bottom: 64px;
    width: 540px;
    min-height: 220px;
    padding: 42px;
    gap: 28px;
  }

  .about-grid {
    grid-template-columns: 330px minmax(0, 1fr) 320px;
    gap: 46px;
  }

  .about-copy h2,
  .services-section h2,
  .detail-section h2,
  .order-card h2 {
    font-size: 45px;
  }

  .about-tall img {
    height: 860px;
  }

  .service-cards article {
    padding: 34px;
  }

  .service-cards img {
    height: 240px;
  }
}

@media (max-width: 1060px) {
  .container,
  .header-shell,
  .contact-strip,
  .hero-frame {
    width: min(100% - 32px, 1180px);
  }

  .header-shell {
    min-height: 122px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 82px;
    height: 82px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 120px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 20px;
    background: #222;
  }

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

  .site-nav a {
    padding: 15px;
    text-align: center;
  }

  .header-cta {
    display: none;
  }

  .contact-strip {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 0 0 24px 24px;
  }

  .contact-actions {
    flex-wrap: wrap;
  }

  .hero-stage {
    padding-top: 32px;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-frame {
    height: 720px;
  }

  .slide-copy {
    max-width: calc(100% - 48px);
    margin: 0 24px 300px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 42px;
  }

  .glass-stats {
    left: 24px;
    right: 24px;
    bottom: 56px;
    width: auto;
  }

  .slider-controls {
    right: 32px;
    top: 42%;
  }

  .steps-list,
  .service-cards,
  .summary-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .detail-grid,
  .order-wrap {
    grid-template-columns: 1fr;
  }

  .about-tall {
    display: none;
  }

  .about-side {
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
  }

  .order-section::before,
  .order-section::after,
  .services-section::after {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .header-shell {
    min-height: 98px;
  }

  .brand {
    gap: 12px;
    font-size: 14px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .site-nav {
    top: 98px;
  }

  .contact-mail,
  .phone-link {
    font-size: 16px;
  }

  .hero-frame {
    height: 660px;
    border-radius: 22px;
  }

  .slide-copy {
    margin-bottom: 330px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 34px;
  }

  .slide-pill {
    font-size: 15px;
  }

  .glass-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    border-radius: 22px;
  }

  .glass-stats strong,
  .glass-stats span {
    font-size: 15px;
  }

  .slider-controls {
    top: auto;
    right: 28px;
    bottom: 280px;
    gap: 8px;
  }

  .slider-controls button {
    width: 42px;
    height: 42px;
    font-size: 40px;
  }

  .steps-section,
  .about-section,
  .services-section,
  .detail-section,
  .summary-section,
  .order-section {
    padding: 58px 0;
  }

  .steps-list {
    gap: 28px;
  }

  .steps-list li {
    align-items: flex-start;
    gap: 16px;
  }

  .steps-list strong {
    font-size: 18px;
  }

  .step-mark {
    width: 72px;
    min-width: 72px;
  }

  .step-mark b {
    left: 38px;
    font-size: 26px;
  }

  .step-mark i {
    width: 38px;
    height: 38px;
  }

  .about-copy h2,
  .services-section h2,
  .detail-section h2,
  .order-card h2 {
    font-size: 32px;
  }

  .about-copy p,
  .about-copy li,
  .detail-section p,
  .reasons-grid p {
    font-size: 16px;
  }

  .about-side {
    grid-template-columns: 1fr;
  }

  .about-side img,
  .about-side img:last-child,
  .detail-grid img {
    height: 260px;
  }

  .service-cards {
    gap: 22px;
    margin-top: 34px;
  }

  .service-cards article {
    padding: 20px;
  }

  .service-cards img {
    height: 210px;
  }

  .service-cards h3 {
    font-size: 25px;
  }

  .detail-section h3,
  .summary-section h2 {
    margin-top: 44px;
    font-size: 30px;
  }

  .lead-text {
    font-size: 20px;
  }

  .reasons-grid article {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .reasons-grid span {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .summary-grid article {
    min-height: 190px;
    padding: 28px;
  }

  .summary-grid span {
    width: 70px;
    height: 70px;
    font-size: 48px;
  }

  .summary-grid h3 {
    font-size: 22px;
  }

  .order-card {
    min-height: auto;
    padding: 28px 20px;
  }

  .mini-form {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .proof-list {
    gap: 24px;
  }

  .proof-list strong {
    font-size: 36px;
  }

  .proof-list span {
    font-size: 16px;
  }

  .footer-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
  }
}

.page-main {
  background: var(--white);
}

.services-page {
  min-height: 760px;
}

.services-section h1,
.contact-page h1,
.detail-section h1 {
  margin: 0;
  color: var(--text);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 900;
}

.service-cards h2 {
  margin: 34px 0 28px;
  color: var(--muted);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
}

.contact-page {
  padding: 104px 0 130px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 74px;
  align-items: start;
  margin-top: 70px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 20px 18px;
  color: var(--muted);
  font-weight: 600;
}

.contact-info a {
  text-decoration: none;
}

.big-phone {
  align-self: center;
  color: var(--muted);
  font-size: 27px;
  line-height: 1.15;
  font-weight: 900;
}

.whatsapp-square,
.instagram-square {
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-square {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #24d366;
  font-size: 31px;
}

.instagram-square {
  width: 58px;
  height: 58px;
  margin-top: 16px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff7a00 0%, #e1306c 52%, #833ab4 100%);
  font-size: 34px;
}

.contact-info h2,
.contact-info p,
.instagram-square {
  grid-column: 1 / -1;
}

.contact-info h2 {
  margin: 18px 0 -8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.contact-info p {
  margin: 0;
  font-size: 25px;
  line-height: 1.32;
}

.map-frame {
  min-height: 510px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 510px;
  border: 0;
}

.mail-icon,
.phone-link > span:first-child {
  color: var(--yellow);
}

@media (min-width: 1061px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-shell,
  .contact-strip,
  .hero-frame {
    width: min(1280px, calc(100% - 96px));
  }

  .header-shell {
    min-height: 140px;
    grid-template-columns: minmax(300px, auto) 1fr auto;
    gap: 32px;
  }

  .brand {
    gap: 14px;
    font-size: 15px;
  }

  .brand img {
    width: 82px;
    height: 82px;
  }

  .brand-text {
    max-width: 250px;
  }

  .site-nav {
    gap: 34px;
    font-size: 14px;
  }

  .header-cta {
    min-width: 190px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 18px;
    font-size: 14px;
  }

  .contact-strip {
    min-height: 76px;
    gap: 22px;
    padding: 16px 30px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .contact-mail,
  .phone-link,
  .contact-actions {
    gap: 10px;
  }

  .contact-mail,
  .phone-link {
    font-size: 16px;
  }

  .contact-mail svg,
  .phone-link svg,
  .footer-line svg {
    width: 21px;
    height: 21px;
  }

  .round-link {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .hero-stage {
    padding: 38px 0 58px;
  }

  .hero-stage::after {
    width: 325px;
    height: 142px;
  }

  .hero-frame {
    height: 510px;
    border-radius: 24px;
  }

  .slide-copy {
    max-width: 570px;
    margin: 0 0 80px 64px;
    transform: translateX(-50px);
  }

  .slide-pill {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    margin-top: 14px;
    font-size: 48px;
  }

  .glass-stats {
    right: 64px;
    bottom: 56px;
    width: 500px;
    min-height: 195px;
    gap: 24px 40px;
    padding: 42px 38px;
    border-radius: 24px;
  }

  .glass-stats strong,
  .glass-stats span {
    font-size: 14px;
  }

  .slider-controls {
    right: 72px;
    gap: 14px;
  }

  .slider-controls button {
    width: 44px;
    height: 44px;
    font-size: 44px;
  }

  .slider-dots {
    right: 40px;
    bottom: 18px;
  }

  .steps-section {
    padding: 90px 0 72px;
  }

  .steps-list {
    gap: 50px 86px;
  }

  .steps-list li {
    min-height: 60px;
    gap: 18px;
  }

  .steps-list strong {
    font-size: 20px;
  }

  .step-mark {
    width: 72px;
    min-width: 72px;
    height: 46px;
  }

  .step-mark::before {
    width: 7px;
    height: 7px;
    margin-right: 6px;
  }

  .step-mark i {
    width: 36px;
    height: 36px;
  }

  .step-mark i::after {
    font-size: 18px;
  }

  .step-mark b {
    left: 36px;
    font-size: 26px;
  }

  .about-section {
    padding: 70px 0 78px;
  }

  .about-grid {
    grid-template-columns: 320px minmax(0, 1fr) 320px;
    gap: 54px;
  }

  .about-tall {
    padding: 0 28px 28px 0;
  }

  .about-tall img {
    height: 765px;
    border-radius: 24px;
  }

  .about-tall span {
    width: 270px;
    height: 638px;
    border-bottom-right-radius: 28px;
  }

  .label-line {
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
  }

  .about-copy h2,
  .services-section h1,
  .services-section h2,
  .detail-section h1,
  .detail-section h2,
  .contact-page h1,
  .order-card h2,
  .summary-section h2 {
    font-size: 43px;
  }

  .about-copy p,
  .about-copy li,
  .detail-section p,
  .reasons-grid p {
    font-size: 16px;
  }

  .about-copy p,
  .about-copy ul {
    margin-top: 20px;
  }

  .about-side {
    gap: 28px;
  }

  .about-side img {
    height: 278px;
    border-radius: 24px;
  }

  .about-side img:last-child {
    height: 345px;
  }

  .services-section {
    padding: 78px 0 126px;
  }

  .breadcrumbs {
    font-size: 15px;
  }

  .service-cards {
    gap: 32px;
    margin-top: 56px;
  }

  .service-cards article {
    padding: 34px;
    border-radius: 22px;
  }

  .service-cards img {
    height: 230px;
    border-radius: 18px;
  }

  .service-cards h2,
  .service-cards h3 {
    margin: 26px 0 22px;
    font-size: 25px;
  }

  .service-cards a {
    min-height: 48px;
    border-radius: 16px;
    font-size: 16px;
  }

  .detail-section {
    padding: 64px 0 68px;
  }

  .detail-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
    gap: 54px;
  }

  .detail-grid img {
    height: 360px;
    border-radius: 22px;
  }

  .detail-section h2 {
    max-width: 620px;
  }

  .lead-text {
    max-width: 680px;
    font-size: 24px;
  }

  .detail-section h3 {
    max-width: 680px;
    margin: 64px 0 30px;
    font-size: 34px;
  }

  .reasons-grid {
    gap: 54px 84px;
    margin-top: 54px;
  }

  .reasons-grid article {
    grid-template-columns: 78px 1fr;
    gap: 22px;
  }

  .reasons-grid span {
    width: 70px;
    height: 70px;
    font-size: 34px;
  }

  .reasons-grid h4 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .summary-section {
    padding: 56px 0 88px;
  }

  .summary-section h2 {
    font-size: 36px;
  }

  .summary-grid {
    gap: 32px;
    margin-top: 34px;
  }

  .summary-grid article {
    min-height: 190px;
    padding: 34px;
    border-radius: 18px;
  }

  .summary-grid span {
    width: 74px;
    height: 74px;
    font-size: 52px;
  }

  .summary-grid h3 {
    margin-top: 22px;
    font-size: 21px;
  }

  .order-section {
    padding: 84px 0 72px;
  }

  .order-section::before {
    width: 325px;
    height: 130px;
  }

  .order-section::after {
    top: 48px;
    width: 295px;
    height: 92px;
  }

  .order-wrap {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.48fr);
    gap: 36px;
  }

  .order-card {
    min-height: 375px;
    padding: 44px 36px;
    border-radius: 24px;
  }

  .order-card h2 {
    max-width: 560px;
    font-size: 42px;
  }

  .order-card .label-line {
    max-width: 560px;
  }

  .mini-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 122px;
    margin-top: 40px;
  }

  .mini-form input[type="text"],
  .mini-form input[type="tel"],
  .mini-form button {
    min-height: 42px;
    border-radius: 14px;
    font-size: 14px;
  }

  .mini-form label {
    font-size: 13px;
  }

  .proof-list {
    gap: 34px;
  }

  .proof-list strong {
    font-size: 34px;
  }

  .proof-list span {
    font-size: 15px;
  }

  .site-footer {
    padding: 32px 0;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .to-top {
    width: 44px;
    height: 44px;
    right: 32px;
    bottom: 28px;
    font-size: 20px;
  }

  .contact-page {
    padding: 86px 0 108px;
  }

  .contact-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 64px;
    margin-top: 62px;
  }

  .big-phone {
    font-size: 22px;
  }

  .contact-info p {
    font-size: 21px;
  }

  .map-frame,
  .map-frame iframe {
    height: 500px;
    min-height: 500px;
  }
}

@media (min-width: 1061px) and (max-width: 1250px) {
  .container,
  .header-shell,
  .contact-strip,
  .hero-frame {
    width: min(1120px, calc(100% - 48px));
  }

  .header-shell {
    grid-template-columns: minmax(260px, auto) 1fr auto;
    gap: 22px;
  }

  .site-nav {
    gap: 22px;
  }

  .header-cta {
    min-width: 170px;
    padding: 0 18px;
  }

  .about-grid {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .about-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .detail-grid,
  .contact-layout {
    gap: 42px;
  }

  .glass-stats {
    right: 46px;
    width: 470px;
  }
}

@media (max-width: 1060px) {
  .container,
  .header-shell,
  .contact-strip,
  .hero-frame {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .services-section h1,
  .contact-page h1,
  .detail-section h1 {
    font-size: 40px;
  }

  .service-cards h2 {
    font-size: 28px;
  }

  .contact-page {
    padding: 58px 0 72px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 38px;
  }

  .contact-info {
    max-width: 520px;
  }

  .map-frame,
  .map-frame iframe {
    height: 390px;
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .header-shell {
    position: relative;
    gap: 12px;
    padding-right: 56px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logos {
    gap: 6px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    max-width: 116px;
    font-size: 12px;
    line-height: 1.25;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    padding: 9px;
    border-color: rgba(255, 255, 255, 0.34);
    background: #202020;
    transform: translateY(-50%);
    z-index: 5;
  }

  .menu-toggle span {
    width: 22px;
  }

  .contact-strip {
    width: calc(100% - 32px);
    overflow: hidden;
  }

  .contact-actions {
    gap: 12px;
  }

  .service-cards article {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .service-cards img,
  .service-cards a {
    width: 100%;
    min-width: 0;
  }

  .services-section h1,
  .contact-page h1,
  .detail-section h1 {
    font-size: 30px;
  }

  .service-cards h2 {
    margin: 24px 0 22px;
    font-size: 25px;
  }

  .contact-info {
    display: block;
  }

  .big-phone {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .whatsapp-square {
    display: inline-grid;
    vertical-align: middle;
  }

  .contact-info h2 {
    margin: 18px 0 8px;
  }

  .contact-info p {
    font-size: 20px;
  }

  .map-frame,
  .map-frame iframe {
    height: 320px;
    min-height: 320px;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 18px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle::after {
  display: none;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  order: 2;
  transform: translateY(1px);
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 50;
  width: 280px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
  white-space: normal;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--yellow-soft);
}

.nav-dropdown-menu a::after,
.nav-dropdown-toggle::before {
  flex: 0 0 auto;
}

.nav-dropdown-menu a::after {
  display: none;
}

.home-services {
  padding-top: 86px;
}

.service-lead-section,
.contact-lead-section {
  margin-top: 0;
}

.service-lead-section .order-card h2,
.contact-lead-section .order-card h2 {
  max-width: 760px;
}

.instagram-square {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0;
}

@media (min-width: 1061px) {
  .home-services {
    padding-top: 76px;
  }

  .service-lead-section,
  .contact-lead-section {
    padding-top: 78px;
  }

  .service-lead-section .proof-list strong,
  .contact-lead-section .proof-list strong {
    font-size: 31px;
  }
}

@media (max-width: 1060px) {
  .nav-dropdown {
    display: block;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    width: auto;
    padding: 0 10px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    margin-top: 6px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.06);
    font-size: 14px;
    text-align: center;
  }

  .nav-dropdown-toggle {
    justify-content: center;
  }

  .home-services {
    padding-top: 58px;
  }
}

@media (max-width: 640px) {
  .nav-dropdown-menu {
    padding-inline: 0;
  }

  .service-lead-section .order-card h2,
  .contact-lead-section .order-card h2 {
    font-size: 29px;
  }

  .service-lead-section .proof-list strong,
  .contact-lead-section .proof-list strong {
    font-size: 28px;
  }
}

.round-link[href*="instagram.com"],
.footer-socials a[href*="instagram.com"],
.instagram-square {
  position: relative;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff7a00 0%, #e1306c 48%, #8a2be2 100%);
  color: var(--white);
  font-size: 0;
  overflow: hidden;
}

.round-link[href*="instagram.com"]::before,
.footer-socials a[href*="instagram.com"]::before,
.instagram-square::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  transform: translate(-50%, -50%);
}

.round-link[href*="instagram.com"]::after,
.footer-socials a[href*="instagram.com"]::after,
.instagram-square::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 8px -8px 0 -3px currentColor;
  transform: translate(-50%, -50%);
}

.instagram-square {
  border-radius: 10px;
}

.instagram-square::before {
  width: 28px;
  height: 28px;
  border-width: 3px;
  border-radius: 9px;
}

.instagram-square::after {
  width: 9px;
  height: 9px;
  border-width: 3px;
  box-shadow: 12px -12px 0 -5px currentColor;
}

@media (min-width: 1061px) {
  .nav-dropdown {
    align-self: center;
  }

  .nav-dropdown-toggle {
    min-width: 96px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .nav-dropdown-toggle::before,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-toggle,
  .nav-dropdown:focus-within .nav-dropdown-toggle {
    border-color: var(--yellow);
    color: var(--yellow);
    background: #171717;
  }

  .nav-dropdown-menu {
    left: 0;
    top: 100%;
    width: 320px;
    gap: 34px;
    padding: 24px 26px;
    border: 0;
    border-radius: 0 14px 14px 14px;
    color: var(--muted);
    transform: translateY(10px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translateY(0);
  }

  .nav-dropdown-menu a {
    padding: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    color: var(--yellow);
    background: transparent;
  }

  .home-services {
    padding: 78px 0 88px;
  }

  .home-services::after {
    display: none;
  }

  .home-services .container {
    position: relative;
  }

  .home-services > .container > h2 {
    max-width: 1120px;
    color: #000;
    font-size: 66px;
    line-height: 0.98;
    text-transform: uppercase;
  }

  .home-services > .container > .label-line {
    margin: 10px 0 0;
    background: var(--yellow);
    font-size: 13px;
    text-transform: lowercase;
  }

  .home-services .service-cards {
    gap: 18px;
    margin-top: 30px;
  }

  .home-services .service-cards article {
    min-height: 320px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    padding: 18px;
    border-radius: 18px;
  }

  .home-services .service-cards img {
    height: 190px;
    border-radius: 13px;
  }

  .home-services .service-cards h2 {
    margin: 18px 0 0;
    color: #000;
    font-size: 20px;
    line-height: 1.08;
  }

  .home-services .service-cards p {
    margin: 2px 0 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: lowercase;
  }

  .home-services .service-cards a {
    width: auto;
    min-width: 120px;
    min-height: 42px;
    justify-self: end;
    gap: 12px;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 13px;
  }

  .home-services .service-cards a::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
  }

  .home-services + .steps-section {
    padding-top: 82px;
  }
}

@media (max-width: 1060px) {
  .nav-dropdown-toggle::before {
    display: none;
  }

  .home-services::after {
    display: none;
  }

  .home-services > .container > h2 {
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
  }

  .home-services > .container > .label-line {
    background: var(--yellow);
  }

  .home-services .service-cards p {
    margin: -12px 0 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
  }

  .home-services .service-cards a::after {
    content: " →";
  }
}

@media (max-width: 640px) {
  .home-services > .container > h2 {
    font-size: 34px;
  }

  .home-services .service-cards p {
    margin-top: -8px;
  }
}

.social-icon {
  display: block;
  width: 28px;
  height: 28px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.whatsapp-link,
.two-gis-link,
.two-gis-square {
  background: transparent;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
}

.round-link.whatsapp-link,
.footer-socials .whatsapp-link,
.whatsapp-square {
  background: transparent;
  overflow: hidden;
}

.round-link.whatsapp-link .social-icon,
.footer-socials .whatsapp-link .social-icon,
.whatsapp-square .social-icon {
  width: 100%;
  height: 100%;
}

.round-link.two-gis-link,
.footer-socials .two-gis-link {
  background: transparent;
  color: inherit;
  overflow: hidden;
}

.round-link.two-gis-link .social-icon,
.footer-socials .two-gis-link .social-icon {
  width: 34px;
  height: 34px;
}

.two-gis-square {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-top: -4px;
  border-radius: 10px;
  overflow: hidden;
}

.two-gis-square .social-icon {
  width: 46px;
  height: 46px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: only light;
    --black: #151515;
    --black-deep: #050505;
    --text: #0b0b0b;
    --muted: #747474;
    --line: #e7e7e7;
    --yellow: #ffb612;
    --yellow-bright: #ffd600;
    --yellow-soft: #fff3cf;
    --white: #ffffff;
    --page: #f4f4f4;
    --shadow-yellow: 0 20px 25px rgba(255, 182, 18, 0.33);
  }

  html,
  body,
  .page-main,
  .about-section,
  .services-section,
  .summary-section,
  .detail-section {
    background: #ffffff;
    color: #0b0b0b;
  }

  .site-header,
  .hero-stage,
  .order-section,
  .site-footer {
    background: var(--black);
  }

  .contact-strip,
  .service-cards article,
  .summary-grid article,
  .nav-dropdown-menu,
  input {
    background: #ffffff;
  }

  .header-cta,
  .slide-pill,
  .service-cards a,
  .round-link:not([href*="instagram.com"]):not(.whatsapp-link):not(.two-gis-link),
  .step-mark::before,
  .step-mark b {
    background-color: var(--yellow);
    color: #0b0b0b;
  }

  .whatsapp-link,
  .round-link.whatsapp-link,
  .footer-socials .whatsapp-link,
  .two-gis-link,
  .round-link.two-gis-link,
  .footer-socials .two-gis-link,
  .two-gis-square {
    background: transparent;
    color: inherit;
  }
}

@media (max-width: 1060px) {
  .contact-strip .contact-actions {
    order: 1;
  }

  .contact-strip .contact-mail {
    order: 2;
  }
}

@media (max-width: 640px) {
  .contact-strip .contact-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 54px);
    align-items: center;
    gap: 16px;
  }

  .contact-strip .phone-link {
    grid-column: 1 / -1;
  }

  .contact-strip .round-link {
    width: 54px;
    height: 54px;
  }

  .round-link.two-gis-link .social-icon {
    width: 42px;
    height: 42px;
  }
}
