:root {
  --orange: #f6821f;
  --orange-deep: #dc5f0d;
  --orange-soft: #fff0e2;
  --ink: #10100f;
  --ink-soft: #383733;
  --paper: #f8f6f2;
  --surface: #ffffff;
  --surface-raised: #fffdf9;
  --line: rgba(16, 16, 15, 0.12);
  --line-strong: rgba(16, 16, 15, 0.2);
  --muted: #716f69;
  --shadow-sm: 0 8px 28px rgba(26, 22, 18, 0.08);
  --shadow-lg: 0 28px 80px rgba(26, 22, 18, 0.14);
  --header-bg: rgba(255, 253, 249, 0.82);
  --success: #23855c;
  --error: #bd3b2e;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 52px;
  --container: 1220px;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  --ink: #f7f4ef;
  --ink-soft: #d6d2cb;
  --paper: #0e0e0d;
  --surface: #171715;
  --surface-raised: #1c1b19;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --muted: #aaa69f;
  --orange-soft: #2b1c10;
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.38);
  --header-bg: rgba(23, 23, 21, 0.84);
  --success: #75d6aa;
  --error: #ff8f83;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

::selection {
  background: var(--orange);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.preloader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #0d0d0c;
  color: #fff;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-logo--loader {
  width: 58px;
  height: 58px;
  animation: loader-on 1s var(--ease) both;
}

.preloader-word {
  animation: loader-word 0.65s 0.25s var(--ease) both;
}

@keyframes loader-on {
  0% { opacity: 0.2; transform: scale(0.82); box-shadow: none; }
  52% { opacity: 1; transform: scale(1.08); box-shadow: 0 0 50px rgba(246, 130, 31, 0.72); }
  100% { opacity: 1; transform: scale(1); box-shadow: 0 0 22px rgba(246, 130, 31, 0.34); }
}

@keyframes loader-word {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: var(--line);
}

.scroll-progress__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange), #ffb56f);
  box-shadow: 0 0 14px rgba(246, 130, 31, 0.58);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 48px), 1180px);
  min-height: 70px;
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--header-bg);
  box-shadow: 0 14px 38px rgba(18, 16, 13, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 46px rgba(18, 16, 13, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 11px rgba(246, 130, 31, 0.2));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="true"] {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.language-toggle,
.theme-toggle,
.menu-toggle {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.3s ease;
}

.language-toggle {
  display: inline-flex;
  min-width: 58px;
  padding: 0 11px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.language-toggle__divider {
  margin-inline: 3px;
  color: var(--line-strong);
}

.language-toggle [data-language-next] {
  color: var(--muted);
}

.language-toggle:hover,
.theme-toggle:hover,
.menu-toggle:hover {
  border-color: rgba(246, 130, 31, 0.5);
  transform: scale(1.05);
}

.theme-toggle {
  position: relative;
  overflow: hidden;
}

.theme-toggle__sun,
.theme-toggle__moon {
  position: absolute;
  font-size: 16px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.theme-toggle__moon {
  color: #f6c765;
  font-size: 14px;
  opacity: 0;
  transform: translateY(14px);
}

html[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: translateY(-14px);
}

html[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--small {
  min-height: 46px;
  padding-inline: 19px;
}

.button--primary {
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(246, 130, 31, 0.22);
  color: #fff;
}

.button--primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 15px 34px rgba(246, 130, 31, 0.34);
}

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: rgba(246, 130, 31, 0.42);
  box-shadow: var(--shadow-sm);
}

.button-arrow {
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.3s var(--ease);
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.whatsapp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c780;
  box-shadow: 0 0 0 4px rgba(34, 199, 128, 0.13);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 145px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow--one {
  top: -14vw;
  right: -9vw;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(246, 130, 31, 0.2), rgba(246, 130, 31, 0));
}

.hero-glow--two {
  bottom: -22vw;
  left: -18vw;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(246, 190, 130, 0.12), transparent 66%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(246, 130, 31, 0.13);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.security-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 6.6vw, 100px);
}

.text-accent,
.section-heading h2 span,
.about-copy h2 span,
.contact-copy h2 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

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

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  position: relative;
  padding: 8px 13px 8px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-chips li::before {
  content: "✓";
  position: absolute;
  left: 11px;
  color: var(--orange);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit--outer {
  width: 520px;
  height: 520px;
  animation: orbit-spin 42s linear infinite;
}

.orbit--outer::before,
.orbit--inner::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(246, 130, 31, 0.55);
}

.orbit--inner {
  width: 420px;
  height: 420px;
  border-style: dashed;
  animation: orbit-spin 32s linear infinite reverse;
}

.orbit--inner::before {
  top: auto;
  right: 0;
  bottom: 18%;
  left: auto;
  width: 6px;
  height: 6px;
}

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

.support-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 385px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: #161613;
  box-shadow: var(--shadow-lg);
  color: #fff;
  transform: rotate(-2.5deg);
  transition: transform 0.7s var(--ease);
}

.hero-visual:hover .support-panel {
  transform: rotate(0deg) translateY(-5px);
}

.support-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-panel__label {
  color: #88857d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #b7d9c8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42ce8f;
  box-shadow: 0 0 10px #42ce8f;
}

.support-panel__mark {
  display: grid;
  width: 100%;
  min-height: 164px;
  place-items: center;
}

.brand-logo--large {
  width: 112px;
  height: 112px;
  filter: drop-shadow(0 0 24px rgba(246, 130, 31, 0.38));
}

.support-panel h2 {
  margin: 2px 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.support-panel p {
  margin: 0;
  color: #aaa69e;
  font-size: 12px;
}

.support-panel__meter {
  height: 5px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.support-panel__meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffba72);
}

.support-panel__tags {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #74716b;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.floating-chip--top {
  top: 12%;
  left: -3%;
  animation: float 5.4s ease-in-out infinite;
}

.floating-chip--bottom {
  right: -3%;
  bottom: 13%;
  animation: float 6.2s 0.8s ease-in-out infinite reverse;
}

.floating-chip__icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 9px;
}

.pulse-ring {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #42ce8f;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #42ce8f;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-cue {
  position: absolute;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  animation: scroll-cue 2s var(--ease) infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(-100%); }
  65%, 100% { transform: translateY(100%); }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 68px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(43px, 5vw, 72px);
}

.section-heading > p:last-child,
.about-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.services {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--surface);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 325px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: var(--paper);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.55s var(--ease), background 0.4s ease;
}

.service-card:hover {
  border-color: rgba(246, 130, 31, 0.45);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card:hover::before {
  background: var(--orange-soft);
  transform: scale(1.15);
}

.service-card--featured {
  background: var(--orange);
  color: #fff;
}

.service-card--featured::before {
  border-color: rgba(255, 255, 255, 0.22);
}

.service-card--featured:hover::before {
  background: rgba(255, 255, 255, 0.1);
}

.service-card--wide {
  min-height: 285px;
  grid-column: span 3;
}

.service-card:nth-child(4) {
  grid-column: span 3;
}

.service-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card--featured .service-card__meta,
.service-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-code {
  display: grid;
  min-width: 43px;
  height: 32px;
  place-items: center;
  padding-inline: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--orange-deep);
}

.service-card--featured .service-code {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card > a i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.service-card--featured > a i {
  border-color: rgba(255, 255, 255, 0.32);
}

.service-card > a:hover i {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(8deg);
}

.service-card--featured > a:hover i {
  background: #fff;
  color: var(--orange);
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(55px, 9vw, 135px);
}

.about-portrait {
  position: relative;
  padding: 28px;
}

.portrait-card {
  position: relative;
  display: flex;
  min-height: 540px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 36px;
  background: #161613;
  box-shadow: var(--shadow-lg);
  color: #fff;
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
}

.about-portrait:hover .portrait-card {
  transform: rotate(-1deg) translateY(-6px);
}

.portrait-card::before,
.portrait-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.portrait-card::before {
  top: 22%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 36% 30%, #ffb36f, var(--orange) 45%, #8d3500 100%);
  box-shadow: 0 0 90px rgba(246, 130, 31, 0.22);
  transform: translateX(-50%);
}

.portrait-card::after {
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.portrait-label {
  position: relative;
  z-index: 2;
  color: #8e8a82;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portrait-initial {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 210px;
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  text-shadow: 0 15px 35px rgba(75, 23, 0, 0.3);
  transform: translate(-52%, -50%);
}

.portrait-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.portrait-caption strong {
  font-family: var(--font-display);
  font-size: 35px;
  letter-spacing: -0.04em;
}

.portrait-caption span {
  color: #9c9890;
  font-size: 10px;
}

.about-sticker {
  position: absolute;
  z-index: 4;
  top: 2px;
  right: -12px;
  display: grid;
  width: 115px;
  height: 115px;
  place-items: center;
  border: 8px solid var(--surface);
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  transform: rotate(9deg);
}

.about-copy .about-lead {
  margin: 30px 0 20px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.about-copy > p:not(.section-kicker) {
  max-width: 650px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--line);
}

.about-values div {
  display: flex;
  min-height: 115px;
  flex-direction: column;
  justify-content: center;
  padding: 19px;
  background: var(--paper);
}

.about-values strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
}

.about-values span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link i {
  font-size: 17px;
  font-style: normal;
  transition: transform 0.25s var(--ease);
}

.text-link:hover i {
  transform: translate(3px, -3px);
}

.news {
  background: var(--paper);
}

.section-heading--row .section-kicker {
  margin-bottom: 22px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 20px 1fr 45px;
  align-items: center;
  gap: 28px;
  padding: 34px 6px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.35s ease;
}

.news-item:hover {
  padding-inline: 20px;
  background: var(--surface);
}

.news-item time {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.news-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-soft);
}

.news-tag {
  color: var(--orange-deep);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.news-tag--soon {
  color: var(--success);
}

.news-item h3 {
  margin: 7px 0 5px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.news-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.news-item:hover .news-arrow {
  background: var(--orange);
  color: #fff;
  transform: rotate(8deg);
}

.method {
  background: var(--surface);
}

.section-heading--center {
  display: block;
  max-width: 750px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-kicker {
  justify-content: center;
  margin-bottom: 22px;
}

.section-heading--center > p:last-child {
  max-width: 560px;
  margin: 24px auto 0;
}

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

.process-list li {
  position: relative;
  min-height: 310px;
  padding: 25px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list li::before {
  content: "";
  position: absolute;
  top: 87px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.process-number {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 45px;
  height: 45px;
  margin: 34px 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.4s var(--ease);
}

.process-icon i {
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.process-list li:hover .process-icon {
  border-color: var(--orange);
  background: var(--orange-soft);
  transform: scale(1.1);
}

.process-list h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.security {
  padding-top: 0;
  background: var(--surface);
}

.security-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  padding: clamp(42px, 7vw, 90px);
  border-radius: 42px;
  background: #151513;
  color: #fff;
}

.security-card::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 130, 31, 0.2), transparent 67%);
}

.security-card::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -190px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.security-copy,
.security-points {
  position: relative;
  z-index: 2;
}

.section-kicker--light {
  color: #ffad69;
}

.security-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.security-copy h2 span {
  color: #ff9f52;
}

.security-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 26px 0 34px;
  color: #aaa79f;
  font-size: 16px;
}

.button--light {
  background: #fff;
  color: #171715;
}

.button--light:hover {
  background: var(--orange);
  box-shadow: 0 12px 35px rgba(246, 130, 31, 0.3);
  color: #fff;
}

.security-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.security-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-points article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-points article > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.security-points h3 {
  margin: -4px 0 7px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.security-points p {
  margin: 0;
  color: #928f88;
  font-size: 12px;
  line-height: 1.65;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(55px, 8vw, 110px);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 27px 0 0;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.contact-direct a {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 15px;
  max-width: 450px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.contact-direct a:hover {
  border-color: rgba(246, 130, 31, 0.44);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-direct__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 800;
}

.contact-direct__icon--wa {
  background: rgba(34, 199, 128, 0.13);
  color: #149b61;
}

.contact-direct small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-direct strong {
  font-size: 12px;
}

.contact-direct i {
  margin-right: 6px;
  font-size: 18px;
  font-style: normal;
}

.contact-form {
  position: relative;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.72;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(246, 130, 31, 0.1);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--orange);
}

.form-submit {
  width: 100%;
  margin-top: 23px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 12px 4px 0;
  font-size: 11px;
  text-align: center;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 13px 4px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-note .whatsapp-dot {
  flex: 0 0 auto;
}

.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }

.site-footer {
  padding: 52px 0 25px;
  border-radius: 44px 44px 0 0;
  background: #151513;
  color: #fff;
}

.footer-top,
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand--footer {
  font-size: 25px;
}

.footer-top > p {
  margin: 0;
  color: #aaa79f;
  font-size: 11px;
}

.footer-to-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  color: #aaa79f;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-to-top i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.footer-to-top:hover i {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 43px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #77736d;
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    align-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    overflow: hidden;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: var(--surface-raised);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu a {
    padding: 14px 17px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-menu a:hover {
    background: var(--orange-soft);
    color: var(--orange-deep);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(55px, 7vw, 78px);
  }

  .orbit--outer { width: 430px; height: 430px; }
  .orbit--inner { width: 350px; height: 350px; }

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

  .service-card,
  .service-card--wide,
  .service-card:nth-child(4) {
    grid-column: span 1;
  }

  .service-card--wide {
    grid-column: 1 / -1;
  }

  .about-grid {
    gap: 60px;
  }

  .security-card {
    gap: 45px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
    gap: 45px;
  }
}

@media (max-width: 850px) {
  .section {
    padding: 95px 0;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    top: 11px;
    width: calc(100% - 22px);
  }

  .hero {
    min-height: auto;
    padding: 145px 0 70px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .trust-chips {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 510px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .section-heading--row {
    display: block;
  }

  .section-heading .section-kicker {
    margin-bottom: 22px;
  }

  .section-heading > p:last-child {
    max-width: 600px;
    margin-top: 25px;
  }

  .about-grid,
  .contact-grid,
  .security-card {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 510px);
    margin-inline: auto;
  }

  .portrait-card {
    min-height: 500px;
  }

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

  .process-list li:nth-child(3) {
    border-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .security-card {
    padding: 55px 38px;
  }

  .contact-copy {
    max-width: 650px;
  }

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

  .footer-top > p {
    display: none;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-bottom > div {
    justify-content: flex-end;
  }

  .footer-bottom > span:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 90px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    min-height: 60px;
    padding: 7px 8px 7px 14px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo {
    width: 37px;
    height: 37px;
  }

  .header-actions {
    gap: 5px;
  }

  .language-toggle,
  .theme-toggle,
  .menu-toggle {
    min-width: 39px;
    height: 39px;
  }

  .language-toggle {
    min-width: 50px;
    padding-inline: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.2vw, 67px);
    line-height: 0.95;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    margin-top: 30px;
  }

  .button {
    min-height: 52px;
  }

  .trust-chips {
    margin-top: 28px;
  }

  .trust-chips li {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 4px;
  }

  .support-panel {
    width: min(83vw, 345px);
    padding: 21px;
  }

  .support-panel__mark {
    min-height: 140px;
  }

  .support-panel h2 {
    font-size: 24px;
  }

  .orbit--outer { width: 380px; height: 380px; }
  .orbit--inner { width: 300px; height: 300px; }

  .floating-chip {
    max-width: 180px;
    padding: 9px 11px;
    font-size: 8px;
  }

  .floating-chip--top { top: 4%; left: 0; }
  .floating-chip--bottom { right: 0; bottom: 5%; }

  .services {
    border-radius: 34px 34px 0 0;
  }

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

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .security-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .section-heading > p:last-child,
  .about-copy > p,
  .contact-copy > p {
    font-size: 14px;
  }

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

  .service-card,
  .service-card--wide {
    min-height: 280px;
    grid-column: 1;
  }

  .about-portrait {
    padding: 16px 11px;
  }

  .portrait-card {
    min-height: 430px;
    padding: 23px;
  }

  .portrait-card::before {
    width: 300px;
    height: 300px;
  }

  .portrait-initial {
    font-size: 170px;
  }

  .about-sticker {
    right: -6px;
    width: 98px;
    height: 98px;
    border-width: 6px;
    font-size: 8px;
  }

  .about-copy .about-lead {
    font-size: 16px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values div {
    min-height: 88px;
  }

  .news-item {
    grid-template-columns: 13px 1fr 36px;
    gap: 14px;
    padding: 27px 5px;
  }

  .news-item:hover {
    padding-inline: 9px;
  }

  .news-item time {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  .news-marker {
    grid-column: 1;
    grid-row: 2;
  }

  .news-item > div {
    grid-column: 2;
    grid-row: 2;
  }

  .news-arrow {
    width: 34px;
    height: 34px;
    grid-column: 3;
    grid-row: 2;
  }

  .news-item h3 {
    font-size: 20px;
  }

  .news-item p {
    font-size: 11px;
  }

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

  .process-list li,
  .process-list li:nth-child(3),
  .process-list li:nth-child(n + 3) {
    min-height: auto;
    padding: 27px 20px 30px 88px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .process-list li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .process-list li::before {
    top: 0;
    bottom: 0;
    left: 48px;
    width: 1px;
    height: auto;
  }

  .process-number {
    position: absolute;
    top: 28px;
    left: 5px;
  }

  .process-icon {
    position: absolute;
    top: 23px;
    left: 31px;
    width: 34px;
    height: 34px;
    margin: 0;
  }

  .security-card {
    gap: 35px;
    padding: 39px 23px;
    border-radius: 29px;
  }

  .security-copy > p:not(.section-kicker) {
    font-size: 14px;
  }

  .security-points article {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

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

  .contact-form {
    padding: 24px 17px;
    border-radius: 24px;
  }

  .contact-direct strong {
    font-size: 10px;
  }

  .site-footer {
    border-radius: 30px 30px 0 0;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom > div {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    margin-block: 4px;
  }

  .footer-bottom > span:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

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