/* ============================================================
   DGO ENTERPRISES — style.css v2
   Video-first · dark cinematic · Miami heat accent
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-soft: #101014;
  --bg-card: #15151a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f2ec;
  --muted: #9a9aa3;
  --accent: #ff4d3d;
  --accent-2: #ff2e63;
  --grad: linear-gradient(100deg, #ff6b4a 0%, #ff4d3d 45%, #ff2e63 100%);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Grotesk", monospace;
  --container: 1240px;
  --radius: 20px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 200;
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 34px rgba(255, 61, 90, 0.4);
}
.btn--primary:hover { box-shadow: 0 16px 46px rgba(255, 61, 90, 0.55); }
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--accent); background: rgba(255, 77, 61, 0.1); }
.btn--dark { background: #0a0a0c; color: #fff; }
.btn--dark:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); }
.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.06em; line-height: 1; }
.nav__logo-accent { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 600; color: var(--muted); }
.nav__links a { position: relative; transition: color 0.2s ease; }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:not(.nav__cta):hover { color: #fff; }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__cta {
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(255, 61, 90, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 61, 90, 0.5); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 25px; height: 2px; background: var(--text); transition: transform 0.3s ease, opacity 0.3s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.16); }
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.62) 0%, rgba(10,10,12,0.35) 40%, rgba(10,10,12,0.88) 82%, #0a0a0c 100%),
    radial-gradient(90% 60% at 80% 10%, rgba(255, 46, 99, 0.18), transparent 60%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; padding-bottom: 60px; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 11vw, 148px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line i {
  display: inline-block;
  font-style: normal;
}
.hero__sub { max-width: 560px; margin-top: 26px; font-size: 18px; color: #d9d5cd; }
.hero__sub strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__bottom { position: relative; z-index: 2; margin-top: 56px; }

/* line reveal */
.reveal-line {
  transform: translateY(110%);
  animation: lineUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-line.d1 { animation-delay: 0.12s; }
.reveal-line.d2 { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 16px;
  overflow: hidden;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(8px);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cfcbc4;
  white-space: nowrap;
}
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: 110px; }
.section__head { margin-bottom: 54px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1;
  text-transform: uppercase;
}
.section__sub { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 560px; }

:root {
  --chart-1: #f4502f;
  --chart-2: #1fa396;
}

/* ---------- Work / video wall ---------- */
.work { padding-top: 130px; }
.wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tile {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.tile:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(255, 77, 61, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 77, 61, 0.2);
}
.tile__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.tile:hover .tile__video { transform: scale(1.06); }

.tile__top,
.tile__bottom {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  z-index: 2;
}
.tile__top {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), transparent);
  padding-bottom: 34px;
}
.tile__bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  padding-top: 34px;
}
.tile__client { font-family: var(--font-mono); font-weight: 600; font-size: 14px; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.tile__ig {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tile:hover .tile__ig, .tile:focus-within .tile__ig { opacity: 1; transform: translateY(0); }
.tile__ig:hover { color: var(--accent); }

.tile__sound {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tile__sound:hover { transform: scale(1.12); border-color: var(--accent); background: rgba(255, 77, 61, 0.3); }
.tile__sound[aria-pressed="true"] { background: var(--grad); border-color: transparent; }

.chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 77, 61, 0.85);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.chip--big { font-size: 13px; padding: 9px 16px; background: rgba(255, 77, 61, 0.14); color: var(--text); border: 1px solid rgba(255, 77, 61, 0.35); }

.tile--cta { background: var(--grad); border: 0; }
.tile--cta__inner {
  position: absolute; inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: #fff;
}
.tile--cta__kicker { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.tile--cta h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 3vw, 46px); line-height: 1.02; }
.tile--cta .btn { align-self: flex-start; }
.tile--cta__more { font-size: 13.5px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; opacity: 0.9; }

/* ---------- Results / charts ---------- */
.results {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 15% 0%, rgba(255, 77, 61, 0.09), transparent 60%),
    var(--bg-soft);
  overflow: hidden;
}
.results__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { color: var(--muted); font-size: 15.5px; }

.charts {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.chart-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 21, 26, 0.75);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.chart-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.chart-card__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.chart-card__value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: var(--text);
}
.chart-card__note { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin-top: auto; }
.chart-card__note b { color: var(--text); }

/* line chart */
.chart-card__plot { position: relative; flex: 1; min-height: 220px; }
#viewsChart { width: 100%; height: 100%; display: block; overflow: visible; }
#viewsChart .grid-line { stroke: rgba(255, 255, 255, 0.07); stroke-width: 1; }
#viewsChart .grid-label { fill: #6a6a73; font: 500 11px var(--font-mono); }
#viewsChart .area { fill: url(#viewsFill); }
#viewsChart .stroke {
  fill: none;
  stroke: var(--chart-1);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
#viewsChart .cross { stroke: rgba(255, 255, 255, 0.25); stroke-width: 1; opacity: 0; }
#viewsChart .dot { fill: var(--chart-1); stroke: var(--bg-soft); stroke-width: 2; opacity: 0; }
.chart-card__plot:hover .cross,
.chart-card__plot:hover .dot { opacity: 1; }

.chart-tip {
  position: absolute;
  pointer-events: none;
  background: #1d1d23;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12.5px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 0.15s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  z-index: 3;
}
.chart-tip strong { display: block; font-size: 14px; color: var(--text); }
.chart-tip span { color: var(--muted); }
.chart-card__plot:hover .chart-tip { opacity: 1; }

.chart-card__xaxis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #6a6a73;
  text-transform: uppercase;
}

/* donut */
.donut { position: relative; width: min(200px, 100%); margin-inline: auto; }
.donut svg { transform: rotate(-90deg); }
.donut__track { fill: none; stroke: rgba(255, 255, 255, 0.06); stroke-width: 26; }
.donut__seg { fill: none; stroke-width: 26; stroke-dasharray: 0 502.7; transition: stroke-dasharray 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.donut__seg--new { stroke: var(--chart-1); }
.donut__seg--fans { stroke: var(--chart-2); }
.is-in .donut__seg--new { stroke-dasharray: 286.5 502.7; }
.is-in .donut__seg--fans { stroke-dasharray: 208.1 502.7; stroke-dashoffset: -290.5; }
.donut__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.donut__center strong { font-family: var(--font-display); font-size: 38px; line-height: 1; }
.donut__center span { color: var(--muted); font-size: 12.5px; margin-top: 4px; }

.chart-legend { display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.chart-legend b { color: var(--text); margin-left: auto; }
.chart-legend li { display: flex; align-items: center; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.dot--new { background: var(--chart-1); }
.dot--fans { background: var(--chart-2); }

/* bars */
.bars { display: grid; gap: 16px; }
.bar { display: grid; grid-template-columns: 58px 1fr 44px; align-items: center; gap: 12px; font-size: 14px; }
.bar__label { color: var(--muted); }
.bar__value { font-family: var(--font-mono); font-weight: 700; text-align: right; }
.bar__track {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: var(--chart-1);
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-in .bar__fill { width: var(--w); }
.bar:nth-child(2) .bar__fill { transition-delay: 0.12s; }
.bar:nth-child(3) .bar__fill { transition-delay: 0.24s; }

/* ---------- Services ---------- */
.svc { border-top: 1px solid var(--line); position: relative; z-index: 2; }
.svc__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.svc__row:hover { background: rgba(255, 255, 255, 0.02); padding-left: 22px; }
.svc__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 40px);
  text-transform: uppercase;
  line-height: 1.05;
  transition: color 0.25s ease;
}
.svc__row:hover .svc__name {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc__desc { color: var(--muted); font-size: 15.5px; }
.svc__arrow {
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.svc__row:hover .svc__arrow { transform: translateX(8px) rotate(-45deg); color: var(--accent); }

.svc__preview {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 230px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 60px rgba(255, 77, 61, 0.25);
  will-change: transform;
  background: #000;
}
.svc__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(200deg, rgba(255, 255, 255, 0.14), transparent 32%);
  pointer-events: none;
}
.svc__preview.is-on { opacity: 1; }
.svc__preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc__preview video.is-active { opacity: 1; transform: scale(1); }

/* ---------- About ---------- */
.about { border-top: 1px solid var(--line); overflow: hidden; }
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about__text p { color: var(--muted); margin-top: 22px; max-width: 540px; font-size: 17.5px; }
.about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.about__media {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 340px;
  justify-self: end;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(2.5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.about__media:hover { transform: rotate(0deg) scale(1.02); }
.about__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(80% 100% at 85% 100%, rgba(255, 46, 99, 0.1), transparent 55%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__sub { color: var(--muted); margin-top: 18px; max-width: 440px; }
.contact__channels { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact__channel:hover { border-color: rgba(255, 77, 61, 0.5); background: rgba(255, 77, 61, 0.06); }
.contact__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255, 77, 61, 0.14);
  color: var(--accent);
  flex-shrink: 0;
}
.contact__channel strong { display: block; font-size: 15px; }
.contact__channel em { font-style: normal; color: var(--muted); font-size: 14px; }

.contact__form {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(21, 21, 26, 0.85);
  backdrop-filter: blur(10px);
  padding: 36px 32px;
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 77, 61, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: #5c5c66; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9aa3' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact__form-note { font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 44px; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.06em; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14.5px; color: var(--muted); }
.footer__links a:hover { color: #fff; }
.footer__copy { color: #5c5c66; font-size: 13px; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(255, 61, 90, 0.4);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-line { opacity: 1; transform: none; transition: none; animation: none; }
  .marquee__track, .hero__bg video { animation: none; }
  .svc__preview { display: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .wall { grid-template-columns: repeat(3, 1fr); }
  .svc__row { grid-template-columns: 1fr 32px; }
  .svc__desc { display: none; }
  .charts { grid-template-columns: 1fr 1fr; }
  .chart-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .results__row { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .charts { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__media { justify-self: center; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .wall { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc__preview { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding-block: 80px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #0a0a0c;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    padding: 18px 24px 26px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 12px 0; font-size: 17px; width: 100%; }
  .nav__links a::after { display: none; }
  .nav__cta { margin-top: 10px; text-align: center; justify-content: center; }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__actions .btn { width: 100%; }
  .wall { grid-template-columns: 1fr; }
  .tile { max-width: 420px; margin-inline: auto; width: 100%; }
  .contact__form { padding: 26px 20px; }
  .chart-card__plot { min-height: 180px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .to-top { right: 16px; bottom: 16px; }
}

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