@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --line: #d7dde5;
  --paper: #f8fafc;
  --white: #ffffff;
  --charcoal: #101820;
  --steel: #263645;
  --red: #e2242f;
  --red-dark: #b91420;
  --teal: #147c84;
  --gold: #c6aa62;
  --sand: #d5cca8;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.16);
  --radius: 8px;
  --max: 1180px;
  --font-sans: "Manrope", "Aptos", "SF Pro Text", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Aptos Display", "SF Pro Display", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
.page-title,
.brand__text {
  font-family: var(--font-display);
}

.topbar {
  background: #eef2f6;
  border-bottom: 1px solid var(--line);
  color: #3f4b59;
  font-size: 0.86rem;
}

.topbar__inner,
.nav__inner,
.section__inner,
.footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.topbar__link,
.footer__contact-link,
.contact-action,
.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__link svg,
.footer__contact-link svg,
.contact-action svg,
.nav__mobile-cta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar__link {
  color: #3f4b59;
  font-weight: 700;
  transition: color 160ms ease;
}

.topbar__link:hover {
  color: var(--red);
}

.topbar__link--whatsapp {
  color: #128c7e;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 24, 32, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(226, 36, 47, 0.34);
}

.brand__mark::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.brand__text {
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

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

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(226, 36, 47, 0.28);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--dark {
  color: #fff;
  background: var(--charcoal);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.btn--light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--charcoal);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.96) 0%, rgba(16, 24, 32, 0.82) 39%, rgba(16, 24, 32, 0.34) 100%),
    var(--hero-image, none) center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -7%;
  bottom: -16%;
  width: 44%;
  height: 40%;
  min-width: 360px;
  content: "";
  background: linear-gradient(135deg, rgba(226, 36, 47, 0.84), rgba(20, 124, 132, 0.52));
  clip-path: polygon(20% 0, 100% 0, 82% 100%, 0 100%);
  opacity: 0.9;
}

.hero--compact {
  min-height: 380px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  max-width: 720px;
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero p {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section--white {
  background: #fff;
}

.section--dark {
  color: #fff;
  background: var(--charcoal);
}

.section--steel {
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), var(--steel));
}

.section--tight {
  padding: 58px 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section__head h2,
.split__copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section__head p,
.split__copy p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section--dark .section__head p,
.section--steel .section__head p,
.section--dark .split__copy p,
.section--steel .split__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.metric-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.metric-strip__grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow);
}

.metric {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

.grid {
  display: grid;
  gap: 22px;
}

.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));
}

.service-card,
.project-card,
.post-card,
.video-card,
.contact-panel,
.quote-panel,
.admin-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.08);
}

.service-card__media,
.project-card__media,
.post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9e0e7;
}

.service-card__media img,
.project-card__media img,
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body,
.project-card__body,
.post-card__body,
.video-card__body {
  padding: 22px;
}

.service-card__body h3,
.project-card__body h3,
.post-card__body h3,
.video-card__body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.22;
}

.service-card__body p,
.project-card__body p,
.post-card__body p,
.video-card__body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #334155;
  background: #eef2f6;
  font-size: 0.78rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: #3f4b59;
}

.check-list li::before {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  content: "✓";
  font-weight: 900;
}

.section--dark .check-list li,
.section--steel .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.capability-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.capability-band__copy {
  padding: 42px;
}

.capability-band__copy h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.12;
}

.capability-band__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.capability-band__media {
  min-height: 390px;
}

.capability-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.logo-cloud span {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #3f4b59;
  font-size: 0.88rem;
  font-weight: 850;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-weight: 850;
  cursor: pointer;
}

.filter-bar button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.watch-player {
  background: #05070a;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.watch-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.watch-player__body {
  padding: 22px;
}

.watch-player__body h2 {
  margin: 0;
  font-size: 1.55rem;
}

.watch-player__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.watch-rail {
  display: grid;
  gap: 14px;
}

.video-card {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 0;
  cursor: pointer;
  text-align: left;
}

.video-card.is-active {
  border-color: var(--red);
}

.video-card__thumb {
  position: relative;
  min-height: 100%;
  background: #d9e0e7;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  min-height: 104px;
  object-fit: cover;
}

.video-card__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
}

.video-card__body {
  padding: 12px;
}

.video-card__body h3 {
  font-size: 0.96rem;
}

.video-card__body p {
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel,
.quote-panel {
  padding: 26px;
}

.contact-panel h2,
.quote-panel h2,
.admin-panel h2 {
  margin: 0 0 16px;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-list span {
  display: block;
  margin-top: 4px;
  font-weight: 850;
}

.contact-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-action {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  line-height: 1;
}

.contact-action--call {
  color: var(--red);
}

.contact-action--whatsapp {
  color: #128c7e;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: #3f4b59;
  font-size: 0.86rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-status {
  margin-top: 12px;
  color: var(--teal);
  font-weight: 850;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0b1118;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 58px 0 34px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.footer p {
  margin: 0;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__contact-link {
  width: fit-content;
}

.footer__contact-link--whatsapp {
  color: #8ce6c3 !important;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.admin-shell {
  min-height: 100vh;
  background: #eef2f6;
}

.admin-top {
  background: var(--charcoal);
  color: #fff;
  border-bottom: 4px solid var(--red);
}

.admin-top__inner {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-main {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.login-panel {
  width: min(460px, 100%);
  margin: 72px auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-tab {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #344054;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.admin-tab.is-active {
  color: #fff;
  background: var(--red);
}

.admin-panel {
  padding: 22px;
}

.admin-panel + .admin-panel {
  margin-top: 20px;
}

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

.admin-stat {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-stat strong {
  display: block;
  font-size: 2rem;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: #475467;
  background: #f8fafc;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.small-btn {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #344054;
  font-weight: 850;
  cursor: pointer;
}

.small-btn--danger {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 24px;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.nav-open .nav__links {
    display: flex;
  }

  .nav__links a {
    padding: 14px;
  }

  .nav__actions .btn {
    display: none;
  }

  .hero h1,
  .page-title {
    font-size: 3.15rem;
  }

  .metric-strip__grid,
  .grid--4,
  .grid--3,
  .grid--2,
  .split,
  .split--reverse,
  .capability-band,
  .video-layout,
  .contact-grid,
  .footer__inner,
  .admin-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    margin-top: 0;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section__head {
    align-items: start;
    flex-direction: column;
  }

  .split__media {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .nav__inner,
  .section__inner,
  .footer__inner,
  .hero__inner,
  .metric-strip__grid,
  .admin-main,
  .admin-top__inner {
    width: auto !important;
    max-width: none !important;
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero h1,
  .page-title,
  .section__head h2,
  .split__copy h2,
  .capability-band__copy h2,
  .hero p,
  .section__head p,
  .split__copy p {
    max-width: calc(100vw - 28px) !important;
  }

  .service-card,
  .project-card,
  .post-card,
  .contact-panel,
  .quote-panel,
  .capability-band,
  .split__media,
  .watch-player {
    max-width: calc(100vw - 28px);
  }

  .hero {
    min-height: 680px;
  }

  .hero h1,
  .page-title {
    font-size: 2.35rem;
  }

  .section {
    padding: 64px 0;
  }

  .section__head h2,
  .split__copy h2 {
    font-size: 1.9rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-template-columns: 132px 1fr;
  }

  .capability-band__copy,
  .contact-panel,
  .quote-panel,
  .admin-panel {
    padding: 20px;
  }
}

/* Premium responsive refresh */
body {
  background:
    linear-gradient(180deg, #f5f7fa 0%, #eef3f7 44%, #f8fafc 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  background: #f7f9fb;
}

.nav {
  background: rgba(12, 18, 26, 0.96);
  box-shadow: 0 18px 45px rgba(5, 10, 18, 0.18);
}

.nav::after {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(226, 36, 47, 0), rgba(226, 36, 47, 0.9), rgba(20, 124, 132, 0.72), rgba(226, 36, 47, 0));
}

.brand__mark {
  background: linear-gradient(135deg, #f24750 0%, #d21927 58%, #99111b 100%);
}

.brand__text {
  font-size: 1.03rem;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__mobile-cta {
  display: none;
}

.btn {
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn--primary {
  background: linear-gradient(135deg, #f03a43, #cf1d29);
  box-shadow: 0 18px 42px rgba(226, 36, 47, 0.28);
}

.hero {
  min-height: min(780px, calc(100svh - 36px));
  isolation: isolate;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.98) 0%, rgba(13, 22, 31, 0.92) 42%, rgba(16, 24, 32, 0.42) 100%),
    linear-gradient(135deg, rgba(226, 36, 47, 0.26), rgba(20, 124, 132, 0.14) 46%, rgba(198, 170, 98, 0.12)),
    var(--hero-image, none) center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  right: -8%;
  bottom: -8%;
  width: 52%;
  height: 34%;
  min-width: 420px;
  background: linear-gradient(135deg, rgba(226, 36, 47, 0.86), rgba(20, 124, 132, 0.62));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__inner {
  padding: 104px 0 112px;
}

.hero--compact .hero__inner {
  padding: 86px 0;
}

.hero--compact .page-title {
  max-width: 880px;
  font-size: 3.7rem;
}

.hero:not(.hero--compact) .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 48px;
  align-items: center;
}

.hero__content {
  position: relative;
}

.hero__content::before {
  display: block;
  width: 76px;
  height: 4px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  content: "";
}

.hero h1,
.page-title {
  max-width: 820px;
  font-size: 5.2rem;
  text-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.hero p {
  font-size: 1.16rem;
}

.hero__proof {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.hero__proof::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
}

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

.hero__proof-body {
  position: relative;
  padding: 24px;
}

.hero__proof-body h2 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.18;
}

.hero__proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero__proof-grid span {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 12px;
  background: rgba(8, 13, 20, 0.46);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero__proof-grid strong {
  display: block;
  color: #fff;
  font-size: 1.46rem;
  line-height: 1;
}

.metric-strip {
  margin-top: -58px;
}

.metric-strip__grid {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d92330, #a9141d 60%, #146f76);
  box-shadow: 0 28px 70px rgba(111, 15, 23, 0.28);
}

.metric {
  position: relative;
  padding: 30px;
}

.metric::before {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.section {
  position: relative;
}

.section--white {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.section--steel {
  background:
    linear-gradient(135deg, rgba(9, 15, 23, 0.98), rgba(38, 54, 69, 0.96)),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.section__head h2,
.split__copy h2 {
  font-size: 2.72rem;
}

.service-card,
.project-card,
.post-card,
.contact-panel,
.quote-panel,
.admin-panel {
  border-color: rgba(124, 139, 158, 0.22);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.09);
}

.service-card,
.project-card,
.post-card {
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after,
.project-card::after,
.post-card::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover,
.project-card:hover,
.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 36, 47, 0.26);
  box-shadow: 0 26px 70px rgba(16, 24, 32, 0.15);
}

.service-card:hover::after,
.project-card:hover::after,
.post-card:hover::after {
  transform: scaleX(1);
}

.service-card__media,
.project-card__media,
.post-card__media {
  position: relative;
}

.service-card__media::after,
.project-card__media::after,
.post-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 13, 20, 0), rgba(8, 13, 20, 0.16));
}

.service-card__media img,
.project-card__media img,
.post-card__media img {
  transition: transform 280ms ease;
}

.service-card:hover img,
.project-card:hover img,
.post-card:hover img {
  transform: scale(1.045);
}

.service-card__body,
.project-card__body,
.post-card__body {
  padding: 24px;
}

.service-card__body .eyebrow,
.project-card__body .eyebrow,
.post-card__body .eyebrow {
  color: var(--red);
}

.tag {
  color: #1d3442;
  background: #edf5f6;
  border: 1px solid rgba(20, 124, 132, 0.14);
}

.split {
  gap: 64px;
}

.split__media {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(124, 139, 158, 0.24);
}

.split__media::after {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  content: "";
}

.capability-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(9, 15, 23, 0.98), rgba(20, 55, 66, 0.96)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  box-shadow: var(--shadow);
}

.capability-band__copy {
  padding: 52px;
}

.capability-band__media img {
  filter: saturate(1.05) contrast(1.04);
}

.video-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 28px;
}

.watch-player {
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 26px 80px rgba(16, 24, 32, 0.22);
}

.watch-player__body {
  padding: 28px;
}

.watch-rail {
  position: sticky;
  top: 98px;
}

.video-card {
  border-color: rgba(124, 139, 158, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 36, 47, 0.34);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
}

.video-card.is-active {
  border-color: rgba(226, 36, 47, 0.75);
  box-shadow: 0 16px 44px rgba(226, 36, 47, 0.15);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 124, 132, 0.12);
  outline: 0;
}

@media (max-width: 1180px) {
  .nav__links {
    gap: 2px;
  }

  .nav__links a {
    padding-inline: 10px;
  }

  .nav__actions .btn {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .nav__inner {
    min-height: 68px;
  }

  .nav__links {
    inset: 68px 14px auto 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(12, 18, 26, 0.98), rgba(27, 42, 55, 0.98)),
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  }

  body.nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 20;
    content: "";
    background: rgba(4, 8, 13, 0.58);
    backdrop-filter: blur(4px);
  }

  body.nav-open .nav {
    z-index: 40;
  }

  .nav__links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 1rem;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__mobile-cta {
    display: flex !important;
    justify-content: center;
    margin-top: 8px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--red), var(--teal)) !important;
  }

  .nav__mobile-cta--whatsapp {
    background: linear-gradient(135deg, #128c7e, #25d366) !important;
  }

  .hero {
    min-height: auto;
  }

  .hero:not(.hero--compact) .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0 88px;
  }

  .hero__proof {
    display: none;
  }

  .metric-strip {
    margin-top: -34px;
  }

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

  .metric {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

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

  .watch-rail {
    position: static;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .watch-rail .video-card {
    min-width: 260px;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .nav__inner,
  .section__inner,
  .footer__inner,
  .hero__inner,
  .metric-strip__grid,
  .admin-main,
  .admin-top__inner {
    width: min(100% - 28px, var(--max));
  }

  .brand__text {
    font-size: 0.96rem;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 13, 20, 0.95) 0%, rgba(10, 16, 24, 0.88) 54%, rgba(10, 16, 24, 0.72) 100%),
      linear-gradient(135deg, rgba(226, 36, 47, 0.22), rgba(20, 124, 132, 0.14)),
      var(--hero-image, none) center top / cover no-repeat;
  }

  .hero::after {
    right: -46%;
    bottom: -4%;
    min-width: 340px;
    height: 180px;
    opacity: 0.72;
  }

  .hero:not(.hero--compact) .hero__inner,
  .hero__inner {
    padding: 56px 0 72px;
  }

  .hero--compact .hero__inner {
    padding: 52px 0 58px;
  }

  .hero h1,
  .page-title {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .hero--compact .page-title {
    font-size: 2.25rem;
    line-height: 1.07;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__badges {
    gap: 8px;
    margin-top: 24px;
  }

  .pill {
    min-height: 30px;
    font-size: 0.8rem;
  }

  .hero__proof {
    display: none;
  }

  .metric-strip {
    margin-top: -24px;
  }

  .metric-strip__grid {
    display: flex;
    overflow-x: auto;
    border-radius: var(--radius);
    scroll-snap-type: x mandatory;
  }

  .metric {
    min-width: 58%;
    padding: 22px;
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .metric strong {
    font-size: 2rem;
  }

  .section {
    padding: 58px 0;
  }

  .section__head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section__head h2,
  .split__copy h2,
  .capability-band__copy h2 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .grid,
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card__media,
  .project-card__media,
  .post-card__media {
    aspect-ratio: 16 / 9;
  }

  .service-card__body,
  .project-card__body,
  .post-card__body {
    padding: 18px;
  }

  .split {
    gap: 28px;
  }

  .split__media {
    min-height: 300px;
  }

  .split__media::after {
    inset: 10px;
  }

  .capability-band__copy {
    padding: 24px;
  }

  .capability-band__media {
    min-height: 240px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-bar button {
    flex: 0 0 auto;
  }

  .video-layout {
    gap: 18px;
  }

  .watch-player__body {
    padding: 18px;
  }

  .watch-player__body h2 {
    font-size: 1.25rem;
  }

  .watch-rail {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .watch-rail .video-card,
  .video-card {
    min-width: 0;
    grid-template-columns: 126px 1fr;
  }

  .video-card__body h3 {
    font-size: 0.92rem;
  }

  .contact-panel,
  .quote-panel,
  .admin-panel {
    padding: 18px;
  }

  .footer__inner {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .page-title {
    font-size: 2.08rem;
  }

  .hero--compact .page-title {
    font-size: 1.98rem;
  }

  .metric {
    min-width: 72%;
  }

  .watch-rail .video-card,
  .video-card {
    grid-template-columns: 112px 1fr;
  }
}

/* Final visibility + mobile polish */
.contact-panel,
.quote-panel,
.admin-panel {
  color: var(--ink);
}

.contact-panel p,
.quote-panel p,
.admin-panel p {
  color: var(--muted);
}

.section--dark .contact-panel,
.section--steel .contact-panel {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, rgba(226, 36, 47, 0.18), rgba(20, 124, 132, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.section--dark .contact-panel::before,
.section--steel .contact-panel::before {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  content: "";
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--red), var(--teal));
  box-shadow: 0 18px 42px rgba(226, 36, 47, 0.26);
}

.section--dark .contact-panel::after,
.section--steel .contact-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.22;
}

.section--dark .contact-panel h2,
.section--steel .contact-panel h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.section--dark .contact-panel p,
.section--steel .contact-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section--steel .section__head .btn,
.section--dark .section__head .btn {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.section--steel .grid--3,
.section--dark .grid--3 {
  align-items: stretch;
}

@media (max-width: 980px) {
  .section--dark .contact-panel,
  .section--steel .contact-panel {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .section--dark .contact-panel,
  .section--steel .contact-panel {
    min-height: 176px;
    padding: 82px 18px 20px;
  }

  .section--dark .contact-panel::before,
  .section--steel .contact-panel::before {
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
  }

  .section--steel .section__head .btn,
  .section--dark .section__head .btn {
    width: 100%;
  }

  .section--steel .section__head,
  .section--dark .section__head {
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .nav__inner,
  .section__inner,
  .footer__inner,
  .hero__inner,
  .metric-strip__grid,
  .admin-main,
  .admin-top__inner {
    width: auto !important;
    max-width: none !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

  .hero h1,
  .page-title {
    max-width: calc(100vw - 28px) !important;
    font-size: 2.2rem !important;
    line-height: 1.08 !important;
  }

  .hero--compact .page-title {
    font-size: 2.05rem !important;
  }

  .section__head h2,
  .split__copy h2,
  .capability-band__copy h2 {
    max-width: calc(100vw - 28px) !important;
    font-size: 1.45rem !important;
    line-height: 1.18 !important;
  }

  .hero p,
  .section__head p,
  .split__copy p,
  .service-card__body p,
  .project-card__body p,
  .post-card__body p {
    max-width: calc(100vw - 28px) !important;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .page-title {
    font-size: 1.95rem !important;
  }

  .hero--compact .page-title {
    font-size: 1.86rem !important;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .page-title {
    max-width: 12ch !important;
  }

  .hero--compact .page-title {
    max-width: 14ch !important;
  }

  .section__head h2,
  .split__copy h2,
  .capability-band__copy h2 {
    max-width: 20ch !important;
  }

  .hero p,
  .section__head p,
  .split__copy p,
  .service-card__body p,
  .project-card__body p,
  .post-card__body p {
    max-width: 32ch !important;
  }

  .tag-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
    align-items: flex-start;
    overflow: visible;
  }

  .tag {
    flex: 0 0 auto;
    justify-self: start;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }

  .check-list li {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .topbar__inner,
  .nav__inner,
  .section__inner,
  .footer__inner,
  .hero__inner,
  .metric-strip__grid,
  .admin-main,
  .admin-top__inner {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .grid,
  .service-card,
  .project-card,
  .post-card,
  .contact-panel,
  .quote-panel,
  .admin-panel,
  .split__copy,
  .check-list,
  .footer__inner > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .check-list li {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .contact-panel h2,
  .contact-panel p,
  .footer p,
  .footer a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section--steel .contact-panel h2,
  .section--dark .contact-panel h2 {
    max-width: 16ch;
  }

  .section--steel .contact-panel p,
  .section--dark .contact-panel p,
  .footer p {
    max-width: 29ch;
  }

  .check-list {
    max-width: 32ch !important;
  }

  .check-list li {
    max-width: 32ch;
  }
}

/* Public About repair + admin media upload controls */
.split--compact {
  overflow: visible;
}

.split--compact .split__copy {
  min-width: 0;
  max-width: 680px;
}

.split--compact .split__media {
  width: 100%;
  max-height: 430px;
  background: #111827;
}

.split--compact .split__media img {
  object-fit: cover;
  object-position: center;
}

.split__media--featured {
  isolation: isolate;
  background: #101820;
}

.split__media--featured::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0) 42%, rgba(16, 24, 32, 0.82) 100%);
  content: "";
}

.split__media--featured .media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  max-width: 430px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(16, 24, 32, 0.82);
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.28);
  backdrop-filter: blur(10px);
}

.media-badge span,
.media-badge small {
  display: block;
}

.media-badge span {
  margin-bottom: 5px;
  color: #a5f3e6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media-badge strong {
  display: block;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 900;
  line-height: 1.2;
}

.media-badge small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.textarea--short {
  min-height: 92px !important;
}

.field-help,
.upload-empty {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.upload-thumb {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.upload-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d9e0e7;
}

.upload-thumb figcaption {
  padding: 8px 10px;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.upload-video-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: 12px;
  align-items: start;
}

.upload-video-preview video,
.upload-video-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1118;
}

.admin-panel input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px dashed #b8c4d3;
  border-radius: 8px;
  background: #f8fafc;
  color: #344054;
}

@media (max-width: 640px) {
  .split--compact .split__copy {
    max-width: 100%;
  }

  .split--compact .split__media {
    max-height: none;
  }

  .upload-video-preview {
    grid-template-columns: 1fr;
  }
}

/* Compact footer, service icons, and sharper type polish */
body {
  font-weight: 500;
}

.eyebrow,
.nav__links a,
.btn,
.tag,
.pill,
.field label {
  font-weight: 800;
}

.hero h1,
.page-title,
.section__head h2,
.split__copy h2,
.capability-band__copy h2 {
  font-weight: 900;
  letter-spacing: 0;
}

.section--compact {
  padding: 66px 0;
}

.split--compact {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: 34px;
}

.split--compact .split__copy h2 {
  font-size: clamp(2.15rem, 3.3vw, 3.35rem);
}

.split--compact .split__media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.split--compact .split__media img {
  object-position: center top;
}

.service-card__body {
  display: grid;
  align-content: start;
}

.service-card__title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.service-card__title h3 {
  margin: 0;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--teal));
  box-shadow: 0 14px 30px rgba(20, 124, 132, 0.18);
}

.service-card__icon svg,
.footer__link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__inner {
  grid-template-columns: minmax(230px, 1.15fr) minmax(150px, 0.72fr) minmax(220px, 0.95fr) minmax(270px, 1.05fr);
  gap: 22px;
  padding: 34px 0 24px;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer p,
.footer a {
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer__links {
  display: grid;
  gap: 7px;
}

.footer__link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 !important;
}

.footer__link svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.48);
}

.footer__contact-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 0 9px;
}

.footer__contact-link {
  min-height: 34px;
  display: inline-flex !important;
  justify-content: center;
  gap: 7px;
  margin: 0 !important;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  font-weight: 800;
}

.footer__contact-link--whatsapp {
  color: #92f0ca !important;
}

.footer__bottom {
  padding: 12px 0;
}

.contact-actions {
  flex-wrap: nowrap;
  align-items: center;
}

.contact-number-inline {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .split--compact {
    grid-template-columns: 1fr;
  }

  .split--compact .split__media {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 640px) {
  .section--compact {
    padding: 48px 0;
  }

  .split--compact {
    gap: 22px;
  }

  .split--compact .split__media {
    aspect-ratio: 16 / 11;
  }

  .service-card__title {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .service-card__icon {
    width: 38px;
    height: 38px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0 22px;
  }

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

  .footer__contact-row {
    max-width: 100%;
  }

  .footer__contact-link {
    flex: 1 1 0;
  }

  .metric-strip__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    overflow: hidden !important;
  }

  .metric {
    min-width: 0 !important;
    padding: 20px !important;
  }

  .metric strong {
    font-size: 1.85rem !important;
  }

  .contact-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-number-inline {
    grid-column: 1 / -1;
  }
}

/* Fitted media polish */
.service-card__media {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(213, 204, 168, 0.55), rgba(238, 242, 246, 0.9)),
    #eef2f6;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-card:hover .service-card__media img {
  transform: none;
}

.capability-band__media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #101820;
}

.capability-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.capability-band__media--video::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.02), rgba(16, 24, 32, 0.36));
  content: "";
}

.play-chip {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(226, 36, 47, 0.92);
  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.32);
  transform: translate(-50%, -50%);
}

.play-chip::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ffffff;
  content: "";
}

@media (max-width: 640px) {
  .service-card__media,
  .capability-band__media {
    aspect-ratio: 16 / 9;
  }

  .play-chip {
    width: 54px;
    height: 54px;
  }
}

/* Admin studio refresh */
.admin-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(226, 36, 47, 0.13), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #e8eef5 46%, #f4f7fb 100%);
}

.admin-top {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 32, 0.96);
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.18);
  backdrop-filter: blur(14px);
}

.admin-top__inner {
  width: min(1360px, calc(100% - 40px));
  min-height: 74px;
}

.admin-top__caption {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 750;
}

.admin-main {
  width: min(1360px, calc(100% - 40px));
  padding: 30px 0 64px;
}

.admin-grid {
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 24px;
}

.admin-sidebar {
  position: sticky;
  top: 98px;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.98), rgba(31, 43, 56, 0.98)),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
}

.admin-sidebar__card {
  padding: 8px 6px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar__card span {
  display: block;
  color: #a5f3e6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-sidebar__card strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.24rem;
  line-height: 1.2;
}

.admin-sidebar__card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.45;
}

.admin-tab {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.admin-tab span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #a5f3e6;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-tab:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.admin-tab.is-active {
  border-color: rgba(226, 36, 47, 0.48);
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(226, 36, 47, 0.22);
}

.admin-tab.is-active span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

#adminContent {
  display: grid;
  gap: 22px;
}

.admin-page-head {
  padding: 26px 28px;
  border: 1px solid rgba(124, 139, 158, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    linear-gradient(90deg, rgba(226, 36, 47, 0.1), rgba(20, 124, 132, 0.1));
  box-shadow: 0 18px 55px rgba(16, 24, 32, 0.09);
}

.admin-page-head h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.admin-page-head p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-panel,
.login-panel {
  border: 1px solid rgba(124, 139, 158, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 65px rgba(16, 24, 32, 0.1);
}

.admin-panel {
  padding: clamp(20px, 2.4vw, 32px);
}

.admin-panel + .admin-panel {
  margin-top: 0;
}

.admin-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.admin-stats {
  gap: 16px;
}

.admin-stat {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(124, 139, 158, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(16, 24, 32, 0.08);
}

.admin-stat::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  content: "";
}

.admin-stat strong {
  color: var(--ink);
  font-size: 2.28rem;
}

.admin-stat span {
  color: var(--muted);
  font-weight: 800;
}

.field {
  gap: 7px;
}

.field label {
  color: #344054;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  min-height: 50px;
  border-color: #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(16, 24, 32, 0.02);
}

.field textarea {
  min-height: 136px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #98a2b3;
}

.field-caption {
  margin: 0;
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.45;
}

.admin-panel input[type="file"] {
  min-height: 58px;
  border: 1px dashed #9fb0c5;
  background: linear-gradient(180deg, #ffffff, #f5f8fb);
}

.upload-preview-grid {
  max-width: 900px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.upload-thumb {
  position: relative;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.08);
}

.upload-thumb img {
  aspect-ratio: 16 / 9;
}

.upload-video-preview {
  max-width: 860px;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 0.45fr);
  align-items: stretch;
}

.upload-video-item {
  position: relative;
  min-width: 0;
  margin: 0;
}

.upload-video-preview video,
.upload-video-preview img {
  min-height: 210px;
  border-radius: 8px;
}

.upload-remove {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(185, 20, 32, 0.94);
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.upload-remove:hover {
  background: #98111b;
}

.upload-empty {
  min-height: 138px;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c4d3;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

@media (max-width: 980px) {
  .admin-top__caption {
    display: none;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .admin-top__inner,
  .admin-main {
    width: auto;
    margin-left: 14px;
    margin-right: 14px;
  }

  .admin-page-head,
  .admin-panel,
  .login-panel {
    padding: 20px;
  }

  .admin-sidebar {
    padding: 14px;
  }

  .admin-tab {
    min-height: 48px;
  }

  .upload-preview-grid {
    grid-template-columns: 1fr;
  }

  .upload-video-preview {
    grid-template-columns: 1fr;
  }
}
