:root {
  --navy: #0b1f3a;
  --gold: #c9a14a;
  --gold-rgb: 201, 161, 74;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 28px 0;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  display: block;
  width: 120px;
  height: auto;
}

.nav .logo img {
  filter: drop-shadow(0 3px 12px rgba(8, 26, 50, 0.35));
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(var(--gold-rgb), 0.45);
  border-radius: 999px;
  color: var(--gold);
}

.mark svg {
  width: 16px;
  height: 16px;
}

.links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-actions,
.nav-controls {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 18px;
  margin-left: auto;
}

.nav-controls {
  gap: 12px;
}

.links a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  transition: opacity 180ms ease;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.links a:hover {
  color: var(--gold);
  opacity: 1;
}

.links a:hover::after {
  transform: scaleX(1);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 26, 50, 0.36);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.lang-switcher:hover,
.lang-switcher:focus-visible {
  border-color: rgba(var(--gold-rgb), 0.48);
  color: #f8efe0;
  outline: none;
}

.lang-switcher-flag {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  overflow: hidden;
}

.lang-switcher-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-switcher-code {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  align-items: center;
  gap: 4px;
  padding: 11px 12px 11px 18px;
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 26, 50, 0.36);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.menu-toggle:hover {
  color: #f8efe0;
}

.menu-toggle-label {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.menu-toggle-icon {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.menu-toggle-icon span,
.mobile-menu-close span {
  position: absolute;
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle-icon span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle-icon span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle-icon span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 30, 0.6), rgba(4, 15, 30, 0.82)),
    radial-gradient(circle at top right, rgba(var(--gold-rgb), 0.12), transparent 32%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu-panel {
  position: relative;
  min-height: 100dvh;
  padding: 24px 20px 36px;
  background:
    radial-gradient(circle at top right, rgba(var(--gold-rgb), 0.16), transparent 32%),
    linear-gradient(180deg, rgba(10, 27, 51, 0.94), rgba(6, 18, 35, 0.98));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-top,
.mobile-menu-links,
.mobile-menu-footer {
  position: relative;
  z-index: 1;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu-kicker {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-kicker img {
  display: block;
  width: auto;
  height: 68px;
}

.mobile-menu-close {
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu-close span:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0 32px;
}

.mobile-menu-links a {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links a::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 1), rgba(var(--gold-rgb), 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.mobile-menu-links a:hover::after,
.mobile-menu-links a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-menu-links span {
  color: rgba(var(--gold-rgb), 1);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.mobile-menu-links strong {
  font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
}

.mobile-menu-footer p {
  max-width: 26ch;
  margin: 0;
  color: rgba(248, 239, 224, 0.62);
  font-size: 1.96rem;
  font-weight: 600;
  line-height: 1.4;
}

.mobile-menu-footer a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video,
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video {
  object-fit: cover;
}

.overlay {
  background: rgba(11, 31, 58, 0.6);
}

.content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  text-align: center;
}

.content h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.line {
  display: block;
  color: var(--white);
}

.gold {
  color: var(--gold);
}

.content p {
  max-width: 530px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  margin-top: 36px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: rgb(11, 33, 61);
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--gold);
  box-shadow:
    0 14px 30px rgba(8, 26, 50, 0.22),
    0 0 0 1px rgba(var(--gold-rgb), 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn {
  position: relative;
  z-index: 1;
}

.btn span,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
  box-shadow:
    0 20px 40px rgba(8, 26, 50, 0.3),
    0 0 0 1px rgba(var(--gold-rgb), 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  filter: brightness(1.08);
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn:active {
  box-shadow:
    0 8px 18px rgba(8, 26, 50, 0.18),
    0 0 0 1px rgba(var(--gold-rgb), 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

.hero-scroll span {
  color: rgba(249, 245, 236, 0.3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: "";
  position: relative;
  order: 2;
  width: 1px;
  height: 46px;
  background: rgba(var(--gold-rgb), 0.22);
}

.hero-scroll::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0), rgba(var(--gold-rgb), 1), rgba(var(--gold-rgb), 0));
  animation: hero-scroll-line 1.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes hero-scroll-line {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(24px);
  }
}

.anchor {
  height: 0;
}

.section {
  padding: 120px 0;
}

.stats-band {
  position: relative;
  padding: 60px 0 24px;
  background: #f6f3ee;
}

.stats-wrap {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(226, 230, 233, 0.5);
}

.stat-card {
  text-align: center;
}

.stat-value {
  margin: 0 0 12px;
  color: #081a32;
  font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.stat-label {
  margin: 0;
  color: rgba(11, 31, 58, 0.48);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services {
  padding: 70px 0 140px;
  background: #f6f3ee;
}

.services-wrap {
  display: block;
  color: var(--navy);
}

.services-head {
  max-width: 760px;
  margin-bottom: 58px;
}

.services-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.services-title {
  margin: 0;
  color: #081a32;
  font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.services-title-accent {
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  min-height: 100%;
  padding: 32px 28px 30px;
  border: 1px solid rgba(8, 26, 50, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(8, 26, 50, 0.035);
  transition:
    box-shadow 560ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 36px rgba(8, 26, 50, 0.08),
    0 6px 16px rgba(8, 26, 50, 0.04);
  border-color: rgba(var(--gold-rgb), 0.18);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(var(--gold-rgb), 0.14), rgba(var(--gold-rgb), 0.06)),
    rgba(255, 255, 255, 0.9);
  color: var(--gold);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(1);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-icon svg {
  transform: scale(1.08);
}

.service-card-title,
.project h3,
.col h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.service-card-title {
  margin-bottom: 14px;
  color: #081a32;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-card-text {
  margin: 0;
  color: rgba(11, 31, 58, 0.62);
  font-size: 0.95rem;
  line-height: 1.78;
}

.portfolio {
  padding: 126px 0 136px;
  background: #fff;
}

.portfolio-wrap {
  display: block;
}

.portfolio-head {
  margin-bottom: 52px;
}

.portfolio-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.portfolio-title {
  margin: 0;
  color: #081a32;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 4px;
  background: #081a32;
}

.portfolio-card::before,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    background 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card::before {
  z-index: 1;
  background: rgba(8, 26, 50, 0.14);
}

.portfolio-card::after {
  inset: 34% 0 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(8, 26, 50, 0) 0%,
      rgba(8, 26, 50, 0.12) 18%,
      rgba(8, 26, 50, 0.42) 48%,
      rgba(8, 26, 50, 0.78) 78%,
      rgba(8, 26, 50, 0.94) 100%
    );
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 34px 34px 30px;
  background: none;
}

.portfolio-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.portfolio-card p {
  margin: 0;
  max-width: 28ch;
  color: rgba(249, 245, 236, 0.6);
  font-size: 14px;
  line-height: 1.65;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card:hover::before {
  background: rgba(8, 26, 50, 0.2);
}

.portfolio-card:hover::after {
  background:
    linear-gradient(
      180deg,
      rgba(8, 26, 50, 0) 0%,
      rgba(8, 26, 50, 0.16) 16%,
      rgba(8, 26, 50, 0.54) 46%,
      rgba(8, 26, 50, 0.88) 76%,
      rgba(8, 26, 50, 0.98) 100%
    );
}

.statement,
.footer {
  background-color: #081a32;
}

.statement {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 110px 0 80px;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 26, 50, 0.84), rgba(8, 26, 50, 0.98)),
    radial-gradient(circle at 50% 18%, rgba(var(--gold-rgb), 0.08), transparent 34%);
  pointer-events: none;
}

.statement-wrap {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  text-align: center;
}

.statement-title {
  margin: 0;
  color: var(--white);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.8px;
}

.statement-title span {
  color: var(--gold);
}

.statement-line {
  width: 86px;
  height: 1px;
  margin: 40px auto 0;
  background: var(--gold);
}

.statement-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 52px auto 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
}

.contact-avatar {
  flex: 0 0 93px;
  width: 93px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.contact-name {
  margin: 0;
  color: var(--gold);
  font-size: 1.63rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-role {
  margin: 0;
  color: rgba(249, 245, 236, 0.55);
  font-size: 1.28rem;
  font-weight: 700;
}

.contact-email {
  color: rgba(249, 245, 236, 0.4);
  font-size: 1.28rem;
  font-weight: 400;
  transition: color 200ms ease;
}

.contact-email:hover {
  color: var(--gold);
}

.footer {
  position: relative;
  padding: 0 0 24px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 38px 0 22px;
  align-items: center;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-text,
.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-text {
  margin: 0;
  max-width: 32ch;
  font-size: 14px;
  color: rgba(249, 245, 236, 0.4);
  line-height: 1.75;
  text-align: right;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.footer-col a,
.footer-col p {
  margin: 0;
  font-size: 14px;
  color: rgba(249, 245, 236, 0.4);
  line-height: 1.7;
}

.footer-col p,
.footer-copy p {
  font-size: 14px;
  color: rgba(249, 245, 236, 0.4);
}

.footer-col a {
  transition: color 220ms ease;
}

.footer-col a:hover {
  color: var(--gold);
}


@media (max-width: 720px) {
  .nav {
    padding: 22px 0;
  }

  .wrap {
    width: min(100% - 32px, 1180px);
    flex-direction: row;
    align-items: center;
  }

  .links {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  /* .logo img {
    height: 58px;
  } */

  .mobile-menu-kicker img {
    height: 56px;
  }

  .content {
    width: min(100% - 32px, 760px);
  }

  .content p {
    font-size: 1rem;
  }

  .btn {
    padding: 0 20px;
  }

  .section {
    padding: 88px 0;
  }

  .services {
    padding: 50px 0 80px;
  }

  .stats-band {
    padding: 34px 0 18px;
  }

  .stats-grid {
    gap: 24px;
    padding: 40px 0 50px 0;
  }

  .stat-value {
    font-size: 34px;
  }

  .stat-label {
    font-size: 10px;
  }

  .services-head {
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 38px;
    line-height: 1.06;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio {
    padding: 92px 0 96px;
  }

  .portfolio-head {
    margin-bottom: 34px;
  }

  .portfolio-card {
    min-height: 340px;
  }

  .statement {
    min-height: 0;
    padding: 84px 0 60px;
  }

  .statement-title {
    font-size: 38px;
  }

  .statement-contacts {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 20px;
  }

  .footer-top {
    flex-direction: row;
    gap: 24px;
    padding: 30px 0 20px;
  }

  .footer-text {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .service-card,
  .service-icon svg,
  .portfolio-card img,
  .portfolio-overlay,
  .lang-switcher,
  .menu-toggle-icon span,
  .mobile-menu-links a::after,
  .mobile-menu-close span {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 720px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }

  .stats-grid {
    gap: 20px;
  }

  .portfolio-card {
    min-height: 380px;
  }

  .footer-top {
    gap: 36px;
  }
}
