:root {
  --bg: #FAFAFF;
  --bg-soft: #F2F2F7;
  --bg-subtle: #F7F7FC;
  --surface: #FFFFFF;
  --surface-soft: #FDFDFF;

  --text: #1A1A1A;
  --text-soft: rgba(26, 26, 26, 0.72);
  --text-muted: rgba(26, 26, 26, 0.54);
  --text-faint: rgba(26, 26, 26, 0.38);

  --line: rgba(26, 26, 26, 0.10);
  --line-strong: rgba(26, 26, 26, 0.18);

  --mk-coral: #FF5A3D;
  --mk-amber: #FFB000;
  --mk-magenta: #E94B8A;
  --mk-violet: #7C3AED;
  --mk-lime: #B7F43A;
  --mk-orange: #FF7A1A;

  --grey-1: #F6F6FB;
  --grey-2: #ECECF2;
  --grey-3: #E5E6ED;
  --grey-4: #D9DAE2;

  --max: 1180px;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow-soft: 0 24px 70px rgba(26, 26, 26, 0.08);
  --shadow-card: 0 18px 44px rgba(26, 26, 26, 0.055);

  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 90, 61, 0.07), transparent 24%),
    radial-gradient(circle at 8% 24%, rgba(255, 176, 0, 0.055), transparent 22%),
    linear-gradient(180deg, #FAFAFF 0%, #FFFFFF 42%, #F6F6FB 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.026) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 78%);
  z-index: 0;
}

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

.site {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.18rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav > a,
.nav-toggle {
  position: relative;
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav > a::after,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: linear-gradient(90deg, var(--mk-coral), var(--mk-amber), var(--mk-magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav > a:hover,
.nav-toggle:hover {
  color: var(--text);
}

.nav > a:hover::after,
.nav-toggle:hover::after,
.nav-item-services:hover .nav-toggle::after,
.nav-item-services:focus-within .nav-toggle::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-item-services {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-item-services:hover .nav-caret,
.nav-item-services:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 320px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 60;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-item-services:hover .nav-dropdown,
.nav-item-services:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
  background: rgba(255, 90, 61, 0.06);
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 32px rgba(26, 26, 26, 0.12);
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #000000;
}

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

p {
  font-weight: 400;
}

.hero {
  position: relative;
  padding: 10vh 0 10vh;
}

.hero::before {
  content: "";
  position: absolute;
  left: 5vw;
  bottom: 62px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.52);
  box-shadow:
    44px -34px 0 rgba(255, 90, 61, 0.25),
    118px 16px 0 rgba(233, 75, 138, 0.17);
  animation: floatDots 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 104px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--mk-coral);
  box-shadow:
    -42px 86px 0 rgba(255, 176, 0, 0.34),
    84px 156px 0 rgba(233, 75, 138, 0.20),
    34px 238px 0 rgba(124, 58, 237, 0.12);
  animation: floatDots 8s ease-in-out infinite alternate;
  opacity: 0.72;
  pointer-events: none;
}

@keyframes floatDots {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(14px, -18px, 0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 13px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.04);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mk-coral), var(--mk-amber));
  box-shadow: 0 0 18px rgba(255, 90, 61, 0.22);
}

h1 {
  max-width: 890px;
  margin-bottom: 30px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.95rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.accent-text {
  color: transparent;
  background: linear-gradient(100deg, var(--mk-coral) 0%, var(--mk-orange) 34%, var(--mk-magenta) 72%, var(--mk-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.hero-lead {
  max-width: 725px;
  margin-bottom: 38px;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.68;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #000000;
  box-shadow: 0 22px 54px rgba(26, 26, 26, 0.18);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 61, 0.35);
  background: rgba(255, 90, 61, 0.045);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 650;
}

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

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.46);
}

.hero-panel {
  position: relative;
  min-height: 720px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 176, 0, 0.10), transparent 25%),
    radial-gradient(circle at 16% 86%, rgba(233, 75, 138, 0.065), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 252, 0.9));
  box-shadow: 0 34px 90px rgba(26, 26, 26, 0.09);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.82) 42%, transparent 58%);
  transform: translateX(-80%);
  animation: panelShine 9s ease-in-out infinite;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(26, 26, 26, 0.10);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 176, 0, 0.13), transparent 56%);
  pointer-events: none;
}

@keyframes panelShine {
  0%, 50% {
    transform: translateX(-95%);
    opacity: 0;
  }

  58% {
    opacity: 0.74;
  }

  74%, 100% {
    transform: translateX(95%);
    opacity: 0;
  }
}

.panel-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 4px 2px 0;
}

.panel-title {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(26, 26, 26, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(26, 26, 26, 0.66);
  font-size: 0.76rem;
  font-weight: 750;
}

.panel-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mk-coral), var(--mk-amber));
}

.metric-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(26, 26, 26, 0.095);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.055);
  overflow: hidden;
}

.metric-card + .metric-card {
  margin-top: 18px;
}

.metric-label {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.metric-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.metric-number {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.metric-up {
  color: var(--text);
  font-weight: 800;
  font-size: 0.88rem;
}

.metric-bar {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.08);
}

.metric-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform-origin: left;
}

.metric-card-control .metric-fill {
  background: linear-gradient(90deg, var(--mk-coral), var(--mk-orange), var(--mk-amber));
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.24);
}

.metric-card-quality .metric-fill {
  background: linear-gradient(90deg, var(--mk-magenta), var(--mk-violet), #201283);
  box-shadow: 0 0 22px rgba(233, 75, 138, 0.22);
}

.panel-insight {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(26, 26, 26, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.035);
}

.panel-insight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.panel-insight span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.panel-footer {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.035);
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.mini-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.section {
  padding: 96px 0;
}

.section-header {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 850;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h2 {
  margin-bottom: 20px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.052em;
  font-weight: 700;
}

.section-intro {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
  font-weight: 400;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.statement-card {
  position: relative;
  padding: clamp(32px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 176, 0, 0.28), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(255, 90, 61, 0.24), transparent 36%),
    radial-gradient(circle at 78% 92%, rgba(233, 75, 138, 0.16), transparent 32%),
    linear-gradient(145deg, #FFFFFF 0%, #F7F4F6 48%, #F3F3F8 100%);
  box-shadow: var(--shadow-soft);
}

.statement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 42%, rgba(255, 255, 255, 0.36));
  pointer-events: none;
}

.statement-card::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: 36px;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mk-coral), var(--mk-amber), var(--mk-magenta));
}

.statement-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.bullets {
  display: grid;
  gap: 18px;
}

.bullet {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.bullet-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.06);
  color: var(--text);
  font-weight: 900;
}

.bullet:nth-child(1) .bullet-icon {
  background: rgba(255, 90, 61, 0.14);
}

.bullet:nth-child(2) .bullet-icon {
  background: rgba(255, 176, 0, 0.18);
}

.bullet:nth-child(3) .bullet-icon {
  background: rgba(233, 75, 138, 0.13);
}

.bullet strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.025em;
}

.bullet span {
  display: block;
  color: var(--text-soft);
  line-height: 1.62;
  font-size: 0.96rem;
  font-weight: 400;
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 176, 0, 0.06), transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(233, 75, 138, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(242, 242, 247, 0.76));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatDots 9s ease-in-out infinite alternate;
}

.services-section::before {
  width: 10px;
  height: 10px;
  right: 12vw;
  top: 96px;
  background: var(--mk-coral);
  opacity: 0.30;
}

.services-section::after {
  width: 16px;
  height: 16px;
  right: 18vw;
  bottom: 86px;
  background: var(--mk-amber);
  animation-delay: -2s;
  opacity: 0.22;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 61, 0.24);
  background: #FFFFFF;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 850;
  font-size: 0.88rem;
}

.service-card:nth-child(1) .service-number {
  background: rgba(255, 90, 61, 0.14);
}

.service-card:nth-child(2) .service-number {
  background: rgba(255, 176, 0, 0.18);
}

.service-card:nth-child(3) .service-number {
  background: rgba(233, 75, 138, 0.14);
}

.service-card:nth-child(4) .service-number {
  background: rgba(124, 58, 237, 0.12);
}

.service-card:nth-child(5) .service-number {
  background: rgba(183, 244, 58, 0.18);
}

.service-card:nth-child(6) .service-number {
  background: rgba(255, 122, 26, 0.14);
}

.service-card h3 {
  margin-bottom: 13px;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.68;
  font-weight: 400;
}

.focus-band {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 176, 0, 0.08), transparent 16%),
    radial-gradient(circle at 18% 76%, rgba(255, 90, 61, 0.06), transparent 18%),
    linear-gradient(180deg, #ECECF2 0%, #E5E6ED 100%);
  color: #1A1A1A;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.focus-band::before {
  content: "";
  position: absolute;
  right: 10vw;
  top: 86px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 61, 0.13);
  background: radial-gradient(circle at center, rgba(255, 176, 0, 0.10), transparent 62%);
  pointer-events: none;
}

.focus-band .section-kicker {
  color: var(--text);
}

.focus-band h2 {
  color: var(--text);
}

.focus-band p {
  color: rgba(26, 26, 26, 0.72);
  font-weight: 400;
}

.focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.focus-list {
  display: grid;
  gap: 14px;
}

.focus-item {
  padding: 18px 20px;
  border: 1px solid rgba(26, 26, 26, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(26, 26, 26, 0.74);
  line-height: 1.6;
  font-weight: 400;
  backdrop-filter: blur(10px);
}

.focus-item strong {
  color: var(--text);
  font-weight: 700;
}

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

.method-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.method-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-step h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.method-step p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.58;
  font-weight: 400;
}

.cta {
  padding: 112px 0 122px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 176, 0, 0.09), transparent 30%),
    radial-gradient(circle at 16% 78%, rgba(233, 75, 138, 0.06), transparent 26%),
    linear-gradient(145deg, #FFFFFF, #F3F3F8);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cta-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 180px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mk-coral), var(--mk-amber), var(--mk-magenta));
  transform: translateX(-50%);
}

.cta-box h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  max-width: 740px;
  margin: 0 auto 34px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 400;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 650px;
  }

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

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

@media (max-width: 760px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 70px;
  }


  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 78px 0 64px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
    letter-spacing: -0.062em;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    letter-spacing: -0.045em;
  }

  .hero-panel {
    min-height: auto;
    padding: 20px;
  }

  .metric-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .panel-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .section,
  .focus-band {
    padding: 72px 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .cta {
    padding: 76px 0 84px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.page-404 .header {
  position: sticky;
}

.error-main {
  min-height: calc(100vh - 180px);
}

.error-hero {
  position: relative;
  min-height: calc(100vh - 180px);
  padding: clamp(32px, 10vw, 32px) 0;
  overflow: hidden;
}

.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 176, 0, 0.08), transparent 18%),
    radial-gradient(circle at 84% 24%, rgba(255, 90, 61, 0.08), transparent 20%),
    radial-gradient(circle at 72% 78%, rgba(233, 75, 138, 0.06), transparent 22%);
  z-index: 0;
}

.error-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 26, 26, 0.08) 18%,
    rgba(26, 26, 26, 0.12) 50%,
    rgba(26, 26, 26, 0.08) 82%,
    transparent 100%
  );
  transform: rotate(14deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
}

.error-hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.error-hero-bg span {
  font-family: var(--font-display);
  font-size: clamp(8rem, 30vw, 26rem);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: -0.09em;
  color: rgba(255, 90, 61, 0.12);
  user-select: none;
}

.error-layout {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 260px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.error-copy {
  max-width: 760px;
  align-self: center;
}

.error-kicker {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.page-404 h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: 0.962;
  letter-spacing: -0.0355em;
  font-weight: 700;
  color: var(--text);
}

.error-lead {
  max-width: 640px;
  margin-bottom: 42px;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.75;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  align-items: center;
}

.error-links a {
  position: relative;
  display: inline-block;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.error-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--mk-coral),
    var(--mk-amber),
    var(--mk-magenta)
  );
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.error-links a:hover {
  color: #000000;
}

.error-links a:hover::after {
  transform: scaleX(0.45);
  opacity: 0.9;
}

.error-note {
  align-self: start;
  justify-self: end;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--text-faint);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-note span:first-child {
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.14em;
}

@media (max-width: 1080px) {
  .error-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .error-note {
    justify-self: start;
    text-align: left;
    writing-mode: initial;
    transform: none;
    gap: 4px;
  }

  .error-hero::after {
    left: auto;
    right: 12%;
    transform: rotate(10deg);
  }
}

@media (max-width: 760px) {
  .error-layout {
    width: min(100% - 28px, var(--max));
  }

  .error-main,
  .error-hero {
    min-height: auto;
  }

  .error-hero {
    padding: 72px 0 64px;
  }

  .error-hero-bg span {
    font-size: clamp(6rem, 34vw, 10rem);
  }

  .page-404 h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    letter-spacing: -0.06em;
  }

  .error-links {
    gap: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .error-note {
    display: none;
  }
}
/* =========================================================
   MENÚ HAMBURGUESA · MOBILE
   CSS puro, sin JavaScript
   ========================================================= */

.mobile-nav-control,
.mobile-nav-toggle,
.nav-mobile-cta {
  display: none;
}

@media (max-width: 760px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    position: relative;
    min-height: 70px;
  }

  .mobile-nav-control {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 120;
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
  }

  .mobile-nav-toggle__line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease;
  }

  .mobile-nav-control:checked + .mobile-nav-toggle .mobile-nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-control:checked + .mobile-nav-toggle .mobile-nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-control:checked + .mobile-nav-toggle .mobile-nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    z-index: 110;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
      radial-gradient(circle at 88% 8%, rgba(255, 90, 61, 0.08), transparent 28%),
      radial-gradient(circle at 8% 28%, rgba(255, 176, 0, 0.07), transparent 26%),
      rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 80px rgba(26, 26, 26, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .mobile-nav-control:checked ~ .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav > a,
  .nav-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
  }

  .nav > a::after,
  .nav-toggle::after {
    display: none;
  }

  .nav-item,
  .nav-item-services {
    position: static;
    width: 100%;
  }

  .nav-item-services {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-toggle {
    cursor: default;
  }

  .nav-caret {
    display: none;
  }

  .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    padding: 10px 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-item-services:hover .nav-dropdown,
  .nav-item-services:focus-within .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    min-width: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

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

  .nav-dropdown a {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 0 10px 18px;
    border-radius: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.35;
    transform: none;
  }

  .nav-dropdown a,
  .nav-dropdown a:hover,
  .nav-dropdown a:focus {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mk-coral), var(--mk-amber));
    opacity: 0.75;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus {
    background: transparent;
    color: var(--text);
  }

  .nav > a.nav-mobile-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    width: 100%;
    min-height: 52px !important;
    margin-top: 16px;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--text) !important;
    color: var(--bg) !important;
    font-size: 0.95rem !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-align: center;
    box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
  }

  .nav > a.nav-mobile-cta:hover,
  .nav > a.nav-mobile-cta:focus {
    background: #000000 !important;
    color: #ffffff !important;
  }

  .nav > a.nav-mobile-cta::before,
  .nav > a.nav-mobile-cta::after {
    display: none !important;
  }
}
.obfuscated-email {
  cursor: pointer;
  word-break: break-word;
}
/* =========================================================
   BACK TO TOP FLOATING BUTTON
========================================================= */

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(20px, 3vw, 34px);
  z-index: 90;

  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(20, 20, 22, 0.14);
  border-radius: 14px;

  background: rgba(250, 250, 255, 0.86);
  color: var(--text, #141416);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);

  box-shadow:
    0 18px 44px rgba(20, 20, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--text, #141416);
  color: #ffffff;
  border-color: var(--text, #141416);
  transform: translateY(-3px) scale(1);
  box-shadow:
    0 22px 52px rgba(20, 20, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(20, 20, 22, 0.18);
  outline-offset: 4px;
}

.back-to-top__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.back-to-top__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .back-to-top__icon {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    transform: none;
  }
}