:root {
  --orange: #ff4500;
  --orange-dark: #de3a00;
  --black: #070707;
  --ink: #121212;
  --muted: #666a73;
  --soft: #f6f6f4;
  --line: rgba(7, 7, 7, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 7, 7, 0.12);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

main,
section,
header,
footer {
  max-width: 100%;
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 88px;
  padding: 12px 16px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(7, 7, 7, 0.08);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 69, 0, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(7, 7, 7, 0.12);
}

.brand {
  display: block;
  width: 128px;
  height: 76px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  color: #343434;
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta {
  min-height: 48px;
  padding: 0 20px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn {
  min-height: 58px;
  padding: 0 24px;
  font-size: 14px;
}

.btn-primary {
  background: var(--orange);
  box-shadow: 0 14px 38px rgba(255, 69, 0, 0.28);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 45px rgba(255, 69, 0, 0.38);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(255, 69, 0, 0.35);
  color: var(--orange);
}

.menu-toggle {
  display: none;
  min-width: 92px;
  height: 46px;
  padding: 0 12px 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.18);
  color: var(--orange);
  cursor: pointer;
}

.menu-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-lines {
  display: grid;
  gap: 4px;
}

.menu-lines i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-lines i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-lines i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 90px;
}

.hero::before {
  display: none;
  content: none;
}

.hero-brand-image {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  content: "";
}

.hero h1,
.section-heading h2,
.solution-copy h2,
.difference-card h2,
.final-cta h2 {
  margin: 22px 0;
  color: var(--black);
  font-size: clamp(43px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero p,
.section-heading p,
.solution-copy p,
.difference-card p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-banner {
  width: min(100%, 760px);
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.32);
  border-radius: 22px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.14);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.trust-row div {
  display: flex;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 69, 0, 0.42);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.055);
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1;
}

.trust-row strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.trust-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.digital-ecosystem {
  position: relative;
  width: min(100%, 560px);
  height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(255, 69, 0, 0.12), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 54px),
    #080808;
  box-shadow:
    0 34px 90px rgba(7, 7, 7, 0.22),
    inset 0 0 80px rgba(255, 69, 0, 0.11);
  animation: ecosystemFloat 5.8s ease-in-out infinite;
}

.ecosystem-grid {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 69, 0, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 69, 0, 0.14) 50%, transparent 51%);
  opacity: 0.72;
}

.ecosystem-core,
.eco-node,
.eco-metric {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 15, 15, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  color: #fff;
  backdrop-filter: blur(16px);
}

.ecosystem-core {
  top: 225px;
  left: 50%;
  display: grid;
  width: 220px;
  min-height: 138px;
  padding: 24px;
  border-color: rgba(255, 69, 0, 0.42);
  border-radius: 22px;
  place-items: center;
  text-align: center;
  transform: translateX(-50%);
  animation: ecosystemPulse 3.8s ease-in-out infinite;
}

.ecosystem-core strong {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.ecosystem-core span,
.eco-node small,
.eco-metric small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eco-node {
  display: grid;
  width: 154px;
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
  gap: 8px;
  animation: nodeFloat 4.6s ease-in-out infinite;
}

.eco-node strong,
.eco-metric strong {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.eco-node-site {
  top: 72px;
  left: 54px;
}

.eco-node-design {
  top: 88px;
  right: 42px;
  animation-delay: -1.1s;
}

.eco-node-traffic {
  bottom: 92px;
  left: 46px;
  animation-delay: -2s;
}

.eco-node-content {
  right: 48px;
  bottom: 112px;
  animation-delay: -2.7s;
}

.eco-metric {
  right: 118px;
  bottom: 34px;
  display: grid;
  min-width: 180px;
  padding: 16px 18px;
  border-color: rgba(255, 69, 0, 0.32);
  border-radius: 18px;
  gap: 6px;
  animation: metricSlide 4.4s ease-in-out infinite;
}

.eco-link,
.eco-packet {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.eco-link {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.88), transparent);
  transform-origin: left center;
}

.eco-link-site {
  top: 188px;
  left: 156px;
  width: 210px;
  transform: rotate(24deg);
}

.eco-link-design {
  top: 192px;
  right: 156px;
  width: 182px;
  transform: rotate(154deg);
}

.eco-link-traffic {
  bottom: 204px;
  left: 146px;
  width: 220px;
  transform: rotate(-25deg);
}

.eco-link-content {
  right: 154px;
  bottom: 216px;
  width: 190px;
  transform: rotate(205deg);
}

.eco-packet {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 69, 0, 0.72);
}

.eco-packet-one {
  top: 182px;
  left: 154px;
  animation: packetOne 3.2s linear infinite;
}

.eco-packet-two {
  top: 404px;
  left: 154px;
  animation: packetTwo 3.7s linear infinite;
}

.eco-packet-three {
  top: 288px;
  right: 126px;
  animation: packetThree 4s linear infinite;
}

.problem-section,
.process-section,
.testimonials-section {
  padding: 110px 0;
  background: var(--soft);
}

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

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.solution-copy h2,
.difference-card h2,
.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.problem-card,
.solution-card,
.portfolio-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 50px rgba(7, 7, 7, 0.05);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.problem-card:hover,
.solution-card:hover,
.portfolio-card:hover,
.testimonial-card:hover {
  border-color: rgba(255, 69, 0, 0.38);
  box-shadow: 0 24px 70px rgba(255, 69, 0, 0.12);
  transform: translateY(-8px);
}

.problem-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
}

.problem-card > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #d4d4d4;
  font-size: 12px;
  font-weight: 900;
}

.problem-card i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 40px;
  border-radius: 16px;
  background: #fff0e9;
  color: var(--orange);
  font-style: normal;
  place-items: center;
}

.line-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.problem-card h3,
.solution-card h3,
.process-step h3,
.portfolio-card h3,
.difference-list h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.problem-card p,
.solution-card p,
.process-step p,
.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.solution-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 120px 0;
}

.solution-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border-color: rgba(255, 69, 0, 0.3);
}

.solution-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 45px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--orange), #ff9971),
    var(--orange);
  color: #fff;
  place-items: center;
}

.solution-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.solution-card::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 69, 0, 0.08);
  content: "";
}

.design-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(145deg, #050505, #101010 58%, #050505);
  color: var(--white);
}

.design-section::before,
.design-section::after {
  position: absolute;
  border: 1px solid rgba(255, 69, 0, 0.16);
  content: "";
  pointer-events: none;
}

.design-section::before {
  top: -90px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
}

.design-section::after {
  bottom: -140px;
  left: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
}

.design-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.design-heading .eyebrow {
  justify-content: center;
}

.design-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
}

.design-heading p {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.design-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.design-monitor {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.monitor-bar {
  display: flex;
  gap: 7px;
  padding: 6px 4px 12px;
}

.monitor-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.monitor-bar span:first-child {
  background: var(--orange);
}

.design-monitor img {
  display: block;
  width: 100%;
  height: 540px;
  border-radius: 24px;
  background: #080808;
  object-fit: contain;
  object-position: center;
}

.design-monitor p {
  margin: 16px 6px 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.design-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.design-service-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.design-service-card:hover {
  border-color: rgba(255, 69, 0, 0.62);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.design-service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  border-radius: 18px;
  background: var(--orange);
  color: var(--white);
  place-items: center;
}

.design-service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.design-service-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.design-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.design-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
  margin-top: 30px;
}

.design-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #111;
}

.design-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.design-gallery figure:hover img {
  transform: scale(1.025);
}

.design-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.design-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 69, 0, 0.32);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.design-note p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 65px;
}

.process-line::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 69, 0, 0.12));
  content: "";
}

.process-step {
  position: relative;
  padding-top: 86px;
}

.process-step span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  border: 8px solid var(--soft);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  place-items: center;
}

.results-section {
  padding: 120px 0;
}

.results-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  margin-top: 56px;
}

.result-numbers {
  display: grid;
  gap: 16px;
}

.result-numbers article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--black);
  color: var(--white);
}

.result-numbers strong {
  display: block;
  color: var(--orange);
  font-size: 54px;
  line-height: 1;
}

.result-numbers span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.before,
.after {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 24px;
  border-radius: 30px;
}

.before {
  border: 1px solid var(--line);
  background: var(--soft);
}

.after {
  background: var(--orange);
  color: var(--white);
}

.before span,
.after span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.after span {
  background: rgba(255, 255, 255, 0.18);
}

.before p,
.after p {
  margin: 22px 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.result-image {
  display: block;
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 7, 7, 0.12);
  aspect-ratio: 1;
  object-fit: cover;
}

.portfolio-section {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}

.portfolio-section h2 {
  color: var(--white);
}

.portfolio-section .section-heading p {
  color: rgba(255, 255, 255, 0.64);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.portfolio-card-wide {
  grid-column: span 2;
}

.portfolio-card {
  position: relative;
  display: flex;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0f0f0f;
  color: var(--white);
  flex-direction: column;
  text-align: left;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.portfolio-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 34%, rgba(255, 69, 0, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.portfolio-media {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 320px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 69, 0, 0.13), transparent 32%),
    linear-gradient(145deg, #f8f8f8, #e9e9e9);
}

.portfolio-card-wide .portfolio-media {
  height: 430px;
}

.carousel-track {
  position: absolute;
  inset: 14px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.portfolio-media > img,
.carousel-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 220ms ease,
    transform 420ms ease;
}

.project-carousel .carousel-track img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.012);
}

.project-carousel .carousel-track img.active {
  opacity: 1;
  transform: scale(1);
}

.portfolio-card:hover .project-carousel .carousel-track img.active,
.portfolio-card:hover .portfolio-media > img {
  transform: scale(1.025);
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  cursor: pointer;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.portfolio-arrow:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.portfolio-arrow-prev {
  left: 24px;
}

.portfolio-arrow-next {
  right: 24px;
}

.portfolio-count {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.66);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.portfolio-arrow[hidden],
.portfolio-count[hidden] {
  display: none;
}

.portfolio-content {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.portfolio-category {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.14);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.05em;
}

.portfolio-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin: 20px 0 22px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.portfolio-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 69, 0, 0.5);
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.portfolio-card:hover .portfolio-link {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.testimonials-section {
  position: relative;
  contain: paint;
  overflow: hidden;
  padding: 112px 0 118px;
  background: #fff;
  color: var(--black);
}

.testimonials-section h2 {
  color: var(--black);
}

.testimonials-section .section-heading p {
  color: var(--muted);
}

.testimonial-validation {
  max-width: 690px;
  margin: 22px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 69, 0, 0.34);
  border-radius: 999px;
  background: #fff7f3;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.marquee-row {
  position: relative;
  z-index: 1;
  contain: layout paint;
  display: flex;
  width: 100%;
  max-width: 100vw;
  margin-top: 34px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  min-width: max-content;
  gap: 18px;
  padding: 0 9px;
  animation: marqueeLeft 42s linear infinite;
  will-change: transform;
}

.marquee-right .marquee-track {
  animation-name: marqueeRight;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 390px;
  min-height: 250px;
  padding: 24px;
  border-color: rgba(255, 69, 0, 0.42);
  background: #fff;
  color: var(--black);
  box-shadow: 0 18px 55px rgba(7, 7, 7, 0.06);
}

.testimonial-card:hover {
  border-color: rgba(255, 69, 0, 0.72);
  box-shadow: 0 28px 70px rgba(255, 69, 0, 0.12);
}

.testimonial-card .stars {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--black);
  font-size: 17px;
  line-height: 1.2;
}

.testimonial-card small {
  display: block;
  min-height: 36px;
  color: #707070;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-card p {
  margin: 18px 0;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card em {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.12);
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.difference-section {
  padding: 120px 0;
}

.difference-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 62px;
  border-radius: 34px;
  background: var(--soft);
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.difference-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.difference-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.difference-list h3 {
  margin-top: 22px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  inset: -40% 0 auto auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  content: "";
  filter: blur(90px);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 120px 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  color: var(--white);
}

.final-cta p {
  max-width: 690px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.final-cta .btn-primary {
  background: #fff;
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.12);
  color: var(--orange);
}

.final-cta .btn-primary:hover {
  background: #f7f7f7;
  color: var(--orange-dark);
}

.site-footer {
  padding: 70px 0;
  background: #000;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.7fr 0.75fr;
  gap: 55px;
}

.site-footer img {
  width: 240px;
  height: 216px;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: transparent;
}

.site-footer p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 13px;
  align-content: start;
}

.footer-links-group strong {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-links-group a span {
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 69, 0, 0.4);
  border-radius: 50%;
  color: var(--orange);
  font-size: 12px;
  place-items: center;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-contact strong {
  color: var(--orange);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity 180ms ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 38px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(20px) scale(0.98);
  transition: transform 180ms ease;
}

.project-panel {
  width: min(100%, 1040px);
  padding: 28px;
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-gallery {
  position: relative;
  display: grid;
  width: 100%;
  height: min(82vh, 820px);
  margin: 20px 0 24px;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(145deg, #fff, #f2f2f2);
  place-items: center;
}

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

.modal-gallery img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-gallery img[data-mode="story"],
.modal-gallery img[data-mode="portrait"] {
  object-fit: contain;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  cursor: pointer;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.modal-arrow:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

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

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

.modal-arrow[hidden],
.modal-counter[hidden] {
  display: none;
}

.modal-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.68);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.modal-panel h2 {
  margin: 18px 0 14px;
  font-size: 38px;
  letter-spacing: -0.05em;
}

.modal-panel p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-category {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff0e9;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.modal-tags {
  display: flex;
  gap: 8px;
  margin: 0 0 26px;
  flex-wrap: wrap;
}

.modal-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 999px;
  color: #4b4b4b;
  font-size: 12px;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes growBar {
  from {
    height: 0;
  }
}

@keyframes ecosystemFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-16px) scale(1.04);
  }
}

@keyframes ecosystemPulse {
  0%,
  100% {
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(255, 69, 0, 0.24);
  }

  50% {
    box-shadow:
      0 26px 68px rgba(0, 0, 0, 0.3),
      0 0 0 12px rgba(255, 69, 0, 0);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes metricSlide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes packetOne {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  15%,
  82% {
    opacity: 1;
  }

  100% {
    transform: translate(206px, 94px);
    opacity: 0;
  }
}

@keyframes packetTwo {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  18%,
  84% {
    opacity: 1;
  }

  100% {
    transform: translate(220px, -100px);
    opacity: 0;
  }
}

@keyframes packetThree {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  18%,
  84% {
    opacity: 1;
  }

  100% {
    transform: translate(-210px, 0);
    opacity: 0;
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-open .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(340px, calc(100vw - 32px));
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255, 69, 0, 0.32);
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow);
  }

  .menu-open .main-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 69, 0, 0.24);
    color: var(--orange);
  }

  .menu-open .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .solution-section,
  .design-showcase,
  .design-note,
  .results-layout,
  .difference-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .digital-ecosystem {
    width: min(100%, 520px);
    height: 520px;
  }

  .ecosystem-core {
    top: 196px;
  }

  .eco-node {
    width: 140px;
    min-height: 82px;
  }

  .eco-node-site {
    top: 54px;
    left: 34px;
  }

  .eco-node-design {
    top: 64px;
    right: 30px;
  }

  .eco-node-traffic {
    bottom: 78px;
    left: 34px;
  }

  .eco-node-content {
    right: 34px;
    bottom: 88px;
  }

  .eco-metric {
    right: 86px;
    bottom: 26px;
  }

  .solution-copy {
    position: static;
  }

  .design-monitor img {
    height: min(62vw, 500px);
  }

  .design-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

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

  .process-line {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 31px;
    width: 3px;
    height: auto;
  }

  .process-step {
    padding-top: 0;
    padding-left: 92px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 24px);
    min-height: 0;
    padding: 10px 12px;
    border: 1px solid rgba(7, 7, 7, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(7, 7, 7, 0.08);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    transform: none;
  }

  .brand {
    position: static;
    display: block;
    width: 92px;
    height: 58px;
    pointer-events: auto;
  }

  .menu-toggle {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
    place-items: center;
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(14px);
  }

  .menu-open .main-nav {
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(308px, calc(100vw - 24px));
    pointer-events: auto;
    border: 1px solid rgba(255, 69, 0, 0.32);
    border-radius: 24px;
    background: #000;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  }

  .menu-open .main-nav a {
    border-bottom: 1px solid rgba(255, 69, 0, 0.24);
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .menu-open .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 70px;
    overflow: hidden;
  }

  .hero-brand-image {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero p,
  .section-heading p,
  .solution-copy p,
  .difference-card p {
    font-size: 16px;
  }

  .solution-grid,
  .before-after,
  .difference-list {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 34px;
  }

  .trust-row div {
    min-height: 0;
    padding: 12px 8px;
    border-radius: 16px;
  }

  .trust-row strong {
    font-size: 14px;
  }

  .trust-row span {
    font-size: 9px;
    line-height: 1.35;
  }

  .problem-grid {
    display: flex;
    gap: 16px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 18px;
    overflow-x: auto;
    scroll-padding: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .problem-grid::-webkit-scrollbar {
    display: none;
  }

  .problem-card {
    flex: 0 0 min(86vw, 340px);
    min-height: 330px;
    scroll-snap-align: center;
  }

  .problem-grid .problem-card.reveal,
  .problem-grid .problem-card.reveal.visible,
  .problem-grid .problem-card:hover,
  .problem-grid .problem-card:active {
    opacity: 1;
    transform: none;
  }

  .problem-card:active {
    border-color: rgba(255, 69, 0, 0.48);
    box-shadow: 0 24px 70px rgba(255, 69, 0, 0.14);
  }

  .hero-visual {
    min-height: 470px;
    overflow: hidden;
  }

  .digital-ecosystem {
    width: min(100%, 360px);
    height: 450px;
    border-radius: 22px;
  }

  .ecosystem-grid {
    inset: 16px;
    border-radius: 16px;
  }

  .ecosystem-core {
    top: 170px;
    width: 172px;
    min-height: 112px;
    padding: 18px;
    border-radius: 18px;
  }

  .ecosystem-core strong {
    font-size: 30px;
  }

  .ecosystem-core span,
  .eco-node small,
  .eco-metric small {
    font-size: 9px;
  }

  .eco-node {
    width: 118px;
    min-height: 76px;
    padding: 12px;
    border-radius: 14px;
  }

  .eco-node strong,
  .eco-metric strong {
    font-size: 14px;
  }

  .eco-node-site {
    top: 38px;
    left: 18px;
  }

  .eco-node-design {
    top: 50px;
    right: 16px;
  }

  .eco-node-traffic {
    bottom: 74px;
    left: 18px;
  }

  .eco-node-content {
    right: 18px;
    bottom: 84px;
  }

  .eco-metric {
    right: 88px;
    bottom: 16px;
    min-width: 150px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .eco-link,
  .eco-packet {
    display: none;
  }

  .problem-section,
  .process-section,
  .testimonials-section,
  .solution-section,
  .design-section,
  .results-section,
  .portfolio-section,
  .difference-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .design-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .design-heading .eyebrow {
    justify-content: flex-start;
  }

  .design-heading p {
    font-size: 16px;
  }

  .design-showcase {
    gap: 18px;
  }

  .design-monitor {
    padding: 10px;
    border-radius: 26px;
  }

  .design-monitor img {
    height: 300px;
    border-radius: 18px;
  }

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

  .design-service-card {
    min-height: auto;
    padding: 22px;
  }

  .design-service-icon {
    margin-bottom: 28px;
  }

  .design-gallery {
    display: flex;
    gap: 14px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 14px;
    overflow-x: auto;
    scroll-padding: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .design-gallery::-webkit-scrollbar {
    display: none;
  }

  .design-gallery figure,
  .design-gallery figure:first-child {
    flex: 0 0 min(76vw, 300px);
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .design-note {
    gap: 20px;
    padding: 22px;
  }

  .design-note p {
    font-size: 15px;
  }

  .design-note .btn {
    width: 100%;
  }

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

  .portfolio-card {
    min-height: 0;
  }

  .portfolio-card-wide {
    grid-column: auto;
  }

  .portfolio-media {
    height: 280px;
    padding: 12px;
  }

  .portfolio-card-wide .portfolio-media {
    height: 320px;
  }

  .carousel-track {
    inset: 12px;
    border-radius: 16px;
  }

  .portfolio-arrow {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .portfolio-arrow-prev {
    left: 18px;
  }

  .portfolio-arrow-next {
    right: 18px;
  }

  .portfolio-count {
    right: 18px;
    bottom: 18px;
  }

  .portfolio-content {
    padding: 22px;
  }

  .portfolio-card h3 {
    margin: 16px 0 10px;
  }

  .portfolio-card p {
    margin: 0;
  }

  .portfolio-tags {
    margin: 18px 0 20px;
  }

  .difference-card {
    padding: 30px;
  }

  .testimonial-card {
    width: 300px;
  }

  .site-footer img {
    width: 220px;
    height: 198px;
  }

  .modal {
    padding: 12px;
  }

  .project-panel {
    padding: 18px;
  }

  .modal-gallery {
    height: min(58vh, 520px);
    margin-top: 16px;
    border-radius: 18px;
  }

  .modal-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .modal-arrow-prev {
    left: 10px;
  }

  .modal-arrow-next {
    right: 10px;
  }

  .modal-counter {
    right: 10px;
    bottom: 10px;
  }

  .footer-grid {
    gap: 36px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
