:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0d0d11;
  --panel: #121217;
  --panel-2: #181820;
  --text: #fbfbff;
  --muted: #b9b8c4;
  --muted-2: #e2e0ea;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.28);
  --purple: #9b5cff;
  --purple-2: #c7a6ff;
  --purple-deep: #5d2bc4;
  --white: #ffffff;
  --ink: #050506;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(155, 92, 255, 0.2), transparent 32rem),
    linear-gradient(180deg, #08080b 0%, var(--bg) 42%, #08080b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 70%);
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 260ms ease, border-color 260ms ease, padding 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.brand,
.nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  width: max-content;
  font-weight: 900;
}

.brand-logo {
  width: clamp(42px, 4vw, 54px);
  height: clamp(42px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  object-fit: cover;
  background: #050506;
  box-shadow: 0 14px 34px rgba(155, 92, 255, 0.28);
}

.brand-name {
  line-height: 1;
}

.nav {
  gap: 4px;
  justify-self: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(155, 92, 255, 0.22);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(155, 92, 255, 0.18);
  color: var(--text);
  font-weight: 900;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(155, 92, 255, 0.28);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96svh;
  padding: 134px clamp(18px, 5vw, 72px) 116px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  background: #050506;
  filter: saturate(0.78) contrast(1.12) brightness(0.66);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.97) 0%, rgba(5, 5, 6, 0.84) 42%, rgba(5, 5, 6, 0.42) 78%, rgba(5, 5, 6, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 5, 6, 0) 35%),
    radial-gradient(circle at 74% 36%, rgba(155, 92, 255, 0.34), transparent 32rem);
}

.hero-content {
  position: relative;
  width: min(850px, 100%);
  padding-top: 24px;
}

.hero-logo {
  width: clamp(86px, 10vw, 132px);
  height: clamp(86px, 10vw, 132px);
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  object-fit: cover;
  background: #050506;
  box-shadow: 0 22px 60px rgba(155, 92, 255, 0.26);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7.8vw, 7.25rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  color: #eeeef6;
  font-size: clamp(1.04rem, 1.65vw, 1.33rem);
  line-height: 1.62;
}

.hero-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 680px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-service-list li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 32px rgba(0, 0, 0, 0.28);
}

.button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(155, 92, 255, 0.18);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  max-width: 650px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  width: min(430px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 20, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-panel p {
  margin-bottom: 18px;
  color: #f3f1fb;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.mini-stats span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.3;
}

.mini-stats strong {
  display: block;
  color: var(--purple-2);
  font-size: 1.65rem;
}

.section {
  padding: 104px clamp(18px, 5vw, 72px);
}

.section > *,
.site-footer > * {
  max-width: var(--container);
}

.intro {
  display: flex;
  justify-content: flex-end;
  padding-top: 58px;
}

.intro p {
  max-width: 980px;
  color: #f2f1f8;
  font-size: clamp(1.42rem, 3vw, 3.05rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.64fr) minmax(0, 1.36fr);
  gap: 44px;
  align-items: end;
  margin: 0 auto 44px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.02));
  transition: background 260ms ease, transform 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(155, 92, 255, 0.18), rgba(255, 255, 255, 0.028));
}

.service-number {
  display: block;
  margin-bottom: 74px;
  color: var(--purple-2);
  font-weight: 900;
}

.service-card p,
.service-card ul,
.work-copy p,
.contact-copy p,
.process-list,
.pricing-head p,
.package-note,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

.work,
.faq {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 40%),
    var(--bg-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.work-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.work-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #050506;
}

.work-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, rgba(155, 92, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.work-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.work-card:hover .work-visual img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.work-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.work-copy span,
.pricing-head span {
  color: var(--purple-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.case-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.case-services li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 15px;
  border: 1px solid rgba(155, 92, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(155, 92, 255, 0.16);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.case-link:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 166, 255, 0.78);
  background: rgba(155, 92, 255, 0.26);
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(155, 92, 255, 0.13), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.process-list li::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 22px;
  color: var(--purple-2);
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-weight: 900;
}

.pricing {
  background:
    radial-gradient(circle at 20% 18%, rgba(155, 92, 255, 0.16), transparent 30rem),
    #08080b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: rgba(155, 92, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(155, 92, 255, 0.18), rgba(255, 255, 255, 0.025)),
    var(--panel);
  transform: translateY(-12px);
}

.pricing-card.featured:hover {
  transform: translateY(-17px);
}

.pricing-badge {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(155, 92, 255, 0.52);
  border-radius: 999px;
  background: rgba(155, 92, 255, 0.18);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-head h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.pricing-head p {
  min-height: 78px;
}

.price {
  margin: 24px 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #ebeaf2;
  line-height: 1.45;
}

.pricing-card li {
  position: relative;
  padding-left: 25px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(155, 92, 255, 0.15);
}

.package-note {
  margin: auto 0 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.pricing-card .button {
  width: 100%;
}

.photos {
  background:
    radial-gradient(circle at 78% 20%, rgba(155, 92, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0));
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.photo-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #050506;
}

.photo-card div {
  padding: 20px;
}

.photo-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--purple-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-card h3 {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(155, 92, 255, 0.17), transparent 34%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.07), transparent 42%),
    #08080b;
}

.contact-copy,
.contact-info {
  max-width: var(--container);
}

.contact-copy {
  position: sticky;
  top: 108px;
  align-self: start;
}

.contact-copy a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--purple-2);
  font-weight: 900;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow-soft);
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  display: inline-flex;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.contact-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contact-card li {
  position: relative;
  padding-left: 20px;
}

.contact-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  object-fit: cover;
  background: #050506;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted-2);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 820ms cubic-bezier(0.2, 0.65, 0.2, 1), transform 820ms cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero {
    min-height: 900px;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 48px;
  }

  .section-heading,
  .process,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    right: auto;
    left: 18px;
  }

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

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

  .work-card:first-child {
    display: block;
    grid-column: auto;
  }

  .pricing-card,
  .pricing-card.featured {
    min-height: auto;
    transform: none;
  }

  .pricing-card:hover,
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header {
    gap: 12px;
    padding: 14px 14px 12px;
  }

  .brand-name,
  .header-cta {
    display: none;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
    border-radius: var(--radius);
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 1 0 auto;
    min-width: max-content;
    padding: 9px 10px;
    text-align: center;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 860px;
    padding: 128px 18px 258px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero-logo {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.97) 0%, rgba(5, 5, 6, 0.86) 68%, rgba(5, 5, 6, 0.56) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(5, 5, 6, 0) 38%),
      radial-gradient(circle at 70% 38%, rgba(155, 92, 255, 0.28), transparent 24rem);
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 7px;
  }

  .hero-proof span {
    font-size: 0.76rem;
  }

  .hero-panel {
    bottom: 24px;
    padding: 18px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 18px;
  }

  .intro {
    padding-top: 52px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .services-grid,
  .photo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .service-number {
    margin-bottom: 44px;
  }

  .work-visual {
    min-height: 210px;
  }

  .case-link {
    width: 100%;
  }

  .process-list li {
    padding: 20px 18px 20px 64px;
  }

  .price {
    font-size: 2.3rem;
  }

  .contact-section {
    gap: 28px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}
