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

:root {
  --ink: #06143b;
  --navy: #000022;
  --blue: #0437a7;
  --cyan: #03c9f5;
  --orange: #ff7800;
  --paper: #f7fbff;
  --muted: #65728a;
  --radius: 0px;
  --shadow: 0 30px 90px rgba(0, 20, 80, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 5%, rgba(3, 201, 245, .18), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(255, 120, 0, .12), transparent 26rem),
    linear-gradient(180deg, #f8fcff 0%, #edf6ff 45%, #fff 100%);
}

p,
h1,
h2,
h3,
h4,
strong,
small,
a,
span {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
.brand strong,
.main-nav,
.rk-title,
.rk-eyebrow,
.section-kicker,
.section-heading span {
  font-family: "Sora", "Segoe UI", sans-serif;
}

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

.site-shell {
  overflow: hidden;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 34, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 40px;
  color: #fff;
  background: linear-gradient(90deg, #0a1736, #1b5c8d);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: .04em;
}

.topbar-left span,
.topbar-right span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-frame {
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px 14px 14px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: none;
  transform: none;
  backdrop-filter: blur(18px);
  overflow: visible;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.nav-frame.nav-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  margin-left: -2px;
}

.brand img {
  width: 78px;
  height: 78px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--blue);
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #223252;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color .25s ease, transform .25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(3, 92, 210, .25);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.rk-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 35px rgba(3, 92, 210, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta {
  min-height: 48px;
  padding: 0 22px;
  font-size: 12px;
}

.nav-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.nav-search input,
.search-page-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  background: transparent;
}

.nav-search-toggle,
.nav-search-panel button,
.search-page-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease;
}

.nav-search-toggle {
  width: 46px;
  height: 46px;
  font-size: 16px;
}

.nav-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  align-items: stretch;
  width: min(360px, 42vw);
  border: 1px solid rgba(4, 55, 167, .14);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 50px rgba(0, 20, 80, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
}

.nav-search.is-open .nav-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-search input {
  height: 46px;
  padding: 0 14px;
}

.nav-search input::placeholder,
.search-page-form input::placeholder {
  color: #7a879f;
}

.nav-search-panel button {
  width: 48px;
  height: 46px;
  flex: 0 0 48px;
}

.nav-cta:hover,
.nav-search-toggle:hover,
.nav-search-panel button:hover,
.rk-button:hover,
.contact-form button:hover,
.search-page-form button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 25px 45px rgba(3, 92, 210, .36);
}

.hero {
  position: relative;
  min-height: 590px;
  background: var(--navy);
}

.hero-progress {
  position: absolute;
  left: 35px;
  right: auto;
  bottom: 92px;
  z-index: 6;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(90px, 1fr);
  gap: 8px;
  width: min(520px, calc(100% - 70px));
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-progress-segment {
  height: 5px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}

.hero-progress-segment.is-active {
  background: rgba(255, 255, 255, .24);
}

.hero-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff9b38, var(--orange) 55%, #ffbf7b);
  box-shadow: 0 0 24px rgba(255, 120, 0, .7);
}

.hero-progress-bar.is-animating {
  animation: heroProgress 7.5s linear forwards;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 34, .78), rgba(0, 20, 70, .42), rgba(0, 0, 34, .18)),
    radial-gradient(circle at 72% 46%, transparent 0, rgba(3, 201, 245, .2) 30%, transparent 58%);
  content: "";
}

.rev_slider_wrapper {
  position: relative;
  z-index: 4;
  min-height: 590px;
}

.rev_slider,
.rev_slider > ul,
.rev_slider > ul > li {
  min-height: 590px !important;
}

.rev-slidebg {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.04);
}

.rk-eyebrow {
  z-index: 50;
  padding: 12px 24px;
  border-left: 5px solid var(--orange);
  color: #fff;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(0, 0, 34, .58);
  white-space: normal !important;
  min-width: 78vw !important;
  max-width: 78vw !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual;
}

.rk-title {
  display: none !important;
}

.rk-copy {
  z-index: 50;
  display: block;
  color: #fff;
  font-weight: 500;
  max-width: none;
  width: 100%;
  min-width: min(1040px, 90vw);
  text-wrap: pretty;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

@media (min-width: 681px) {
  .hero .tp-parallax-wrap {
    margin-top: 10px !important;
  }

  .hero .rk-eyebrow,
  .hero .rk-copy {
    max-width: none !important;
  }
}

.rk-button {
  position: relative;
  z-index: 70;
  min-height: 54px;
  padding: 0 28px;
  pointer-events: auto !important;
}

.rk-link-button {
  text-decoration: none;
  cursor: pointer;
}

.rk-link-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .92);
  outline-offset: 3px;
}

.tp-caption,
.tp-caption a {
  pointer-events: auto !important;
}

.hero-brand-mark {
  position: absolute;
  top: 50%;
  right: 4%;
  z-index: 2;
  color: rgba(255, 255, 255, .09);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(92px, 14vw, 200px);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateY(-50%);
  animation: heroBrandPulse 11s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid-motion {
  position: absolute;
  inset: 12% 5% 12% auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(42px, 72px));
  gap: 18px;
  align-content: center;
  pointer-events: none;
}

.hero-grid-motion span {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(145deg, rgba(255, 255, 255, .02), rgba(3, 201, 245, .08));
  box-shadow: inset 0 0 28px rgba(255, 255, 255, .04);
  animation: heroTileFloat 9s ease-in-out infinite;
}

.hero-grid-motion span:nth-child(2),
.hero-grid-motion span:nth-child(5) {
  animation-delay: -2s;
}

.hero-grid-motion span:nth-child(3),
.hero-grid-motion span:nth-child(6) {
  animation-delay: -4s;
}

.hero-mobile-wordmark {
  display: none;
  position: absolute;
  right: 0;
  bottom: 56px;
  left: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.hero-mobile-wordmark span {
  display: inline-block;
  min-width: 200%;
  color: rgba(255, 255, 255, .12);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: mobileWordmarkMarquee 12s linear infinite;
}

.hero-orbit {
  position: absolute;
  right: -80px;
  bottom: -180px;
  z-index: 2;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  animation: orbit 18s linear infinite;
}

.hero-orbit::before {
  position: absolute;
  top: 58px;
  left: 58px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--orange);
  box-shadow: 0 0 38px rgba(255, 120, 0, .8);
  content: "";
}

.hero::before,
.footer-rich::before {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd08b 0%, var(--orange) 65%, #d24b00 100%);
  box-shadow: 0 0 24px rgba(255, 120, 0, .6);
  content: "";
  animation: comet 12s linear infinite;
}

.hero::before {
  top: 22%;
  left: -3%;
  z-index: 3;
}

.hero-glow {
  position: absolute;
  inset: auto;
  z-index: 2;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .5;
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(3, 201, 245, .34);
}

.hero-glow-two {
  bottom: 10%;
  right: 20%;
  width: 120px;
  height: 120px;
  background: rgba(255, 120, 0, .28);
}

@keyframes heroProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes heroBrandPulse {
  0%, 100% {
    opacity: .08;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: .15;
    transform: translateY(-50%) translateX(-14px);
  }
}

@keyframes heroTileFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: .48;
  }
  50% {
    transform: translate3d(-10px, -16px, 0);
    opacity: .9;
  }
}

@keyframes footerTileFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: .32;
  }
  50% {
    transform: translate3d(-8px, -12px, 0) rotate(2deg);
    opacity: .72;
  }
}

@keyframes mobileWordmarkMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  margin: -18px auto 42px;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-strip article {
  padding: 28px;
  border-right: 1px solid #e6eef8;
}

.signal-strip strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.section,
.contact {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 90px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: left;
}

.section-heading span,
.section-kicker {
  color: var(--cyan);
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2,
.contact h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

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

.service-card,
.content-card,
.value-grid article,
.contact-panel,
.contact-form {
  border: 1px solid rgba(4, 55, 167, .08);
  border-radius: 0;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 55px rgba(0, 20, 80, .08);
}

.service-card {
  position: relative;
  display: block;
  min-height: 255px;
  padding: 28px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 120, 0, .35), rgba(3, 201, 245, .35));
  content: "";
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 75px rgba(0, 20, 80, .15);
}

.service-card,
.content-card,
.team-card,
.partner-logo,
.detail-content,
.page-hero,
.about-hero,
.service-table-wrap {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.content-card:hover,
.team-card:hover,
.partner-logo:hover,
.detail-content:hover,
.service-table-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0, 20, 80, .14);
}

.service-card i,
.value-grid i {
  color: var(--blue);
  font-size: 34px;
}

.service-card h2,
.value-grid h3,
.content-card h3 {
  margin: 20px 0 12px;
  font-size: 20px;
  line-height: 1.2;
  text-wrap: balance;
}

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

.service-arrow {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card p,
.value-grid p,
.content-card p,
.contact-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-grid article {
  padding: 24px;
}

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

.content-card {
  padding: 24px;
}

.content-card img {
  width: 100%;
  height: 180px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #eaf2fb;
}

.content-card-media {
  width: 100%;
  height: 210px !important;
  margin-bottom: 14px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #e8f1fb, #dbe9f8);
}

.services-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-showcase-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.service-showcase-card .content-card-media {
  margin-bottom: 0;
}

.service-showcase-card .card-icon {
  margin: 24px 24px 10px;
}

.service-showcase-card small {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: 22px 24px 0;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-showcase-card h3,
.service-showcase-card p,
.service-showcase-card .text-link {
  margin-right: 24px;
  margin-left: 24px;
}

.service-showcase-card h3 {
  margin-top: 14px;
}

.service-showcase-card p {
  margin-bottom: 0;
}

.service-showcase-card .text-link {
  margin-top: auto;
  padding: 20px 0 24px;
}

.page-main {
  padding-top: 152px;
}

.page-hero,
.about-hero,
.detail-layout {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 56px;
}

.page-hero {
  min-height: 330px;
  padding: 54px;
  border-radius: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 34, .94), rgba(4, 55, 167, .88)),
    radial-gradient(circle at 85% 15%, rgba(3, 201, 245, .38), transparent 18rem);
  box-shadow: var(--shadow);
}

.page-hero img {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border-radius: 0;
  object-fit: cover;
  animation: float 5.5s ease-in-out infinite;
}

.page-hero span {
  display: block;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.page-hero h1,
.about-hero h1,
.detail-content h1 {
  max-width: 780px;
  margin: 10px 0 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
}

.page-hero h1 {
  color: #fff;
}

.page-hero,
.about-hero,
.detail-content,
.contact-panel,
.footer-brand,
.footer-links,
.footer-newsletter {
  text-align: left;
}

.about-hero,
.detail-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .85fr;
  gap: 34px;
}

.about-hero {
  padding: 46px;
  border-radius: 0;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.about-hero img,
.detail-media img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 28px 65px rgba(0, 20, 80, .16);
}

.detail-layout {
  align-items: start;
}

.detail-media {
  position: sticky;
  top: 130px;
}

.detail-media .card-icon {
  margin-top: -44px;
  margin-left: 28px;
}

.detail-content {
  padding: 42px;
  border-radius: 0;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  text-wrap: pretty;
}

.richtext {
  color: #233150;
  font-size: 16px;
  line-height: 1.72;
  word-break: break-word;
}

.card-icon {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 0;
  color: #fff;
  font-size: 30px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 36px rgba(3, 92, 210, .24);
}

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

.team-card {
  padding: 24px;
  border-radius: 0;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 55px rgba(0, 20, 80, .08);
}

.team-card img {
  width: 100%;
  height: 220px;
  border-radius: 0;
  object-fit: cover;
}

.team-card h3 {
  margin: 18px 0 4px;
  line-height: 1.2;
  font-size: 19px;
}

.team-card strong {
  color: var(--cyan);
}

.section-values .value-grid article {
  position: relative;
  overflow: hidden;
}

.section-values .value-grid article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 120, 0, .18) 100%);
  content: "";
}

.home-carousel {
  display: grid;
  grid-auto-columns: minmax(290px, 33%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scroll-snap-type: x mandatory;
}

.carousel-card {
  scroll-snap-align: start;
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.pagination-bar a,
.pagination-bar span {
  padding: 12px 18px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 20, 80, .08);
}

.pagination-bar a {
  color: var(--orange);
  font-weight: 900;
}

.slow-media {
  animation: slowZoom 12s ease-in-out infinite alternate;
  transform-origin: center;
}

.content-card small {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 22px;
}

.contact-panel {
  padding: 34px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #063ca8);
}

.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-panel i {
  width: 24px;
  color: var(--cyan);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact:target .contact-form,
.contact:target .contact-panel {
  border-color: rgba(255, 120, 0, .34);
  box-shadow: 0 24px 62px rgba(255, 120, 0, .16);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e6f6;
  border-radius: 0;
  padding: 16px 18px;
  color: var(--ink);
  background: #f8fbff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(3, 201, 245, .12);
}

.contact-form button {
  min-height: 54px;
}

.form-message {
  padding: 14px 16px;
  border-radius: 0;
  color: #075c41;
  background: #dff8ed;
  border-left: 4px solid #15a36d;
  font-weight: 700;
}

.form-message.error {
  color: #8f1028;
  background: #ffe6ea;
  border-left-color: #cf274b;
}

.form-message.warning {
  color: #8d5a00;
  background: #fff2d9;
  border-left-color: #f0a100;
}

.form-message.info {
  color: #124c8b;
  background: #e6f1ff;
  border-left-color: #0a70d1;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  color: #fff;
  background: var(--navy);
}

.partner-strip,
.promo-marquee,
.footer-rich {
  width: 100%;
  margin: 0 auto 24px;
}

.promo-marquee {
  margin-bottom: 0;
}

.partner-strip {
  display: flex;
  justify-content: center;
  padding: 16px 0 0;
}

.partner-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  justify-items: center;
  overflow-x: auto;
  padding: 10px 20px 14px;
  margin: 0 auto;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.promo-marquee {
  overflow: hidden;
  padding: 0 0 8px;
}

.promo-marquee-shell {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 18px;
  background: linear-gradient(90deg, rgba(3, 11, 38, .96), rgba(7, 37, 92, .94));
  box-shadow: 0 14px 34px rgba(0, 20, 80, .1);
}

.promo-marquee-shell::before,
.promo-marquee-shell::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 42px;
  pointer-events: none;
  content: "";
}

.promo-marquee-shell::before {
  left: 132px;
  background: linear-gradient(90deg, rgba(6, 19, 59, .98), rgba(6, 19, 59, 0));
}

.promo-marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 37, 92, .98), rgba(7, 37, 92, 0));
}

.promo-marquee-label {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.promo-marquee-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 24px;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.promo-marquee-track::-webkit-scrollbar {
  display: none;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}

.promo-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--orange);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.promo-text {
  display: inline-block;
  color: rgba(255, 255, 255, .94);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .03em;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: promoReveal 9s ease-in-out infinite;
}

.promo-pill:nth-child(2n) .promo-text {
  animation-delay: .8s;
}

.promo-pill:nth-child(3n) .promo-text {
  animation-delay: 1.4s;
}

.promo-pill:nth-child(4n) .promo-text {
  animation-delay: 2s;
}

.training-card {
  position: relative;
}

.training-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 12px 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.training-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.training-meta-detail {
  margin-bottom: 18px;
}

.countdown-card {
  margin: 22px 0 24px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 36px rgba(0, 20, 80, .08);
}

.countdown-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
}

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

.countdown-grid div {
  padding: 16px 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, #06143b, #0a51c4);
}

.countdown-grid span {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.countdown-grid small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.text-link.is-muted {
  color: var(--muted);
  cursor: default;
}

.partner-logo {
  display: grid;
  min-height: 86px;
  width: min(100%, 180px);
  margin: 0 auto;
  justify-items: center;
  align-items: center;
  place-items: center;
  border-radius: 0;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 40px rgba(0, 20, 80, .08);
  position: relative;
  overflow: hidden;
  opacity: .48;
  transform: scale(.94);
  transition: transform .28s ease, opacity .28s ease, box-shadow .28s ease, background .28s ease;
}

.partner-track.has-focus .partner-logo.is-visible-focus {
  opacity: 1;
  transform: scale(1.03);
  background: #fff;
  box-shadow: 0 20px 54px rgba(0, 20, 80, .16);
}

@media (min-width: 681px) {
  .partner-track {
    grid-auto-columns: 160px;
    gap: 14px;
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 8px 0 12px;
  }

  .partner-track.has-focus .partner-logo,
  .partner-logo {
    width: 160px;
    min-height: 74px;
    opacity: 1;
    transform: none;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 28px rgba(0, 20, 80, .08);
  }

  .partner-track.has-focus .partner-logo.is-visible-focus,
  .partner-logo:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(0, 20, 80, .08);
    background: rgba(255, 255, 255, .96);
  }

  .partner-logo img {
    max-width: 98px;
    max-height: 40px;
  }
}

.partner-logo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .55) 45%, transparent 70%);
  content: "";
  transform: translateX(-140%);
  animation: shine 5.5s ease-in-out infinite;
}

.partner-logo img {
  display: block;
  margin: 0 auto;
  justify-self: center;
  align-self: center;
  max-width: 110px;
  max-height: 46px;
  object-fit: contain;
}

.footer-rich {
  display: block;
  position: relative;
  padding: 34px 28px;
  border-radius: 0;
  color: #fff;
  background:
    linear-gradient(145deg, #000022, #063ca8),
    radial-gradient(circle at 88% 14%, rgba(3, 201, 245, .35), transparent 16rem);
  box-shadow: 0 32px 90px rgba(0, 20, 80, .28);
}

.footer-rich::before {
  top: 26px;
  left: -14px;
  z-index: 0;
  animation-duration: 14s;
}

.footer-grid-motion {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, 44px);
  gap: 14px;
  pointer-events: none;
}

.footer-grid-motion span {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(255, 255, 255, .02), rgba(3, 201, 245, .06));
  box-shadow: inset 0 0 24px rgba(255, 255, 255, .04);
  opacity: .55;
  animation: footerTileFloat 11s ease-in-out infinite;
}

.footer-grid-motion span:nth-child(2),
.footer-grid-motion span:nth-child(4) {
  animation-delay: -2.5s;
}

.footer-grid-motion span:nth-child(3) {
  animation-delay: -5s;
}

.footer-rich::after {
  position: absolute;
  right: 88px;
  top: 34px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(255, 255, 255, .02), rgba(255, 120, 0, .08));
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .04);
  content: "";
  opacity: .34;
  animation: footerTileFloat 13s ease-in-out infinite;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 0;
  padding: 8px;
  object-fit: contain;
  margin-bottom: 16px;
  background: #fff;
}

.footer-brand h3,
.footer-links h4,
.footer-newsletter h4 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-brand p,
.footer-newsletter p,
.footer-bottom span {
  color: rgba(255, 255, 255, .96);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-newsletter a {
  color: rgba(255, 255, 255, .98);
}

.footer-links a:hover,
.footer-newsletter a:hover,
.footer-brand p a:hover {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, .28);
}

.social-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.social-link {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  place-items: center;
}

.social-link i {
  width: auto;
  font-size: 18px;
  text-align: center;
}

.social-facebook {
  background: linear-gradient(135deg, rgba(24, 119, 242, .95), rgba(13, 71, 161, .92));
}

.social-linkedin {
  background: linear-gradient(135deg, rgba(10, 102, 194, .95), rgba(5, 59, 115, .92));
}

.social-instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, .95), rgba(131, 58, 180, .92));
}

.social-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, .95), rgba(7, 94, 84, .92));
}

.social-youtube {
  background: linear-gradient(135deg, rgba(255, 0, 0, .95), rgba(166, 0, 0, .92));
}

.social-x {
  background: linear-gradient(135deg, rgba(22, 24, 28, .95), rgba(65, 71, 81, .92));
}

.footer-newsletter form {
  display: grid;
  gap: 10px;
}

.footer-newsletter input {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 14px 16px;
  color: var(--ink);
}

.footer-newsletter button {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-weight: 800;
  background: var(--orange);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.search-summary {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.search-summary p {
  margin: 0;
  color: var(--muted);
}

.search-page-form {
  display: flex;
  align-items: stretch;
  min-height: 58px;
  border: 1px solid rgba(4, 55, 167, .14);
  background: rgba(255, 255, 255, .88);
}

.search-page-form input {
  padding: 0 18px;
}

.search-page-form button {
  min-width: 154px;
  padding: 0 24px;
}

.empty-state-card {
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.empty-state-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.empty-state-card p {
  margin: 0;
  color: var(--muted);
}

.error-page-body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(6, 20, 59, .96), rgba(4, 55, 167, .92)),
    radial-gradient(circle at top right, rgba(3, 201, 245, .18), transparent 26rem);
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 18px;
}

.error-card {
  width: min(100%, 640px);
  padding: 42px 36px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 32px 70px rgba(0, 0, 34, .3);
  backdrop-filter: blur(10px);
}

.error-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  object-fit: contain;
  background: #fff;
}

.error-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, .84);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.error-card h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.error-card p {
  max-width: 42ch;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, .84);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 30px 32px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(233,244,255,.94));
  border-left: 6px solid var(--orange);
}

.cta-band-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.service-table-wrap {
  overflow-x: auto;
  border-radius: 0;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 55px rgba(0, 20, 80, .08);
}

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

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

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(4, 55, 167, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 55px rgba(0, 20, 80, .08);
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery-card-body {
  padding: 18px 18px 20px;
}

.gallery-card small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 22px;
  border-bottom: 1px solid #e8eef8;
  vertical-align: top;
}

.service-table th {
  color: var(--blue);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.table-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.table-title i {
  color: var(--cyan);
  font-size: 22px;
}

.footer span {
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer-newsletter .form-message {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-left: 4px solid var(--orange);
}

.tp-bullet-title,
.zeus.tparrows:hover,
.zeus.tparrows:focus {
  color: var(--orange) !important;
}

.metis .tp-bullet {
  background: rgba(255, 255, 255, .35) !important;
  border: 0 !important;
}

.metis .tp-bullet:hover,
.metis .tp-bullet.selected {
  background: var(--orange) !important;
}

.footer-brand p,
.footer-newsletter p,
.footer-bottom span,
.footer-links a,
.footer-newsletter a,
.footer h3,
.footer h4 {
  color: #fff;
}

.footer-links h4,
.footer-newsletter h4 {
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, .18);
}

.footer-links a {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  padding-right: 10px;
}

.footer-brand p:last-of-type {
  border-left: 4px solid var(--orange);
  padding-left: 12px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact strong {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card.reveal,
.content-card.reveal {
  transform: translateY(28px) scale(.98);
}

.team-card.reveal.is-visible,
.content-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(34px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes comet {
  0% {
    transform: translateX(0) translateY(0) scale(.9);
    opacity: 0;
  }

  10%,
  85% {
    opacity: 1;
  }

  100% {
    transform: translateX(112vw) translateY(44px) scale(1.15);
    opacity: 0;
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

@keyframes shine {
  0%,
  100% {
    transform: translateX(-140%);
  }

  55% {
    transform: translateX(140%);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(.72);
    opacity: .6;
  }
}

@keyframes promoReveal {
  0%,
  12% {
    clip-path: inset(0 100% 0 0);
    opacity: .35;
  }

  28%,
  72% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: .7;
  }
}

@media (max-width: 980px) {
  .hero,
  .rev_slider_wrapper,
  .rev_slider,
  .rev_slider > ul,
  .rev_slider > ul > li {
    min-height: 540px !important;
  }

  .nav-frame {
    align-items: center;
    border-radius: 0;
    flex-wrap: nowrap;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    font-size: 12px;
  }

  .nav-cta {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .service-grid,
  .value-grid,
  .content-grid,
  .gallery-grid,
  .contact,
  .team-grid,
  .about-hero,
  .detail-layout,
  .footer-top,
  .cta-band {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

@media (max-width: 680px) {
  .nav-backdrop {
    display: block;
  }

  .topbar {
    margin: 0;
    height: 44px;
  }

  .topbar-inner {
    height: 100%;
    padding: 0 12px;
    font-size: 12px;
  }

  .nav-frame {
    top: 44px;
    width: 100%;
    align-items: center;
    border-radius: 0;
    padding: 8px 10px 8px 4px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
    gap: 10px;
    margin-left: -4px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
    letter-spacing: .06em;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    width: min(285px, 82vw);
    max-height: calc(100vh - 76px);
    padding: 12px;
    gap: 4px;
    font-size: 12px;
    letter-spacing: .06em;
    text-align: left;
    border-radius: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 50px rgba(0, 0, 34, .18);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 11px 10px 11px 18px;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    border-bottom: 1px solid rgba(4, 55, 167, .12);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 18px;
    border-radius: 0;
    background: var(--orange);
    content: "";
    transform: translateY(-50%);
    opacity: .9;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .hero,
  .rev_slider_wrapper,
  .rev_slider,
  .rev_slider > ul,
  .rev_slider > ul > li {
    min-height: 560px !important;
  }

  .rev-slidebg {
    transform: scale(1.16);
    filter: saturate(1.08) contrast(1.06);
  }

  .hero-glow-one {
    top: 12%;
    right: 2%;
    width: 110px;
    height: 110px;
  }

  .hero-glow-two {
    bottom: 12%;
    right: 12%;
    width: 80px;
    height: 80px;
  }

  .hero-brand-mark {
    right: 2%;
    font-size: clamp(72px, 16vw, 128px);
  }

  .hero-grid-motion {
    inset: 14% 2% 14% auto;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(28px, 52px));
  }

  .hero-mobile-wordmark {
    display: block;
  }

  .rk-eyebrow,
  .rk-title,
  .rk-copy {
    text-align: left !important;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading span,
  .section-kicker {
    font-size: 11px;
    letter-spacing: .16em;
    margin-bottom: 10px;
  }

  .section-heading h1,
  .section-heading h2,
  .contact h2,
  .page-hero h1,
  .about-hero h1,
  .detail-content h1 {
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1.12;
    letter-spacing: -.04em;
  }

  .page-hero {
    min-height: 250px;
    padding: 22px 18px;
  }

  .page-hero img {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .page-hero span {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .service-card,
  .content-card,
  .team-card,
  .detail-content,
  .contact-panel,
  .contact-form {
    padding: 18px;
  }

  .service-card h2,
  .value-grid h3,
  .content-card h3,
  .team-card h3 {
    font-size: 17px;
    line-height: 1.25;
  }

  .service-card p,
  .value-grid p,
  .content-card p,
  .contact-panel p,
  .lead,
  .richtext {
    font-size: 13px;
    line-height: 1.55;
  }

  .content-card small,
  .section-heading span,
  .section-kicker {
    font-size: 9px;
  }

  .rk-eyebrow {
    padding: 10px 14px;
    font-size: 14px !important;
    line-height: 1.35 !important;
    letter-spacing: .08em;
    max-width: calc(100vw - 28px);
  }

  .rk-copy {
    font-size: 17px !important;
    line-height: 1.58 !important;
    font-weight: 700 !important;
    min-width: calc(100vw - 36px);
  }

  .hero .tp-parallax-wrap {
    margin-top: 59px !important;
  }

  .hero-brand-mark {
    top: auto;
    right: 10px;
    bottom: 98px;
    font-size: 54px;
    letter-spacing: .08em;
    transform: none;
  }

  .hero-grid-motion {
    inset: auto 12px 142px auto;
    gap: 8px;
    grid-template-columns: repeat(3, 28px);
  }

  .hero-progress {
    left: 18px;
    bottom: 74px;
    width: min(360px, calc(100% - 36px));
  }

  .rk-button,
  .contact-form button,
  .footer-newsletter button {
    min-height: 48px;
    font-size: 13px;
  }

  .signal-strip {
    margin-top: 0;
    margin-bottom: 28px;
  }

  .signal-strip,
  .service-grid,
  .value-grid,
  .content-grid,
  .gallery-grid,
  .contact,
  .team-grid,
  .about-hero,
  .detail-layout,
  .footer-top,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: -30px;
  }

  .signal-strip article {
    padding: 16px;
  }

  .signal-strip strong {
    font-size: 28px;
  }

  .signal-strip span {
    font-size: 11px;
  }

  .page-hero,
  .about-hero,
  .detail-content {
    padding: 28px;
  }

  .page-main {
    padding-top: 132px;
  }

  .section,
  .contact,
  .page-hero,
  .about-hero,
  .detail-layout {
    width: 100%;
  }

  .section {
    margin-bottom: 38px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact,
  .page-hero,
  .about-hero,
  .detail-layout {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-band {
    padding: 18px;
  }

  .cta-band-content p {
    font-size: 14px;
    line-height: 1.58;
  }

  .cta-band-actions {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .home-carousel {
    grid-auto-columns: minmax(100%, 100%);
    gap: 14px;
    padding-bottom: 12px;
  }

  .partner-strip {
    padding: 12px 12px 0;
  }

  .partner-track {
    width: 100%;
    min-width: 0;
    grid-auto-columns: calc((100% - 24px) / 3);
    gap: 12px;
    justify-content: start;
    padding: 8px 0 12px;
    margin: 0;
  }

  .partner-logo {
    width: 100%;
    min-height: 72px;
  }

  .partner-logo img {
    max-width: 82%;
    max-height: 34px;
  }

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

  .countdown-grid span {
    font-size: 24px;
  }

  .gallery-card img {
    height: 200px;
  }

  .content-card-media {
    height: 180px !important;
  }

  .services-grid-page {
    grid-template-columns: 1fr;
  }

  .service-showcase-card small {
    margin: 18px 18px 0;
    font-size: 10px;
  }

  .service-showcase-card .card-icon,
  .service-showcase-card h3,
  .service-showcase-card p,
  .service-showcase-card .text-link {
    margin-right: 18px;
    margin-left: 18px;
  }

  .service-showcase-card .card-icon {
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .service-showcase-card .text-link {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .footer-products {
    display: none;
  }

  .detail-media {
    position: static;
  }

  .rk-button,
  .contact-form button,
  .footer-newsletter button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .footer-rich {
    padding: 24px;
  }

  .footer-grid-motion {
    right: 16px;
    bottom: 16px;
    grid-template-columns: repeat(2, 28px);
    gap: 8px;
  }

  .footer-grid-motion span {
    width: 28px;
    height: 28px;
  }

  .footer-rich::after {
    right: 22px;
    top: 20px;
    width: 52px;
    height: 52px;
    opacity: .42;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }

  .topbar-inner {
    padding: 6px 10px;
    font-size: 11px;
  }

  .promo-marquee {
    width: calc(100% - 20px);
  }

  .promo-marquee-shell {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    padding: 0 12px;
  }

  .promo-marquee-shell::before {
    left: 92px;
    width: 18px;
  }

  .promo-marquee-shell::after {
    width: 18px;
  }

  .promo-marquee-label {
    min-height: 52px;
    font-size: 10px;
    letter-spacing: .12em;
  }

  .promo-pill {
    min-height: 52px;
  }

  .promo-text {
    font-size: 13px;
  }

  .search-page-form {
    flex-direction: column;
  }

  .search-page-form button {
    width: 100%;
    min-height: 48px;
  }

  .error-card {
    padding: 30px 20px;
  }

  .error-card img {
    width: 82px;
    height: 82px;
  }

  .error-card h1 {
    font-size: 28px;
  }

  .social-row {
    justify-content: flex-start;
    gap: 8px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }
}
