 
.fix-accent {
  color: var(--teal);
  font-weight: bold;
}

 
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}

.logo__img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo__name strong {
  font-weight: 900;
}

.logo__sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.logo--light .logo__name {
  color: var(--white);
}

.logo__name--light {
  color: var(--white);
}

.logo__sub--light {
  color: rgba(255,255,255,0.5);
}

/* ===== NAV — centered between logo and CTA ===== */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}


.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--teal);
  background: var(--teal-lighter);
}

.header__cta {
  flex-shrink: 0;
  margin-left: auto;
}

/* Burger hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('/imgs/how-it-works.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 21, 41, 0.92) 0%,
    rgba(12, 31, 64, 0.85) 50%,
    rgba(16, 36, 72, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title--accent {
  color: var(--teal);
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero__cta {
  margin-bottom: 48px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}

/* ===== SHINING HERO ICONS ===== */
.hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  filter: drop-shadow(0 0 6px rgba(35, 159, 154, 0.9))
          drop-shadow(0 0 12px rgba(35, 159, 154, 0.5));
  animation: iconGlow 2.4s ease-in-out infinite alternate;
}

.hero__badge-item:nth-child(2) .hero__badge-icon { animation-delay: 0.3s; }
.hero__badge-item:nth-child(3) .hero__badge-icon { animation-delay: 0.6s; }
.hero__badge-item:nth-child(4) .hero__badge-icon { animation-delay: 0.9s; }

@keyframes iconGlow {
  0%   { filter: drop-shadow(0 0 4px rgba(35,159,154,0.7)) drop-shadow(0 0 8px rgba(35,159,154,0.4)); }
  100% { filter: drop-shadow(0 0 10px rgba(35,159,154,1))  drop-shadow(0 0 20px rgba(35,159,154,0.7)); }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

.service-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.service-card__body {
  padding: 22px 24px 28px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FEATURES / WHY ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== ABLAUF / HOW IT WORKS ===== */
.ablauf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ablauf-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ablauf-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.ablauf-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 280px;
}

.ablauf-img-badge__tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ablauf-img-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ablauf-img-badge p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.ablauf-content .section-badge {
  display: inline-block;
  margin-bottom: 12px;
}

.ablauf-content .section-title {
  margin-bottom: 12px;
}

.ablauf-content__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.step__body {
  padding-top: 2px;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-badge {
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.about-checks li svg {
  color: var(--teal);
  flex-shrink: 0;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Badge on the LEFT side */
.about-img-badge {
  position: absolute;
  bottom: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  color: var(--teal);
}

.about-img-badge--left {
  left: 20px;
  right: auto;
}

.about-img-badge > div {
  display: flex;
  flex-direction: column;
}

.about-img-badge strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.about-img-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.price-table {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 72px;
}

.price-row--last {
  border-bottom: none;
}

.price-row__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  width: 28px;
  flex-shrink: 0;
}

.price-row__label {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--white);
  flex: 1;
  white-space: nowrap;
}

.price-row__dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,0.2);
  margin: 0 16px;
  min-width: 20px;
}

.price-row__value {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  min-width: 70px;
  text-align: right;
}

.price-note {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card__stars {
  font-size: 20px;
  color: #f0a500;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

.review-card__author span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.15s;
}

.faq-item__btn:hover {
  background: var(--light-bg);
}

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-item__answer {
  display: none;
  padding: 0 28px 22px;
}

.faq-item.active .faq-item__answer {
  display: block;
}

.faq-item__answer p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CITY TAGS ===== */
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.city-tag {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: all 0.2s;
  cursor: default;
}

.city-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-lighter);
}

.city-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a0acbe;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.form-success {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(35,159,154,0.3);
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
  background: var(--white);
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Instagram gradient */
.social-card--instagram::before {
  background: linear-gradient(135deg, rgba(253,88,73,0.06), rgba(214,36,159,0.06), rgba(88,81,219,0.06));
}
.social-card--instagram:hover {
  border-color: rgba(214,36,159,0.4);
}
.social-card--instagram:hover::before { opacity: 1; }
.social-card--instagram .social-card__icon {
  background: linear-gradient(135deg, #fd5849, #d624a3, #5851db);
}

/* TikTok */
.social-card--tiktok::before {
  background: rgba(0,0,0,0.04);
}
.social-card--tiktok:hover {
  border-color: rgba(0,0,0,0.3);
}
.social-card--tiktok:hover::before { opacity: 1; }
.social-card--tiktok .social-card__icon {
  background: #010101;
}

/* Facebook */
.social-card--facebook::before {
  background: rgba(24,119,242,0.05);
}
.social-card--facebook:hover {
  border-color: rgba(24,119,242,0.4);
}
.social-card--facebook:hover::before { opacity: 1; }
.social-card--facebook .social-card__icon {
  background: #1877f2;
}

.social-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.social-card__body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.social-card__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.social-card__handle {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.social-card__arrow {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}

.social-card:hover .social-card__arrow {
  transform: translate(3px, -3px);
  color: var(--teal);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer__phone {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s;
}

.footer__phone:hover {
  color: #2ac5bf;
}

.footer__links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--teal);
}

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--white);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.32);
}

.float-btn--wa {
  background: #25D366;
}

.float-btn--call {
  background: var(--navy);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ablauf-grid {
    gap: 40px;
  }
  .about-grid {
    gap: 48px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .social-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  /* ===== MOBILE NAV — compact dropdown, not full-screen ===== */
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 8px 24px rgba(12,31,64,0.12);
    /* height is auto — only as tall as the links need */
  }

  .nav.open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0;
  }
  .nav__list li{
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0d6;
    width: 65%;
    text-align: center;
  }
  .nav__link {
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 0;
    width: 100%;
    text-align: center;
  }

  .nav__list li:last-child .nav__link {
    border-bottom: none;
  }

  .burger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

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

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

  .ablauf-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ablauf-img {
    height: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 300px;
  }

  .about-img-badge--left {
    left: 16px;
  }

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

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

  .contact-map {
    min-height: 300px;
  }

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

  .footer__bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero__content {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .hero__badges {
    gap: 14px;
  }

  .hero__badge-item {
    font-size: 13px;
  }

  .price-row {
    padding: 16px 20px;
    gap: 10px;
    min-height: 64px;
  }

  .price-row__label {
    font-size: 14px;
    white-space: normal;
  }

  .price-row__dots {
    display: none;
  }

  .price-row__value {
    font-size: 15px;
    min-width: 52px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

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

  .social-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: 34px;
  }

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

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btns {
    bottom: 20px;
    right: 16px;
  }
}
