/* ============================================
   PROFIT ENGENHARIA — Complete Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --dark-blue: #001749;
  --orange: #FF5D00;
  --white: #FFFFFF;
  --medium-blue: #0070F5;
  --light-gray: #D9E4EE;
  --dark-gray: #9BA6B5;
  --font: 'Poppins', sans-serif;
  --container-max: 1200px;
  --section-padding: 96px 0;
  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0,23,73,0.06);
  --shadow-md: 0 8px 24px rgba(0,23,73,0.10);
  --shadow-lg: 0 16px 48px rgba(0,23,73,0.12);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark-blue); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* --- Utilities --- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 2.25rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 16px; line-height: 1.2; }
.section-title--center { text-align: center; }
.section-title--white { color: var(--white); }
.section-subtitle { font-size: 1rem; font-weight: 400; color: var(--dark-gray); margin-bottom: 48px; max-width: 640px; line-height: 1.7; }
.section-subtitle--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-subtitle--white { color: rgba(255,255,255,0.8); }

/* --- Animation --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav--scrolled {
  background: rgba(0,23,73,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 36px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 0.875rem; font-weight: 500; color: var(--white);
  opacity: 0.75; transition: opacity var(--transition); position: relative;
}
.nav__link:hover, .nav__link--active { opacity: 1; }
.nav__link::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width var(--transition);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__cta {
  display: inline-block; padding: 10px 24px;
  background: var(--orange); color: var(--white);
  font-size: 0.875rem; font-weight: 600; border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,93,0,0.4); }

/* Hamburger */
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform var(--transition), opacity var(--transition); }
.nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block; padding: 14px 36px; font-size: 0.875rem; font-weight: 600;
  border-radius: var(--radius); transition: all var(--transition); letter-spacing: 0.01em;
}
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,93,0,0.35); }
.btn--outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn--outline:hover { background: var(--white); color: var(--dark-blue); }
.btn--outline-blue { border: 2px solid var(--dark-blue); color: var(--dark-blue); background: transparent; }
.btn--outline-blue:hover { background: var(--dark-blue); color: var(--white); }

/* ============================================
   HOME — Hero
   ============================================ */
.hero {
  position: relative; padding: 160px 0 100px; color: var(--white); overflow: hidden;
  background: var(--dark-blue);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__vector {
  position: absolute; top: 15%; right: 5%; z-index: 1; opacity: 0.06;
}
.hero__vector img { width: 320px; height: auto; }
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero__title { font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero__subtitle { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.hero__buttons { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__media { position: relative; z-index: 3; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.hero__media iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 12px;
}
.hero__media-cover {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; cursor: pointer;
}
.hero__media-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; cursor: pointer;
  background: none; border: none; padding: 0; transition: transform 0.3s ease;
}
.hero__media-play:hover { transform: translate(-50%, -50%) scale(1.1); }
.hero__media img {
  width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg);
}

/* ============================================
   HOME — Client Logos Marquee
   ============================================ */
.clients { padding: var(--section-padding); overflow: hidden; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee { overflow: hidden; padding: 8px 0; }
.marquee__track {
  display: flex; align-items: center; gap: 48px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee__track img {
  width: 147px; height: 147px; object-fit: contain; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.marquee__track img:hover {
  transform: scale(1.12);
}

/* ============================================
   HOME — Services
   ============================================ */
.services {
  position: relative; padding: var(--section-padding); overflow: hidden;
}
.services__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/home/services/Background.png') center/cover no-repeat;
}
.services__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,23,73,0.75);
}
.services__content { position: relative; z-index: 2; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.services__card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.services__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.services__card img { width: 100%; height: 180px; object-fit: cover; }
.services__card-title {
  font-size: 1rem; font-weight: 700; padding: 20px 20px 8px; color: var(--dark-blue);
}
.services__card-text {
  font-size: 0.8125rem; color: var(--dark-gray); padding: 0 20px 16px; line-height: 1.7;
}
.services__card-link {
  display: block; padding: 0 20px 20px; font-size: 0.8125rem; font-weight: 600;
  color: var(--orange); transition: gap var(--transition);
}
.services__card-link:hover { text-decoration: underline; }
.services__cta { text-align: center; margin-top: 48px; }

/* ============================================
   HOME — Carousel
   ============================================ */
.projects { padding: var(--section-padding); background: var(--white); }
.carousel-loop { overflow: hidden; padding: 16px 0; }
.carousel-loop__track {
  display: flex; gap: 24px;
  width: max-content;
  transition: transform 0.6s ease-in-out;
}
.carousel-loop__track img {
  width: 370px; height: 200px; object-fit: cover; flex-shrink: 0;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.carousel-loop__track img:hover {
  transform: scale(1.03) translateY(-4px);
}

/* ============================================
   HOME — Why Choose Us
   ============================================ */
.why-us { padding: var(--section-padding); background: var(--white); }
.why-us__inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: center;
}
.why-us__title {
  font-size: 2.25rem; font-weight: 800; line-height: 1.2; color: var(--dark-blue);
}
.why-us__list { display: flex; flex-direction: column; gap: 24px; }
.why-us__item {
  display: flex; align-items: flex-start; gap: 16px;
}
.why-us__item p { font-size: 0.9375rem; line-height: 1.7; color: var(--dark-blue); }
.why-us__item p strong { font-weight: 600; }
.why-us__icon {
  display: flex; align-items: center; justify-content: center;
  min-width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: var(--white); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
}

/* ============================================
   HOME — About Teaser
   ============================================ */
.about-teaser {
  position: relative; padding: var(--section-padding); overflow: hidden; color: var(--white);
}
.about-teaser__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/home/services/Background.png') center/cover no-repeat;
}
.about-teaser__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,23,73,0.75);
}
.about-teaser__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-teaser__label { font-size: 0.875rem; font-weight: 500; opacity: 0.7; margin-bottom: 4px; }
.about-teaser__title { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.about-teaser__text { font-size: 0.9375rem; line-height: 1.8; opacity: 0.85; margin-bottom: 28px; }
.about-teaser__image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }

/* ============================================
   QUOTE FORM SECTION (shared)
   ============================================ */
.quote-section { padding: var(--section-padding); background: var(--white); }
.quote-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.quote-section__title { font-size: 2.25rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 16px; }
.quote-section__text { font-size: 0.9375rem; color: var(--dark-gray); line-height: 1.7; max-width: 440px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form__input, .quote-form__textarea {
  width: 100%; padding: 16px 18px; font-size: 0.875rem;
  border: 1px solid var(--light-gray); border-radius: var(--radius);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--dark-blue); background: var(--white);
}
.quote-form__input::placeholder, .quote-form__textarea::placeholder { color: var(--dark-gray); }
.quote-form__input:focus, .quote-form__textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,93,0,0.1);
}
.quote-form__textarea { grid-column: 1 / -1; min-height: 120px; resize: vertical; }
.quote-form__submit { grid-column: 1 / -1; justify-self: end; }
.quote-form__select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239BA6B5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.quote-form__select option { color: var(--dark-blue); }
.quote-form__full { grid-column: 1 / -1; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark-blue); padding: 56px 0 32px; color: var(--white); }
.footer__inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px;
}
.footer__logo img { height: 75px; width: auto; }
.footer__socials { display: flex; flex-direction: column; align-items: center; gap: 0; }
.footer__socials-label { font-size: 0.8125rem; font-weight: 500; opacity: 0.7; margin-bottom: 12px; }
.footer__socials-icons { display: flex; gap: 16px; }
.footer__socials a { transition: transform var(--transition), opacity var(--transition); }
.footer__socials a:hover { transform: translateY(-2px); opacity: 0.8; }
.footer__socials a img { width: 32px; height: 32px; }
.footer__info { text-align: right; }
.footer__info-title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 14px; }
.footer__info p { font-size: 0.8125rem; font-weight: 400; line-height: 1.9; opacity: 0.75; }
.footer__bottom {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: 0.75rem; opacity: 0.5;
}

/* ============================================
   SHARED — Page Hero (Sobre / Serviços)
   ============================================ */
.page-hero {
  position: relative; padding: 180px 0 100px; color: var(--white); text-align: center;
  background: var(--dark-blue); overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-size: 2.75rem; font-weight: 800; line-height: 1.15;
  max-width: 720px; margin: 0 auto 20px;
}
.page-hero__subtitle { font-size: 1.0625rem; font-weight: 400; opacity: 0.75; }

/* ============================================
   SOBRE — About Company
   ============================================ */
.about-company { padding: var(--section-padding); }
.about-company__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.about-company__label { font-size: 0.875rem; font-weight: 500; color: var(--dark-gray); margin-bottom: 4px; }
.about-company__title { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.about-company__text p { font-size: 0.9375rem; color: #2d2d4e; line-height: 1.8; margin-bottom: 16px; }
.about-company__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-company__images img {
  border-radius: var(--radius); width: 100%; height: 180px; object-fit: cover;
  transition: transform var(--transition);
}
.about-company__images img:hover { transform: scale(1.03); }
.about-company__images img:last-child { grid-column: 1 / -1; height: 220px; }

/* ============================================
   SOBRE — Mission, Vision & Values
   ============================================ */
.mvv { padding: var(--section-padding); background: var(--white); position: relative; overflow: hidden; }
.mvv::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,93,0,0.05) 0%, transparent 70%);
}
.mvv::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,23,73,0.04) 0%, transparent 70%);
}

/* Header */
.mvv__header { text-align: center; margin-bottom: 64px; opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mvv__header.anim-visible { opacity: 1; transform: translateY(0); }
.mvv__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.mvv__title { font-size: 2.5rem; font-weight: 800; line-height: 1.15; color: var(--dark-blue); }
.mvv__title span { color: var(--orange); }
.mvv__divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 20px auto 0; }

/* Rows */
.mvv__row {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start;
  background: var(--white); border-radius: 16px; padding: 36px 40px; margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(0,23,73,0.08); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease;
}
.mvv__row.anim-visible { opacity: 1; transform: translateY(0); }
.mvv__row:hover { box-shadow: 0 8px 36px rgba(0,23,73,0.13); }
.mvv__row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); border-radius: 4px 0 0 4px; }
.mvv__row:nth-child(2) { transition-delay: 0.10s; }
.mvv__row:nth-child(3) { transition-delay: 0.22s; }
.mvv__row:nth-child(4) { transition-delay: 0.34s; }

/* Ícone */
.mvv__icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff7a2e 100%);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 14px rgba(255,93,0,0.28);
}
.mvv__icon-wrap svg { width: 26px; height: 26px; }

/* Conteúdo */
.mvv__item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.mvv__item-title { font-size: 1.25rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 12px; }
.mvv__item-text { font-size: 0.9375rem; color: var(--dark-blue); line-height: 1.8; }

/* Grid Valores */
.mvv__values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.mvv__value-card {
  background: #f7f9fc; border-radius: 10px; padding: 16px 18px;
  border: 1px solid rgba(0,23,73,0.09);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.mvv__value-card:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,23,73,0.10); }
.mvv__value-name {
  font-size: 0.875rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 5px;
  display: flex; align-items: center; gap: 7px;
}
.mvv__value-name::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.mvv__value-desc { font-size: 0.8125rem; color: var(--dark-blue); line-height: 1.65; opacity: 0.75; }

/* ============================================
   SOBRE — What We Deliver (Card Grid)
   ============================================ */
.deliver { padding: var(--section-padding); }
.deliver .section-title { margin-bottom: 48px; }
.deliver__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.deliver__card {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 32px 28px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.deliver__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deliver__card-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.deliver__card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; color: var(--dark-blue); }
.deliver__card-text { font-size: 0.875rem; line-height: 1.7; color: var(--dark-gray); }

/* ============================================
   SERVIÇOS — Service Blocks
   ============================================ */
.service-block { padding: var(--section-padding); }
.service-block--dark { background: var(--dark-blue); color: var(--white); }
.service-block--light { background: var(--white); color: var(--dark-blue); }
.service-block__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.service-block__title { font-size: 2.25rem; font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.service-block__desc { font-size: 0.9375rem; line-height: 1.8; margin-bottom: 28px; opacity: 0.85; }
.service-block--light .service-block__desc { color: #2d2d4e; }
.service-block__list-group { margin-bottom: 28px; }
.service-block__list-group h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 14px;
}
.service-block--dark .service-block__list-group h3 { color: var(--white); }
.service-block--light .service-block__list-group h3 { color: var(--dark-blue); }
.service-block__list-group ul { display: flex; flex-direction: column; gap: 8px; }
.service-block__list-group li {
  font-size: 0.875rem; line-height: 1.7; padding-left: 20px; position: relative; opacity: 0.85;
}
.service-block__list-group li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  :root { --section-padding: 72px 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: 2rem; }
  .page-hero__title { font-size: 2.25rem; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  :root { --section-padding: 56px 0; }
  .section-title { font-size: 1.75rem; }

  /* Nav mobile */
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--dark-blue); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 24px;
    transition: right var(--transition); box-shadow: -4px 0 30px rgba(0,0,0,0.4);
  }
  .nav__links--open { right: 0; }
  .nav__hamburger { display: flex; }

  /* Hero mobile */
  .hero { padding: 140px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero__title { font-size: 1.75rem; }
  .hero__buttons { justify-content: center; }
  .hero__media { order: -1; }

  /* Services mobile */
  .services__grid { grid-template-columns: 1fr; }

  /* Carousel mobile */
  .carousel-loop__track img { width: 300px; height: 162px; }

  /* Why Us mobile */
  .why-us__inner { grid-template-columns: 1fr; gap: 28px; }

  /* About teaser mobile */
  .about-teaser__inner { grid-template-columns: 1fr; }

  /* Quote form mobile */
  .quote-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form__submit { justify-self: stretch; }

  /* Footer mobile */
  .footer__inner { flex-direction: column; text-align: center; align-items: center; }
  .footer__info { text-align: center; }
  .footer__socials { align-items: center; }
  .footer__socials-icons { justify-content: center; }

  /* Page hero mobile */
  .page-hero { padding: 140px 0 72px; }
  .page-hero__title { font-size: 1.875rem; }

  /* About company mobile */
  .about-company__inner { grid-template-columns: 1fr; }
  .about-company__images { grid-template-columns: 1fr; }
  .about-company__images img, .about-company__images img:last-child { height: 200px; }

  /* MVV mobile */
  .mvv__row { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .mvv__values-grid { grid-template-columns: 1fr; }
  .mvv__title { font-size: 1.875rem; }

  /* Deliver mobile */
  .deliver__grid { grid-template-columns: 1fr; }

  /* Service blocks mobile */
  .service-block__inner { grid-template-columns: 1fr; }
  .service-block__title { font-size: 1.625rem; }
}
