* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-primary: #ffc11e;
  --color-primary-dark: #e6a800;
  --color-text: #222222;
  --color-muted: #666666;
  --radius-sm: 5px;
  --radius-md: 10px;
  --shadow-soft: 0 5px 15px rgba(0,0,0,0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 20px;
  z-index: 1002;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: #333;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  gap: 30px;
}

.header-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--color-primary);
}

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

.header-contacts .phone {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

/* BURGER MENU */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* BUTTONS – единый стиль для всех основных CTA */
.btn-header,
.btn-hero,
.btn-service,
.btn-legal {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(255,193,30,0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-header:hover,
.btn-hero:hover,
.btn-service:hover,
.btn-legal:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255,193,30,0.45);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ffc11e 0%, #e6a800 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.hero-overlay-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 0;
  margin-top: -50px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 0;
  font-weight: 700;
}

.hero-title-new {
  font-size: 48px;
  margin-bottom: 60px;
  margin-top: 0;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description-new {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  max-width: 600px;
}

.hero-subtitle {
  visibility: hidden;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
}

.btn-hero {
  margin: 20px 0 0 0;
  font-size: 18px;
  border-radius: 0;
}

.hero-note {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.feature-item {
  font-size: 16px;
}

.hero-types {
  visibility: hidden;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-types span {
  font-size: 16px;
}

.hero-cta {
  visibility: hidden;
  font-size: 20px;
  margin: 30px 0 10px;
  font-weight: 600;
}

.hero-time {
  visibility: hidden;
  font-size: 18px;
  margin-bottom: 20px;
}

/* INTRO SECTION */
.intro-section {
  padding: 20px 0;
  background: #fff;
  text-align: center;
}

.intro-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #333;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.intro-content h3 {
  display: none;
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.intro-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 0;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.intro-content ul {
  text-align: left;
  max-width: 600px;
  margin: 10px auto;
  padding-left: 20px;
  list-style-position: outside;
}

.intro-content li {
  margin-bottom: 5px;
  line-height: 1.6;
  font-size: 18px;
  color: #666;
}

.intro-content li:last-child {
  margin-bottom: 0;
}

/* SERVICES */
.services {
  padding: 20px 0;
  background: #f8f9fa;
  text-align: center;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #333;
}

.services-subtitle {
  font-size: 24px;
  font-weight: normal;
  color: #666;
  display: block;
  margin-top: 10px;
}

.services-info {
  max-width: 800px;
  margin: 30px auto 50px;
  text-align: left;
  background: var(--color-bg-alt);
  padding: 30px;
  border-radius: var(--radius-md);
}

.services-info p {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.services-info ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.services-info li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--color-muted);
  font-size: 16px;
}

.services-info li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 20px;
}

.services-note {
  font-style: italic;
  color: #555;
  margin-top: 20px;
  text-align: center;
}

.services-tags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.services-tags span {
  background: #333;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 20px 30px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  padding: 20px 30px 0 30px;
}

.service-emoji {
  font-size: 48px;
  text-align: center;
  margin: 15px 0;
  padding: 0 30px;
}

.service-card h3 {
  padding: 0 30px;
  font-size: 24px;
  text-align: center;
}

.service-card p {
  padding: 0 30px;
  text-align: center;
}

.service-details {
  padding: 0 30px;
  margin: 20px 0;
  text-align: left;
}

.service-details p {
  padding: 0;
  text-align: left;
  margin-bottom: 10px;
}

.service-details ul {
  list-style: none;
  padding-left: 0;
}

.service-details li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--color-muted);
}

.service-details li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.service-note {
  font-style: italic;
  color: #555;
  font-size: 14px;
}

.service-buttons {
  padding: 0 30px 20px 30px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
  padding: 0 30px;
  text-align: center;
}

.service-card p {
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 0 30px;
  text-align: center;
}

.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-service {
  background: #ffc11e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-service:hover {
  background: #e6a800;
}

.btn-service-link {
  color: #ffc11e;
  background: transparent;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid #ffc11e;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  display: inline-block;
}

.btn-service-link:hover {
  background: #ffc11e;
  color: #fff;
  border-color: #ffc11e;
  text-decoration: none;
}

/* GALLERY */
.gallery {
  padding: 80px 0;
  background: #fff;
}

.gallery h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background: #fff;
}

.about h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.about-number {
  font-size: 48px;
  font-weight: 700;
  color: #ffc11e;
  margin-bottom: 15px;
}

.about-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.about-desc {
  color: #666;
  font-size: 16px;
}

/* LEGAL */
.legal {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.legal h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.legal p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legal-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-legal {
  background: #ffc11e;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-legal:hover {
  background: #e6a800;
}

/* HOW WE WORK */
.how-we-work {
  padding: 80px 0;
  background: #fff;
}

.how-we-work h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.work-step {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ffc11e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.work-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.work-step p {
  color: #666;
  line-height: 1.6;
}

.work-note {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-top: 40px;
  font-style: italic;
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 20px 0;
  background: #f8f9fa;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #333;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.why-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.why-icon {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.why-item p {
  color: #666;
  line-height: 1.6;
}

.why-note {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 0;
  font-weight: 500;
}
.trust {
  padding: 30px 0 80px 0;
  background: #f8f9fa;
}

.trust h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.trust-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trust-number {
  width: 50px;
  height: 50px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trust-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.trust-item p {
  color: #666;
  line-height: 1.6;
}

/* AREAS */
.areas {
  padding: 80px 0;
  background: #fff;
}

.areas h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.area-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  color: #333;
  transition: background 0.3s;
}

.area-item:hover {
  background: #e9ecef;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span {
  font-size: 24px;
  color: #ffc11e;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

/* CONTACTS */
.contacts {
  display: none;
  padding: 80px 0;
  background: #fff;
}

.contacts h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.contacts-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.contact-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.contact-icon-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.phone-icon {
  background: #28a745;
}

.telegram-icon {
  background: #0088cc;
}

.instagram-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* FOOTER */
.footer {
  background: #f8f9fa;
  color: #333;
  padding: 40px 0 20px;
  font-size: 14px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-info {
  flex: 1;
  min-width: 200px;
}

.footer-company {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.footer-address {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.footer-contacts {
  flex: 1;
  text-align: right;
  min-width: 200px;
}

.footer-phone {
  display: block;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-phone:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-copyright {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}

.footer-copyright p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.image-wrapper {
  cursor: pointer;
  transition: opacity 0.3s;
}

.image-wrapper:hover {
  opacity: 0.9;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 5px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s;
}

.close:hover {
  color: #ccc;
}

/* FLOATING */
.floating {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  overflow: hidden;
}

.floating a:hover {
  transform: scale(1.1);
}

.icon-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  padding: 0;
}

.tg {
  background: #fff;
}

.ig {
  background: #fff;
}

.call {
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    position: relative;
  }

  .burger-menu {
    display: flex;
  }

  .header-logo {
    margin-right: 0;
    order: 1;
  }

  .burger-menu {
    order: 2;
  }

  .logo-img {
    height: 40px;
  }

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

  .header-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .header-nav,
  .header-contacts {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    gap: 15px;
  }

  .header-nav {
    top: 60px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .header-contacts {
    top: auto;
    margin-top: 20px;
    padding-top: 20px;
    align-items: stretch;
  }

  .header-nav.active,
  .header-contacts.active {
    transform: translateX(0);
  }

  .header-nav a {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .header-nav a:last-child {
    border-bottom: none;
  }

  .header-contacts .phone {
    text-align: center;
    padding: 15px 0 12px 0;
    margin-top: 10px;
  }

  .btn-header {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-title-new {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero-description-new {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 90%;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .services-grid,
  .about-grid,
  .work-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    align-items: center;
    justify-content: center;
  }

  .footer-info {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-company {
    text-align: center;
  }

  .footer-address {
    text-align: center;
  }

  .footer-contacts {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-phone {
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    align-items: center;
  }
}
