:root {
  --ink: #10151a;
  --graphite: #171d23;
  --charcoal: #202833;
  --steel: #5d6876;
  --slate: #d9e1e7;
  --mist: #f5f8fa;
  --white: #ffffff;
  --cyan: #18b7d8;
  --blue: #2368df;
  --amber: #f0a431;
  --green: #2f9b75;
  --red: #cc4b4b;
  --line: rgba(18, 28, 38, 0.12);
  --dark-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(13, 25, 36, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 34%, #eef5f4 100%);
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--amber));
  box-shadow: 0 0 18px rgba(24, 183, 216, 0.42);
  transform: scaleX(0);
  transform-origin: left;
}

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

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

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

h1 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: 3.35rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(132px, 1fr);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(11, 15, 20, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.topbar.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 214px;
  height: 58px;
  color: currentColor;
  filter: drop-shadow(0 10px 24px rgba(0, 60, 120, 0.18));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(24, 183, 216, 0.96), rgba(35, 104, 223, 0.98)),
    var(--blue);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 10px 26px rgba(0, 110, 210, 0.28);
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 18px;
  font-size: 0.93rem;
}

.nav-links a,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  letter-spacing: 0;
}

.nav-links a {
  opacity: 0.74;
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  padding: 0 18px;
  color: var(--white);
  font-weight: 820;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 30px rgba(0, 103, 220, 0.28);
}

.hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 86vh;
  padding: 112px min(7vw, 84px) 78px;
  isolation: isolate;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.94) 0%, rgba(5, 10, 16, 0.82) 36%, rgba(5, 10, 16, 0.2) 72%, rgba(5, 10, 16, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 9, 14, 0.34), rgba(5, 9, 14, 0.74));
}

.hero-grid {
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
}

.hero-signal {
  position: absolute;
  right: min(7vw, 84px);
  top: 134px;
  z-index: -1;
  display: grid;
  gap: 10px;
  width: 190px;
}

.hero-signal span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent);
  opacity: 0.65;
  animation: signalSlide 3.8s ease-in-out infinite;
}

.hero-signal span:nth-child(2) {
  width: 72%;
  margin-left: auto;
  animation-delay: 450ms;
}

.hero-signal span:nth-child(3) {
  width: 48%;
  animation-delay: 900ms;
}

.hero-content {
  align-self: center;
  width: min(680px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  width: min(630px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 840;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::after,
.nav-cta::after {
  content: "→";
  margin-left: 9px;
  transform: translateX(0);
  transition: transform 180ms ease;
}

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

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(4px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(0, 103, 220, 0.32);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.button.full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
}

.hero-panel {
  position: absolute;
  right: min(7vw, 84px);
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(690px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(12, 17, 22, 0.62);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
}

.hero-panel > div {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-panel > div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  font-weight: 870;
  line-height: 1.04;
}

.metric-label {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.35;
}

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

.capability-strip {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(24, 183, 216, 0.08), transparent 30%),
    var(--white);
}

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

.strip-item {
  min-height: 126px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 1px solid var(--line);
}

.strip-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 850;
}

.strip-item p {
  color: var(--graphite);
  font-size: 1.2rem;
  font-weight: 780;
  line-height: 1.2;
}

.section {
  padding: 112px 0;
}

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

.about-grid,
.split,
.visual-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 74px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 118px;
}

.section-heading.compact {
  position: static;
  width: min(860px, 100%);
  margin-bottom: 42px;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.about-copy > p,
.coverage-copy > p,
.program p,
.service-card p,
.contact-inner p,
.quote p,
.process-step p {
  color: #536171;
  font-size: 1.03rem;
  line-height: 1.72;
}

.about-copy > p {
  font-size: 1.16rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.trust-grid div {
  min-height: 154px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(18, 31, 42, 0.06);
}

.trust-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1.05rem;
}

.trust-grid span {
  color: var(--steel);
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-section {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(24, 183, 216, 0.15), transparent 28%),
    linear-gradient(30deg, transparent 55%, rgba(240, 164, 49, 0.12)),
    linear-gradient(180deg, #11181e, #1b2229 70%, #11181e);
}

.service-section .section-heading h2,
.service-section .service-card h3 {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.program,
.quote,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(17, 28, 39, 0.08);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 386px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.052)),
    rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.service-card::before,
.program::before,
.process-step::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.1) 48%, transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-80%);
  transition:
    opacity 220ms ease,
    transform 720ms ease;
}

.service-card:hover,
.program:hover,
.quote:hover,
.process-step:hover {
  transform: translateY(-6px);
}

.service-card:hover::before,
.program:hover::before,
.process-step:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.service-card:hover {
  border-color: rgba(24, 183, 216, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.06);
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 183, 216, 0.24), rgba(35, 104, 223, 0.12)),
    rgba(255, 255, 255, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card:hover .service-icon {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px) scale(1.04);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.service-icon.kiosk {
  color: var(--cyan);
}

.service-icon.pos {
  color: var(--amber);
}

.service-icon.network,
.service-icon.support {
  color: #79d8b5;
}

.service-icon.integrate {
  color: #9ec8ff;
}

.service-icon.store {
  color: #ffb86b;
}

.service-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.service-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

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

.visual-grid {
  align-items: center;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(9, 15, 22, 0.82));
  content: "";
}

.visual-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: var(--white);
}

.visual-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 840;
  text-transform: uppercase;
}

.visual-caption strong {
  display: block;
  max-width: 440px;
  font-size: 1.5rem;
  line-height: 1.12;
}

.coverage-copy {
  display: grid;
  gap: 22px;
}

.coverage-copy h2 {
  font-size: 3.1rem;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.coverage-list span {
  min-height: 58px;
  padding: 16px;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  color: var(--graphite);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 31, 42, 0.06);
  font-weight: 780;
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 155, 117, 0.12), transparent 36%),
    linear-gradient(180deg, #182028, #10151a);
}

.process-section .section-heading h2 {
  color: var(--white);
}

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

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 24px;
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: none;
}

.process-step span {
  display: block;
  margin-bottom: 64px;
  color: var(--amber);
  font-weight: 850;
}

.process-step h3 {
  color: var(--white);
}

.process-step p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

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

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    var(--white);
}

.program.featured {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(16, 21, 26, 0.98), rgba(27, 69, 76, 0.96)),
    var(--graphite);
  box-shadow: var(--shadow);
}

.program.featured p {
  color: rgba(255, 255, 255, 0.73);
}

.program-tag {
  margin: 0 0 72px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.program.featured .program-tag {
  color: var(--amber);
}

.program p:not(.program-tag) {
  margin-top: 18px;
}

.program a {
  display: inline-flex;
  margin-top: 34px;
  color: var(--blue);
  font-weight: 850;
}

.program.featured a {
  color: var(--white);
}

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

.quote-stack {
  display: grid;
  gap: 16px;
}

.quote {
  margin: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
}

.quote p {
  color: var(--graphite);
  font-size: 1.32rem;
  line-height: 1.48;
}

.quote cite {
  display: block;
  margin-top: 22px;
  color: var(--steel);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 780;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 104px 20px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.88), rgba(8, 12, 18, 0.62)),
    url("./assets/dmc-hero-premium.png") center / cover fixed;
  isolation: isolate;
}

.contact::before,
.contact::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  pointer-events: none;
}

.contact::before {
  top: 18%;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(24, 183, 216, 0.28);
  border-radius: 50%;
  animation: orbitPulse 8s ease-in-out infinite;
}

.contact::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 183, 216, 0.82), rgba(240, 164, 49, 0.72), transparent);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: stretch;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 62px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 183, 216, 0.11), transparent 44%),
    rgba(10, 14, 20, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.contact-inner::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 62%);
  content: "";
  transform: translateX(-110%);
  transition: transform 850ms ease;
}

.contact-inner:hover::before {
  transform: translateX(110%);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  width: min(760px, 100%);
  color: var(--white);
}

.contact-copy p {
  width: min(680px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-actions .button {
  margin-top: 0;
}

.booking-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.18);
}

.booking-card-glow {
  position: absolute;
  top: -64px;
  right: -74px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.26), transparent 68%);
  pointer-events: none;
}

.booking-head {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.form-kicker {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-head strong {
  color: var(--white);
  font-size: 1.34rem;
  line-height: 1.12;
}

.booking-list {
  display: grid;
  gap: 10px;
}

.booking-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 9, 14, 0.52);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.booking-item:hover {
  border-color: rgba(24, 183, 216, 0.48);
  background: rgba(5, 13, 20, 0.72);
  transform: translateX(4px);
}

.booking-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 0.76rem;
  font-weight: 880;
}

.booking-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.96rem;
}

.booking-card .button {
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: opacity, transform;
}

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

.lift-target {
  transform-style: preserve-3d;
}

[data-parallax] {
  will-change: transform;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes signalSlide {
  0%,
  100% {
    transform: translateX(-8px);
    opacity: 0.38;
  }

  50% {
    transform: translateX(12px);
    opacity: 0.86;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96) rotate(0deg);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.04) rotate(14deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 3rem;
  }

  .nav-links {
    gap: 16px;
  }

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

  .hero-panel {
    width: min(610px, calc(100% - 40px));
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 122px 20px 162px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 10, 16, 0.95) 0%, rgba(5, 10, 16, 0.76) 52%, rgba(5, 10, 16, 0.9) 100%);
  }

  .hero-signal {
    display: none;
  }

  .hero-panel {
    right: 20px;
    bottom: 14px;
    left: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
  }

  .hero-panel > div {
    min-height: auto;
    padding: 14px;
  }

  .metric {
    font-size: 1.12rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .strip-grid,
  .about-grid,
  .split,
  .visual-grid,
  .program-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .strip-item,
  .strip-item:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    position: static;
  }

  .trust-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    gap: 26px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.55rem;
  }

  h2,
  .coverage-copy h2 {
    font-size: 2.25rem;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-logo {
    width: 168px;
    height: 46px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 86vh;
    padding: 104px 20px 132px;
  }

  .hero-image {
    animation: none;
    transform: none;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions,
  .hero-tags,
  .button {
    width: 100%;
  }

  .hero-tags span {
    width: auto;
    min-height: 30px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-panel > div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .program,
  .quote,
  .process-step {
    padding: 22px;
  }

  .section {
    padding: 76px 0;
  }

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

  .contact {
    padding: 78px 14px;
    background-attachment: scroll;
  }

  .contact-inner {
    padding: 28px;
  }

  .contact-actions,
  .contact-actions .button,
  .booking-card .button {
    width: 100%;
  }

  .booking-card {
    padding: 18px;
  }

  .booking-item {
    grid-template-columns: 36px 1fr;
    min-height: auto;
  }
}
