:root {
  color-scheme: dark;
  --bg: #07080a;
  --ink: #f8fafc;
  --muted: #aab3c0;
  --panel: #11151a;
  --panel-2: #171c22;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #e5007e;
  --blue: #e5007e;
  --green: #e5007e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #090b0e 0%, var(--bg) 42%, #090b0e 100%);
  color: var(--ink);
}

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

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.hero-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: clamp(168px, 14vw, 220px);
  height: auto;
  display: block;
}

.nav-links {
  gap: clamp(14px, 2.3vw, 28px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a:hover,
.text-link:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.header-cta {
  padding: 0 18px;
  background: var(--orange);
  color: #fff;
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.lang-button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.lang-button.active {
  background: var(--ink);
  color: #07080a;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 6vw, 88px) 58px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.78) 44%, rgba(7, 8, 10, 0.3)),
    linear-gradient(0deg, var(--bg), rgba(7, 8, 10, 0.16) 34%, rgba(7, 8, 10, 0.08));
}

.hero-content {
  position: relative;
  max-width: 690px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(27px, 3.3vw, 46px);
  line-height: 1.06;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.7vw, 21px);
}

.support-copy {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
}

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

.button {
  min-height: 52px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 15px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 46px rgba(229, 0, 126, 0.26);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
  color: var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  padding: clamp(72px, 10vw, 132px) 0 clamp(44px, 7vw, 82px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 0%, rgba(229, 0, 126, 0.18), transparent 30%),
    #07080a;
}

.page-hero h1,
.company-copy h1,
.artist-merch-heading h1,
.gallery h1,
.contact h1 {
  max-width: 960px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p:last-child,
.artist-merch-heading p,
.gallery .section-heading p,
.contact > .section-inner > div > p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #0d1014;
}

.intro,
.company-proof,
.artist-merch,
.audiences,
.why,
.products,
.coverage,
.contact {
  padding: clamp(64px, 9vw, 112px) 0;
}

.intro-grid,
.company-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.tag-cloud,
.proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-cloud span,
.proof-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 800;
}

.company-proof {
  background:
    radial-gradient(circle at 12% 0%, rgba(229, 0, 126, 0.16), transparent 32%),
    #07080a;
}

.company-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
}

.company-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.7vw, 54px);
}

.company-copy p {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(16px, 1.5vw, 19px);
}

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

.stats-grid article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.stats-grid article {
  min-height: 132px;
  padding: 22px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.trust-grid article {
  min-height: 170px;
  padding: 24px;
}

.trust-grid h3 {
  margin-bottom: 12px;
}

.brand-carousel {
  overflow: hidden;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(229, 0, 126, 0.1), transparent 35%, rgba(229, 0, 126, 0.08)),
    #090b0e;
}

.home-routing {
  padding: clamp(70px, 9vw, 122px) 0;
}

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

.route-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(229, 0, 126, 0.08), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.route-card span {
  display: inline-flex;
  margin-bottom: 52px;
  color: #e5007e;
  font-weight: 900;
}

.route-card h3 {
  margin-bottom: 12px;
}

.route-card:hover {
  border-color: rgba(229, 0, 126, 0.46);
}

.carousel-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.carousel-heading h2 {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 42px);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(18vw, 220px);
  height: 100%;
  content: "";
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #090b0e, rgba(9, 11, 14, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #090b0e, rgba(9, 11, 14, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logo-scroll 34s linear infinite;
}

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

.logo-tile {
  display: grid;
  width: clamp(190px, 18vw, 260px);
  height: clamp(104px, 9.8vw, 142px);
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.logo-tile img {
  width: 88%;
  height: 82%;
  object-fit: contain;
}

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

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

.services,
.process,
.gallery,
.techniques,
.faq {
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p {
  margin-top: 18px;
}

.section-heading.compact {
  max-width: 680px;
}

.service-grid,
.audience-grid,
.gallery-grid,
.tech-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.audience-grid article,
.process-grid article,
.tech-grid article,
.faq details,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 270px;
  padding: 28px;
}

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-card.featured div {
  padding: 28px;
}

.service-card span,
.process-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-weight: 900;
}

.service-card h3,
.audience-grid h3,
.process-grid h3,
.tech-grid h3 {
  margin-bottom: 12px;
}

.audience-grid,
.tech-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid article {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(229, 0, 126, 0.07), rgba(255, 255, 255, 0)),
    var(--panel-2);
}

.artist-merch {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.74), rgba(7, 8, 10, 0.96)),
    linear-gradient(135deg, rgba(229, 0, 126, 0.12), rgba(255, 255, 255, 0)),
    url("assets/factory/showroom-products.jpeg") center / cover;
}

.artist-merch-inner {
  position: relative;
  z-index: 1;
}

.artist-merch-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.artist-merch-heading h2 {
  max-width: 860px;
}

.artist-merch-heading p:last-child {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.artist-grid article {
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: var(--shadow);
}

.artist-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #e5007e;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.artist-grid h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.artist-grid p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.artist-grid p + p {
  margin-top: 12px;
}

.artist-grid strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

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

.process-grid article {
  min-height: 248px;
  padding: 24px;
}

.why .button {
  margin-top: 28px;
}

.proof-grid span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  border-color: rgba(229, 0, 126, 0.3);
}

.factory-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.factory-strip img {
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.factory-strip img:first-child {
  object-position: center center;
}

.factory-strip img:last-child {
  object-position: center 45%;
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(7, 8, 10, 0.78);
  color: var(--ink);
  font-weight: 900;
}

.project-gallery {
  margin-top: clamp(44px, 7vw, 82px);
}

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

.project-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.project-grid figure:nth-child(1),
.project-grid figure:nth-child(8) {
  grid-column: span 2;
}

.project-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.project-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.06);
}

.project-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: 6px;
  background: rgba(7, 8, 10, 0.78);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.product-showcase {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.product-showcase-heading {
  max-width: 780px;
  min-width: 0;
}

.product-showcase-heading h2 {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.product-showcase-heading h2 span {
  color: #e5007e;
  font-size: clamp(64px, 13vw, 178px);
  line-height: 0.88;
}

.product-showcase-heading p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.product-bars {
  display: grid;
  grid-template-columns: repeat(8, minmax(118px, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 560px;
  min-width: 0;
  width: 100%;
}

.product-bar {
  display: flex;
  min-height: var(--bar-height);
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(180deg, rgba(229, 0, 126, 0.11), rgba(229, 0, 126, 0) 38%),
    #020203;
  box-shadow: 18px 0 0 rgba(255, 255, 255, 0.035);
}

.product-bar strong {
  order: 2;
  margin: 10px 0 20px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.product-bar h3 {
  order: 1;
  color: #e5007e;
  font-size: clamp(19px, 2vw, 28px);
}

.product-bar p {
  order: 3;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  line-height: 1.35;
}

.product-bar.level-1 { --bar-height: 270px; }
.product-bar.level-2 { --bar-height: 300px; }
.product-bar.level-3 { --bar-height: 350px; }
.product-bar.level-4 { --bar-height: 390px; }
.product-bar.level-5 { --bar-height: 440px; }
.product-bar.level-6 { --bar-height: 490px; }
.product-bar.level-7 { --bar-height: 520px; }
.product-bar.level-8 { --bar-height: 560px; }

.tech-grid article {
  min-height: 220px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(229, 0, 126, 0.16), rgba(229, 0, 126, 0.08)),
    var(--panel);
}

.coverage-panel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.coverage-panel .button {
  margin-top: 30px;
}

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

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin-top: 14px;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
}

.contact-info a {
  color: var(--ink);
  font-weight: 800;
}

.contact-info a:hover {
  color: #e5007e;
}

.contact-logo {
  width: min(210px, 70vw);
  height: auto;
  margin-bottom: 8px;
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.whatsapp-bubble {
  position: fixed;
  right: clamp(16px, 2.6vw, 34px);
  bottom: clamp(16px, 2.6vw, 34px);
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #25d366;
  color: #07110a;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(37, 211, 102, 0.12);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-bubble:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.44), 0 0 0 10px rgba(37, 211, 102, 0.14);
}

.whatsapp-bubble span {
  font-size: 15px;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-links {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 8px 10px;
    scrollbar-width: none;
  }

  .service-grid,
  .audience-grid,
  .artist-grid,
  .process-grid,
  .gallery-grid,
  .project-grid,
  .tech-grid,
  .faq-grid,
  .trust-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-bars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: auto;
  }

  .product-bar {
    min-height: 260px;
    box-shadow: none;
  }

  .project-grid figure:nth-child(1),
  .project-grid figure:nth-child(8) {
    grid-column: span 1;
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .company-grid,
  .carousel-heading,
  .factory-strip,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .company-copy h2 {
    max-width: 860px;
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(1180px, calc(100% - 24px));
  }

  .intro,
  .company-proof,
  .artist-merch,
  .audiences,
  .why,
  .products,
  .coverage,
  .contact {
    padding: 48px 0;
  }

  .brand-logo {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 168px;
  }

  .page-main {
    padding-top: 128px;
  }

  .page-hero {
    padding: 42px 0 40px;
  }

  .page-hero h1,
  .company-copy h1,
  .artist-merch-heading h1,
  .gallery h1,
  .contact h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--bg), rgba(7, 8, 10, 0.56) 44%, rgba(7, 8, 10, 0.18)),
      linear-gradient(90deg, rgba(7, 8, 10, 0.94), rgba(7, 8, 10, 0.36));
  }

  .service-grid,
  .audience-grid,
  .artist-grid,
  .process-grid,
  .gallery-grid,
  .project-grid,
  .tech-grid,
  .faq-grid,
  .trust-grid,
  .route-grid,
  .product-bars,
  .quote-form,
  .service-card.featured {
    grid-template-columns: 1fr;
  }

  .company-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .company-copy p {
    font-size: 16px;
  }

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

  .stats-grid article {
    min-height: 112px;
    padding: 16px;
  }

  .stats-grid strong {
    font-size: clamp(34px, 11vw, 46px);
  }

  .stats-grid span {
    font-size: 13px;
    line-height: 1.25;
  }

  .trust-grid article {
    min-height: auto;
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .whatsapp-bubble {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}
