/* Expanded site system */
.floating-socials {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 28px;
  display: grid;
  gap: 10px;
}

.floating-socials__link {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  transition: background-color .2s, transform .2s;
}

.floating-socials__link:first-child { background: #202428; }
.floating-socials__link:last-child { background: #1f9d55; }
.floating-socials__link:hover { transform: translateX(-4px); background: var(--red); }
.floating-socials__link svg { width: 24px; height: 24px; fill: currentColor; }
.floating-socials__label {
  position: absolute;
  right: 66px;
  padding: 7px 10px;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  background: var(--black);
  opacity: 0;
  transform: translateX(5px);
  transition: opacity .2s, transform .2s;
}
.floating-socials__link:hover .floating-socials__label,
.floating-socials__link:focus-visible .floating-socials__label { opacity: 1; transform: none; }

.nav__list { gap: clamp(16px, 1.8vw, 34px); }
.nav__cta-item { display: none; }
.header-inner { grid-template-columns: 170px 1fr auto; }
.error-page { min-height: calc(100svh - var(--head)); display: grid; place-items: center; }

@media (max-width: 1279px) and (min-width: 1100px) {
  .header-actions .button { display: none; }
}

@media (min-width: 768px) and (max-width: 1099px) {
  :root { --container: min(100% - 98px, 920px); }
  .hero__content { padding-inline: 49px; }
}

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.resource-card { position: relative; min-height: 360px; padding: 36px; overflow: hidden; border-right: 1px solid var(--border); }
.resource-card:last-child { border-right: 0; }
.resource-card__number { color: var(--red); font-family: var(--font-title); font-size: 14px; }
.resource-card h3 { max-width: 300px; margin: 90px 0 18px; font-size: clamp(26px, 3vw, 38px); }
.resource-card p { max-width: 330px; color: var(--muted); }
.resource-card::after { position: absolute; right: 24px; bottom: 18px; color: var(--red); content: '↗'; font-size: 30px; transition: transform .2s; }
.resource-card:hover { color: #fff; background: var(--black); }
.resource-card:hover p { color: #b8bdc1; }
.resource-card:hover::after { transform: translate(4px, -4px); }

.intro-band { color: #fff; background: var(--graphite); }
.intro-band__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.intro-band__copy { color: #c1c5c8; font-size: 18px; }
.intro-band__copy p:last-child { margin-bottom: 0; }

.timeline { display: grid; gap: 0; counter-reset: timeline; }
.timeline-item { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 40px; padding: 42px 0; border-top: 1px solid var(--border); counter-increment: timeline; }
.timeline-item::before { content: '0' counter(timeline); color: var(--red); font-family: var(--font-title); font-size: 38px; }
.timeline-item h2 { font-size: clamp(28px, 3vw, 42px); }
.timeline-item__details { color: var(--muted); }
.timeline-item__details ul { padding-left: 18px; }

.document-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.document-item { padding: 28px; background: #fff; }
.document-item strong { display: block; margin-bottom: 8px; font-family: var(--font-title); }
.document-item span { color: var(--muted); font-size: 14px; }

.materials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.material-card { display: grid; min-height: 430px; padding: 40px; align-content: space-between; color: #fff; background: var(--graphite); }
.material-card:nth-child(2), .material-card:nth-child(3) { color: var(--text); background: var(--off); border: 1px solid var(--border); }
.material-card__index { color: var(--red); font-family: var(--font-title); }
.material-card h2 { max-width: 460px; font-size: clamp(34px, 4vw, 56px); }
.material-card p { max-width: 480px; margin-bottom: 0; color: #adb2b5; }
.material-card:nth-child(2) p, .material-card:nth-child(3) p { color: var(--muted); }

.comparison { width: 100%; border-collapse: collapse; }
.comparison th, .comparison td { padding: 20px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.comparison th { font-family: var(--font-title); font-size: 14px; }
.comparison td { color: var(--muted); }
.table-wrap { overflow-x: auto; }

.faq-categories { display: grid; grid-template-columns: 260px 1fr; gap: 80px; }
.faq-aside { position: sticky; top: 110px; align-self: start; }
.faq-aside a { display: block; padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--border); }
.faq-aside a:hover { color: var(--red); }
.faq-group { margin-bottom: 70px; }
.faq-group h2 { margin-bottom: 28px; font-size: clamp(30px, 4vw, 46px); }

.section-cta { display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: center; padding: 48px; color: #fff; background: var(--red); }
.section-cta h2 { max-width: 820px; }
.section-cta .button { color: var(--text); background: #fff; border-color: #fff; }

@media (max-width: 1099px) {
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--border); }
  .resource-card:last-child { border-bottom: 0; }
  .resource-card h3 { margin-top: 48px; }
  .intro-band__grid, .faq-categories { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: static; }
  .timeline-item { grid-template-columns: 100px 1fr; }
  .timeline-item__details { grid-column: 2; }
}

@media (max-width: 767px) {
  :root { --container: calc(100% - 32px); }
  .header-phones { display: none; }
  .floating-socials { right: 12px; bottom: 16px; }
  .floating-socials__link { width: 48px; height: 48px; }
  .floating-socials__label { display: none; }
  .materials-grid, .document-list { grid-template-columns: 1fr; }
  .material-card { min-height: 340px; padding: 28px; }
  .timeline-item { grid-template-columns: 58px 1fr; gap: 14px; padding: 32px 0; }
  .timeline-item::before { font-size: 26px; }
  .section-cta { grid-template-columns: 1fr; padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-socials__link, .floating-socials__label { transition: none; }
}

/* Professional density, contrast and motion pass */
:root {
  --section: clamp(58px, 5.5vw, 92px);
  --head: 94px;
  --muted: #51575c;
  --container: min(1440px, calc(100% - 130px));
}

body { font-size: 16px; }
.site-header {
  position: sticky;
  top: 0;
  height: var(--head);
  background: #fff;
  border-bottom-color: rgba(17, 19, 21, .1);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: height .25s, background-color .25s, box-shadow .25s;
}
.site-header.is-sticky {
  position: sticky;
  height: 80px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(12, 16, 18, .09);
}
.brand { display: inline-flex; width: 154px; height: 67px; align-items: center; overflow: hidden; background: #fff; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.site-footer .brand { width: 170px; height: 74px; background: #fff; }
.nav__link { font-weight: 500; }
.header-phones {
  display: grid;
  gap: 3px;
}
.header-phones .header-phone {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}
.header-phone--secondary {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}
.header-actions { position: relative; }
.phone-popover {
  position: absolute;
  z-index: 120;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: min(290px, calc(100vw - 32px));
  padding: 22px;
  gap: 9px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}
.phone-popover[hidden] { display: none; }
.phone-popover::before {
  position: absolute;
  top: -8px;
  right: 64px;
  width: 14px;
  height: 14px;
  content: '';
  background: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}
.phone-popover__label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.phone-popover a { font-size: 16px; font-weight: 700; }
.phone-popover small { color: var(--muted); font-size: 12px; }
.phone-popover__whatsapp { margin-top: 8px; padding-top: 12px; color: #168747; border-top: 1px solid var(--border); }
.mobile-call svg { width: 20px; height: 20px; fill: currentColor; }
#estimate, #contact-request { scroll-margin-top: 96px; }
.form-grid--extended { align-content: start; }
.form-grid--extended .field--full textarea { min-height: 120px; }
.form-grid--extended input::placeholder,
.form-grid--extended textarea::placeholder { color: #8f9498; opacity: 1; }
.form-grid--extended input[list] { cursor: text; }
.nav__link.is-active::after { transform: scaleX(1); height: 3px; }
.lead, .section-head__copy, .card p, .step p, .value p,
.project-copy__body, .legal p, .legal li, .timeline-item__details,
.material-card:nth-child(2) p, .material-card:nth-child(3) p,
.comparison td { color: #51575c; }
.section--dark .section-head__copy, .section--dark .project-card p { color: #d0d4d6; }
.project-card__type { color: #c1c6c9; }
.projects-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.projects-carousel::before,
.projects-carousel::after {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: clamp(18px, 4vw, 72px);
  content: '';
  pointer-events: none;
}
.projects-carousel::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.projects-carousel::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.projects-carousel .projects-grid {
  --slide-width: clamp(540px, 62vw, 900px);
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  padding: 26px calc((100% - var(--slide-width)) / 2) 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100% - var(--slide-width)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.projects-carousel .projects-grid::-webkit-scrollbar { display: none; }
.projects-carousel .projects-grid.is-jumping { scroll-behavior: auto; }
.projects-carousel .project-card {
  --card-scale: .84;
  --card-opacity: .56;
  z-index: 1;
  flex: 0 0 var(--slide-width);
  opacity: var(--card-opacity);
  transform: scale(var(--card-scale));
  transform-origin: center;
  scroll-snap-align: center;
  transition: opacity .22s linear, transform .22s linear;
}
.projects-carousel .project-card.is-active { z-index: 2; }
.projects-carousel .project-card__image { aspect-ratio: 16 / 8.8; }
.projects-carousel .project-card h3 { font-size: clamp(25px, 2.2vw, 35px); }
.projects-carousel .project-card__type,
.projects-carousel .project-card h3,
.projects-carousel .project-card p { transition: opacity .2s; }
.projects-carousel .project-card:not(.is-active) .project-card__type,
.projects-carousel .project-card:not(.is-active) h3,
.projects-carousel .project-card:not(.is-active) p { opacity: .72; }
.carousel-controls { display: flex; margin-top: 30px; padding-top: 20px; align-items: center; justify-content: space-between; border-top: 1px solid #303539; }
.carousel-counter { color: #8f969a; font-size: 13px; letter-spacing: .08em; }
.carousel-counter strong { color: #fff; font-family: var(--font-title); font-size: 21px; }
.carousel-hint { color: #aeb4b8; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.carousel-buttons { display: flex; gap: 8px; }
.carousel-buttons button { display: grid; width: 50px; height: 50px; padding: 0; place-items: center; color: #fff; background: transparent; border: 1px solid #41474b; font-size: 22px; transition: color .2s, background-color .2s, border-color .2s; }
.carousel-buttons button:hover { background: var(--red); border-color: var(--red); }
.site-footer, .footer-copy { color: #e1e4e6; }
.footer-links { font-size: 14px; }
.footer-links a { display: inline-flex; min-height: 32px; align-items: center; }

.page-hero { padding: 48px 0 58px; }
.page-hero__image { margin-top: 38px; }
.section-head { margin-bottom: 34px; }
.service-row { padding-block: 46px; }
.resource-card { min-height: 300px; }
.resource-card h3 { margin-top: 58px; }
.material-card { min-height: 350px; }
.timeline-item { padding: 34px 0; }

.cta-form__intro, .section-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-form__intro::before, .section-cta::before {
  position: absolute;
  z-index: -1;
  inset: -60% -10% auto auto;
  width: 380px;
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
}
.cta-form__intro::after, .section-cta::after {
  position: absolute;
  z-index: -1;
  right: 7%;
  bottom: -80px;
  width: 250px;
  height: 210px;
  content: '';
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(-8deg);
}
.section-cta > *, .cta-form__intro > * { position: relative; z-index: 1; }

.site-footer { padding: 52px 0 22px; }
.footer-grid { grid-template-columns: 1.15fr .8fr .9fr 1.2fr; gap: clamp(28px, 4vw, 70px); padding-bottom: 38px; }
.footer-map { height: 138px; margin-top: 15px; overflow: hidden; border: 1px solid #3b4145; }
.footer-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }
.footer-bottom { color: #bfc4c7; }

.map-placeholder { min-height: 480px; padding: 0; overflow: hidden; }
.map-placeholder iframe { width: 100%; min-height: 480px; border: 0; }

.verified-services { background: var(--black); color: #fff; }
.verified-services__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.verified-services__list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #363b3e; }
.verified-service { padding: 25px 18px 25px 0; border-bottom: 1px solid #363b3e; }
.verified-service:nth-child(odd) { border-right: 1px solid #363b3e; }
.verified-service:nth-child(even) { padding-left: 24px; }
.verified-service span { display: block; color: var(--red); font-family: var(--font-title); font-size: 13px; }
.verified-service strong { display: block; margin-top: 7px; font-family: var(--font-title); font-size: 20px; }

.price-teaser { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px 38px; margin-top: 45px; color: #fff; background: var(--red); }
.price-teaser strong { display: block; font-family: var(--font-title); font-size: clamp(26px, 3vw, 42px); }
.price-teaser small { display: block; margin-top: 6px; color: rgba(255,255,255,.82); }
.price-teaser .button { color: var(--text); background: #fff; border-color: #fff; }

.motion-ready { opacity: 0; transform: translateY(34px); transition: opacity .75s cubic-bezier(.2,.75,.25,1), transform .75s cubic-bezier(.2,.75,.25,1); transition-delay: var(--motion-delay, 0ms); }
.motion-ready.motion-visible { opacity: 1; transform: none; }
.image-motion { overflow: hidden; }
.image-motion img { transform: scale(1.08); transition: transform 1.1s cubic-bezier(.2,.75,.25,1); }
.image-motion.motion-visible img { transform: scale(1); }
.hero__visual img { animation: heroZoom 1.4s cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroZoom { from { opacity: .35; transform: scale(1.07); } to { opacity: 1; transform: scale(1); } }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { min-height: 430px; }
.price-card--accent { color: #fff; background: var(--black); border-color: var(--black); }
.price-card__index { color: var(--red); font-family: var(--font-title); font-size: 13px; }
.price-card h3 { min-height: 54px; margin: 44px 0 20px; font-size: 27px; }
.price-card__price { display: flex; min-height: 58px; align-items: baseline; gap: 7px; margin-bottom: 24px; color: var(--muted); }
.price-card--accent .price-card__price { color: #c9ced1; }
.price-card__price strong { color: var(--red); font-family: var(--font-title); font-size: 34px; }
.price-card__price small { font-size: 13px; }
.price-card ul { min-height: 108px; margin: 0 0 20px; padding-left: 18px; color: var(--muted); }
.price-card--accent ul { color: #c9ced1; }
.calculator { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 120px); }
.calculator > div:first-child p:last-child { max-width: 560px; color: #cbd0d3; }
.calculator__panel { padding: 38px; color: var(--text); background: #fff; }
.calculator__panel label { display: block; margin-bottom: 18px; font-family: var(--font-title); font-weight: 700; }
.calculator__control { display: grid; grid-template-columns: 1fr 110px; align-items: center; gap: 20px; }
.calculator__control input[type="range"] { width: 100%; accent-color: var(--red); }
.calculator__control input[type="number"] { min-height: 48px; padding: 10px; border: 1px solid var(--border); }
.calculator__result { margin: 30px 0; color: var(--muted); }
.calculator__result strong { display: block; color: var(--red); font-family: var(--font-title); font-size: clamp(38px, 5vw, 62px); line-height: 1.05; }
.price-card { display: flex; min-height: 330px; padding: 32px; flex-direction: column; background: var(--off); border: 1px solid var(--border); }
.price-card--featured { color: #fff; background: var(--black); border-color: var(--black); }
.price-card__label { color: var(--red); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.price-card h2 { margin: 24px 0 14px; font-size: 28px; }
.price-card__value { margin: auto 0 6px; font-family: var(--font-title); font-size: clamp(34px, 4vw, 54px); line-height: 1; }
.price-card__note { color: #686e72; font-size: 13px; }
.price-card--featured .price-card__note { color: #bfc4c7; }
.price-notice { margin-top: 34px; padding: 22px 24px; color: #4b5155; background: #f1f1ef; border-left: 3px solid var(--red); }

@media (min-width: 1100px) and (min-height: 680px) {
  .hero { height: auto; min-height: calc(100svh - var(--head)); }
  .project-detail-hero,
  .project-detail-hero__content,
  .split {
    height: auto;
    min-height: calc(100svh - 80px);
  }
  .split__image { min-height: 570px; }
  #projects-showcase {
    height: calc(100svh - 80px);
    min-height: 0;
    padding-block: clamp(24px, 4vh, 48px);
    overflow: hidden;
  }
  #projects-showcase > .container {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
  }
  #projects-showcase .section-head {
    flex: 0 0 auto;
    margin-bottom: clamp(12px, 2vh, 24px);
  }
  #projects-showcase .projects-carousel {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    align-items: center;
  }
  #projects-showcase .projects-grid {
    --slide-width: min(62vw, 900px, calc(181.8svh - 782px));
    padding-top: 10px;
    padding-bottom: 16px;
  }
  #projects-showcase .project-card__image {
    height: clamp(250px, calc(100svh - 430px), 480px);
    aspect-ratio: auto;
  }
  #projects-showcase .carousel-controls {
    flex: 0 0 auto;
    margin-top: 10px;
    padding-top: 12px;
  }
}

@media (max-width: 1099px) {
  .verified-services__grid { grid-template-columns: 1fr; gap: 38px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --head: 76px; --section: 58px; --container: calc(100% - 32px); }
  html, body { width: 100%; max-width: 100%; overflow-x: clip; }
  body, main, section, header, footer,
  .hero, .hero > *, .hero__content { min-width: 0; max-width: 100%; }
  .container, .cards, .projects-grid, .form-grid, .footer-grid,
  .field, .card, .project-card, .footer-grid > *,
  .section-head, .section-head > *, .page-hero__grid > *,
  .pricing-grid, .price-card, .price-card > *,
  .calculator, .calculator > *, .calculator__panel,
  .calculator__control, .document-list, .document-item,
  .service-row, .service-row > *, .contact-grid, .contact-grid > * { min-width: 0; max-width: 100%; }
  h1, h2, h3, p, li, strong, .link-arrow, .button { overflow-wrap: anywhere; }
  img, iframe, video, input, select, textarea { max-width: 100%; }
  .site-header.is-sticky { height: 70px; }
  body.menu-open .site-header,
  body.menu-open .site-header.is-sticky {
    position: fixed;
    z-index: 130;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: var(--head);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  }
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
  .header-phones { display: none; }
  .header-actions { gap: 8px; }
  .mobile-call, .menu-toggle { display: grid; }
  .menu-backdrop.is-open { z-index: 98; }
  .nav.is-open {
    z-index: 110;
    top: var(--head);
    height: calc(100dvh - var(--head));
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 20px 44px rgba(0, 0, 0, .18);
  }
  .nav.is-open .nav__cta-item {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .nav.is-open .nav__cta {
    width: 100%;
    min-height: 56px;
    color: #fff;
    font-family: var(--font-title);
    font-size: 16px;
  }
  .phone-popover { right: 54px; }
  .brand { width: 138px; height: 58px; }
  .page-hero { padding: 34px 0 42px; }
  .page-hero__image { margin-top: 28px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(32px, 9.5vw, 44px); }
  .page-hero h1 { font-size: clamp(35px, 10.8vw, 48px); line-height: 1.04; }
  .page-prices .page-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    overflow-wrap: normal;
    word-break: normal;
  }
  .page-privacy .page-hero h1 {
    font-size: clamp(26px, 7.6vw, 38px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }
  .breadcrumbs { flex-wrap: wrap; row-gap: 6px; }
  .hero h1 .text-red { display: block; }
  .hero .eyebrow { max-width: 100%; font-size: 10px; letter-spacing: .14em; }
  .lead, .hero__copy { font-size: 16px; line-height: 1.6; }
  .projects-carousel .projects-grid {
    --slide-width: min(74vw, 330px);
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 22px;
  }
  .projects-carousel {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .projects-carousel .project-card__image { aspect-ratio: 4 / 3; }
  .projects-carousel .project-card h3 { font-size: 23px; }
  .carousel-controls { margin-top: 18px; padding-top: 16px; }
  .carousel-hint { display: none; }
  .carousel-buttons button { width: 46px; height: 46px; }
  .field label { font-size: 14px; }
  .field input, .field select, .field textarea { min-height: 54px; font-size: 16px; }
  .consent { font-size: 13px; line-height: 1.5; }
  .button { width: 100%; min-height: 54px; padding-inline: 18px; text-align: center; }
  .button, .link-arrow { white-space: normal; }
  .hero__actions { width: 100%; }
  .hero__actions .link-arrow, .section-head .link-arrow { width: max-content; }
  .contact-action { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-grid, .pricing-grid { grid-template-columns: 1fr; }
  .verified-services__list { grid-template-columns: 1fr; }
  .verified-service:nth-child(odd) { border-right: 0; }
  .verified-service:nth-child(even) { padding-left: 0; }
  .price-teaser { grid-template-columns: 1fr; padding: 28px 24px; }
  .calculator { grid-template-columns: 1fr; }
  .price-card { min-height: auto; padding: 24px; }
  .price-card h3 { min-height: 0; margin: 28px 0 16px; font-size: 24px; }
  .price-card__price { min-height: 0; flex-wrap: wrap; gap: 5px 7px; }
  .price-card__price strong { max-width: 100%; font-size: clamp(27px, 9vw, 32px); line-height: 1.08; overflow-wrap: anywhere; }
  .price-card ul { min-height: 0; padding-left: 20px; }
  .calculator__panel { padding: 24px; }
  .calculator__control { grid-template-columns: 1fr; }
  .calculator__control input[type="range"],
  .calculator__control input[type="number"] { width: 100%; min-width: 0; }
  .calculator__result strong { font-size: clamp(34px, 11vw, 48px); overflow-wrap: anywhere; }
  .document-item { padding: 22px 20px; }
}

@media (max-width: 420px) {
  .phone-popover {
    position: fixed;
    top: calc(var(--head) - 2px);
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
  .phone-popover::before { right: 58px; }
  .project-nav { align-items: flex-start; flex-direction: column; gap: 12px; }
  .page-prices .price-card__price strong { font-size: clamp(25px, 8vw, 30px); }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready { opacity: 1; transform: none; transition: none; }
  .image-motion img, .hero__visual img { transform: none; animation: none; transition: none; }
}
