:root {
  --bg: #ffffff;
  --text: #080808;
  --muted: #5a5a5a;
  --border: #d8d8d8;
  --blue: #146ef5;
  --blue-dark: #0055d4;
  --shadow: rgba(0, 0, 0, 0.09) 0px 3px 7px, rgba(0, 0, 0, 0.08) 0px 13px 13px,
    rgba(0, 0, 0, 0.04) 0px 30px 18px, rgba(0, 0, 0, 0.01) 0px 54px 22px,
    rgba(0, 0, 0, 0) 0px 84px 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 216, 216, 0.7);
}

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

.brand,
.nav-links {
  flex-shrink: 0;
}

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

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-sub {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}

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

.section {
  padding: 84px 0;
}

.hero {
  padding-top: 62px;
}

.hero-grid,
.hero-grid,
.split,
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.hero h1,
.section h2 {
  margin: 12px 0 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  max-width: 11ch;
}

.section h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.eyebrow,
.highlight-label,
.service-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.lead,
.content-card p,
.service-card p,
.highlight p,
.contact-card p,
.feature-list {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  background: #fff;
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-stats div,
.contact-details div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.hero-stats strong,
.contact-details strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.hero-stats span,
.contact-details span {
  color: var(--muted);
  font-size: 13px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 22px;
}

.visual-note {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.visual-frame {
  border: 1px dashed #9cb8e8;
  background: linear-gradient(135deg, rgba(20, 110, 245, 0.08), rgba(237, 82, 203, 0.08));
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.visual-frame-large {
  aspect-ratio: 4 / 3;
}

.visual-frame-small {
  aspect-ratio: 4 / 3;
}

.visual-frame img,
.summary-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.split,
.split-reverse {
  align-items: start;
}

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

.content-card,
.highlight,
.contact-card {
  padding: 32px;
  height: 100%;
}

.summary-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px dashed #9cb8e8;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 110, 245, 0.08), rgba(237, 82, 203, 0.08));
  margin: 18px 0;
  overflow: hidden;
  position: relative;
}

.channels-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  align-items: stretch;
}

.service-card {
  padding: 20px;
  display: block;
  min-height: 100%;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.service-image-placeholder {
  min-height: 140px;
  margin-bottom: 14px;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-video-shell {
  background: #07111f;
}

.page-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.55);
}

.page-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.82), rgba(7, 17, 31, 0.45));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 72px 0;
}

.page-hero-copy {
  color: #fff;
  max-width: 620px;
}

.page-hero-copy h1 {
  font-size: clamp(44px, 5.4vw, 72px);
  color: #fff;
  margin: 12px 0 18px;
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero-copy .button-secondary {
  color: var(--text);
}

.page-image-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.page-image-slot {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 110, 245, 0.12), rgba(237, 82, 203, 0.08));
}

.page-image-slot img,
.page-gallery-placeholder img,
.service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-image-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.page-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-gallery-section {
  padding-top: 0;
}

.page-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: -18px;
}

.page-gallery-slot {
  padding: 0;
  min-height: 100%;
}

.page-gallery-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 1px dashed #9cb8e8;
  background: linear-gradient(135deg, rgba(20, 110, 245, 0.08), rgba(237, 82, 203, 0.05));
  overflow: hidden;
}

.page-gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-index {
  margin-bottom: 16px;
}

.service-image-placeholder {
  min-height: 180px;
  border-radius: 8px;
  border: 1px dashed #9cb8e8;
  background: linear-gradient(135deg, rgba(20, 110, 245, 0.06), rgba(0, 0, 0, 0.02));
  display: grid;
  place-items: center;
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-list {
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 12px;
}

.contact-card {
  gap: 0;
  align-items: stretch;
}

.contact-card-redesigned {
  grid-template-columns: minmax(0, 1.15fr) 1px minmax(0, 0.85fr);
  padding: 32px;
}

.contact-intro {
  padding-right: 28px;
}

.contact-card h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  max-width: 12ch;
  margin-top: 12px;
}

.contact-card p {
  max-width: 46ch;
  margin-bottom: 0;
}

.contact-accent {
  width: 1px;
  background: linear-gradient(180deg, rgba(20, 110, 245, 0), rgba(20, 110, 245, 0.35), rgba(20, 110, 245, 0));
}

.contact-panels {
  display: grid;
  gap: 14px;
  align-content: center;
  padding-left: 28px;
}

.contact-panel {
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.contact-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.contact-panel strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .hero-grid,
  .split,
  .split-reverse,
  .contact-card,
  .services-grid,
  .page-hero-inner,
  .page-two-col,
  .page-gallery {
    grid-template-columns: 1fr;
  }

  .page-gallery-slot {
    min-height: 240px;
  }

  .service-image-placeholder {
    min-height: 150px;
  }

  .contact-card-redesigned {
    grid-template-columns: 1fr;
  }

  .contact-accent {
    display: none;
  }

  .contact-intro {
    padding-right: 0;
  }

  .contact-panels {
    padding-left: 0;
  }

  .highlight,
  .contact-card {
    height: auto;
  }

  .summary-image-placeholder {
    aspect-ratio: 1 / 1;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-inner {
    padding: 48px 0;
  }

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

  .contact-card h2 {
    max-width: none;
  }

  .contact-card p {
    max-width: none;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 64px 0;
  }

  .hero-stats,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .highlight,
  .contact-card,
  .service-card,
  .hero-visual {
    padding: 22px;
  }
}

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

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

  .hero h1 {
    font-size: 42px;
  }
}
