:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-deep: #040a13;
  --surface: #0b1830;
  --surface-2: #11233e;
  --surface-soft: rgba(17, 35, 62, 0.72);
  --text: #eaf2ff;
  --muted: #a8b6cc;
  --muted-2: #7587a3;
  --cyan: #4de3ff;
  --cyan-strong: #19c9ec;
  --violet: #7c5cff;
  --green: #1bc7a1;
  --line: rgba(168, 182, 204, 0.2);
  --line-strong: rgba(77, 227, 255, 0.52);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --glow: 0 0 60px rgba(77, 227, 255, 0.14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shell: 1240px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 4%, rgba(25, 201, 236, 0.14), transparent 32rem),
    radial-gradient(circle at 8% 38%, rgba(124, 92, 255, 0.12), transparent 30rem),
    linear-gradient(145deg, var(--bg-deep), var(--bg) 45%, #08182a);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(77, 227, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 227, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 60% 28%, #000 10%, transparent 72%);
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection {
  color: #020915;
  background: var(--cyan);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--cyan);
  color: #020915;
  font-weight: 800;
}

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

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

.narrow-shell {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(var(--shell), calc(100% - 32px));
  min-height: 78px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(77, 227, 255, 0.16);
  border-radius: 18px;
  background: rgba(4, 10, 19, 0.82);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 227, 255, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(145deg, rgba(77, 227, 255, 0.14), rgba(124, 92, 255, 0.14));
  box-shadow: inset 0 0 24px rgba(77, 227, 255, 0.08), 0 0 28px rgba(77, 227, 255, 0.12);
  font-weight: 900;
  font-size: 20px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(77, 227, 255, 0.075);
}

.header-cta,
.primary-btn,
.secondary-btn,
.text-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.secondary-btn {
  border: 1px solid rgba(77, 227, 255, 0.44);
  background: rgba(77, 227, 255, 0.035);
}

.primary-btn {
  color: #020915;
  background: linear-gradient(135deg, var(--cyan), #58b9ff 55%, var(--violet));
  box-shadow: 0 14px 36px rgba(77, 227, 255, 0.17);
}

.text-btn {
  min-height: auto;
  padding: 0;
  color: var(--cyan);
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 18px 48px rgba(77, 227, 255, 0.18);
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

p { color: var(--muted); }

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero {
  min-height: calc(100svh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 46px;
  padding-block: 74px 52px;
}

.hero > * { min-width: 0; }

.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; }
.hero .lead { max-width: 670px; }

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

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.signal-row span,
.tag-row span,
.language-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.global-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(77, 227, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(11, 24, 48, 0.8), rgba(4, 10, 19, 0.7));
  box-shadow: var(--shadow), var(--glow);
}

.global-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.46), transparent 32%), linear-gradient(0deg, rgba(7, 17, 31, 0.54), transparent 38%);
  pointer-events: none;
}

.global-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.global-visual picture {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.visual-status {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.visual-status span {
  padding: 12px;
  border: 1px solid rgba(77, 227, 255, 0.2);
  border-radius: 10px;
  background: rgba(4, 10, 19, 0.72);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(12px);
}

/* Interactive home experience */
.home-page main { overflow: clip; }

.home-hero {
  min-height: calc(100svh - 106px);
  padding-block: 66px 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.home-hero > * { min-width: 0; }
.home-hero-copy { position: relative; z-index: 2; }

.home-hero h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6.6vw, 94px);
}

.home-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #f2f7ff 4%, var(--cyan) 52%, #a895ff 98%);
  background-clip: text;
  -webkit-background-clip: text;
}

.home-hero .lead { max-width: 650px; }

.availability-pill {
  width: fit-content;
  margin-bottom: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(27, 199, 161, 0.24);
  border-radius: 999px;
  background: rgba(27, 199, 161, 0.055);
  color: #a7e9d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(27, 199, 161, 0.1), 0 0 18px rgba(27, 199, 161, 0.78);
}

.hero-proof {
  max-width: 650px;
  margin: 42px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid rgba(168, 182, 204, 0.16);
}

.hero-proof div { min-width: 0; }
.hero-proof dt { color: var(--text); font-size: 24px; font-weight: 850; letter-spacing: -0.04em; }
.hero-proof dd { margin: 2px 0 0; color: var(--muted-2); font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.06em; }

.project-console {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(77, 227, 255, 0.22);
  border-radius: 28px;
  background: rgba(4, 10, 19, 0.88);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), 0 0 80px rgba(77, 227, 255, 0.1);
}

.project-console::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.console-header {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(168, 182, 204, 0.14);
  color: var(--muted);
  font-size: 12px;
}

.console-header > div { display: flex; align-items: center; gap: 10px; }
.console-header strong { color: #dbe7f8; letter-spacing: 0.01em; }

.console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(77, 227, 255, 0.9);
}

.console-status {
  padding: 5px 9px;
  border: 1px solid rgba(77, 227, 255, 0.2);
  border-radius: 999px;
  background: rgba(77, 227, 255, 0.05);
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #06101e;
}

.console-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0.02), rgba(4, 10, 19, 0.6)), linear-gradient(90deg, rgba(4, 10, 19, 0.28), transparent 44%);
  pointer-events: none;
}

.console-map picture,
.console-map img { width: 100%; height: 100%; min-height: 390px; }
.console-map img { object-fit: cover; }

.map-label {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(77, 227, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 10, 19, 0.78);
  color: #dce8f9;
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.map-label::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.map-label-eu { top: 25%; right: 12%; }
.map-label-latam { right: 38%; bottom: 17%; }

.console-signal {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.console-signal span { width: 3px; border-radius: 3px; background: var(--cyan); box-shadow: 0 0 8px rgba(77, 227, 255, 0.6); }
.console-signal span:nth-child(1) { height: 6px; }
.console-signal span:nth-child(2) { height: 11px; }
.console-signal span:nth-child(3) { height: 16px; }

.console-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(168, 182, 204, 0.14);
}

.console-actions button {
  min-width: 0;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  border: 0;
  background: #081525;
  color: #dfe9f8;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.console-actions button:hover { background: #0d2037; color: var(--cyan); }
.console-actions button span { color: var(--muted-2); font-size: 9px; }
.console-actions button b { color: var(--cyan); font-size: 13px; }

.home-section { padding-block: 96px; }

.compact-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 64px;
  align-items: end;
}

.compact-heading h2 { max-width: 820px; margin-bottom: 0; }
.compact-heading > p { margin-bottom: 6px; font-size: 17px; }

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

.capability-tile {
  position: relative;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(168, 182, 204, 0.17);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15, 31, 55, 0.92), rgba(7, 17, 31, 0.95));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.capability-tile::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.78;
  background: radial-gradient(circle at 88% 12%, rgba(77, 227, 255, 0.12), transparent 32%);
  transition: opacity 240ms ease, transform 360ms ease;
}

.capability-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -95px;
  border: 1px solid rgba(77, 227, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(77, 227, 255, 0.025), 0 0 0 58px rgba(77, 227, 255, 0.018);
}

.capability-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 227, 255, 0.5);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32), 0 0 52px rgba(77, 227, 255, 0.08);
}

.capability-tile:hover::before { opacity: 1; transform: scale(1.04); }
.tile-digital { grid-column: span 7; min-height: 365px; }
.tile-international { grid-column: span 5; min-height: 365px; }
.tile-operations { grid-column: span 4; }
.tile-payments { grid-column: span 5; }
.tile-languages { grid-column: span 3; cursor: pointer; background: linear-gradient(145deg, rgba(35, 25, 78, 0.88), rgba(12, 24, 46, 0.96)); }
.tile-international::before { background: radial-gradient(circle at 82% 18%, rgba(124, 92, 255, 0.2), transparent 36%); }
.tile-payments::before { background: radial-gradient(circle at 84% 12%, rgba(27, 199, 161, 0.15), transparent 35%); }

.tile-topline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tile-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(77, 227, 255, 0.2);
  border-radius: 50%;
  color: var(--text);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.capability-tile:hover .tile-arrow { transform: rotate(45deg); background: var(--cyan); color: #03101a; }

.tile-icon {
  width: 58px;
  height: 58px;
  margin-top: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 227, 255, 0.22);
  border-radius: 14px;
  background: rgba(77, 227, 255, 0.055);
  color: var(--cyan);
}

.tile-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tile-content { display: grid; gap: 8px; margin-top: auto; }
.tile-content strong { max-width: 560px; font-family: Manrope, Inter, sans-serif; font-size: clamp(25px, 2.6vw, 39px); line-height: 1.05; letter-spacing: -0.045em; }
.tile-content > span { max-width: 560px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.tile-action { margin-top: 20px; color: #dce8f8; font-size: 12px; font-weight: 850; }
.tile-languages .tile-content strong { font-size: 28px; }

.language-stack { margin: 34px 0 24px; display: flex; }
.language-stack b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-left: -10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #101c36;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  color: #e8f1ff;
  font-size: 12px;
}
.language-stack b:first-child { margin-left: 0; background: #153456; }
.language-stack b:nth-child(2) { background: #183f3a; }
.language-stack b:nth-child(3) { background: #402b64; }

.project-studio {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  overflow: hidden;
  border: 1px solid rgba(168, 182, 204, 0.18);
  border-radius: 24px;
  background: rgba(6, 15, 28, 0.82);
  box-shadow: var(--shadow);
}

.studio-tabs {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(168, 182, 204, 0.14);
  background: linear-gradient(180deg, rgba(15, 31, 55, 0.74), rgba(7, 17, 31, 0.72));
}

.studio-tabs button {
  min-height: 78px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.studio-tabs button span { color: var(--muted-2); font-size: 10px; letter-spacing: 0.1em; }
.studio-tabs button:hover { color: var(--text); background: rgba(255, 255, 255, 0.025); }
.studio-tabs button[aria-selected="true"] { border-color: rgba(77, 227, 255, 0.25); background: rgba(77, 227, 255, 0.075); color: var(--text); }
.studio-tabs button[aria-selected="true"] span { color: var(--cyan); }

.studio-panels { min-width: 0; display: grid; }

.studio-panel {
  grid-area: 1 / 1;
  padding: clamp(34px, 5vw, 64px);
  align-self: center;
  animation: panel-in 320ms ease both;
}

.studio-panel[hidden] { display: none; }
.studio-panel h3 { max-width: 720px; margin-bottom: 18px; font-size: clamp(34px, 4vw, 55px); }
.studio-panel > p:not(.panel-code) { max-width: 720px; font-size: 17px; }
.panel-code { margin-bottom: 22px; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }

.output-grid {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.output-grid > span {
  min-height: 88px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(168, 182, 204, 0.15);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: #dce8f9;
  font-size: 12px;
  font-weight: 750;
}

.output-grid small { color: var(--cyan); font-size: 9px; letter-spacing: 0.12em; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.method-console {
  position: relative;
  padding: clamp(30px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 1.26fr);
  gap: clamp(42px, 7vw, 96px);
  overflow: hidden;
  border: 1px solid rgba(77, 227, 255, 0.22);
  border-radius: 24px;
  background: radial-gradient(circle at 4% 100%, rgba(124, 92, 255, 0.14), transparent 40%), linear-gradient(145deg, rgba(15, 31, 55, 0.94), rgba(6, 15, 28, 0.96));
  box-shadow: var(--shadow), var(--glow);
}

.method-console::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -180px;
  top: -190px;
  border: 1px solid rgba(77, 227, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(77, 227, 255, 0.018), 0 0 0 88px rgba(77, 227, 255, 0.012);
}

.method-console-copy { align-self: center; }
.method-console-copy h2 { font-size: clamp(38px, 4.4vw, 60px); }
.method-console-copy > p:not(.section-kicker) { max-width: 470px; margin-bottom: 28px; }

.method-rail {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.method-rail li {
  position: relative;
  min-height: 104px;
  padding: 17px 0 17px 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(168, 182, 204, 0.14);
}
.method-rail li:last-child { border-bottom: 0; }
.method-rail li > span { position: absolute; left: 0; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.method-rail strong { display: block; margin-bottom: 4px; color: var(--text); font-size: 20px; }
.method-rail small { color: var(--muted); font-size: 13px; }

.method-assurances {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 182, 204, 0.14);
}
.method-assurances span { padding: 7px 10px; border: 1px solid rgba(168, 182, 204, 0.15); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.premium-cta {
  position: relative;
  margin-block: 94px;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(77, 227, 255, 0.35);
  border-radius: 28px;
  background: radial-gradient(circle at 88% 15%, rgba(77, 227, 255, 0.2), transparent 28rem), linear-gradient(135deg, rgba(18, 39, 68, 0.98), rgba(7, 18, 34, 0.98));
  box-shadow: var(--shadow), var(--glow);
}

.premium-cta h2 { max-width: 780px; margin-bottom: 14px; }
.premium-cta p:not(.section-kicker) { max-width: 720px; margin-bottom: 0; font-size: 17px; }
.cta-index { position: absolute; top: 24px; right: 28px; color: rgba(168, 182, 204, 0.42); font-size: 10px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.premium-cta-actions { min-width: 220px; display: grid; gap: 14px; justify-items: stretch; }
.premium-cta-actions > a:last-child { color: var(--muted); font-size: 12px; text-align: center; }

body.dialog-open { overflow: hidden; }

.capability-dialog {
  width: min(1000px, calc(100% - 32px));
  max-height: min(90svh, 860px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(77, 227, 255, 0.26);
  border-radius: 26px;
  background: #071321;
  color: var(--text);
  box-shadow: 0 50px 180px rgba(0, 0, 0, 0.72), 0 0 90px rgba(77, 227, 255, 0.12);
}

.capability-dialog[open] { animation: dialog-in 240ms ease both; }
.capability-dialog::backdrop { background: rgba(2, 7, 14, 0.82); backdrop-filter: blur(12px); }

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-shell { padding: 0 clamp(26px, 5vw, 58px) clamp(32px, 5vw, 58px); }

.dialog-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(168, 182, 204, 0.14);
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-topbar button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 182, 204, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.dialog-topbar button:hover { transform: rotate(90deg); border-color: var(--cyan); background: rgba(77, 227, 255, 0.08); }

.dialog-intro {
  padding-block: 48px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: start;
}

.dialog-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 227, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(77, 227, 255, 0.09), rgba(124, 92, 255, 0.08));
  color: var(--cyan);
  font-size: 28px;
  font-weight: 900;
}

.dialog-intro h2 { max-width: 760px; margin-bottom: 14px; font-size: clamp(38px, 5vw, 62px); }
.dialog-intro p:last-child { max-width: 760px; margin-bottom: 0; font-size: 17px; }

.dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
  gap: 18px;
}

.dialog-grid > div,
.dialog-grid > aside { padding: 28px; border: 1px solid rgba(168, 182, 204, 0.16); border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.dialog-grid h3 { font-size: 22px; }
.dialog-grid aside { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, rgba(77, 227, 255, 0.075), rgba(124, 92, 255, 0.055)); }
.dialog-grid aside > span { margin-bottom: 18px; color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.dialog-grid aside > strong { color: var(--text); font-size: 20px; line-height: 1.35; }
.dialog-grid aside > small { margin-top: 16px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.dialog-grid .compliance-note { border-color: rgba(27, 199, 161, 0.24); background: linear-gradient(145deg, rgba(27, 199, 161, 0.075), rgba(8, 20, 36, 0.72)); }
.dialog-grid .compliance-note > span { color: var(--green); }

.dialog-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }


.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-item {
  min-height: 112px;
  padding: 22px;
  background: rgba(7, 17, 31, 0.92);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 17px;
}

.trust-item span {
  color: var(--muted-2);
  font-size: 13px;
}

.section {
  padding-block: 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 { margin-bottom: 0; }
.section-heading p { margin-bottom: 4px; font-size: 18px; }

.division-grid,
.service-grid,
.proof-grid,
.pricing-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.division-card,
.service-card,
.proof-card,
.price-card,
.case-card,
.method-card,
.content-panel,
.boundary-card,
.contact-card,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 35, 62, 0.74), rgba(8, 20, 36, 0.78));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.division-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.division-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% 20%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 227, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.division-card.international::before {
  background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 68%);
}

.division-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3), var(--glow);
}

.division-number {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.division-card h3 {
  max-width: 430px;
  margin-top: 60px;
  font-size: clamp(34px, 4vw, 50px);
}

.division-card p { max-width: 520px; font-size: 17px; }
.division-card .text-btn { margin-top: auto; align-self: flex-start; }

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

.method-card { padding: 24px; }
.method-card span { color: var(--cyan); font-size: 13px; font-weight: 900; }
.method-card h3 { margin-top: 34px; font-size: 22px; }
.method-card p { margin-bottom: 0; font-size: 14px; }

.proof-card,
.service-card,
.case-card { padding: 28px; }

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
}

.proof-card p,
.service-card p,
.case-card p { margin-bottom: 0; }

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(77, 227, 255, 0.28);
  border-radius: 12px;
  background: rgba(77, 227, 255, 0.07);
  color: var(--cyan);
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin-block: 88px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 40%, rgba(77, 227, 255, 0.17), transparent 22rem),
    linear-gradient(145deg, rgba(17, 35, 62, 0.92), rgba(9, 21, 39, 0.92));
  box-shadow: var(--shadow), var(--glow);
}

.cta-band h2 { max-width: 780px; margin-bottom: 8px; }
.cta-band p { max-width: 720px; margin-bottom: 0; font-size: 18px; }

.page-main { padding-bottom: 76px; }

.page-hero {
  padding-block: 96px 62px;
}

.page-hero h1 { max-width: 970px; }
.page-hero .lead { max-width: 820px; }

.page-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-nav-pills a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: start;
  margin-block: 42px;
}

.content-panel { padding: 32px; }

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

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

.price-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.price-card.recommended {
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--glow);
}

.badge {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(77, 227, 255, 0.28);
  border-radius: 999px;
  background: rgba(77, 227, 255, 0.07);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h2 { margin-top: 28px; font-size: 32px; }
.price { margin-bottom: 16px; color: var(--text); font-size: 50px; font-weight: 900; letter-spacing: -0.06em; }
.price small { color: var(--muted-2); font-size: 14px; letter-spacing: 0; }
.price-card .check-list { margin-block: 14px 28px; }
.price-card .primary-btn, .price-card .secondary-btn { margin-top: auto; }

.estimator-box {
  display: grid;
  gap: 10px;
}

.estimator-box label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-weight: 700;
}

.estimator-box input { width: 18px; height: 18px; accent-color: var(--cyan); }

.estimate-result {
  margin-top: 10px;
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #72baff 55%, var(--violet));
  color: #020915;
  font-size: 20px;
  font-weight: 900;
}

.boundary-card {
  padding: 34px;
  border-color: rgba(27, 199, 161, 0.34);
  background: linear-gradient(145deg, rgba(27, 199, 161, 0.08), rgba(11, 24, 48, 0.76));
}

.boundary-card strong { color: var(--green); }

.case-label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 84px 240px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 24, 48, 0.66);
}

.timeline article > span { color: var(--cyan); font-weight: 900; }
.timeline h2 { margin: 0; font-size: 28px; }
.timeline p { margin: 0; }

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

.faq-list details { padding: 22px 24px; }
.faq-list summary { cursor: pointer; color: var(--text); font-size: 18px; font-weight: 800; }
.faq-list details p { margin: 16px 0 0; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.contact-card,
.contact-form { padding: 32px; }

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.contact-form .full { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(4, 10, 19, 0.68);
  color: var(--text);
  padding: 13px 14px;
}

.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #657792; }
.contact-form .form-note { grid-column: 1 / -1; margin: 0; font-size: 12px; }
.contact-form button { grid-column: 1 / -1; border: 0; cursor: pointer; }
.form-status { min-height: 24px; grid-column: 1 / -1; margin: 0; color: var(--green); font-size: 13px; }

.legal-content {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 24, 48, 0.58);
}

.legal-content h2 { margin-top: 44px; font-size: 28px; }
.legal-content h3 { margin-top: 28px; font-size: 20px; }
.legal-content p,
.legal-content li { color: var(--muted); }
.legal-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--text); }

.site-footer {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
  padding-block: 54px 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-intro { max-width: 430px; }
.footer-intro p { margin: 18px 0; }
.footer-title { margin-bottom: 14px; color: var(--text); font-weight: 800; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(168, 182, 204, 0.12);
  color: var(--muted-2);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@media (max-width: 1040px) {
  .site-header { gap: 12px; }
  .main-nav a { padding-inline: 9px; font-size: 13px; }
  .hero { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 820px; }
  .project-console { width: min(100%, 820px); }
  .tile-digital { grid-column: span 12; }
  .tile-international, .tile-operations { grid-column: span 6; }
  .tile-payments { grid-column: span 7; }
  .tile-languages { grid-column: span 5; }
  .global-visual { min-height: 440px; }
  .global-visual img { min-height: 440px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    padding: 12px 18px;
  }

  .menu-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    inset: 71px 0 auto;
    max-height: calc(100svh - 71px);
    overflow-y: auto;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4, 10, 19, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px; font-size: 18px; border: 1px solid var(--line); }

  .hero { min-height: auto; padding-top: 60px; }
  .home-hero { padding-block: 52px 72px; }
  .home-hero h1 { font-size: clamp(48px, 11vw, 76px); }
  .compact-heading { grid-template-columns: 1fr; gap: 16px; }
  .project-studio { grid-template-columns: 1fr; }
  .studio-tabs {
    padding: 12px;
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 182, 204, 0.14);
    scroll-snap-type: x mandatory;
  }
  .studio-tabs button { min-width: 250px; scroll-snap-align: start; }
  .method-console { grid-template-columns: 1fr; }
  .method-assurances { grid-column: auto; }
  .premium-cta { grid-template-columns: 1fr; align-items: start; }
  .premium-cta-actions { justify-self: start; }
  .dialog-grid { grid-template-columns: 1fr; }
  .section { padding-block: 66px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .division-grid, .service-grid, .proof-grid, .case-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; padding: 36px; }
  .content-split, .contact-layout { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: 56px 1fr; }
  .timeline article p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .shell, .narrow-shell, .site-footer { width: min(100% - 28px, var(--shell)); }
  .brand small { display: none; }
  h1 { font-size: clamp(43px, 14vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero { gap: 30px; padding-block: 46px 34px; }
  .home-hero { gap: 34px; padding-block: 42px 56px; }
  .home-hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .availability-pill { margin-bottom: 28px; font-size: 9px; }
  .hero-proof { gap: 7px; }
  .hero-proof dt { font-size: 20px; }
  .hero-proof dd { font-size: 9px; }
  .project-console { border-radius: 20px; }
  .console-header { min-height: 56px; padding-inline: 15px; }
  .console-header strong { font-size: 10px; }
  .console-map, .console-map picture, .console-map img { min-height: 310px; }
  .map-label { font-size: 8px; }
  .map-label-eu { top: 23%; right: 7%; }
  .map-label-latam { right: 30%; bottom: 14%; }
  .console-actions { grid-template-columns: 1fr; }
  .console-actions button { padding: 14px 16px; }
  .home-section { padding-block: 68px; }
  .compact-heading { margin-bottom: 30px; }
  .compact-heading > p { font-size: 15px; }
  .capability-bento {
    margin-inline: -14px;
    padding: 2px 14px 18px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .capability-bento::-webkit-scrollbar,
  .studio-tabs::-webkit-scrollbar { display: none; }
  .capability-tile,
  .tile-digital,
  .tile-international,
  .tile-operations,
  .tile-payments,
  .tile-languages {
    min-width: min(84vw, 350px);
    min-height: 330px;
    flex: 0 0 min(84vw, 350px);
    padding: 24px;
    scroll-snap-align: center;
  }
  .tile-content strong,
  .tile-languages .tile-content strong { font-size: 29px; }
  .project-studio { min-height: 0; border-radius: 18px; }
  .studio-tabs { scrollbar-width: none; }
  .studio-tabs button { min-width: 218px; min-height: 66px; padding: 13px; font-size: 12px; }
  .studio-panel { padding: 28px 22px 34px; }
  .studio-panel h3 { font-size: 34px; }
  .studio-panel > p:not(.panel-code) { font-size: 15px; }
  .output-grid { grid-template-columns: 1fr; }
  .output-grid > span { min-height: 70px; }
  .method-console { padding: 28px 22px; border-radius: 18px; gap: 32px; }
  .method-console-copy h2 { font-size: 38px; }
  .method-rail li { min-height: 94px; padding-left: 54px; }
  .method-rail strong { font-size: 18px; }
  .method-rail small { font-size: 12px; }
  .premium-cta { margin-block: 72px; padding: 46px 26px 30px; border-radius: 20px; }
  .premium-cta h2 { font-size: 39px; }
  .premium-cta-actions { width: 100%; min-width: 0; }
  .capability-dialog { width: calc(100% - 16px); max-height: 94svh; border-radius: 20px; }
  .dialog-shell { padding-inline: 20px; padding-bottom: 24px; }
  .dialog-topbar { min-height: 62px; }
  .dialog-intro { padding-block: 30px; grid-template-columns: 1fr; gap: 18px; }
  .dialog-icon { width: 62px; height: 62px; border-radius: 15px; font-size: 22px; }
  .dialog-intro h2 { font-size: 38px; }
  .dialog-intro p:last-child { font-size: 15px; }
  .dialog-grid > div, .dialog-grid > aside { padding: 22px; }
  .dialog-actions { display: grid; }
  .dialog-actions a { width: 100%; }
  .hero-actions { display: grid; }
  .hero-actions a { width: 100%; }
  .global-visual, .global-visual img { min-height: 340px; }
  .visual-status { grid-template-columns: 1fr; }
  .visual-status span:nth-child(2) { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .division-card { min-height: 340px; padding: 26px; }
  .division-card h3 { margin-top: 42px; }
  .method-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; }
  .page-hero { padding-block: 64px 42px; }
  .content-panel, .proof-card, .service-card, .case-card, .contact-card, .contact-form, .legal-content { padding: 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .contact-form .form-note, .contact-form button, .form-status { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
