:root {
  --bg: #f5f7f4;
  --bg-soft: #e8eee9;
  --ink: #111815;
  --muted: #5d6963;
  --line: #d9dfd8;
  --forest: #18362f;
  --teal: #0a7a75;
  --gold: #c59b55;
  --orange: #e06935;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 24, 21, 0.14);
}

[data-theme="dark"] {
  --bg: #0f1714;
  --bg-soft: #121f1a;
  --ink: #f5f7f4;
  --muted: #b9c4be;
  --line: rgba(255, 255, 255, 0.12);
  --forest: #102720;
  --teal: #0b8d87;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(10, 20, 17, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a,
.inline-link,
.site-footer a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.inline-link:hover,
.site-footer a:not(.excluded):hover {
  color: var(--gold);
  transform: translateY(-2px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-toggle,
.theme-toggle {
  min-width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle.is-active,
.theme-toggle.is-active {
  color: #17201c;
  background: var(--gold);
  border-color: var(--gold);
}

.header-action {
  color: #17201c;
  background: var(--gold);
}

.button.primary {
  color: #15201b;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.45);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 0px 18px var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/static/pexels-tranmautritam.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 14, 0.92) 0%, rgba(8, 16, 14, 0.72) 44%, rgba(8, 16, 14, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 16, 14, 0.72), rgba(8, 16, 14, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(1280px, 100%);
  margin-top: 52px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  padding: 18px;
  background: rgba(14, 24, 20, 0.72);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 5px;
  font-size: clamp(20px, 3vw, 28px);
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.price-copy p,
.cta p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 7vw, 78px);
}

.intro-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .price-list article,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .review-thumb {
  background: #17201c;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--orange);
  font-weight: 800;
}

.prices {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 70px);
  align-items: start;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-list span {
  font-weight: 800;
}

.price-list strong {
  color: var(--teal);
  font-size: 20px;
}

.price-list em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.technologies {
  padding-top: 0;
}

.tech-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 4px 0;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
}

.tech-marquee::-webkit-scrollbar,
.portfolio-marquee::-webkit-scrollbar {
  display: none;
}

.tech-marquee.is-dragging,
.portfolio-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.tech-marquee::before,
.tech-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 54px;
  pointer-events: none;
}

.tech-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 247, 244, 0.82), rgba(245, 247, 244, 0));
}

.tech-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 247, 244, 0.82), rgba(245, 247, 244, 0));
}

.tech-track {
  display: flex;
  width: max-content;
  gap: 10px;
}

.tech-track span {
  position: relative;
  flex: 0 0 auto;
  min-width: 142px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, var(--forest), #0a7a75, #17201c);
  background-size: 220% 220%;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(17, 24, 21, 0.1);
  animation: tech-card-glow 7s ease-in-out infinite;
  isolation: isolate;
  overflow: hidden;
}

.tech-track span::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(197, 155, 85, 0), rgba(197, 155, 85, 0.24), rgba(197, 155, 85, 0));
  transform: translateX(-120%);
  animation: tech-shine 4.8s ease-in-out infinite;
}

.tech-track img,
.tech-track b {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(197, 155, 85, 0.22));
}

.tech-track img {
  object-fit: contain;
}

.tech-track b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: var(--gold);
  border-radius: 7px;
  font-size: 10px;
  line-height: 1;
}

.tech-track span:nth-child(3n + 2) {
  animation-delay: -1.4s;
}

.tech-track span:nth-child(3n) {
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation-delay: -2.8s;
}

@keyframes tech-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes tech-card-glow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 14px 36px rgba(17, 24, 21, 0.1);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 18px 42px rgba(10, 122, 117, 0.22);
  }
}

@keyframes tech-shine {
  0%,
  40% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

.portfolio {
  width: 100%;
  padding-left: max(16px, calc((100% - 1280px) / 2));
  padding-right: 0;
}

.portfolio .section-heading {
  width: min(760px, calc(100% - 36px));
}

.portfolio-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 12px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-marquee::before,
.portfolio-marquee::after {
  display: none;
}

.portfolio-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 247, 244, 0.86), rgba(245, 247, 244, 0));
}

.portfolio-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 247, 244, 0.86), rgba(245, 247, 244, 0));
}

.portfolio-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-left: 34px;
}

.portfolio-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(320px, 33vw, 470px);
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 24, 20, 0.96), rgba(24, 54, 47, 0.94)),
    url("assets/static/main-logo-big.webp") right -74px bottom -84px / 220px 220px no-repeat;
  border-radius: 8px;
  border: 1px solid rgba(197, 155, 85, 0.28);
  box-shadow: 0 18px 46px rgba(17, 24, 21, 0.14);
  background-size: auto, 220px 220px;
  animation: portfolio-card-glow 8s ease-in-out infinite;
  isolation: isolate;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(197, 155, 85, 0), rgba(197, 155, 85, 0.18), rgba(197, 155, 85, 0));
  transform: translateX(-120%);
  animation: portfolio-shine 5.6s ease-in-out infinite;
}

.portfolio-card:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(10, 122, 117, 0.96), rgba(24, 54, 47, 0.96)),
    url("assets/static/main-logo-big.webp") right -74px bottom -84px / 220px 220px no-repeat;
  animation-delay: -2.2s;
}

.portfolio-card:nth-child(3n) {
  animation-delay: -4.4s;
}

.portfolio-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 85, 0.38);
}

.portfolio-card img.client-logo {
  padding: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.portfolio-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-card h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.08;
}

.portfolio-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

@keyframes portfolio-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes portfolio-card-glow {
  0%,
  100% {
    box-shadow: 0 18px 46px rgba(17, 24, 21, 0.14);
    filter: saturate(1);
  }

  50% {
    box-shadow: 0 22px 56px rgba(10, 122, 117, 0.28);
    filter: saturate(1.18);
  }
}

@keyframes portfolio-shine {
  0%,
  42% {
    transform: translateX(-120%);
  }

  74%,
  100% {
    transform: translateX(120%);
  }
}

.proof {
  width: 100%;
  padding-left: max(16px, calc((100% - 1280px) / 2));
  padding-right: 0;
  background: var(--bg-soft);
}

.proof .section-heading {
  width: min(760px, calc(100% - 36px));
}

.inline-link {
  display: inline-flex;
  color: var(--teal);
  font-weight: 800;
}

.reviews-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 520px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 18px 14px 0;
  scroll-snap-type: x mandatory;
}

.review-thumb {
  width: 100%;
  height: 260px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 24, 21, 0.12);
}

.review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--teal);
  transition: transform 0.2s ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-panel {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-panel p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto clamp(64px, 8vw, 100px);
  padding: clamp(34px, 6vw, 58px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(24, 54, 47, 0.94), rgba(10, 122, 117, 0.82)),
    url("assets/static/pexels-polina-tankilevitch.webp") center / cover;
  border-radius: 8px;
}

.cta h2 {
  max-width: 720px;
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0e1814;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.75fr));
  gap: clamp(28px, 5vw, 72px);
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 76px) 0;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span {
  color: var(--white);
  font-weight: 800;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 16, 14, 0.86);
  backdrop-filter: blur(10px);
}

.review-modal[hidden] {
  display: none;
}

.review-modal img {
  max-width: min(1040px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.review-modal-close {
  position: fixed;
  z-index: 1;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.review-modal-nav {
  position: fixed;
  z-index: 1;
  top: 50%;
  width: 52px;
  height: 70px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.review-modal-prev {
  left: 18px;
}

.review-modal-next {
  right: 18px;
}

.review-modal-nav:hover,
.review-modal-close:hover {
  background: rgba(197, 155, 85, 0.32);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(10, 20, 17, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .header-action {
    display: none;
  }

  .header-controls {
    margin-left: auto;
  }

  .hero {
    min-height: 860px;
  }

  .hero-stats,
  .intro,
  .prices,
  .cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 15px;
  }

  .lang-toggle,
  .theme-toggle {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 28px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-stats {
    margin-top: 34px;
  }

  .hero-stats div {
    padding: 16px;
  }

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

  .portfolio-marquee::before,
  .portfolio-marquee::after {
    width: 12px;
  }

  .portfolio-track {
    gap: 10px;
    padding-left: 12px;
    animation-duration: 44s;
  }

  .portfolio-card {
    width: 306px;
    min-height: 292px;
    padding: 20px;
    background:
      linear-gradient(135deg, rgba(14, 24, 20, 0.96), rgba(24, 54, 47, 0.94)),
      url("assets/static/main-logo-big.webp") right -64px bottom -72px / 180px 180px no-repeat;
  }

  .review-modal {
    padding: 70px 14px 24px;
  }

  .review-modal-nav {
    top: auto;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 38px;
    transform: none;
  }

  .review-modal-prev {
    left: 14px;
  }

  .review-modal-next {
    right: 14px;
  }

  .review-modal img {
    max-height: 74vh;
  }

  .portfolio-card:nth-child(even) {
    background:
      linear-gradient(135deg, rgba(10, 122, 117, 0.96), rgba(24, 54, 47, 0.96)),
      url("assets/static/main-logo-big.webp") right -64px bottom -72px / 180px 180px no-repeat;
  }

  .portfolio-card img {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
  }

  .portfolio-card h3 {
    font-size: 24px;
  }

  .portfolio-card p {
    font-size: 15px;
  }

  .tech-marquee::before,
  .tech-marquee::after {
    width: 18px;
  }

  .tech-track {
    gap: 10px;
    animation-duration: 22s;
  }

  .tech-track span {
    min-width: 124px;
    min-height: 56px;
    gap: 8px;
    padding: 0 14px;
    font-size: 12px;
  }

  .tech-track img,
  .tech-track b {
    width: 24px;
    height: 24px;
  }

  .service-card {
    min-height: 220px;
  }

  .price-list article {
    grid-template-columns: 1fr;
  }

  .reviews-strip {
    grid-auto-columns: minmax(286px, calc(100vw - 40px));
  }

  .review-thumb {
    height: 230px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
