:root {
  --ink: #111318;
  --muted: #626773;
  --line: #dfe3ea;
  --paper: #fbfcfd;
  --white: #ffffff;
  --red: #e42b2f;
  --red-dark: #a8121a;
  --teal: #0c8f93;
  --lime: #d7f76f;
  --navy: #172033;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.14);
  --gold: #f7c94b;
  --soft-red: #fff1f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 253, 0.86);
  border-bottom: 1px solid rgba(223, 227, 234, 0.78);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 8px 22px rgba(17, 19, 24, 0.2);
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  color: #383e49;
  font-size: 13.5px;
  font-weight: 750;
}

.nav-links a {
  padding: 10px 0;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 170px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.14);
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu.wide {
  min-width: 230px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header-cta,
.btn,
.filter-btn,
.mobile-home-toggle,
.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--red-dark));
  box-shadow: 0 12px 30px rgba(17, 19, 24, 0.16);
}

.mobile-home-menu {
  position: relative;
  display: none;
}

.mobile-home-toggle {
  min-height: 40px;
  gap: 8px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--red-dark));
}

.mobile-home-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.mobile-home-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 230px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.16);
}

.mobile-home-menu.open .mobile-home-panel {
  display: grid;
}

.mobile-home-panel a {
  padding: 12px;
  color: var(--ink);
  font-weight: 850;
  border-radius: 6px;
}

.mobile-home-panel a:hover,
.mobile-home-panel a:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  padding: 118px clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.94), rgba(17, 19, 24, 0.72) 48%, rgba(17, 19, 24, 0.28)),
    linear-gradient(180deg, rgba(17, 19, 24, 0.24), rgba(17, 19, 24, 0.88));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.05);
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 6vw, 88px);
  bottom: clamp(48px, 9vw, 118px);
  width: clamp(140px, 22vw, 320px);
  opacity: 0.22;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.13;
  background-image: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.34) 9px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  align-self: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: var(--lime);
}

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

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

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.58;
}

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

.btn {
  min-width: 154px;
  padding: 0 22px;
}

.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 40px rgba(228, 43, 47, 0.28);
}

.btn.secondary {
  color: var(--ink);
  background: var(--white);
}

.btn.social {
  color: var(--white);
  background: var(--navy);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

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

.intro-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--navy);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 68px 0 34px;
}

.metrics article {
  min-height: 148px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.metrics strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 750;
}

.services,
.process {
  padding: 64px 0 92px;
}

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

.section-heading.split {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-heading.split > div:first-child {
  max-width: 720px;
}

.section-note {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.service-number {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--red);
  font-weight: 950;
}

.service-grid p,
.work-info p,
.timeline p,
.package-grid p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.live-suite {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.98), rgba(51, 10, 15, 0.94)),
    url("assets/live-production-hero1.jpg") center / cover;
}

.live-suite-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.live-suite .section-kicker {
  color: var(--gold);
}

.live-suite-copy {
  position: sticky;
  top: 110px;
}

.live-suite-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

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

.live-feature-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.live-feature-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.live-feature-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.event-coverage {
  padding: 86px 0;
  color: var(--white);
  background: var(--ink);
}

.event-coverage .section-kicker {
  color: var(--lime);
}

.event-coverage .section-note {
  color: rgba(255, 255, 255, 0.72);
}

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

.event-list article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
}

.event-list article.wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(228, 43, 47, 0.82), rgba(12, 143, 147, 0.62)),
    rgba(255, 255, 255, 0.05);
}

.event-list span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-list h3 {
  margin-bottom: 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.18;
}

.proof-band {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.96), rgba(23, 32, 51, 0.86)),
    url("assets/nuhade-pattern.png") center / cover;
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.proof-copy p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.proof-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.showcase {
  padding: 86px 0 96px;
  background: #eef2f4;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.filter-btn.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.work-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(17, 19, 24, 0.08);
}

.work-card.featured {
  grid-column: span 2;
}

.video-thumb {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.video-thumb span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
}

.video-thumb:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.static-thumb {
  cursor: default;
}

.static-thumb img {
  filter: saturate(0.96) contrast(1.02);
}

.static-thumb:hover img {
  transform: none;
  opacity: 1;
}

.work-info {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-info h3 {
  margin-bottom: 12px;
}

.watch-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

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

.timeline article {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.timeline article:nth-child(2) {
  background: var(--red-dark);
}

.timeline article:nth-child(3) {
  background: var(--teal);
}

.timeline article:nth-child(4) {
  background: var(--navy);
}

.timeline span {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 950;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}



.blog-section {
  padding: 86px 0;
  background: var(--white);
}

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

.blog-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: linear-gradient(180deg, var(--white), #f8fafc);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(17, 19, 24, 0.08);
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-grid a {
  width: fit-content;
  color: var(--red);
  font-weight: 950;
}

.team-section {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 15, 20, 0.98), rgba(23, 19, 32, 0.94) 54%, rgba(36, 7, 10, 0.98)),
    url("assets/nuhade-pattern.png") center / cover;
}

.team-section .section-kicker {
  color: var(--gold);
}

.team-slider {
  display: grid;
  grid-auto-columns: minmax(270px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.team-card {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.team-card.leader {
  border-color: rgba(247, 201, 75, 0.74);
  background: linear-gradient(180deg, rgba(247, 201, 75, 0.16), rgba(255, 255, 255, 0.08));
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-card.leader img {
  object-position: center top;
}

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

.team-card span,
.cv-services span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-card h3,
.team-card p {
  margin-bottom: 0;
}

.team-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.clients-section {
  overflow: hidden;
  padding: 86px 0;
  background: var(--white);
}

.clients-section .section-kicker {
  color: var(--red);
}

.client-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 28px;
  padding: 22px 0 34px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.client-marquee::before,
.client-marquee::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: min(18vw, 170px);
  pointer-events: none;
  content: "";
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.client-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 18px;
  animation: clientDrift 54s linear infinite;
  will-change: transform;
}

.client-track img {
  width: clamp(160px, 18vw, 260px);
  height: 132px;
  padding: 20px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.08);
}

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

@keyframes clientDrift {
  from {
    transform: translate3d(0, 10px, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), -18px, 0);
  }
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
  background: var(--gold);
}

.cv-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 241, 241, 0.92)),
    var(--white);
}

.cv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.cv-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cv-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.cv-advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cv-advantages span {
  padding: 10px 12px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  background: var(--soft-red);
  border: 1px solid rgba(228, 43, 47, 0.16);
  border-radius: 8px;
}

.cv-services article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(17, 19, 24, 0.08);
}

.cv-services h3 {
  margin-bottom: 12px;
}

.cv-services p,
.mou-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.brochure-card {
  position: sticky;
  top: 92px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brochure-card img {
  width: 100%;
  object-fit: cover;
}

.brochure-card figcaption {
  padding: 14px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.mou-section {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 19, 24, 0.95), rgba(168, 18, 26, 0.92)),
    url("assets/nuhade-pattern.png") center / cover;
}

.mou-section .section-kicker {
  color: var(--gold);
}

.mou-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.mou-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.mou-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.mou-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.mou-points span {
  padding: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.mou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mou-actions .btn.secondary {
  color: var(--ink);
}

.packages {
  padding: 86px 0;
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package-grid .section-heading {
  margin-bottom: 0;
  align-self: center;
}

.package-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fb;
}

.package-grid article.accent {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.package-grid article.accent p {
  color: rgba(255, 255, 255, 0.75);
}

.package-grid a {
  width: fit-content;
  color: var(--red);
  font-weight: 950;
}

.pricing-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #fff7f7, var(--white));
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 470px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.pricing-copy > p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pricing-card {
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 19, 24, 0.96), rgba(126, 13, 22, 0.96)),
    url("assets/nuhade-pattern.png") center / cover;
  border: 1px solid rgba(228, 43, 47, 0.35);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(126, 13, 22, 0.22);
}

.pricing-card span {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.pricing-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

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

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.pricing-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.contact {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(228, 43, 47, 0.93), rgba(17, 19, 24, 0.94)),
    url("assets/nuhade-pattern.png") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact p {
  max-width: 680px;
  font-size: 18px;
}

.office-location {
  width: min(100%, 560px);
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.office-location span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.office-location strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.18;
}

.office-location p {
  margin-bottom: 16px;
  font-size: 15px;
}

.office-location a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
  background: var(--white);
  border-radius: 8px;
}

.contact-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.contact-actions .btn {
  width: min(100%, 250px);
}

footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 750;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: #000;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  font: inherit;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  cursor: pointer;
}

.modal-panel iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .site-header {
    position: sticky;
  }

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

  .mobile-home-menu {
    display: block;
  }
}

@media (max-width: 980px) {

  .hero {
    min-height: 82vh;
  }

  .intro-grid,
  .live-suite-grid,
  .proof-grid,
  .contact-grid,
  .package-grid,
  .pricing-grid,
  .cv-grid,
  .mou-grid {
    grid-template-columns: 1fr;
  }

  .live-suite-copy {
    position: static;
  }

  .brochure-card {
    position: static;
  }

  .metrics,
  .service-grid,
  .live-feature-grid,
  .event-list,
  .timeline,
  .work-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card.featured {
    grid-column: span 2;
  }

  .section-heading.split {
    display: block;
  }

  .filters {
    margin-top: 22px;
  }

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

  .event-list article.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand span {
    max-width: min(150px, calc(100vw - 150px));
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-home-panel {
    right: -4px;
    width: min(260px, calc(100vw - 32px));
    min-width: 0;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 84px 16px 30px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(17, 19, 24, 0.52), rgba(17, 19, 24, 0.92)),
      linear-gradient(90deg, rgba(17, 19, 24, 0.74), rgba(17, 19, 24, 0.3));
  }

  h1 {
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(28px, 8.6vw, 38px);
    line-height: 1.04;
  }

  h3 {
    font-size: 20px;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero-copy,
  .intro-grid p:last-child,
  .pricing-copy > p,
  .contact p,
  .cv-copy > p {
    font-size: 16px;
  }

  .hero-actions,
  .pricing-actions,
  .mou-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn,
  .contact-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-inline: 16px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-band,
  .showcase,
  .blog-section,
  .packages,
  .pricing-section,
  .clients-section,
  .team-section,
  .live-suite,
  .cv-section,
  .mou-section,
  .contact {
    padding: 56px 0;
  }

  .services,
  .process {
    padding: 46px 0 62px;
  }

  .metrics,
  .service-grid,
  .live-feature-grid,
  .event-list,
  .timeline,
  .work-grid,
  .blog-grid,
  .cv-services,
  .mou-points {
    grid-template-columns: 1fr;
  }

  .team-slider {
    grid-auto-columns: minmax(0, calc(100vw - 48px));
    gap: 14px;
    padding-inline: 0;
  }

  .team-card img {
    height: min(420px, 112vw);
    aspect-ratio: auto;
  }

  .client-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-block: 16px 24px;
  }

  .client-track {
    gap: 12px;
    animation-duration: 64s;
  }

  .client-track img {
    flex: 0 0 auto;
    width: 142px;
    height: 88px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(17, 19, 24, 0.07);
  }

  .clients-section .section-heading {
    margin-bottom: 18px;
  }

  .clients-section .section-note {
    max-width: none;
    margin-top: 16px;
  }

  .work-card.featured {
    grid-column: auto;
  }

  .event-list article.wide {
    grid-column: auto;
  }

  .service-grid article,
  .live-feature-grid article,
  .event-list article,
  .timeline article,
  .package-grid article {
    min-height: auto;
  }

  .service-number,
  .timeline span {
    margin-bottom: 34px;
  }

  .live-feature-grid span {
    margin-bottom: 24px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-card strong {
    font-size: clamp(54px, 18vw, 72px);
  }

  .pricing-card li {
    font-size: 14px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 390px) {
  .brand span {
    max-width: 118px;
  }

  .mobile-home-toggle {
    padding-inline: 12px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  h2 {
    font-size: clamp(26px, 8.2vw, 34px);
  }

  .client-track img {
    width: 128px;
    height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
    transform: none;
  }
}
