:root {
  --ink: #101827;
  --muted: #5f6b7a;
  --line: #dce3ec;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --navy: #07111f;
  --navy-2: #0e1d31;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --green: #22c55e;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 227, 236, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  height: 48px;
  width: auto;
}

.brand span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  color: #263241;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a.active {
  background: #eef5ff;
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.btn:hover {
  filter: brightness(0.95);
}

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

.btn.dark {
  background: #102033;
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid #d8eaff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.82) 42%, rgba(7, 17, 31, 0.25) 100%),
    url("images/TVStudio/banner-1.png") center / cover no-repeat;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 820px;
}

.hero p {
  color: #d7e2ef;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 720px;
  margin: 0 0 30px;
}

.hero-actions,
.action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.hero-panel img {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
}

.metric strong {
  display: block;
  font-size: 1.25rem;
}

.metric span {
  color: #aebfd3;
  font-size: 0.83rem;
}

section {
  padding: 84px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 14px 0 16px;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.dark-section {
  background: var(--navy);
  color: white;
}

.dark-section .lead,
.dark-section p {
  color: #aebfd3;
}

.soft-section {
  background: var(--soft);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.dark-section .card,
.dark-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.card i,
.tile i {
  color: var(--blue);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.dark-section .card i {
  color: var(--cyan);
}

.card p,
.tile p {
  color: var(--muted);
  margin: 0;
}

.dark-section .card p {
  color: #aebfd3;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.media-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0f172a;
}

.media-frame img {
  width: 100%;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.feature-row i {
  color: var(--green);
  margin-top: 4px;
}

.feature-row strong {
  display: block;
  line-height: 1.3;
}

.feature-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.dark-section .feature-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.dark-section .feature-row span {
  color: #aebfd3;
}

.product-shot {
  padding: 10px;
  background: #0f172a;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.product-shot img {
  border-radius: 6px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.timeline div {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline strong {
  display: block;
  color: white;
  margin-bottom: 8px;
}

.timeline span {
  color: #aebfd3;
  font-size: 0.94rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.logo-item {
  min-height: 82px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.logo-item img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.contact-band {
  background: linear-gradient(135deg, #0b1525 0%, #132944 100%);
  color: white;
  padding: 72px 0;
}

.contact-band .split {
  align-items: center;
}

.contact-band p {
  color: #b8c8da;
}

.site-footer {
  background: #07111f;
  color: #b8c8da;
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.site-footer img {
  height: 46px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer a {
  color: #d7e2ef;
  text-decoration: none;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer h4 {
  color: white;
  margin: 0 0 12px;
}

.copyright {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #7f91a8;
}

.page-hero {
  background: linear-gradient(135deg, #07111f 0%, #122742 100%);
  color: white;
  padding: 84px 0;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 900px;
  margin: 18px 0;
}

.page-hero p {
  color: #b8c8da;
  font-size: 1.18rem;
  max-width: 760px;
}

.module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.module:nth-child(even) .module-copy {
  order: 2;
}

.module-copy p {
  color: var(--muted);
}

.caption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.service-page .card {
  min-height: 250px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .module,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .module:nth-child(even) .module-copy {
    order: initial;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 78px 14px auto 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    padding: 48px 0 30px;
  }

  .hero-grid {
    gap: 26px;
  }

  .metric-strip,
  .timeline,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 58px 0;
  }

  .hero-actions .btn,
  .action-row .btn {
    width: 100%;
  }

  .brand span {
    display: none;
  }
}
