:root {
  --blue: #075bc7;
  --blue-2: #0b6be8;
  --blue-dark: #064aa1;
  --ink: #071328;
  --muted: #5c6b80;
  --line: #e9eef5;
  --surface: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 10px 26px rgba(6, 32, 73, 0.08);
  --shadow-soft: 0 4px 16px rgba(7, 19, 40, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
summary {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.topbar,
main,
.footer {
  width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
}

.topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(28px, 5vw, 96px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 235, 244, 0.95);
  box-shadow: 0 5px 22px rgba(7, 19, 40, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
}

.brand__wheel {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 6px solid #071328;
  background:
    radial-gradient(circle, #fff 0 28%, transparent 29%),
    repeating-conic-gradient(from 0deg, #071328 0 10deg, #fff 10deg 17deg);
  box-shadow: inset 0 0 0 2px #fff;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid var(--blue);
}

.brand__text {
  display: grid;
  line-height: 0.82;
}

.brand__text strong {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__text small {
  color: #071328;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #23324a;
  font-size: 13px;
  font-weight: 700;
}

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

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.btn--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(7, 91, 199, 0.18);
}

.btn--primary:hover {
  box-shadow: 0 10px 22px rgba(7, 91, 199, 0.24);
}

.btn--soft {
  color: #071328;
  background: #fff;
  border-color: var(--line);
}

.btn--outline {
  color: var(--blue);
  background: #fff;
  border-color: #a9c1e9;
}

.btn--light {
  color: var(--blue);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--large {
  min-height: 56px;
  min-width: 186px;
  font-size: 16px;
}

.icon {
  display: inline-grid;
  place-items: center;
  font-size: 17px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  color: #071328;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

main {
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(229, 235, 244, 0.9);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 118px 0 96px clamp(42px, 6vw, 118px);
  max-width: 620px;
}

.hero h1 {
  max-width: 590px;
  margin: 0 0 24px;
  color: #061227;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  max-width: 505px;
  margin: 0 0 36px;
  color: #35445a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 59%;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0.74) 12%, transparent 36%),
    linear-gradient(180deg, transparent 82%, rgba(255, 255, 255, 0.36) 100%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  animation: heroDrift 10s ease-in-out infinite alternate;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 54px clamp(42px, 6vw, 118px) 68px;
}

.info-card,
.feature-card,
.service-card,
.review-card,
.process-card,
.map-card,
.contact-card,
.faq-list {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.info-card {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  column-gap: 13px;
  padding: 24px 0 8px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.info-card__icon {
  grid-row: span 2;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 29px;
}

.info-card__icon--star {
  color: #ffb300;
  font-size: 38px;
}

.info-card strong {
  align-self: end;
  color: #15233b;
  font-size: 15px;
  font-weight: 900;
}

.info-card small {
  color: #40506a;
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 74px clamp(42px, 6vw, 118px) 82px;
}

.section__heading {
  margin-bottom: 38px;
  text-align: center;
}

.section__heading h2,
.map-card h2 {
  margin: 0;
  color: #071328;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
}

.feature-grid,
.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.feature-card,
.service-card {
  min-height: 0;
  padding: 32px 12px 8px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.feature-card:hover,
.service-card:hover,
.info-card:hover,
.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 91, 199, 0.34);
  box-shadow: none;
}

.card-icon,
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--blue);
  font-size: 48px;
}

.service-icon {
  width: 62px;
  height: 62px;
  color: #fff;
  font-size: 43px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: none;
}

.service-icon svg {
  width: 0.72em;
  height: 0.72em;
}

.feature-card h3,
.service-card h3,
.process-step h3 {
  margin: 0 0 8px;
  color: #0b1830;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.feature-card p,
.service-card p,
.process-step p,
.review-card p {
  margin: 0;
  color: #536176;
  font-size: 14px;
  font-weight: 550;
}

.services-wrap {
  position: relative;
}

#servicii,
.reviews,
.faq-section {
  background: var(--soft);
}

.carousel-dots {
  display: none;
}

.process {
  padding-top: 74px;
}

.process-card {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 16px;
  padding: 12px 60px 22px;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 19%;
  width: 62%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(7, 91, 199, 0.35) 50%, transparent 50%);
  background-size: 12px 2px;
  animation: dashMove 1.4s linear infinite;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-top: 18px;
  text-align: center;
}

.step-number {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 91, 199, 0.25);
  font-size: 18px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 35px;
  margin-bottom: 9px;
}

.process-step p {
  max-width: 170px;
}

.reviews {
  padding-top: 74px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.review-card {
  position: relative;
  min-height: 0;
  padding: 34px 6px 12px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.quote {
  display: none;
}

.stars {
  color: #ffb300;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 9px;
}

.review-card strong {
  display: inline-block;
  margin-top: 14px;
  color: #47566d;
  font-size: 14px;
  font-weight: 800;
}

.location-section {
  padding-top: 86px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.96fr;
  gap: 56px;
  align-items: stretch;
}

.map-card,
.contact-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-card {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.map-card h2 {
  margin-bottom: 17px;
  font-size: 18px;
  text-align: left;
}

.map-visual {
  position: relative;
  overflow: hidden;
  height: 214px;
  border: 1px solid #d6dfed;
  border-radius: 8px;
  background: #eff3f8;
}

.map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #25344d;
  font-size: 15px;
  font-weight: 650;
}

.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}

.contact-list a {
  color: #071328;
  font-weight: 900;
}

.mini-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 25px;
}

.faq-section {
  padding-top: 74px;
}

.faq-section .section__heading {
  margin-bottom: 30px;
}

.faq-list {
  overflow: hidden;
  background: transparent;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  position: relative;
  display: block;
  padding: 16px 57px 16px 25px;
  color: #20304a;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

details p {
  max-width: 770px;
  margin: -4px 57px 17px 25px;
  color: var(--muted);
  font-size: 14px;
}

.phone-cta {
  width: calc(100% - clamp(84px, 12vw, 236px));
  min-height: 104px;
  display: grid;
  grid-template-columns: 62px 1fr auto auto;
  align-items: center;
  gap: 30px;
  margin: 64px auto 78px;
  padding: 22px 32px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: none;
}

.phone-cta__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 30px;
  animation: ringPulse 2.5s ease-in-out infinite;
}

.phone-cta h2 {
  margin: 0 0 3px;
  font-size: 25px;
  font-weight: 900;
}

.phone-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 650;
}

.phone-cta__number {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  white-space: nowrap;
}

.footer {
  margin-bottom: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 1fr;
  gap: 72px;
  padding: 56px clamp(42px, 6vw, 118px) 42px;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 6px;
  color: #40506a;
  font-size: 13px;
  font-weight: 650;
}

.footer h3 {
  margin: 0 0 10px;
  color: #071328;
  font-size: 14px;
  font-weight: 900;
}

.footer__brand p {
  margin-top: 13px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(42px, 6vw, 118px) 26px;
  color: #6d7b91;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
}

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

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

.reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.reveal:nth-child(4) {
  transition-delay: 0.18s;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.07) translateX(-8px);
  }
}

@keyframes dashMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 12px 0;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1050px) {
  .topbar__inner {
    padding-inline: 20px;
  }

  .nav {
    gap: 20px;
  }

  .topbar__actions {
    display: none;
  }

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

  .hero__content {
    padding-right: 40%;
  }

  .quick-info,
  .section,
  .footer__inner,
  .footer__bottom {
    padding-inline: 42px;
  }

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

@media (max-width: 760px) {
  body {
    background: #f6f8fc;
  }

  .topbar {
    top: 0;
  }

  .topbar__inner {
    min-height: 64px;
    padding: 0 22px;
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(7, 19, 40, 0.06);
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__wheel {
    width: 31px;
    height: 31px;
    border-width: 5px;
  }

  .brand__mark::after {
    inset: 7px;
    border-width: 1.5px;
  }

  .brand__text strong {
    font-size: 20px;
  }

  .brand__text small {
    font-size: 8px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 24px rgba(7, 19, 40, 0.09);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 11px 12px;
    color: #15233b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-menu a:hover {
    background: #f1f6ff;
    color: var(--blue);
  }

  main {
    margin-top: 0;
    border: 0;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 48px 22px 0;
    background: #fff;
    border-bottom: 0;
  }

  .hero__content {
    max-width: none;
    padding: 0;
  }

  .hero h1 {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.12;
  }

  .hero p {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 190px;
  }

  .btn--large {
    min-width: 0;
    min-height: 45px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero__image {
    position: relative;
    inset: auto;
    width: calc(100% + 44px);
    height: 210px;
    margin: 38px -22px 0;
    overflow: hidden;
    border-radius: 0;
  }

  .hero__image::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.3));
  }

  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 40px 22px 54px;
    background: #fff;
  }

  .info-card {
    min-height: 0;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 18px 0 4px;
    border-radius: 0;
    box-shadow: none;
  }

  .info-card__icon {
    width: 28px;
    height: 28px;
    font-size: 23px;
  }

  .info-card__icon--star {
    font-size: 28px;
  }

  .info-card strong {
    font-size: 12px;
  }

  .info-card small {
    font-size: 11px;
  }

  .section {
    padding: 54px 22px 60px;
  }

  .section__heading {
    margin-bottom: 28px;
  }

  .section__heading h2 {
    font-size: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px 16px;
    align-items: center;
    padding: 24px 0 4px;
    text-align: left;
  }

  .feature-card .card-icon {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    margin: 0;
    font-size: 37px;
  }

  .feature-card h3,
  .service-card h3,
  .process-step h3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .feature-card p,
  .service-card p,
  .process-step p,
  .review-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .services-wrap {
    margin: 0 -22px;
    overflow: hidden;
  }

  .service-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 22px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: calc(100% - 44px);
    min-height: 154px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 8px 14px;
    align-items: center;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: left;
    scroll-snap-align: center;
  }

  .service-icon {
    grid-row: span 2;
    width: 45px;
    height: 45px;
    margin: 0;
    font-size: 31px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
  }

  .carousel-dots span {
    width: 6px;
    height: 6px;
    background: #bcc9dc;
    border-radius: 50%;
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .carousel-dots span.is-active {
    width: 18px;
    background: var(--blue);
  }

  .process {
    padding-top: 54px;
  }

  .process-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 10px 0;
  }

  .process-card::before {
    top: 45px;
    bottom: 45px;
    left: 39px;
    width: 2px;
    height: auto;
    background-image: linear-gradient(180deg, rgba(7, 91, 199, 0.35) 50%, transparent 50%);
    background-size: 2px 12px;
  }

  .process-step {
    grid-template-columns: 45px 1fr;
    justify-items: start;
    column-gap: 15px;
    min-height: 104px;
    padding: 0;
    text-align: left;
  }

  .step-number {
    grid-row: span 3;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .step-icon {
    width: 32px;
    margin: 0 0 4px;
    font-size: 25px;
  }

  .process-step p {
    max-width: 170px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .review-card {
    min-height: 0;
    padding: 28px 0 8px;
  }

  .quote {
    left: 17px;
    top: 13px;
    font-size: 28px;
  }

  .stars {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .review-card strong {
    margin-top: 8px;
    font-size: 11px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .map-card,
  .contact-card {
    padding: 0;
  }

  .contact-card {
    padding-top: 34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .map-card h2 {
    margin-bottom: 18px;
    text-align: left;
  }

  .map-visual {
    height: 153px;
  }

  .contact-list {
    gap: 20px;
    font-size: 12px;
  }

  .contact-list li {
    grid-template-columns: 24px 1fr;
    gap: 9px;
  }

  .mini-icon {
    font-size: 22px;
  }

  .faq-section {
    padding-top: 54px;
  }

  .faq-list {
    box-shadow: none;
  }

  summary {
    padding: 18px 40px 18px 0;
    font-size: 13px;
  }

  summary::after {
    right: 4px;
    width: 7px;
    height: 7px;
  }

  details p {
    margin: -2px 40px 18px 0;
    font-size: 12px;
  }

  .phone-cta {
    width: calc(100% - 44px);
    grid-template-columns: 42px 1fr;
    gap: 16px;
    margin: 12px auto 56px;
    padding: 24px;
    border-radius: 8px;
  }

  .phone-cta__icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .phone-cta h2 {
    font-size: 16px;
  }

  .phone-cta p {
    font-size: 11px;
    line-height: 1.35;
  }

  .phone-cta__number {
    grid-column: 1 / -1;
    justify-self: center;
    font-size: 27px;
  }

  .phone-cta .btn {
    grid-column: 1 / -1;
    min-height: 43px;
    width: 100%;
  }

  .footer {
    border-radius: 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 22px 34px;
  }

  .footer__bottom {
    display: grid;
    gap: 8px;
    padding: 20px 22px 24px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 27px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }
}

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