:root {
  --ink-950: #06111b;
  --ink-900: #091724;
  --ink-850: #0d1c2a;
  --ink-800: #102334;
  --ink-700: #183146;
  --paper: #f7fbfe;
  --ice: #eaf7ff;
  --white: #ffffff;
  --text: #071827;
  --muted: #596c7c;
  --muted-dark: #aab8c4;
  --line: #c9e3f2;
  --line-dark: rgba(116, 176, 211, .18);
  --accent: #168feb;
  --accent-strong: #0b7fd8;
  --whatsapp: #168b56;
  --container: 1440px;
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "Space Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

button, input, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

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

.section { padding: clamp(92px, 9vw, 150px) 0; }

.section-dark { color: var(--white); background: var(--ink-950); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font: 700 .75rem/1.2 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow-light { color: #8dcdf4; }

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

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.2vw, 5.5rem);
  line-height: .98;
}

h2 span { color: var(--accent); }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.button svg { width: 22px; height: 22px; transition: transform .25s var(--ease); }
.button:hover svg { transform: translateX(5px); }
.button:active { transform: translateY(2px); }

.button-primary { color: var(--white); background: var(--accent); box-shadow: 0 18px 44px rgba(0, 105, 190, .18); }
.button-primary:hover { background: var(--accent-strong); }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 27, .88);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto auto;
  min-height: 104px;
  align-items: center;
  gap: 32px;
}

.brand { width: 206px; }
.brand img { width: 100%; height: auto; }

.desktop-nav { display: flex; align-items: center; gap: clamp(26px, 3.2vw, 54px); }
.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--accent);
  transition: right .25s var(--ease);
}

.desktop-nav a:hover::after { right: 0; }

.header-cta {
  justify-self: end;
  min-width: 128px;
  padding: 15px 22px;
  color: #58bbf5;
  border: 1px solid var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}

.header-cta:hover { color: var(--white); background: var(--accent); }

.header-odoo {
  color: rgba(247,251,254,.72);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-odoo:hover { color: var(--white); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
}

.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 920px;
  color: var(--white);
  background-color: var(--ink-950);
  background-image: linear-gradient(90deg, rgba(6,17,27,.08) 0%, rgba(6,17,27,.08) 42%, rgba(6,17,27,.6) 78%, rgba(6,17,27,.88) 100%), url("/across_website/static/src/assets/img/hero-architecture.webp");
  background-position: center bottom;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,17,27,.44), rgba(6,17,27,.08) 52%, rgba(6,17,27,.56));
}

.hero-grid-overlay {
  position: absolute;
  z-index: -1;
  inset: 100px 0 0 42%;
  opacity: .11;
  background-image: linear-gradient(rgba(67, 163, 222, .45) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 163, 222, .45) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(600px, 1.18fr);
  min-height: 920px;
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  padding-top: 105px;
}

.hero-copy { align-self: center; max-width: 670px; padding-top: 80px; }
.hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 5.65vw, 6.8rem);
  line-height: .95;
}

.hero-copy h1 span { color: var(--white); }
.hero-copy h1 span::after { content: ""; display: inline-block; width: .11em; height: .11em; margin-left: .04em; background: var(--accent); }

.hero-lede {
  max-width: 580px;
  margin-bottom: 38px;
  color: #d9e3ea;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.55;
}

.system-map {
  position: relative;
  min-height: 580px;
  align-self: center;
  margin-top: 80px;
}

.flow-line { position: absolute; inset: 45px 0 auto; width: 100%; height: 430px; color: var(--accent); overflow: visible; }
.flow-line path { fill: none; stroke: var(--accent); stroke-width: 2.5; filter: drop-shadow(0 0 4px rgba(33,165,239,.46)); }

.map-node { position: absolute; width: 150px; text-align: center; }
.map-node p { margin-bottom: 14px; color: var(--white); font-size: 1.08rem; }
.map-node p b { display: block; margin-bottom: 3px; color: var(--accent); font: 700 1.65rem/1 var(--mono); }
.map-node > span {
  display: grid;
  width: 94px;
  height: 94px;
  margin-inline: auto;
  place-items: center;
  color: #d9efff;
  border: 2px solid #80d1ff;
  border-radius: 50%;
  background: rgba(5, 16, 26, .76);
  box-shadow: 0 0 0 7px rgba(22,143,235,.06), 0 0 22px rgba(48,177,252,.2), inset 0 0 18px rgba(32,136,205,.1);
}

.map-node svg { width: 40px; height: 40px; }
.node-consulta { left: 4%; top: 67px; }
.node-venta { left: 38%; top: 67px; }
.node-stock { right: 2%; top: 67px; }
.node-seguimiento { left: 34%; top: 320px; }
.node-documento { right: 12%; top: 320px; }
.map-caption { position: absolute; right: 5%; bottom: 24px; font: 400 .76rem/1.5 var(--mono); letter-spacing: .22em; text-transform: uppercase; }
.map-caption span { color: var(--accent); }

/* Strategy */
.strategy { background: linear-gradient(115deg, #f8fcff 0%, #edf9ff 48%, #e0f3fc 100%); }
.strategy-layout { display: grid; grid-template-columns: 1.05fr .72fr 1.45fr; align-items: center; gap: clamp(50px, 6vw, 100px); }
.strategy-title h2 { max-width: 650px; font-size: clamp(3rem, 4.4vw, 4.9rem); }
.strategy-intro p { color: #254158; font-size: 1.05rem; line-height: 1.7; }
.short-rule { display: block; width: 72px; height: 2px; margin-top: 30px; background: var(--accent); }
.principles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.principles article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; min-height: 142px; padding: 22px 26px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles article:nth-child(3), .principles article:nth-child(4) { border-bottom: 0; }
.principles svg { width: 38px; height: 38px; color: var(--accent); }
.principles h3 { margin: 2px 0 8px; font-size: 1rem; letter-spacing: -.02em; }
.principles p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }

/* Shared headings */
.section-heading-split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .58fr); align-items: end; gap: 80px; margin-bottom: 72px; }
.section-heading-split > p { max-width: 540px; margin: 0 0 7px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.section-dark .section-heading-split > p { color: var(--muted-dark); }

/* Solution console */
.solutions { position: relative; overflow: hidden; }
.solutions::before { content: ""; position: absolute; top: -280px; right: -180px; width: 660px; height: 660px; border: 1px solid var(--line-dark); border-radius: 50%; opacity: .42; }
.solutions-console { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.55fr); min-height: 640px; border: 1px solid var(--line-dark); background: var(--ink-900); box-shadow: 0 34px 80px rgba(1, 8, 14, .28); }
.solution-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.solution-tabs button { position: relative; display: grid; flex: 1; grid-template-columns: 46px 1fr; grid-template-rows: auto auto; column-gap: 18px; align-content: center; min-height: 112px; padding: 24px 30px; color: var(--muted-dark); text-align: left; border: 0; border-bottom: 1px solid var(--line-dark); background: transparent; cursor: pointer; transition: color .25s ease, background .25s ease; }
.solution-tabs button:last-child { border-bottom: 0; }
.solution-tabs button::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--accent); transform: scaleY(0); transition: transform .25s var(--ease); }
.solution-tabs button span { grid-row: 1/3; color: var(--accent); font: 700 .83rem/1.2 var(--mono); }
.solution-tabs button strong { color: inherit; font: 600 1.05rem/1.2 var(--display); letter-spacing: -.02em; }
.solution-tabs button small { margin-top: 8px; color: #668098; font-size: .74rem; }
.solution-tabs button[aria-selected="true"] { color: var(--white); background: var(--ink-800); }
.solution-tabs button[aria-selected="true"]::after { transform: scaleY(1); }

.solution-stage { min-width: 0; }
.solution-panel { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,1.1fr); min-height: 638px; align-items: center; gap: clamp(38px, 5vw, 82px); padding: clamp(44px, 5vw, 82px); }
.solution-panel[hidden] { display: none; }
.panel-code { margin-bottom: 32px; color: var(--accent); font: 700 .7rem/1 var(--mono); letter-spacing: .2em; }
.panel-copy h3 { margin-bottom: 24px; font-size: clamp(2rem, 3.1vw, 3.5rem); line-height: 1.05; }
.panel-copy > p:not(.panel-code) { color: var(--muted-dark); font-size: 1rem; line-height: 1.7; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #dbe6ee; font-size: .92rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 2px; background: var(--accent); }

.process-window, .inventory-visual, .commerce-visual, .document-visual, .agent-visual { position: relative; min-height: 380px; border: 1px solid rgba(113,190,236,.25); background: rgba(6,17,27,.7); }
.process-window { padding: 70px 34px 34px; }
.window-bar { position: absolute; top: 0; left: 0; right: 0; display: flex; height: 44px; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line-dark); }
.window-bar > span { width: 6px; height: 6px; border: 1px solid #5d7c93; border-radius: 50%; }
.window-bar small { margin-left: auto; color: #6f8ba0; font: .58rem var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.sales-pipeline { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 30px 0 62px; }
.sales-pipeline span { color: #d2e1ec; font-size: .7rem; }
.sales-pipeline b { flex: 1; height: 1px; background: var(--accent); box-shadow: 0 0 8px rgba(22,143,235,.48); }
.signal-card { padding: 22px; border-left: 2px solid var(--accent); background: var(--ink-800); }
.signal-card small { color: #6f8ba0; font: .62rem var(--mono); text-transform: uppercase; }
.signal-card strong { display: block; margin: 10px 0 7px; font-family: var(--display); }
.signal-card p { margin: 0; color: var(--muted-dark); font-size: .8rem; }

.inventory-visual { display: grid; align-content: center; gap: 18px; padding: 36px; }
.warehouse-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 26px; }
.warehouse-grid span { display: grid; min-height: 68px; place-items: center; color: #9db3c4; border: 1px solid var(--line-dark); font: .64rem var(--mono); }
.warehouse-grid span:nth-child(2), .warehouse-grid span:nth-child(5) { color: var(--white); border-color: var(--accent); background: rgba(22,143,235,.12); }
.stock-line { display: grid; grid-template-columns: 105px 1fr; align-items: center; gap: 16px; }
.stock-line small { color: #8499a9; }
.stock-line i { display: block; height: 4px; background: linear-gradient(90deg,var(--accent) var(--value),rgba(74,112,138,.2) var(--value)); }

.commerce-visual { padding: 62px 30px 30px; }
.browser-top { position: absolute; inset: 0 0 auto; display: flex; height: 42px; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid var(--line-dark); }
.browser-top i { width: 6px; height: 6px; border: 1px solid #668096; border-radius: 50%; }
.product-grid { display: grid; grid-template-columns: 1.3fr .8fr; gap: 10px; }
.product-grid span { min-height: 105px; background: linear-gradient(145deg,#183249,#0a1722); border: 1px solid rgba(106,157,187,.14); }
.product-grid span:first-child { grid-row: span 2; min-height: 220px; background: linear-gradient(145deg,rgba(22,143,235,.28),#0a1722 72%); }
.order-pill { position: absolute; right: 20px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 13px 18px; color: var(--white); background: var(--accent); font-size: .78rem; font-weight: 700; box-shadow: 0 14px 30px rgba(0,0,0,.3); }
.order-pill svg { width: 16px; height: 16px; }

.document-visual { display: grid; place-items: center; padding: 30px; }
.doc-sheet { width: 63%; min-height: 280px; padding: 26px; color: var(--text); background: #edf8fe; box-shadow: 0 28px 42px rgba(0,0,0,.25); }
.doc-mark { width: 36px; height: 8px; margin-bottom: 40px; background: var(--accent); }
.doc-sheet > span { display: block; height: 5px; margin-bottom: 15px; background: #bdd4e1; }
.doc-sheet > span.short { width: 58%; }
.doc-total { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 18px; border-top: 1px solid #8fb8ce; }
.doc-total small { color: var(--muted); }
.doc-status { position: absolute; right: 20px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 12px 16px; color: #dff5ff; background: var(--ink-800); border: 1px solid var(--accent); font-size: .76rem; }
.doc-status svg { width: 16px; height: 16px; color: var(--accent); }

.agent-visual { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 30px; }
.agent-node { display: grid; width: 104px; height: 104px; place-items: center; align-content: center; gap: 10px; color: #d6e8f4; border: 1px solid #4e7f9e; border-radius: 50%; }
.agent-node:first-child { color: #64cea0; border-color: var(--whatsapp); }
.agent-node svg { width: 30px; height: 30px; }
.agent-node span { font-size: .65rem; font-weight: 700; }
.agent-visual > b { width: 45px; height: 1px; background: var(--accent); }

/* Automation */
.automation { overflow: hidden; background: linear-gradient(135deg,#f8fcff 0%,#e8f7ff 100%); }
.automation-layout { display: grid; grid-template-columns: minmax(0,.86fr) minmax(470px,1.14fr); align-items: center; gap: clamp(64px,9vw,150px); }
.automation-copy h2 { max-width: 760px; font-size: clamp(3rem,4.8vw,5.2rem); }
.automation-copy > p:not(.eyebrow) { max-width: 640px; margin: 30px 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.automation-points { margin: 34px 0; border-top: 1px solid var(--line); }
.automation-points p { display: grid; grid-template-columns: 50px 1fr; margin: 0; padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.automation-points span { color: var(--accent); font: .68rem var(--mono); }
.button-whatsapp { color: var(--white); background: var(--whatsapp); }
.button-whatsapp:hover { background: #0c7847; }
.button-whatsapp svg { width: 25px; height: 25px; }

.conversation-stage { overflow: hidden; color: var(--white); background: var(--ink-900); border: 1px solid #3f6d89; box-shadow: 0 36px 80px rgba(25,76,105,.22); }
.conversation-header { display: flex; align-items: center; gap: 15px; padding: 20px 24px; border-bottom: 1px solid var(--line-dark); background: var(--ink-850); }
.across-orb { width: 46px; height: 46px; overflow: hidden; border-radius: 50%; background: #fff; }
.across-orb img { width: 100%; height: 100%; object-fit: cover; }
.conversation-header strong { display: block; font-family: var(--display); }
.conversation-header small { display: flex; align-items: center; gap: 7px; margin-top: 4px; color: #92aabb; }
.conversation-header i { width: 7px; height: 7px; border-radius: 50%; background: #31b978; }
.conversation-body { display: grid; gap: 14px; min-height: 520px; align-content: center; padding: 32px; background-image: radial-gradient(rgba(83,148,189,.15) 1px,transparent 1px); background-size: 24px 24px; }
.message { max-width: 74%; padding: 15px 18px; font-size: .88rem; line-height: 1.52; box-shadow: 0 10px 28px rgba(1,8,14,.18); }
.message-client { justify-self: end; color: var(--text); background: #dff4ff; }
.message-agent { justify-self: start; background: #153147; border-left: 2px solid var(--accent); }
.system-event { display: flex; justify-self: center; align-items: center; gap: 16px; margin: 5px 0; padding: 9px 14px; color: #7897ac; border: 1px solid var(--line-dark); background: rgba(6,17,27,.76); font: .58rem var(--mono); text-transform: uppercase; }
.system-event b { color: #61c996; font-weight: 400; }
.conversation-foot { display: flex; justify-content: space-between; gap: 16px; padding: 17px 24px; color: #6f8fa5; border-top: 1px solid var(--line-dark); font: .56rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }

/* Real operation */
.operation { background: #eaf4f9; }
.operation-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); align-items: center; gap: clamp(60px,8vw,130px); }
.operation-media { position: relative; }
.operation-media::before { content: ""; position: absolute; top: -20px; left: -20px; width: 45%; height: 45%; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.operation-media img { position: relative; width: 100%; aspect-ratio: 2/1; object-fit: cover; filter: saturate(.78) contrast(1.04); box-shadow: 0 30px 60px rgba(20,68,95,.16); }
.media-label { position: absolute; right: -28px; bottom: -28px; padding: 20px 24px; color: var(--white); background: var(--ink-900); border-left: 3px solid var(--accent); }
.media-label span { display: block; margin-bottom: 6px; color: #6da6c9; font: .58rem var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.media-label b { font-family: var(--display); font-size: .9rem; }
.operation-copy h2 { font-size: clamp(2.8rem,4vw,4.5rem); }
.operation-copy > p:not(.eyebrow) { margin: 30px 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.operation-quote { margin-top: 44px; padding: 25px 0 0 28px; border-top: 1px solid #b8d7e7; border-left: 2px solid var(--accent); }
.operation-quote p { margin-bottom: 14px; font-family: var(--display); font-size: 1.2rem; font-weight: 600; line-height: 1.45; }
.operation-quote span { color: #6b8292; font: .62rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }

/* Sectors */
.sectors { background: var(--paper); }
.sector-list { border-top: 1px solid #bcd5e4; }
.sector-list article { display: grid; grid-template-columns: 100px 1fr 1.1fr .9fr; align-items: center; gap: 35px; min-height: 138px; padding: 30px 0; border-bottom: 1px solid #bcd5e4; transition: padding .3s var(--ease), background .3s ease; }
.sector-list article:hover { padding-inline: 22px; background: #eaf6fc; }
.sector-list article > span { color: var(--accent); font: 700 .78rem var(--mono); }
.sector-list h3 { margin: 0; font-size: clamp(1.4rem,2vw,2rem); }
.sector-list p { margin: 0; color: var(--muted); line-height: 1.55; }
.sector-list small { color: #52738b; font: .66rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }

/* Method */
.method { position: relative; isolation: isolate; overflow: hidden; }
.method-grid { position: absolute; z-index: -1; inset: 0; opacity: .12; background-image: linear-gradient(rgba(58,153,211,.55) 1px,transparent 1px),linear-gradient(90deg,rgba(58,153,211,.55) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg,transparent,#000 25%,#000 75%,transparent); }
.method-steps { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.method-steps li { min-height: 290px; padding: 34px 28px; border-right: 1px solid var(--line-dark); }
.method-steps li:first-child { border-left: 1px solid var(--line-dark); }
.method-steps > li > span { display: block; margin-bottom: 100px; color: var(--accent); font: 700 1rem var(--mono); }
.method-steps h3 { margin-bottom: 12px; font-size: 1.45rem; }
.method-steps p { margin: 0; color: var(--muted-dark); line-height: 1.6; }

/* Contact */
.contact { background: linear-gradient(125deg,#eef8fd,#dff3fc); }
.contact-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(450px,.82fr); gap: clamp(64px,9vw,150px); }
.contact-copy h2 { font-size: clamp(3rem,4.6vw,5rem); }
.contact-copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.direct-contact { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 42px; font-family: var(--display); font-weight: 700; }
.direct-contact a { position: relative; padding-bottom: 5px; }
.direct-contact a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); }
.contact-form { align-self: start; padding: 42px; background: var(--white); border-top: 3px solid var(--accent); box-shadow: 0 30px 70px rgba(29,83,113,.13); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 21px; color: #355266; font-size: .76rem; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 0; color: var(--text); border: 0; border-bottom: 1px solid #a9cadb; border-radius: 0; background: transparent; resize: vertical; }
.contact-form textarea { min-height: 100px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-bottom-color: var(--accent); box-shadow: 0 1px 0 var(--accent); }
.contact-form .button { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 16px 0 0; color: #728896; font-size: .72rem; line-height: 1.45; }
.form-note.is-success { color: var(--whatsapp); }

/* Footer */
.site-footer { padding: 70px 0 25px; color: var(--white); background: #050e16; }
.footer-main { display: grid; grid-template-columns: 260px 1fr auto; align-items: start; gap: 70px; padding-bottom: 60px; }
.footer-brand { width: 180px; }
.footer-main > p { max-width: 480px; color: #8da1af; line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(2,auto); gap: 16px 34px; font-size: .8rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #597184; border-top: 1px solid rgba(255,255,255,.08); font: .62rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }

.floating-whatsapp { position: fixed; z-index: 90; right: 26px; bottom: 26px; display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); border-radius: 50%; background: var(--whatsapp); box-shadow: 0 16px 32px rgba(4,72,43,.25); transition: transform .25s var(--ease), background .25s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); background: #0c7847; }
.floating-whatsapp svg { width: 31px; height: 31px; }

/* Contact card landing */
.contact-card-page { min-height: 100vh; color: var(--white); background: var(--ink-950); }
.contact-card-shell { position: relative; display: grid; width: 100%; max-width: 100vw; min-height: 100vh; box-sizing: border-box; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); overflow: hidden; background: linear-gradient(135deg, #06111b 0%, #0d1c2a 58%, #071724 100%); }
.contact-card-glow { position: absolute; inset: -20% 35% auto -10%; width: 70vw; height: 70vw; pointer-events: none; background: radial-gradient(circle, rgba(22,143,235,.18), transparent 65%); filter: blur(12px); }
.contact-card-hero, .contact-card-panel { position: relative; z-index: 1; min-width: 0; box-sizing: border-box; }
.contact-card-hero { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 8vw, 120px); }
.contact-card-brand { width: min(208px, 46vw); margin-bottom: clamp(70px, 12vh, 150px); }
.contact-card-brand img { width: 100%; height: auto; }
.contact-card-hero h1 { max-width: 760px; margin: 0 0 30px; font-size: clamp(4rem, 7vw, 8.2rem); line-height: .9; }
.contact-card-hero h1 span, .contact-card-qr h2 span { color: var(--accent); }
.contact-card-lede { max-width: 530px; margin-bottom: 40px; color: #b9cbd7; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; }
.contact-card-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-card-actions .button { min-width: 210px; }
.contact-card-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 6vw, 96px); border-left: 1px solid rgba(141, 204, 240, .16); background: rgba(8, 25, 39, .56); }
.contact-card-panel-head { display: flex; justify-content: space-between; margin-bottom: 60px; color: #8da1af; font: .68rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.contact-card-index { color: #8dcdf4; }
.contact-card-status { display: inline-flex; align-items: center; gap: 8px; }
.contact-card-status i { width: 7px; height: 7px; border-radius: 50%; background: #43d28b; box-shadow: 0 0 0 5px rgba(67,210,139,.12); }
.contact-card-details { border-top: 1px solid var(--line-dark); }
.contact-card-details a { display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); transition: padding .25s var(--ease), color .25s ease; }
.contact-card-details a:hover { padding-left: 10px; color: #8dcdf4; }
.contact-card-details small, .contact-card-qr small { color: #7b93a2; font: .62rem var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.contact-card-details strong { font: 500 clamp(1.25rem, 2vw, 1.7rem)/1.2 var(--display); }
.contact-card-details span { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--accent); font: .68rem var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.contact-card-qr { display: grid; grid-template-columns: 1fr 164px; align-items: end; gap: 28px; margin-top: 68px; }
.contact-card-qr h2 { margin: 14px 0 14px; font-size: clamp(2rem, 3.2vw, 3.2rem); line-height: .98; }
.contact-card-qr p { max-width: 260px; margin: 0; color: #8da1af; font-size: .9rem; line-height: 1.5; }
.contact-card-qr img { padding: 10px; background: white; }
.contact-card-footer { position: absolute; z-index: 2; right: clamp(32px, 6vw, 96px); bottom: 26px; left: clamp(32px, 6vw, 96px); display: flex; justify-content: space-between; color: #597184; font: .62rem var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.contact-card-footer a { color: #8dcdf4; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1240px) {
  .hero-layout { grid-template-columns: minmax(0,.8fr) minmax(520px,1.2fr); }
  .hero-copy h1 { font-size: clamp(3.7rem,5vw,5.6rem); }
  .strategy-layout { grid-template-columns: 1fr 1fr; }
  .strategy-title { grid-column: 1; }
  .strategy-intro { grid-column: 2; }
  .principles { grid-column: 1/-1; margin-top: 16px; }
  .solution-panel { grid-template-columns: 1fr; }
  .solution-stage { align-content: center; }
  .process-window, .inventory-visual, .commerce-visual, .document-visual, .agent-visual { min-height: 300px; }
}

@media (max-width: 1024px) {
  .container { width: min(calc(100% - 44px), var(--container)); }
  .desktop-nav, .header-cta, .header-odoo { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 84px; }
  .brand { width: 170px; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .mobile-nav { position: fixed; inset: 84px 0 auto; display: grid; padding: 28px 22px 34px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(6,17,27,.98); transform: translateY(-140%); transition: transform .35s var(--ease); }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { display: flex; min-height: 54px; align-items: center; padding: 0 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--display); font-size: 1.1rem; }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 140px; padding-bottom: 80px; }
  .hero-copy { max-width: 780px; padding-top: 50px; }
  .system-map { width: min(100%,760px); min-height: 560px; margin: 0 auto; }
  .section-heading-split { grid-template-columns: 1fr; gap: 30px; }
  .solutions-console { grid-template-columns: 1fr; }
  .solution-tabs { display: grid; grid-template-columns: repeat(5,1fr); border-right: 0; border-bottom: 1px solid var(--line-dark); overflow-x: auto; }
  .solution-tabs button { display: block; min-width: 190px; min-height: 112px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .solution-tabs button span { display: block; margin-bottom: 10px; }
  .solution-tabs button strong { display: block; }
  .solution-tabs button small { display: none; }
  .solution-tabs button::after { inset: auto 0 0; width: auto; height: 3px; transform: scaleX(0); }
  .solution-tabs button[aria-selected="true"]::after { transform: scaleX(1); }
  .solution-panel { grid-template-columns: .85fr 1.15fr; }
  .automation-layout, .operation-layout, .contact-layout { grid-template-columns: 1fr; }
  .automation-copy, .operation-copy, .contact-copy { max-width: 820px; }
  .conversation-stage { width: min(100%,720px); }
  .operation-media { width: min(90%,900px); }
  .sector-list article { grid-template-columns: 70px 1fr 1.2fr; }
  .sector-list small { grid-column: 2/4; }
  .method-steps { grid-template-columns: repeat(2,1fr); }
  .method-steps li:nth-child(3), .method-steps li:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .contact-form { width: min(100%,720px); }
  .contact-card-shell { grid-template-columns: 1fr; }
  .contact-card-hero { min-height: auto; padding-bottom: 55px; }
  .contact-card-brand { margin-bottom: 80px; }
  .contact-card-panel { padding-top: 55px; padding-bottom: 110px; border-top: 1px solid rgba(141,204,240,.16); border-left: 0; }
}

@media (max-width: 767px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .eyebrow { margin-bottom: 20px; }
  h2 { font-size: clamp(2.65rem,12vw,4rem); }
  .hero { background-position: 38% bottom; }
  .hero-layout { padding-top: 108px; padding-bottom: 70px; }
  .hero-copy { padding-top: 20px; }
  .hero-copy h1 { font-size: clamp(3.3rem,14vw,5rem); }
  .hero-lede { font-size: 1.05rem; }
  .button { width: 100%; min-height: 56px; }
  .system-map { display: grid; min-height: auto; grid-template-columns: 1fr; gap: 0; padding: 20px 0 0 30px; }
  .flow-line { display: none; }
  .map-node { position: relative; inset: auto; display: grid; width: 100%; grid-template-columns: 84px 1fr; align-items: center; min-height: 106px; text-align: left; }
  .map-node::before { content: ""; position: absolute; left: 39px; top: 84px; bottom: -22px; width: 1px; background: var(--accent); }
  .map-node:last-of-type::before { display: none; }
  .map-node p { grid-column: 2; grid-row: 1; margin: 0; padding-left: 18px; }
  .map-node p b { display: inline; margin-right: 10px; font-size: 1.1rem; }
  .map-node > span { grid-column: 1; grid-row: 1; width: 78px; height: 78px; margin: 0; }
  .map-node svg { width: 32px; height: 32px; }
  .map-caption { position: static; margin: 26px 0 0 0; font-size: .64rem; }
  .strategy-layout { grid-template-columns: 1fr; gap: 42px; }
  .strategy-title, .strategy-intro, .principles { grid-column: 1; }
  .principles { grid-template-columns: 1fr; }
  .principles article { border-left: 0; border-top: 1px solid var(--line); border-bottom: 0; padding-inline: 0; }
  .section-heading-split { margin-bottom: 48px; }
  .solutions-console { border-inline: 0; margin-inline: -16px; }
  .solution-tabs button { min-width: 164px; padding: 20px; }
  .solution-panel { grid-template-columns: 1fr; min-height: auto; padding: 38px 24px 46px; }
  .panel-copy h3 { font-size: 2.3rem; }
  .process-window, .inventory-visual, .commerce-visual, .document-visual, .agent-visual { min-height: 290px; }
  .sales-pipeline { display: grid; grid-template-columns: 1fr 12px 1fr; }
  .sales-pipeline b { width: 100%; }
  .sales-pipeline b:last-of-type { display: none; }
  .agent-visual { flex-direction: column; }
  .agent-visual > b { width: 1px; height: 28px; }
  .conversation-body { min-height: 500px; padding: 20px 16px; }
  .message { max-width: 88%; }
  .system-event { flex-wrap: wrap; justify-content: center; gap: 5px 12px; text-align: center; }
  .conversation-foot { display: grid; }
  .operation-media { width: calc(100% - 18px); }
  .operation-media img { aspect-ratio: 4/3; }
  .media-label { right: -18px; bottom: -32px; }
  .operation-copy { margin-top: 30px; }
  .sector-list article { grid-template-columns: 46px 1fr; gap: 15px 20px; padding: 26px 0; }
  .sector-list p, .sector-list small { grid-column: 2; }
  .sector-list article:hover { padding-inline: 12px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li { min-height: auto; padding: 28px 20px 32px; border-left: 1px solid var(--line-dark); border-top: 1px solid var(--line-dark); }
  .method-steps li:first-child { border-top: 0; }
  .method-steps > li > span { margin-bottom: 45px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 30px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { display: grid; gap: 10px; }
  .floating-whatsapp { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  .contact-card-hero { width: 100vw; max-width: 100vw; padding: 32px 20px 55px; overflow: hidden; }
  .contact-card-brand { margin-bottom: 70px; }
  .contact-card-hero h1 { width: calc(100vw - 60px); max-width: calc(100vw - 60px); font-size: clamp(2.8rem, 12vw, 3.8rem); overflow-wrap: anywhere; }
  .contact-card-lede, .contact-card-actions { width: calc(100vw - 80px) !important; max-width: calc(100vw - 80px) !important; overflow-wrap: anywhere; word-break: break-word; white-space: normal !important; }
  .contact-card-actions { display: grid; box-sizing: border-box; }
  .contact-card-actions .button { display: flex; width: calc(100% - 20px) !important; max-width: calc(100% - 20px) !important; min-width: 0; padding-inline: 0 !important; box-sizing: border-box !important; }
  .contact-card-panel { width: 100vw; max-width: 100vw; padding: 42px 20px 105px; overflow: hidden; }
  .contact-card-panel-head { margin-bottom: 38px; }
  .contact-card-details a { grid-template-columns: 1fr; gap: 8px; }
  .contact-card-details span { grid-column: 1; grid-row: auto; }
  .contact-card-qr { grid-template-columns: 1fr; align-items: start; margin-top: 48px; }
  .contact-card-qr img { width: 150px; height: 150px; }
  .contact-card-footer { right: 20px; bottom: 24px; left: 20px; display: grid; gap: 8px; }
}

/* Plans */
.plans { position: relative; overflow: hidden; }
.plans-orbit { position: absolute; top: 80px; right: -120px; width: 420px; height: 420px; border: 1px solid rgba(37, 157, 230, .2); border-radius: 50%; box-shadow: 0 0 0 36px rgba(37, 157, 230, .035), 0 0 0 72px rgba(37, 157, 230, .025); }
.plans-heading { position: relative; z-index: 1; }
.plan-switch-wrap { display: flex; align-items: center; gap: 24px; margin: 58px 0 32px; }
.plan-switch { display: inline-flex; gap: 6px; padding: 6px; border: 1px solid rgba(141, 205, 244, .42); background: rgba(255, 255, 255, .06); box-shadow: 0 10px 28px rgba(0, 0, 0, .18); }
.plan-switch button { min-width: 158px; padding: 14px 22px 13px; color: #c1d0db; border: 1px solid rgba(141, 205, 244, .35); background: rgba(6, 17, 27, .72); cursor: pointer; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.plan-switch button:hover { color: var(--white); border-color: var(--accent); background: rgba(37, 157, 230, .18); transform: translateY(-1px); }
.plan-switch button:focus-visible { outline: 3px solid rgba(33, 165, 239, .55); outline-offset: 3px; }
.plan-switch button.is-active { color: var(--white); border-color: var(--accent); background: var(--accent); box-shadow: 0 7px 18px rgba(33, 165, 239, .28); }
.plan-switch button span { display: block; margin-top: 5px; color: #8fd4fa; font-size: .58rem; letter-spacing: .08em; }
.plan-switch button.is-active span { color: var(--white); }
.plan-switch-note { margin: 0; color: var(--muted-dark); font: .72rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.plans-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { position: relative; display: flex; min-height: 570px; flex-direction: column; padding: 32px; border: 1px solid rgba(141, 205, 244, .2); background: rgba(13, 28, 42, .76); transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
.plan-card:hover { transform: translateY(-8px); border-color: rgba(37, 157, 230, .76); background: rgba(16, 35, 52, .92); }
.plan-card-featured { border-color: var(--accent); background: linear-gradient(150deg, rgba(22, 143, 235, .2), rgba(13, 28, 42, .9) 42%); }
.plan-card-top { display: flex; align-items: center; justify-content: space-between; }
.plan-number { color: var(--accent); font: .76rem var(--mono); letter-spacing: .12em; }
.plan-tag { padding: 6px 9px; color: #a8dfff; border: 1px solid rgba(141, 205, 244, .3); font: .62rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.plan-card h3 { margin: 56px 0 12px; color: var(--white); font-size: clamp(2rem, 3vw, 3rem); line-height: 1; }
.plan-lede { min-height: 54px; margin-bottom: 32px; color: var(--muted-dark); line-height: 1.55; }
.plan-price { display: flex; align-items: baseline; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.plan-price strong { color: var(--white); font: 700 clamp(3rem, 4.5vw, 4.5rem)/.9 var(--display); letter-spacing: -.07em; }
.plan-price span { color: var(--accent); font: .68rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.plan-price small { flex-basis: 100%; color: var(--muted); font: .72rem var(--mono); letter-spacing: .04em; }
.plan-card ul { display: grid; gap: 15px; margin: 30px 0; padding: 0; color: #d6e3eb; list-style: none; font-size: .94rem; line-height: 1.35; }
.plan-card li::before { content: "✓"; display: inline-block; width: 24px; color: var(--accent); font-weight: 700; }
.plan-link { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: auto; padding: 16px 20px; color: var(--white); border: 1px solid var(--accent); background: var(--accent); box-shadow: 0 12px 28px rgba(0, 105, 190, .18); font-weight: 700; text-align: center; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease; }
.plan-link span { color: var(--white); font-size: 1.25rem; transition: transform .25s var(--ease); }
.plan-link:hover { color: var(--white); border-color: var(--accent-strong); background: var(--accent-strong); box-shadow: 0 16px 34px rgba(0, 105, 190, .3); transform: translateY(-2px); }
.plan-link:hover span { transform: translateX(5px); }
.plan-link:focus-visible { outline: 3px solid rgba(33, 165, 239, .55); outline-offset: 3px; }

/* SERCOTEC registration */
.sercotec-page { min-height: calc(100vh - 104px); padding: 150px 0 90px; color: var(--white); background: var(--ink-950); }
.sercotec-shell { display: grid; grid-template-columns: minmax(0, .86fr) minmax(420px, .9fr); align-items: center; gap: clamp(60px, 10vw, 160px); }
.sercotec-intro { max-width: 680px; }
.sercotec-intro h1 { margin: 0 0 28px; font-size: clamp(3.4rem, 6vw, 6.8rem); line-height: .92; }
.sercotec-intro h1 span, .sercotec-success-card h1 span { color: var(--accent); }
.sercotec-intro > p:not(.eyebrow) { max-width: 500px; color: #b9cbd7; font-size: 1.08rem; line-height: 1.65; }
.sercotec-mark { display: flex; align-items: center; gap: 14px; margin-top: 70px; color: #7b9aad; font: .7rem var(--mono); letter-spacing: .18em; }
.sercotec-mark span { color: var(--accent); }
.sercotec-mark b { padding-left: 14px; border-left: 1px solid var(--line-dark); font-weight: 400; }
.sercotec-form { padding: clamp(30px, 5vw, 58px); color: var(--text); border-top: 3px solid var(--accent); background: var(--white); box-shadow: 0 30px 70px rgba(0, 0, 0, .24); }
.sercotec-form-heading { margin-bottom: 34px; }
.sercotec-form-heading span { color: var(--accent); font: .65rem var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.sercotec-form-heading h2 { margin: 12px 0 0; font-size: 2.2rem; }
.sercotec-form label { display: grid; gap: 9px; margin-bottom: 22px; color: #355266; font-size: .76rem; font-weight: 700; }
.sercotec-form label small { display: inline; margin-left: 5px; color: #78909f; font-weight: 400; }
.sercotec-form input, .sercotec-form select, .sercotec-form textarea { width: 100%; box-sizing: border-box; min-height: 50px; padding: 12px 0; color: var(--text); border: 0; border-bottom: 1px solid #a9cadb; border-radius: 0; background: transparent; font: inherit; font-weight: 400; }
.sercotec-form select { padding-right: 8px; cursor: pointer; }
.sercotec-form textarea { min-height: 100px; resize: vertical; }
.sercotec-form input:focus, .sercotec-form select:focus, .sercotec-form textarea:focus { outline: 0; border-bottom-color: var(--accent); box-shadow: 0 1px 0 var(--accent); }
.sercotec-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sercotec-other-field { display: none !important; }
.sercotec-other-field.is-visible { display: grid !important; }
.sercotec-form .button { width: 100%; border: 0; cursor: pointer; }
.sercotec-note { margin: 16px 0 0; color: #728896; font-size: .72rem; line-height: 1.45; }
.sercotec-error { margin-bottom: 22px; padding: 13px 15px; color: #8b2934; border-left: 3px solid #c65361; background: #fff0f1; font-size: .82rem; }
.sercotec-success-page { display: grid; min-height: calc(100vh - 104px); place-items: center; padding: 150px 20px 90px; color: var(--white); background: var(--ink-950); }
.sercotec-success-card { width: min(620px, 100%); box-sizing: border-box; padding: clamp(34px, 7vw, 74px); text-align: center; border: 1px solid rgba(234, 247, 255, .18); background: #091724; }
.sercotec-success-card > img { width: 180px; margin-bottom: 48px; }
.sercotec-success-card h1 { margin: 16px 0 26px; font-size: clamp(2.8rem, 6vw, 5rem); line-height: .95; }
.sercotec-success-card > p:not(.eyebrow) { margin: 0 auto 30px; max-width: 40rem; color: rgba(247, 251, 254, .72); line-height: 1.6; }
.sercotec-success-card .button { width: 100%; box-sizing: border-box; }

/* Login keeps the principal header readable and restores Odoo's deferred form. */
body:has(.oe_website_login_container) { background: #06111b; }
body:has(.oe_website_login_container) .site-header { background: #06111b; border-color: rgba(255, 255, 255, .08); }
body:has(.oe_website_login_container) main { min-height: calc(100vh - 250px); padding: 150px 20px 90px; background: #eef4f8; }
body:has(.oe_website_login_container) .oe_website_login_container { width: min(100%, 460px); margin: 0 auto; }
body:has(.oe_website_login_container) .oe_login_form.d-none { display: block !important; padding: 34px; border: 1px solid #d6e1e8; background: var(--white); box-shadow: 0 20px 55px rgba(6, 17, 27, .12); }
body:has(.oe_website_login_container) .oe_login_form label { color: var(--ink-950); font-weight: 700; }
body:has(.oe_website_login_container) .oe_login_form .form-control { min-height: 48px; border: 1px solid #b9cbd6; background: #fff; }
body:has(.oe_website_login_container) .oe_login_form .btn-primary { min-height: 48px; color: var(--white); border: 0; background: var(--accent); font-weight: 700; }
body:has(.oe_website_login_container) .oe_login_form .btn-primary:hover { background: var(--accent-strong); }

/* Checkout pages need room for the fixed principal navigation. */
body.o_website_sale_checkout .site-header { background: #06111b; border-color: rgba(255, 255, 255, .08); }
body.o_website_sale_checkout main { padding-top: 104px; }
body.o_website_sale_checkout .o_wsale_shorter_cart_summary { position: static !important; }
body.o_website_sale_checkout .o_wsale_sticky_object { position: static !important; top: auto !important; }
body:has(.o_wsale_products_page) .site-header { background: #06111b; border-color: rgba(255, 255, 255, .08); }
body:has(.o_wsale_products_page) main { padding-top: 104px; }
body:has(.o_wsale_product_page) .site-header { background: #06111b; border-color: rgba(255, 255, 255, .08); }
body:has(.o_wsale_product_page) #wrap { padding-top: 104px; }
body:has(.o_wsale_product_page) .o_product_detail_img_wrapper { width: 100%; max-height: 560px; aspect-ratio: 4 / 3; overflow: hidden; }
body:has(.o_wsale_product_page) .product_detail_img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; }
body:has([name="o_payment_status"]) .site-header { background: #06111b; border-color: rgba(255, 255, 255, .08); }

/* Keep the storefront header controls on one desktop row when the theme CSS is also loaded. */
@media (min-width: 1025px) {
  .site-header .nav-wrap { grid-template-columns: minmax(180px, 1fr) auto auto auto; }
}
body:has([name="o_payment_status"]) .wrap { padding-top: 104px; }
.across-product-description { max-width: 560px; color: #476174; font-size: .94rem; line-height: 1.65; }
.across-product-description p { margin: 0 0 12px; }
.across-product-description p:last-child { margin-bottom: 0; }
.across-product-description strong { color: var(--ink-950); }

@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .plan-card h3 { margin-top: 36px; }
}

@media (max-width: 560px) {
  .plan-switch-wrap { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 36px; }
  .plan-switch { width: 100%; }
  .plan-switch button { flex: 1; padding-inline: 8px; }
  .plan-card { padding: 26px 22px; }
  .sercotec-page { padding: 125px 0 60px; }
  .sercotec-shell { display: block; }
  .sercotec-intro h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .sercotec-mark { margin: 38px 0 48px; }
  .sercotec-form { padding: 30px 22px; }
  .sercotec-form-row { grid-template-columns: 1fr; gap: 0; }
  .sercotec-success-page { padding-top: 125px; }
}

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