:root {
  --ink: #111827;
  --muted: #4b5563;
  --surface: #f3f4f6;
  --surface-strong: #ffffff;
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --blue: #1d4ed8;
  --blue-bright: #2563eb;
  --gold: #f59e0b;
  --gold-deep: #d97706;
  --gold-bright: #fbbf24;
  --gold-pale: #fef3c7;
  --success: #059669;
  --red: #1d4ed8;
  --button-gradient: linear-gradient(90deg, #f59e0b 0%, #f59e0b 100%);
  --button-gradient-hover: linear-gradient(90deg, #d97706 0%, #d97706 100%);
  --clay: #1d4ed8;
  --teal: #059669;
  --teal-dark: #0f172a;
  --sea: #dbeafe;
  --olive: #475569;
  --line: #e5e7eb;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --radius-pill: 999px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

main::before,
main::after {
  position: absolute;
  inset: -10rem 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

main::before {
  opacity: 0.34;
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(29, 78, 216, 0.15) 18.08% 18.22%, transparent 18.32% 100%),
    linear-gradient(38deg, transparent 0 36%, rgba(5, 150, 105, 0.12) 36.08% 36.22%, transparent 36.34% 100%),
    linear-gradient(151deg, transparent 0 56%, rgba(245, 158, 11, 0.12) 56.06% 56.2%, transparent 56.32% 100%),
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.34) 0 0.075rem, transparent 0.115rem),
    radial-gradient(circle at 63% 32%, rgba(245, 158, 11, 0.32) 0 0.075rem, transparent 0.115rem),
    radial-gradient(circle at 78% 72%, rgba(5, 150, 105, 0.26) 0 0.07rem, transparent 0.12rem);
  background-size:
    42rem 29rem,
    34rem 24rem,
    52rem 36rem,
    24rem 18rem,
    31rem 22rem,
    28rem 21rem;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 7rem, #000 calc(100% - 7rem), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 7rem, #000 calc(100% - 7rem), transparent 100%);
  animation: data-network-drift 34s linear infinite;
}

main::after {
  opacity: 0.3;
  background:
    radial-gradient(circle at 12% 26%, rgba(245, 158, 11, 0.58) 0 0.045rem, transparent 0.105rem),
    radial-gradient(circle at 29% 66%, rgba(37, 99, 235, 0.5) 0 0.04rem, transparent 0.1rem),
    radial-gradient(circle at 47% 34%, rgba(255, 255, 255, 0.76) 0 0.035rem, transparent 0.095rem),
    radial-gradient(circle at 70% 18%, rgba(5, 150, 105, 0.42) 0 0.045rem, transparent 0.1rem),
    radial-gradient(circle at 86% 76%, rgba(245, 158, 11, 0.46) 0 0.04rem, transparent 0.1rem);
  background-size:
    26rem 19rem,
    34rem 25rem,
    21rem 17rem,
    31rem 23rem,
    29rem 22rem;
  filter: drop-shadow(0 0 0.45rem rgba(245, 158, 11, 0.22));
  animation: data-sparkle 9s ease-in-out infinite alternate;
}

main > * {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.anniversary-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: clamp(1rem, 3vw, 2rem);
  scrollbar-color: rgba(245, 158, 11, 0.72) rgba(15, 23, 42, 0.18);
  scrollbar-width: thin;
}

.anniversary-modal[hidden] {
  display: none;
}

.anniversary-modal::-webkit-scrollbar {
  width: 0.65rem;
}

.anniversary-modal::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.18);
}

.anniversary-modal::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.72);
}

.anniversary-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.anniversary-card {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  margin: 0;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  overflow: clip;
  border: 1px solid rgba(245, 158, 11, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.88) 48%, rgba(29, 78, 216, 0.42) 78%, rgba(5, 150, 105, 0.24) 100%),
    url("assets/mmtag-anniversary-popup-bg.png") center / cover;
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.56),
    0 0 0 1px rgba(245, 158, 11, 0.08);
  color: #fff;
}

.anniversary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.24), transparent 31%),
    radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.24), transparent 35%),
    linear-gradient(90deg, rgba(245, 158, 11, 0.1), transparent 34%, rgba(5, 150, 105, 0.12));
  pointer-events: none;
}

.anniversary-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.anniversary-close:hover,
.anniversary-close:focus-visible {
  transform: translateY(-1px);
  background: rgba(29, 78, 216, 0.28);
}

.anniversary-media {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background:
    radial-gradient(circle at 50% 28%, rgba(245, 158, 11, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(243, 244, 246, 0.98), rgba(219, 234, 254, 0.92));
}

.anniversary-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 12% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.9), transparent);
}

.anniversary-media img {
  width: min(100%, 18rem);
  max-height: 15rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.2));
}

.anniversary-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
}

.anniversary-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.anniversary-number {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  color: var(--gold);
  line-height: 0.86;
}

.anniversary-number span {
  font-size: clamp(5.4rem, 14vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 0.18rem 0 rgba(15, 23, 42, 0.42),
    0 0 2rem rgba(245, 158, 11, 0.28);
}

.anniversary-number strong {
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 900;
  text-transform: uppercase;
}

.anniversary-content h2 {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 4vw, 2.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.anniversary-message {
  display: grid;
  gap: 0.75rem;
}

.anniversary-content p,
.anniversary-message p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.anniversary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.anniversary-tags span {
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  background: rgba(29, 78, 216, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
}

.anniversary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.anniversary-button {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.24);
}

.anniversary-button:hover,
.anniversary-button:focus-visible {
  background: var(--gold-deep);
}

.anniversary-button-light {
  border-color: rgba(37, 99, 235, 0.45);
  background: rgba(37, 99, 235, 0.18);
  color: #fff;
}

.anniversary-button-light:hover,
.anniversary-button-light:focus-visible {
  background: rgba(37, 99, 235, 0.26);
}

body.anniversary-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.booking-modal[hidden] {
  display: none;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.booking-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: 92vh;
  max-height: min(92svh, 820px);
  display: grid;
  grid-template-rows: auto minmax(24rem, 1fr);
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.46);
}

.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.9rem 1.15rem;
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(29, 78, 216, 0.06)),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.booking-head .section-kicker {
  margin-bottom: 0.25rem;
}

.booking-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.booking-close {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(245, 158, 11, 0.42);
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--navy);
  cursor: pointer;
}

.booking-close:hover,
.booking-close:focus-visible {
  background: var(--gold);
}

.booking-frame-shell {
  min-height: 24rem;
  background: #fff;
}

.booking-frame-shell iframe {
  width: 100%;
  height: 76vh;
  height: min(76svh, 650px);
  min-height: 24rem;
  border: 0;
  background: #fff;
}

body.booking-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.65rem, 1.4vw, 1.15rem);
  padding: 0.78rem clamp(0.85rem, 2.2vw, 2rem);
  background: rgba(15, 23, 42, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 4.05rem;
  height: 2.75rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
}

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

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy span {
  max-width: clamp(18rem, 28vw, 28rem);
  color: rgba(243, 244, 246, 0.78);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.14rem;
}

.site-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0.58rem 0.66rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(29, 78, 216, 0.28);
  color: #ffffff;
  outline: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.7rem;
  content: "";
}

.site-nav .nav-dropdown-trigger {
  gap: 0.42rem;
}

.site-nav .nav-dropdown-trigger::after {
  width: 0;
  height: 0;
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.74;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.12rem);
  left: 0;
  z-index: 25;
  min-width: 14.25rem;
  display: grid;
  gap: 0.12rem;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 18px;
  padding: 0.42rem;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-trigger {
  background: rgba(29, 78, 216, 0.28);
  color: #ffffff;
}

.site-nav .nav-dropdown-menu a {
  min-height: 2.35rem;
  justify-content: flex-start;
  padding: 0.54rem 0.7rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a:focus-visible {
  background: rgba(29, 78, 216, 0.34);
  color: #ffffff;
}

.language-switch {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin-inline: 0.2rem 0.28rem;
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.22rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-nav .language-switch a {
  min-height: 2.12rem;
  border-radius: var(--radius-pill);
  padding: 0.46rem 0.56rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .language-switch a:hover,
.site-nav .language-switch a:focus-visible {
  background: rgba(29, 78, 216, 0.34);
  color: #ffffff;
  outline: none;
}

.site-nav .language-switch a.is-active,
.site-nav .language-switch a.is-active:hover,
.site-nav .language-switch a.is-active:focus-visible {
  background-image: var(--button-gradient);
  color: var(--navy);
  text-shadow: none;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.24);
}

.site-nav .booking-link,
.site-nav .ticket-link,
.site-nav .remote-link {
  margin-left: 0.18rem;
  font-weight: 850;
  padding-inline: 0.8rem;
}

.site-nav .booking-link {
  border: 1px solid rgba(245, 158, 11, 0.55);
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
}

.site-nav .ticket-link {
  border: 1px solid rgba(245, 158, 11, 0.55);
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
}

.site-nav .remote-link {
  margin-left: 0;
  border: 1px solid rgba(245, 158, 11, 0.55);
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--navy);
  text-shadow: none;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
}

.site-nav .booking-link:hover,
.site-nav .booking-link:focus-visible,
.site-nav .ticket-link:hover,
.site-nav .ticket-link:focus-visible {
  background: var(--gold-deep);
  color: var(--navy);
}

.site-nav .remote-link:hover,
.site-nav .remote-link:focus-visible {
  background: var(--gold-deep);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(251, 191, 36, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: min(44rem, calc(100svh - 8rem));
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.22) 1px, transparent 1px);
  background-size: 4.2rem 4.2rem;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 46%, transparent 82%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 46%, transparent 82%);
  animation: digital-drift 22s linear infinite;
}

.hero::after {
  opacity: 0.42;
  background:
    linear-gradient(116deg, transparent 0 24%, rgba(245, 158, 11, 0.2) 24.08% 24.22%, transparent 24.35% 100%),
    linear-gradient(42deg, transparent 0 58%, rgba(37, 99, 235, 0.2) 58.08% 58.22%, transparent 58.35% 100%),
    radial-gradient(circle at 18% 28%, rgba(245, 158, 11, 0.32) 0 0.12rem, transparent 0.18rem),
    radial-gradient(circle at 31% 68%, rgba(37, 99, 235, 0.3) 0 0.12rem, transparent 0.2rem),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.28) 0 0.1rem, transparent 0.17rem),
    radial-gradient(circle at 76% 34%, rgba(245, 158, 11, 0.28) 0 0.1rem, transparent 0.18rem),
    radial-gradient(circle at 84% 72%, rgba(37, 99, 235, 0.24) 0 0.13rem, transparent 0.2rem);
  background-size:
    42rem 28rem,
    38rem 24rem,
    auto,
    auto,
    auto,
    auto,
    auto;
  animation: particle-float 16s ease-in-out infinite alternate;
}

#top,
#services,
#e-marrero,
#pr-logix,
#zoho-finance,
#how-mmtag-helps,
#timeline,
#partners,
#expertise,
#process,
#faq,
#contact {
  scroll-margin-top: 5.5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-media img {
  z-index: 0;
}

.hero-media video {
  z-index: 1;
  background: var(--navy);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.67) 42%, rgba(15, 23, 42, 0.14) 78%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.04) 40%);
}

.hero-inner {
  width: min(100% - 2rem, var(--max));
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: clamp(3.25rem, 8vh, 6rem) 0 clamp(2rem, 5vh, 3.5rem);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-bright);
}

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

h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: 4.65rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-nowrap {
  white-space: nowrap;
}

html[lang="es"] .hero h1 {
  max-width: 22ch;
}

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

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 43rem;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-dashboard-motion {
  width: min(100%, 28rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 11rem;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.motion-widget,
.motion-bars {
  min-height: 5.35rem;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(15, 23, 42, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.motion-widget {
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
}

.motion-widget span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.motion-widget strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.motion-bars {
  display: flex;
  align-items: end;
  gap: 0.42rem;
  padding: 0.9rem;
}

.motion-bars span {
  flex: 1;
  min-height: 0.7rem;
  height: var(--bar-height);
  border-radius: 999px 999px 0.25rem 0.25rem;
  background: linear-gradient(180deg, var(--gold), var(--blue-bright));
  animation: dashboard-bars 2.8s ease-in-out infinite alternate;
}

.motion-bars span:nth-child(2n) {
  animation-delay: 220ms;
}

.motion-bars span:nth-child(3n) {
  animation-delay: 420ms;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.button {
  position: relative;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.78rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 38%;
  content: "";
  transform: skewX(-18deg) translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: transform 420ms ease;
  pointer-events: none;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: skewX(-18deg) translateX(420%);
}

.button svg {
  transition: transform 180ms ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(0.12rem);
}

.button-primary {
  background-color: transparent;
  background-image: var(--button-gradient);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-clip: padding-box;
  color: var(--navy);
  text-shadow: none;
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-color: transparent;
  background-image: var(--button-gradient-hover);
  color: var(--navy);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.signal-strip {
  width: min(100% - 2rem, var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -1.2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.signal-strip div {
  min-height: 6.8rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
}

.metric-number {
  display: inline-block;
  min-width: 2ch;
  font-variant-numeric: tabular-nums;
}

.signal-strip strong {
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
}

.signal-strip div:nth-child(2) strong {
  color: var(--success);
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section,
.zoho-finance-section,
.division-section,
.feature-band,
.zoho-section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5.5rem);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.zoho-finance-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.zoho-finance-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(5, 150, 105, 0.06)),
    #ffffff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.zoho-finance-copy {
  display: grid;
  align-content: center;
}

.zoho-finance-copy h2 {
  max-width: 15ch;
}

.zoho-finance-copy p:not(.section-kicker) {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.zoho-finance-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.zoho-finance-points span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(5, 150, 105, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  background: rgba(5, 150, 105, 0.09);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.zoho-authorized-badge {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.zoho-cert-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 17rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.38);
  border-radius: var(--radius);
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(29, 78, 216, 0.84) 62%, rgba(5, 150, 105, 0.72)),
    var(--navy);
  color: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.zoho-cert-card::before {
  content: "";
  position: absolute;
  inset: -22% -8% auto auto;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
}

.zoho-cert-card .zoho-authorized-badge-large {
  position: relative;
  width: min(100%, 20rem);
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
}

.zoho-cert-card span,
.zoho-cert-card strong,
.zoho-cert-card p,
.zoho-cert-card a {
  position: relative;
}

.zoho-cert-card span {
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zoho-cert-card strong {
  margin: 0.25rem 0 0.55rem;
  font-size: 1.65rem;
  line-height: 1;
}

.zoho-cert-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.zoho-directory-link {
  color: #bfdbfe;
  font-size: 0.84rem;
  font-weight: 850;
  text-underline-offset: 0.25rem;
}

.zoho-cert-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.help-section {
  padding-top: clamp(2.75rem, 5vw, 4.75rem);
}

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

.help-card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(29, 78, 216, 0.07), transparent 44%),
    #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.help-card:hover {
  transform: translateY(-0.28rem);
  border-color: rgba(29, 78, 216, 0.32);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.help-card-wide {
  grid-column: span 2;
}

.help-card > span {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--navy), var(--blue-bright)),
    var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(29, 78, 216, 0.18);
}

.help-card:nth-child(2) > span,
.help-card:nth-child(4) > span {
  border-color: rgba(5, 150, 105, 0.3);
  background:
    linear-gradient(135deg, var(--navy), var(--success)),
    var(--success);
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.16);
}

.help-card svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 180ms ease;
}

.help-card:hover svg {
  transform: translateY(-0.1rem) rotate(-3deg);
}

.help-card h3 {
  max-width: 13rem;
  color: var(--navy);
}

.help-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.timeline-section {
  padding-top: clamp(2.6rem, 5vw, 4.8rem);
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-track::before {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 1.15rem;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue-bright), var(--success));
  opacity: 0.55;
}

.timeline-card {
  position: relative;
  display: grid;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3.2rem 1.1rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.06), transparent 45%),
    #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.timeline-card::before {
  position: absolute;
  top: 0.75rem;
  left: 1.1rem;
  width: 0.85rem;
  height: 0.85rem;
  content: "";
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.28);
}

.timeline-card:nth-child(2)::before {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.22);
}

.timeline-card:nth-child(3)::before,
.timeline-card:nth-child(4)::before {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.timeline-card:hover {
  transform: translateY(-0.28rem);
  border-color: rgba(29, 78, 216, 0.32);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
}

.timeline-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-bottom: 0;
  color: var(--navy);
}

.timeline-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.clients-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow: clip;
  contain: paint;
  margin: 0;
  padding: clamp(3.4rem, 6vw, 5.75rem) 0 clamp(3.8rem, 7vw, 6.25rem);
  background: #fff;
  color: var(--ink);
}

.clients-inner {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
}

.clients-heading {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin: 0 auto clamp(2.7rem, 5.5vw, 4.7rem);
  text-align: center;
}

.clients-heading h2 {
  margin: 0;
  color: #526174;
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.3em;
  line-height: 1.55;
  text-transform: uppercase;
}

.clients-heading h2 strong,
.clients-heading h2 span {
  color: var(--red);
  font-weight: 900;
}

.client-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1;
}

.client-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.client-track {
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: client-marquee 34s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-sequence {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(1.1rem, 2.4vw, 2.4rem);
  padding-inline: clamp(0.8rem, 2vw, 1.8rem);
}

.client-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #b9c4cd;
  opacity: 0.78;
  white-space: nowrap;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.client-brand:hover {
  color: #8090a0;
  opacity: 1;
}

.client-mark {
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.85vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
}

.client-name {
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.client-separator {
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.9;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes digital-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-4.2rem, 4.2rem, 0);
  }
}

@keyframes particle-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(1.2rem, -0.8rem, 0) scale(1.03);
  }
}

@keyframes data-network-drift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      42rem -29rem,
      -34rem 24rem,
      52rem 36rem,
      24rem -18rem,
      -31rem 22rem,
      28rem 21rem;
  }
}

@keyframes data-sparkle {
  0% {
    opacity: 0.18;
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    opacity: 0.38;
  }

  100% {
    opacity: 0.26;
    transform: translate3d(0.8rem, -0.55rem, 0) scale(1.025);
  }
}

@keyframes dashboard-bars {
  from {
    transform: scaleY(0.72);
    opacity: 0.72;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .hero::before,
  .hero::after,
  .motion-bars span {
    animation: none;
  }

  .hero-media video {
    display: none;
  }

  main::before,
  main::after {
    animation: none;
  }

  main::before {
    opacity: 0.16;
  }

  main::after {
    opacity: 0.12;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .client-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .client-sequence[aria-hidden="true"] {
    display: none;
  }
}

.services-section {
  border-top: 1px solid var(--line);
}

.industries-section {
  border-top: 1px solid var(--line);
}

.industries-heading h2 {
  max-width: 18ch;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.industry-badge {
  position: relative;
  min-height: 17.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
}

.industry-thumb {
  position: relative;
  height: 8.35rem;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--navy);
}

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

.industry-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.5)),
    linear-gradient(90deg, rgba(245, 158, 11, 0.18), transparent 62%);
}

.industry-icon {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 1;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold-bright);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.industry-badge:nth-child(3n) .industry-icon {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: var(--red);
}

.industry-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.industry-badge h3 {
  position: relative;
  z-index: 1;
  padding-inline: 0.2rem;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.industry-badge p {
  position: relative;
  z-index: 1;
  padding-inline: 0.2rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  margin-bottom: 2rem;
  align-items: flex-end;
}

.section-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

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

.service-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--surface-strong);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(29, 78, 216, 0.34);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.service-card p {
  color: var(--muted);
}

.division-section {
  padding-top: 0;
}

.accounting-division {
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.division-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(5, 150, 105, 0.05) 58%),
    #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.division-copy h2 {
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.division-copy p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.division-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 20rem;
}

.division-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: var(--radius);
  padding: 0.35rem 0.65rem;
  background: rgba(243, 244, 246, 0.86);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.division-points span:nth-child(2n) {
  border-color: rgba(5, 150, 105, 0.22);
  background: rgba(5, 150, 105, 0.08);
}

.division-button {
  border-color: rgba(37, 99, 235, 0.32);
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.16);
  white-space: nowrap;
}

.division-button:hover,
.division-button:focus-visible {
  background: var(--blue);
  color: #ffffff;
}

.division-button svg {
  width: 1rem;
  height: 1rem;
}

.partners-section {
  padding-top: clamp(2.6rem, 5vw, 4.5rem);
}

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

.partner-card {
  min-height: 13.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
}

.partner-mark {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: var(--radius);
  padding: 0.3rem 0.65rem;
  background: rgba(251, 191, 36, 0.18);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.partner-logo {
  width: auto;
  height: 2.35rem;
  max-width: 7rem;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}

.partner-logo-zoho-badge {
  width: min(100%, 11.5rem);
  height: auto;
  max-width: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.partner-logo-easyclocking {
  max-width: 9.2rem;
}

.partner-logo-mscpayroll {
  height: 2.15rem;
  max-width: 9.6rem;
}

.partner-logo-idrive {
  height: 2.25rem;
  max-width: 8.2rem;
}

.partner-logo-prlogix {
  height: 2.8rem;
  max-width: 10rem;
}

.partner-logo-webroot {
  height: 2.1rem;
  max-width: 8.9rem;
}

.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.partner-card-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.partner-card-link:hover,
.partner-card-link:focus-visible {
  color: var(--gold-deep);
  outline: none;
}

.partner-legal-note {
  max-width: 62rem;
  margin: 1.25rem auto 0;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.service-photo {
  position: relative;
  width: 100%;
  height: 5.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius);
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.74), rgba(29, 78, 216, 0.28)),
    url("assets/mmtag-advisory-hero.png");
  background-repeat: no-repeat;
  background-size: 220% auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-position 360ms ease;
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.16), transparent 58%);
}

.service-photo svg {
  position: relative;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  box-sizing: content-box;
  margin: 0.62rem;
  border-radius: var(--radius);
  padding: 0.55rem;
  color: var(--navy);
  background: var(--gold-bright);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.service-card:hover .service-photo {
  border-color: rgba(245, 158, 11, 0.52);
  transform: translateY(-0.08rem);
}

.service-card:hover .service-photo svg {
  transform: translateY(-0.16rem) scale(1.04);
  background: var(--gold);
}

.service-photo-accounting {
  background-position: 65% 64%;
}

.service-photo-consultation {
  background-position: 88% 38%;
}

.service-photo-it {
  background-position: 61% 57%;
}

.service-photo-systems {
  background-position: 57% 70%;
}

.service-photo-payroll {
  background-position: 75% 72%;
}

.service-photo-time {
  background-position: 83% 76%;
}

.service-photo-backup {
  background-position: 45% 46%;
}

.service-photo-security {
  background-position: 96% 28%;
}

.zoho-service-badge {
  width: min(100%, 10.5rem);
  margin-top: auto;
  border-radius: 9px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.capability-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.capability-list div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1rem;
  row-gap: 0.25rem;
  padding: 1.2rem;
  background: #ffffff;
}

.capability-list span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 850;
}

.capability-list strong {
  font-size: 1.08rem;
}

.capability-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: var(--radius);
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.05), rgba(29, 78, 216, 0.08)),
    #ffffff;
}

.process-list span {
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  color: rgba(29, 78, 216, 0.22);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.process-list li:nth-child(2) {
  border-color: rgba(5, 150, 105, 0.18);
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.05), rgba(5, 150, 105, 0.08)),
    #ffffff;
}

.process-list li:nth-child(2) span {
  color: rgba(5, 150, 105, 0.22);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.zoho-section {
  padding-top: 0;
}

.zoho-panel {
  display: grid;
  grid-template-areas:
    "copy cert"
    "text cert"
    "action cert";
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.38fr);
  gap: 0.95rem clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, var(--navy), var(--navy-soft) 64%, rgba(29, 78, 216, 0.88)),
    var(--navy);
  color: #fff;
}

.zoho-panel-copy {
  grid-area: copy;
  max-width: 44rem;
}

.zoho-panel h2 {
  margin-bottom: 0;
  max-width: 22ch;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.02;
}

.zoho-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.zoho-panel-text {
  grid-area: text;
  max-width: 43rem;
  font-size: 1.04rem;
}

.zoho-panel-cert {
  grid-area: cert;
  justify-self: stretch;
  display: grid;
  gap: 0.45rem;
  justify-items: start;
  min-width: 12rem;
  border: 1px solid rgba(37, 99, 235, 0.34);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.zoho-panel-cert img {
  width: min(100%, 12rem);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

.zoho-panel-cert span {
  color: #bfdbfe;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
}

.zoho-panel .button {
  grid-area: action;
  justify-self: start;
  margin-top: 0.35rem;
}

.faq-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
}

.faq-list summary {
  position: relative;
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  padding: 1rem 3.5rem 1rem 1.15rem;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.22);
  color: var(--red);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--gold-bright);
  color: var(--navy);
}

.faq-list p {
  max-width: 66rem;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 1rem 1.15rem 1.2rem;
  color: var(--muted);
}

.faq-list a {
  color: var(--red);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(34rem, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.legal-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.legal-hero {
  max-width: 58rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.legal-hero p:not(.section-kicker) {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
}

.legal-card h2 {
  max-width: none;
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 1.2rem;
  margin-top: 0;
}

.legal-meta {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.65rem;
  background: rgba(5, 150, 105, 0.08);
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 850;
}

.legal-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.legal-nav-list a {
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.48rem 0.7rem;
  color: var(--blue);
  background: rgba(29, 78, 216, 0.06);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.legal-nav-list a:hover,
.legal-nav-list a:focus-visible {
  background: rgba(29, 78, 216, 0.12);
  outline: none;
}

.platform-page {
  overflow: hidden;
}

.platform-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.26), transparent 30rem),
    radial-gradient(circle at 12% 22%, rgba(245, 158, 11, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  color: #ffffff;
}

.platform-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
}

.platform-hero-inner,
.platform-section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.platform-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.44fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.platform-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.96;
}

.platform-hero-copy {
  max-width: 46rem;
  color: rgba(243, 244, 246, 0.84);
  font-size: 1.1rem;
}

.platform-logo-card {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 22px;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.platform-logo-card img {
  width: min(100%, 16rem);
  max-height: 5.4rem;
  object-fit: contain;
  object-position: left center;
}

.platform-logo-card p {
  margin: 0;
  color: rgba(243, 244, 246, 0.78);
}

.platform-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
}

.platform-pill-row span {
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.7rem;
  color: var(--gold-bright);
  background: rgba(245, 158, 11, 0.08);
  font-size: 0.86rem;
  font-weight: 850;
}

.platform-hero-actions,
.platform-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.platform-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.platform-card,
.platform-contact-panel {
  border: 1px solid rgba(29, 78, 216, 0.14);
  border-radius: 18px;
  padding: clamp(1.15rem, 3vw, 1.45rem);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.platform-card h2,
.platform-card h3,
.platform-contact-panel h2 {
  max-width: none;
  color: var(--navy);
}

.platform-card h2,
.platform-contact-panel h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

.platform-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.16rem;
}

.platform-card p,
.platform-card li,
.platform-contact-panel p {
  color: var(--muted);
}

.platform-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.platform-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 4vw, 2rem);
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 158, 11, 0.16), transparent 16rem),
    linear-gradient(135deg, #ffffff, rgba(243, 244, 246, 0.94));
}

.platform-contact-actions .button-secondary {
  border-color: rgba(245, 158, 11, 0.34);
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(29, 78, 216, 0.2);
}

.platform-contact-actions .button-secondary::after {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.34), transparent);
}

.platform-contact-actions .button-secondary:hover,
.platform-contact-actions .button-secondary:focus-visible {
  border-color: rgba(245, 158, 11, 0.58);
  background:
    linear-gradient(135deg, var(--navy-soft) 0%, var(--blue-bright) 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.platform-legal-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-list {
  display: grid;
  gap: 1px;
  margin: 2rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contact-list div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
}

.contact-list dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: var(--red);
  font-weight: 800;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form {
  align-self: start;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.1);
}

.contact-form-custom {
  gap: 0.95rem;
  border-color: rgba(15, 23, 42, 0.1);
  padding: clamp(1.15rem, 2.5vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)),
    #ffffff;
  box-shadow:
    0 28px 75px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.78) inset;
}

.contact-form-static {
  width: min(100%, 32.5rem);
  justify-self: center;
  gap: 0.95rem;
  border-color: rgba(203, 213, 225, 0.95);
  border-radius: 8px;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  background:
    linear-gradient(126deg, transparent 0 12%, rgba(37, 99, 235, 0.055) 12.08% 12.2%, transparent 12.32% 100%),
    linear-gradient(34deg, transparent 0 78%, rgba(245, 158, 11, 0.07) 78.08% 78.22%, transparent 78.34% 100%),
    #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.contact-form-embed {
  position: relative;
  gap: 0.9rem;
  padding: clamp(0.85rem, 2vw, 1.05rem);
  overflow: hidden;
  border-color: rgba(245, 158, 11, 0.32);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 158, 11, 0.26), transparent 28%),
    radial-gradient(circle at 100% 16%, rgba(29, 78, 216, 0.26), transparent 32%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.96) 58%, rgba(29, 78, 216, 0.88));
  color: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.contact-form-zoho-official {
  border: 1px solid rgba(15, 23, 42, 0.1);
  width: 100%;
  max-width: 48rem;
  justify-self: center;
  gap: 0.65rem;
  padding: clamp(0.95rem, 2.2vw, 1.25rem);
  background:
    linear-gradient(126deg, transparent 0 13%, rgba(29, 78, 216, 0.07) 13.08% 13.2%, transparent 13.32% 100%),
    linear-gradient(34deg, transparent 0 78%, rgba(245, 158, 11, 0.1) 78.08% 78.22%, transparent 78.34% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.98)),
    #ffffff;
  color: var(--ink);
  box-shadow:
    0 30px 78px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.contact-form-embed::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 18%, rgba(245, 158, 11, 0.18) 18.1% 18.3%, transparent 18.4% 100%),
    linear-gradient(38deg, transparent 0 58%, rgba(255, 255, 255, 0.12) 58.1% 58.25%, transparent 58.35% 100%);
  content: "";
  opacity: 0.55;
}

.contact-form-zoho-official::before {
  background:
    radial-gradient(circle at 8% 8%, rgba(245, 158, 11, 0.11), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.1), transparent 30%);
  opacity: 0.62;
}

.contact-embed-header,
.contact-embed-shell,
.contact-embed-note,
.contact-form-embed noscript {
  position: relative;
  z-index: 1;
}

.contact-embed-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.15rem 0.2rem 0.1rem;
}

.contact-embed-emblem {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 158, 11, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.9)),
    var(--gold);
  color: var(--navy);
  font-weight: 950;
  box-shadow:
    0 14px 30px rgba(245, 158, 11, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.contact-embed-header .section-kicker {
  margin-bottom: 0.22rem;
  color: var(--gold);
}

.contact-embed-header h3 {
  max-width: 24rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.18;
}

.contact-form-zoho-official .contact-embed-header h3 {
  color: var(--navy);
}

.contact-form-zoho-official .contact-embed-header .section-kicker {
  color: var(--gold-deep);
}

.contact-form-zoho-official .contact-embed-header,
.contact-form-zoho-official .contact-embed-note {
  display: none;
}

.contact-embed-shell {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: calc(var(--radius) - 0.2rem);
  padding: clamp(0.55rem, 1.6vw, 0.75rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 244, 246, 0.98)),
    var(--surface);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.contact-form-zoho-official .contact-embed-shell {
  border-color: rgba(203, 213, 225, 0.9);
  padding: 0;
  background: #ffffff;
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-embed-shell [data-zoho-service-inquiry] {
  overflow: hidden;
  border-radius: calc(var(--radius) - 0.45rem);
  background: var(--surface);
}

.contact-form-zoho-official .contact-embed-shell [data-zoho-service-inquiry] {
  background: #ffffff;
}

.zoho-contact-iframe {
  display: block;
  width: 100%;
  min-height: 62rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: calc(var(--radius) - 0.45rem);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  color-scheme: light;
}

.contact-form-zoho-official .zoho-contact-iframe {
  background: #ffffff;
  box-shadow: none;
}

.zoho-contact-iframe-direct {
  width: 100% !important;
  height: 54rem !important;
  min-height: 54rem !important;
  border: 0 !important;
}

.contact-embed-note {
  margin: -0.1rem 0 0;
  color: rgba(243, 244, 246, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-form-zoho-official .contact-embed-note {
  color: #64748b;
}

.field-row {
  display: grid;
  gap: 0.4rem;
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

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

.contact-form-custom .field-row label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 0.75rem 0.8rem;
  color: var(--ink);
  background: var(--surface);
}

.contact-form-custom .field-row input,
.contact-form-custom .field-row select,
.contact-form-custom .field-row textarea {
  min-height: 3.12rem;
  border-color: #cbd5e1;
  padding: 0.78rem 0.86rem;
  color: var(--ink);
  background: #f8fafc;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.contact-form-static .field-row input,
.contact-form-static .field-row select,
.contact-form-static .field-row textarea {
  border-radius: 8px;
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

.contact-form-custom .field-row input::placeholder,
.contact-form-custom .field-row textarea::placeholder {
  color: #64748b;
}

.field-row select:invalid {
  color: #6b7280;
}

.contact-form-custom .field-row select:invalid {
  color: #64748b;
}

.field-row textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-form-custom .field-row textarea {
  min-height: 9rem;
}

.captcha-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 0.05rem 0 0.15rem;
}

.captcha-row .g-recaptcha {
  transform-origin: left top;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(245, 158, 11, 0.2);
}

.contact-form-custom .field-row input:focus,
.contact-form-custom .field-row select:focus,
.contact-form-custom .field-row textarea:focus {
  border-color: var(--blue-bright);
  background: #ffffff;
  outline: 3px solid rgba(37, 99, 235, 0.18);
}

.contact-submit-button {
  width: 100%;
  min-height: 3.15rem;
  justify-content: center;
  margin-top: 0.1rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--navy);
  box-shadow:
    0 18px 35px rgba(245, 158, 11, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.38) inset;
}

.contact-submit-button svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
  background: var(--gold-deep);
  color: var(--navy);
  box-shadow:
    0 22px 44px rgba(217, 119, 6, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.34) inset;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form-custom .form-note {
  color: #4b5563;
}

.zoho-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  position: relative;
  width: 100%;
  display: grid;
  gap: 1.35rem;
  overflow: hidden;
  margin: clamp(2.5rem, 6vw, 5rem) 0 0;
  padding: clamp(1.6rem, 3.4vw, 3rem) max(1rem, calc((100% - var(--max)) / 2));
  background: transparent;
  color: rgba(243, 244, 246, 0.78);
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.18),
    0 0 42px rgba(37, 99, 235, 0.12);
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94) 52%, rgba(29, 78, 216, 0.78)),
    var(--navy);
}

.site-footer::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-top: 1px solid rgba(37, 99, 235, 0.24);
  background:
    linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.08) 50%, transparent),
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.1), transparent 28%);
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  inset: auto -14% -36% auto;
  z-index: -1;
  width: min(38rem, 60vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(5, 150, 105, 0.26), transparent 58%),
    radial-gradient(circle at 35% 35%, rgba(245, 158, 11, 0.16), transparent 54%);
  filter: blur(6px);
  pointer-events: none;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: rgba(243, 244, 246, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 4.35rem;
  height: 2.75rem;
  object-fit: contain;
  object-position: center;
}

.footer-brand strong {
  font-size: 1.08rem;
  line-height: 1;
}

.footer-brand span span {
  color: rgba(243, 244, 246, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-brand-block > p {
  max-width: 33rem;
  font-size: 0.98rem;
}

.footer-brand-block .footer-tagline {
  color: #bfdbfe;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-cta,
.footer-link-button {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.65rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-cta {
  border: 1px solid rgba(245, 158, 11, 0.62);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.18);
}

.footer-link-button {
  border: 1px solid rgba(147, 197, 253, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-cta:hover,
.footer-link-button:hover,
.footer-cta:focus-visible,
.footer-link-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: var(--gold-deep);
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  border-color: rgba(147, 197, 253, 0.58);
  background: rgba(37, 99, 235, 0.22);
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  min-height: 13.5rem;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-column h2 {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(243, 244, 246, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
  outline: none;
}

.footer-legal-summary {
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid rgba(147, 197, 253, 0.16);
  padding-top: 1.05rem;
}

.footer-legal-summary p {
  max-width: 74rem;
  color: rgba(243, 244, 246, 0.66);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(147, 197, 253, 0.16);
  padding-top: 1.1rem;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: min(28rem, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(15, 23, 42, 0.96);
  color: rgba(243, 244, 246, 0.82);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.26);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-consent a {
  color: #bfdbfe;
  font-weight: 850;
}

.cookie-consent button {
  min-height: 2.35rem;
  border: 1px solid rgba(245, 158, 11, 0.62);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom p {
  min-width: 0;
  text-align: right;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.social-links a {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  filter: drop-shadow(0 0 0.55rem rgba(245, 158, 11, 0.42));
  outline: none;
}

.social-logo {
  width: 1.34rem;
  height: 1.34rem;
  fill: currentColor;
  stroke: none;
}

.social-link-facebook .social-logo {
  width: 1.8rem;
  height: 1.8rem;
}

@media (min-width: 821px) and (max-width: 1380px) {
  .site-header {
    gap: 0.65rem;
    padding-inline: 0.85rem;
  }

  .brand {
    gap: 0.52rem;
  }

  .brand-logo {
    width: 3.5rem;
    height: 2.38rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span {
    max-width: 21rem;
    font-size: 0.56rem;
    letter-spacing: 0.04em;
  }

  .site-nav {
    gap: 0.04rem;
  }

  .site-nav a {
    padding-inline: 0.46rem;
    font-size: 0.82rem;
  }

  .language-switch {
    margin-inline: 0.12rem 0.16rem;
  }

  .site-nav .language-switch a {
    padding-inline: 0.46rem;
  }

  .site-nav .booking-link,
  .site-nav .ticket-link,
  .site-nav .remote-link {
    margin-left: 0.08rem;
    padding-inline: 0.62rem;
  }
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .division-points {
    max-width: none;
  }

  .division-button {
    justify-self: start;
  }

  .zoho-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "text"
      "cert"
      "action";
  }

  .zoho-panel .button {
    justify-self: start;
  }

}

@media (max-width: 820px) {
  .anniversary-card {
    grid-template-columns: 1fr;
    margin: 0;
    overflow: hidden;
  }

  .anniversary-media {
    min-height: 11rem;
    padding: 1.3rem 4rem 1rem;
  }

  .anniversary-media img {
    max-height: 8.5rem;
  }

  .anniversary-content {
    max-height: none;
    overflow: visible;
    padding-top: 1.4rem;
  }

  .anniversary-content h2 {
    max-width: 12ch;
  }

  .site-header {
    min-height: 4.2rem;
  }

  .brand-copy span {
    max-width: min(24rem, calc(100vw - 8.5rem));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .nav-dropdown {
    width: 100%;
    display: grid;
  }

  .nav-dropdown::after {
    display: none;
  }

  .site-nav .nav-dropdown-trigger {
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0.1rem 0 0.25rem;
    border-color: rgba(29, 78, 216, 0.26);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .nav-dropdown-menu a {
    justify-content: center;
    min-height: 2.22rem;
  }

  .language-switch {
    width: 100%;
    margin: 0.15rem 0 0.35rem;
  }

  .site-nav .language-switch a {
    flex: 1;
  }

  .site-nav .ticket-link,
  .site-nav .remote-link {
    margin-left: 0;
  }

  .hero {
    min-height: min(40rem, calc(100svh - 6.5rem));
  }

  .hero-media video,
  .hero-media img {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.66)),
      linear-gradient(0deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.1));
  }

  .hero-inner {
    padding-top: 3.4rem;
    padding-bottom: 2.4rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 3.25rem;
  }

  html[lang="es"] .hero h1 {
    max-width: 13ch;
  }

  .hero-nowrap {
    white-space: normal;
  }

  h2 {
    font-size: 2.1rem;
  }

  .signal-strip,
  .intro-grid,
  .zoho-finance-panel,
  .division-panel,
  .help-grid,
  .platform-hero-inner,
  .platform-grid,
  .platform-contact-panel,
  .timeline-track,
  .industry-grid,
  .partner-grid,
  .feature-band,
  .process-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .timeline-track::before {
    top: 0.75rem;
    bottom: 0.75rem;
    left: 1.52rem;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-card {
    padding-left: 3.3rem;
    padding-top: 1.15rem;
  }

  .timeline-card::before {
    left: 1.05rem;
  }

  .clients-heading h2 {
    letter-spacing: 0.18em;
  }

  .client-sequence {
    gap: 1.1rem;
    padding-inline: 1rem;
  }

  .client-brand {
    gap: 0.5rem;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .booking-modal {
    padding: 0.65rem;
  }

  .booking-card {
    max-height: 94vh;
    max-height: 94svh;
    grid-template-rows: auto minmax(21rem, 1fr);
  }

  .booking-head {
    align-items: flex-start;
    padding: 0.9rem;
  }

  .booking-head h2 {
    font-size: 1.3rem;
  }

  .booking-frame-shell,
  .booking-frame-shell iframe {
    min-height: 21rem;
  }

  .booking-frame-shell iframe {
    height: 72vh;
    height: 72svh;
  }

  .anniversary-modal {
    padding: 0.8rem;
  }

  .anniversary-card {
    border-radius: 14px;
  }

  .anniversary-content {
    padding: 1.35rem;
  }

  .anniversary-number span {
    font-size: 4.8rem;
  }

  .anniversary-content h2 {
    font-size: 2rem;
  }

  .anniversary-content p {
    font-size: 0.94rem;
  }

  .anniversary-actions .button {
    width: 100%;
  }

  .brand-copy span {
    display: none;
  }

  .brand-logo {
    width: 3.65rem;
    height: 2.35rem;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 34rem;
  }

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

  .signal-strip {
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    width: 100%;
  }

  .service-grid,
  .help-grid,
  .industry-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .help-card-wide {
    grid-column: auto;
  }

  .clients-heading h2 {
    letter-spacing: 0.12em;
    line-height: 1.7;
  }

  .client-track {
    animation-duration: 28s;
  }

  .client-name {
    font-size: 0.58rem;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .capability-list div,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .contact-form-custom {
    padding: 1rem;
  }

  .contact-form-embed {
    padding: 0.72rem;
  }

  .captcha-row .g-recaptcha {
    transform: scale(0.9);
  }

  .contact-embed-header {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .contact-embed-emblem {
    width: 2.55rem;
    height: 2.55rem;
  }

  .contact-embed-shell {
    padding: 0.28rem;
  }

  .site-footer {
    align-items: start;
    padding: 1.15rem 1rem;
  }

  .footer-actions,
  .footer-cta,
  .footer-link-button {
    width: 100%;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand span span {
    white-space: normal;
  }

  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    grid-template-columns: 1fr;
  }
}

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