/*
 * PERSONALIZAÇÃO RÁPIDA DO SITE
 * -----------------------------
 * Altere as cores e a fonte nas variáveis abaixo. O restante do CSS utiliza
 * essas variáveis para manter o padrão visual em todas as páginas.
 * Consulte DOCUMENTACAO.md antes de trocar tamanhos, logos ou espaçamentos.
 */
:root {
  --navy: #0a2e5c;
  --navy-2: #061f41;
  --blue: #0756a4;
  --green: #00c853;
  --green-dark: #05a948;
  --ink: #10233b;
  --muted: #617187;
  --line: #dce5ee;
  --soft: #f3f7fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 46, 92, 0.12);
  --font-primary: "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.page-width { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 46, 92, 0.08);
}
.nav-shell {
  width: min(1240px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand { width: 218px; margin-right: auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  color: #34465d;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--green-dark); }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 0 24px;
  background: var(--green);
  color: #062113;
  font-size: 15px;
  font-weight: 780;
  box-shadow: 0 12px 30px rgba(0, 200, 83, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #07d75d; box-shadow: 0 16px 38px rgba(0, 200, 83, .28); }
.button-sm { min-height: 42px; border-radius: 10px; padding: 0 18px; font-size: 13px; }
.button-secondary { background: transparent; color: var(--navy); border-color: #b9c8d7; box-shadow: none; }
.button-secondary:hover { background: #eef4f8; box-shadow: none; }
.button-light { background: #fff; color: var(--navy); border-color: #fff; box-shadow: none; }
.button-light:hover { background: #f0fff6; }
.button-wide { width: 100%; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-content: center; gap: 4px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 4px; }
.mobile-menu nav { position: absolute; top: 54px; right: 0; width: 230px; padding: 12px; display: grid; gap: 4px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.mobile-menu nav a { padding: 12px; border-radius: 8px; font-weight: 650; }
.mobile-menu nav a:hover { background: var(--soft); }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 52%, #eefaf4 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10,46,92,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10,46,92,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 88%);
}
.hero-grid { position: relative; min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.hero-copy { padding: 80px 0; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--green); border-radius: 3px; }
.hero h1, .product-hero h1, .consulting-hero h1 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 780;
}
.hero h1 span, .product-hero h1 span, .consulting-hero h1 span { color: var(--green-dark); }
.hero-lead, .product-hero-copy > p, .consulting-hero-grid > div:first-child > p {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px; }
.hero-proof > div { min-width: 142px; padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong { display: block; color: var(--navy); font-size: 17px; }
.hero-proof span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { width: 440px; height: 440px; right: -180px; top: -180px; background: rgba(0,200,83,.08); }
.hero-glow-two { width: 300px; height: 300px; left: 42%; bottom: -220px; background: rgba(10,46,92,.09); }
.hero-visual { position: relative; height: 560px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(0,200,83,.26); border-radius: 50%; }
.orbit-a { width: 500px; height: 500px; }
.orbit-b { width: 410px; height: 410px; border-style: dashed; border-color: rgba(10,46,92,.18); transform: rotate(24deg); }
.dashboard-card {
  position: relative;
  z-index: 2;
  width: 475px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 38px 90px rgba(10,46,92,.18);
  backdrop-filter: blur(12px);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.micro-label { display: block; margin-bottom: 4px; color: #8593a4; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.dashboard-top strong { color: var(--navy); font-size: 17px; }
.status-pill { padding: 7px 10px; border-radius: 20px; color: #27774a; background: #e9fbf0; font-size: 10px; font-weight: 700; }
.status-pill i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,200,83,.12); }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.metric-row div { padding: 14px; border-radius: 14px; background: #f5f8fb; }
.metric-row span { display: block; color: #7a899b; font-size: 10px; }
.metric-row strong { display: block; margin-top: 7px; color: var(--navy); font-size: 12px; }
.chart-panel { margin-top: 10px; padding: 16px; border: 1px solid #e5edf3; border-radius: 14px; }
.chart-heading { display: flex; justify-content: space-between; color: var(--navy); font-size: 11px; font-weight: 700; }
.chart-heading small { color: #8b98a7; font-size: 9px; font-weight: 500; }
.bars { height: 122px; margin-top: 18px; display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid #dfe8ef; background: repeating-linear-gradient(to bottom, #fff, #fff 30px, #eff4f7 31px); }
.bars i { flex: 1; min-height: 20px; background: linear-gradient(to top, var(--navy), #1885c8 65%, var(--green)); border-radius: 5px 5px 0 0; opacity: .9; }
.bars i:nth-child(1) { height: 34%; }
.bars i:nth-child(2) { height: 52%; }
.bars i:nth-child(3) { height: 46%; }
.bars i:nth-child(4) { height: 70%; }
.bars i:nth-child(5) { height: 61%; }
.bars i:nth-child(6) { height: 86%; }
.bars i:nth-child(7) { height: 76%; }
.module-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 12px; }
.module-row span { padding: 10px 4px; border-radius: 8px; background: #edf7f1; color: #337451; font-size: 9px; font-weight: 650; text-align: center; }
.floating-note { position: absolute; z-index: 4; min-width: 150px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.9); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 18px 44px rgba(10,46,92,.15); }
.floating-note b, .floating-note span { display: block; }
.floating-note b { color: var(--navy); font-size: 12px; }
.floating-note span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.note-one { top: 100px; right: -20px; }
.note-two { left: -18px; bottom: 98px; }

.hero-home + .section {
  padding-top: 96px;
}
.section { padding-top: 112px; padding-bottom: 112px; }
.section-heading { margin-bottom: 48px; }
.section-heading h2, .pain-copy h2, .benefit-grid h2, .method-grid h2, .diagnostic-grid h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading > p, .split-heading > p, .centered-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.split-heading > p { margin: 0; }
.centered-heading { max-width: 720px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading > p { max-width: 600px; margin: 18px auto 0; }

.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.solution-card { position: relative; min-height: 500px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.solution-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -90px; border-radius: 50%; background: rgba(0,200,83,.06); }
.solution-card:hover { transform: translateY(-6px); border-color: #c2d5e5; box-shadow: var(--shadow); }
.solution-number { position: absolute; top: 28px; right: 28px; color: #cbd7e1; font-size: 13px; font-weight: 750; }
.solution-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--navy); color: white; font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.product-workshop .solution-icon { background: var(--green); color: #062c17; }
.product-consulting .solution-icon { background: linear-gradient(135deg, var(--navy), var(--green)); }
.card-tag { display: inline-block; margin-top: 38px; color: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.solution-card h3 { margin: 12px 0 14px; color: var(--navy); font-size: 27px; letter-spacing: -.03em; }
.solution-card > p { min-height: 88px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.solution-card ul { margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.solution-card li { position: relative; margin: 9px 0; padding-left: 18px; color: #3f5268; font-size: 12px; }
.solution-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.card-link { position: absolute; left: 34px; bottom: 30px; color: var(--navy); font-size: 13px; font-weight: 780; }
.card-link span, .text-link span { color: var(--green-dark); transition: margin .2s ease; }
.card-link:hover span, .text-link:hover span { margin-left: 6px; }

.pain-section { background: var(--soft); }
.pain-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.pain-image { position: relative; min-height: 520px; }
.pain-image img { width: 100%; height: 520px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.image-caption { position: absolute; left: 22px; right: 22px; bottom: 20px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; border-radius: 12px; background: rgba(5,25,51,.86); backdrop-filter: blur(10px); color: white; font-size: 12px; }
.image-caption span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(0,200,83,.15); }
.pain-copy > p, .benefit-grid > div:first-child > p, .method-grid > div > p, .diagnostic-grid > div:first-child > p { margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.pain-list { margin-top: 34px; }
.pain-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 19px 0; border-top: 1px solid #d8e3eb; }
.pain-list > div > span { color: var(--green-dark); font-size: 12px; font-weight: 800; }
.pain-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.pain-list b { display: block; margin-bottom: 4px; color: var(--navy); font-size: 15px; }

.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card { position: relative; min-height: 260px; padding: 30px; overflow: hidden; border: 1px solid rgba(18,184,255,.14); border-radius: 20px; background: radial-gradient(circle at 16% 5%, rgba(18,184,255,.12), transparent 30%), linear-gradient(145deg,#08284f,var(--navy-2) 68%); color: white; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::after { content: ""; position: absolute; right: -56px; bottom: -64px; width: 150px; height: 150px; border-radius: 50%; background: rgba(126,213,0,.045); pointer-events: none; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(126,213,0,.42); box-shadow: 0 24px 54px rgba(5,23,47,.2); }
.service-card > span.service-card-icon { position: relative; z-index: 1; width: 64px; height: 64px; display: grid; place-items: center; border: 0; border-radius: 18px; filter: drop-shadow(0 13px 18px rgba(0,0,0,.28)); transition: transform .25s ease, filter .25s ease; }
.service-card:hover > span.service-card-icon { transform: translateY(-2px) scale(1.04); filter: drop-shadow(0 16px 22px rgba(0,0,0,.34)); }
.service-card-icon img { width: 100%; height: 100%; display: block; object-fit: contain; }
.service-card h3 { position: relative; z-index: 1; margin: 28px 0 12px; font-size: 19px; }
.service-card p { position: relative; z-index: 1; margin: 0; color: #adbed0; font-size: 13px; line-height: 1.65; }
.section-link-row { margin-top: 34px; text-align: center; }
.text-link { color: var(--navy); font-size: 14px; font-weight: 780; }
.text-link-light { color: white; }

.process-section { background: linear-gradient(180deg, #fff 0%, #f6f9fb 100%); }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-line::before { content: ""; position: absolute; top: 27px; left: 7%; right: 7%; height: 1px; background: #cbd8e2; }
.process-line > div { position: relative; z-index: 1; padding-right: 30px; }
.process-line span { width: 54px; height: 54px; display: grid; place-items: center; border: 6px solid #f8fafb; border-radius: 50%; background: var(--navy); color: white; font-size: 11px; font-weight: 800; box-shadow: 0 0 0 1px #cfdae3; }
.process-line h3 { margin: 24px 0 8px; color: var(--navy); font-size: 17px; }
.process-line p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.cta-section { padding: 40px 0; background: var(--navy-2); }
.cta-panel { min-height: 290px; padding: 58px 64px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; background: radial-gradient(circle at 90% 10%, rgba(0,200,83,.24), transparent 32%), linear-gradient(135deg, #0d376e, #061f41); color: white; }
.cta-panel .eyebrow { color: #8ef2b5; }
.cta-panel h2 { margin: 0; max-width: 700px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
.cta-panel p { margin: 16px 0 0; max-width: 650px; color: #c2d0df; font-size: 15px; line-height: 1.7; }
.cta-actions { display: grid; justify-items: start; gap: 20px; }

.site-footer { padding: 76px 0 30px; background: #05172f; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .75fr .85fr; gap: 50px; }
.footer-logo-wrap { width: 230px; padding: 12px 16px; border-radius: 12px; background: white; }
.footer-brand p { max-width: 360px; margin: 22px 0 0; color: #9fb1c5; font-size: 13px; line-height: 1.7; }
.footer-grid h2 { margin: 0 0 20px; color: #7ce9a8; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: 13px 0; color: #c4d0dc; font-size: 12px; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { margin-top: 60px; padding-top: 25px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #71869c; font-size: 11px; }

/* Product pages */
.product-hero, .consulting-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f8fbfd, #fff 54%, #effbf4); }
.product-hero-grid, .consulting-hero-grid { min-height: 650px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.product-hero-copy { padding: 80px 0; }
.product-hero h1, .consulting-hero h1 { font-size: clamp(46px, 5vw, 66px); }
.check-list { margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 22px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 8px; color: #455970; font-size: 12px; font-weight: 650; }
.check-list li span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #e5f9ed; color: var(--green-dark); font-size: 11px; }
.erp-screen { overflow: hidden; border: 10px solid var(--navy-2); border-radius: 24px; background: white; box-shadow: 0 38px 90px rgba(10,46,92,.22); transform: perspective(1400px) rotateY(-5deg); }
.screen-top { height: 32px; padding: 0 12px; display: flex; align-items: center; gap: 5px; background: #071c39; color: white; }
.screen-top > span { width: 6px; height: 6px; border-radius: 50%; background: #56708e; }
.screen-top b { margin-left: auto; font-size: 8px; font-weight: 600; color: #91a6bb; }
.screen-body { min-height: 390px; display: grid; grid-template-columns: 58px 1fr; }
.screen-body aside { padding: 16px 13px; display: grid; align-content: start; gap: 22px; background: var(--navy); }
.screen-body aside i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--green); color: var(--navy-2); font-style: normal; font-size: 12px; font-weight: 900; }
.screen-body aside span { width: 24px; height: 5px; margin-inline: auto; border-radius: 5px; background: rgba(255,255,255,.25); }
.screen-content { padding: 24px; background: #f5f8fb; }
.screen-title { display: flex; align-items: center; justify-content: space-between; }
.screen-title small, .screen-title strong { display: block; }
.screen-title small { color: #8391a1; font-size: 8px; }
.screen-title strong { margin-top: 3px; color: var(--navy); font-size: 15px; }
.screen-title button { border: 0; border-radius: 8px; padding: 9px 12px; background: var(--green); color: #052a14; font-size: 8px; font-weight: 800; }
.screen-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 18px; }
.screen-metrics div { padding: 14px; border-radius: 11px; background: white; box-shadow: 0 8px 20px rgba(10,46,92,.05); }
.screen-metrics span, .screen-metrics b { display: block; }
.screen-metrics span { color: #8090a0; font-size: 8px; }
.screen-metrics b { margin-top: 10px; color: var(--navy); font-size: 10px; }
.screen-lower { display: grid; grid-template-columns: 1.4fr .6fr; gap: 10px; margin-top: 10px; }
.screen-chart, .screen-list { min-height: 210px; padding: 14px; border-radius: 11px; background: white; }
.screen-chart > span, .screen-list > span { color: var(--navy); font-size: 9px; font-weight: 700; }
.screen-chart > div { height: 145px; margin-top: 18px; display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid #e5ebf1; }
.screen-chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, var(--navy), #1688ca); }
.screen-chart i:nth-child(1) { height: 35%; }.screen-chart i:nth-child(2) { height: 53%; }.screen-chart i:nth-child(3) { height: 44%; }.screen-chart i:nth-child(4) { height: 78%; }.screen-chart i:nth-child(5) { height: 64%; }.screen-chart i:nth-child(6) { height: 86%; background: linear-gradient(to top, var(--navy), var(--green)); }
.screen-list p { margin: 18px 0; display: flex; align-items: center; gap: 6px; color: #5f7082; font-size: 8px; }
.screen-list p i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feature-card { min-height: 220px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.feature-card > span { color: var(--green-dark); font-size: 11px; font-weight: 800; }
.feature-card h3 { margin: 35px 0 10px; color: var(--navy); font-size: 19px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.soft-section { background: var(--soft); }
.benefit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.benefit-panel { padding: 10px 34px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.benefit-panel > div { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.benefit-panel > div:last-child { border-bottom: 0; }
.benefit-panel > div > span { color: var(--green-dark); font-size: 11px; font-weight: 800; }
.benefit-panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.benefit-panel b { display: block; margin-bottom: 5px; color: var(--navy); font-size: 15px; }

/* Workshop */
.workshop-hero { background: radial-gradient(circle at 75% 50%, rgba(0,200,83,.1), transparent 32%), linear-gradient(135deg,#f9fbfd,#fff); }
.workshop-visual { position: relative; height: 520px; display: grid; place-items: center; }
.car-card { width: 360px; height: 300px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 28px; background: linear-gradient(145deg, #0d3b76, #061c38); color: white; box-shadow: 0 34px 80px rgba(10,46,92,.25); }
.car-label { position: absolute; top: 128px; margin-left: 0; padding: 7px 10px; border-radius: 20px; background: rgba(255,255,255,.11); color: #b8cbe0; font-size: 9px; }
.car-shape { position: relative; height: 120px; margin-bottom: 28px; border-bottom: 7px solid #32dc79; border-radius: 50% 50% 18% 18%; transform: perspective(500px) rotateX(55deg); box-shadow: 0 22px 40px rgba(0,200,83,.18); }
.car-shape::before { content: ""; position: absolute; left: 54px; right: 54px; top: 25px; bottom: -6px; border: 7px solid #e4edf5; border-bottom: 0; border-radius: 48% 48% 18% 18%; }
.car-shape i { position: absolute; bottom: -14px; width: 34px; height: 16px; border-radius: 0 0 8px 8px; background: #091527; }
.car-shape i:first-child { left: 40px; }.car-shape i:last-child { right: 40px; }
.car-card strong { font-size: 19px; }.car-card small { margin-top: 5px; color: #afc2d6; }
.workshop-ticket { position: absolute; width: 215px; padding: 16px; display: grid; grid-template-columns: 32px 1fr 24px; gap: 10px; align-items: center; border: 1px solid #e1eaf0; border-radius: 15px; background: white; box-shadow: 0 18px 40px rgba(10,46,92,.15); }
.workshop-ticket > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: #e8f9ef; color: var(--green-dark); font-size: 10px; font-weight: 800; }
.workshop-ticket p { margin: 0; color: #7b8999; font-size: 9px; }.workshop-ticket b { display: block; margin-bottom: 3px; color: var(--navy); font-size: 11px; }
.workshop-ticket > i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #06301a; font-size: 10px; font-style: normal; font-weight: 900; }
.ticket-a { top: 44px; left: 0; }.ticket-b { top: 180px; right: -15px; }.ticket-c { bottom: 32px; left: 8px; }
.journey-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.journey-grid article { position: relative; min-height: 210px; padding: 28px; border-radius: 18px; background: var(--navy-2); color: white; overflow: hidden; }
.journey-grid article::after { content: "→"; position: absolute; right: 20px; top: 20px; color: rgba(255,255,255,.18); font-size: 24px; }
.journey-grid article:last-child::after { content: "✓"; color: var(--green); }
.journey-grid span { color: var(--green); font-size: 11px; font-weight: 800; }
.journey-grid h3 { margin: 52px 0 10px; font-size: 18px; }
.journey-grid p { margin: 0; color: #aebfd0; font-size: 12px; line-height: 1.6; }

/* Consulting */
.consulting-hero { background: linear-gradient(135deg,#f8fbfd,#fff 55%,#eefaf4); }
.consulting-hero-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 72% 46%, rgba(0,200,83,.12), transparent 28%), linear-gradient(rgba(10,46,92,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(10,46,92,.03) 1px,transparent 1px); background-size: auto,52px 52px,52px 52px; }
.consulting-hero-grid { position: relative; min-height: 670px; grid-template-columns: 1.02fr .98fr; }
.consulting-map { position: relative; height: 540px; }
.consulting-map::before, .consulting-map::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px dashed rgba(10,46,92,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.consulting-map::before { width: 410px; height: 410px; }.consulting-map::after { width: 300px; height: 300px; border-color: rgba(0,200,83,.25); }
.map-center { position: absolute; z-index: 2; left: 50%; top: 50%; width: 180px; height: 180px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: var(--navy-2); color: white; transform: translate(-50%,-50%); box-shadow: 0 30px 70px rgba(10,46,92,.25); }
.map-center img { width: 62px; height: 62px; object-fit: contain; margin-bottom: 8px; }.map-center b { font-size: 15px; }.map-center span { margin-top: 3px; color: #a9bccf; font-size: 9px; }
.map-node { position: absolute; z-index: 3; width: 126px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 16px 36px rgba(10,46,92,.12); }
.map-node b, .map-node span { display: block; }.map-node b { color: var(--navy); font-size: 12px; }.map-node span { margin-top: 3px; color: var(--muted); font-size: 9px; }
.node-erp { left: 0; top: 108px; }.node-data { right: 0; top: 104px; }.node-cloud { left: 16px; bottom: 88px; }.node-sec { right: -8px; bottom: 80px; }
.consulting-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consulting-service-grid article { min-height: 150px; padding: 26px; display: grid; grid-template-columns: 46px 1fr; gap: 18px; border: 1px solid var(--line); border-radius: 16px; }
.consulting-service-grid article > span { color: var(--green-dark); font-size: 11px; font-weight: 800; }
.consulting-service-grid h3 { margin: 0 0 9px; color: var(--navy); font-size: 17px; }.consulting-service-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.method-section { background: var(--navy-2); color: white; }
.method-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.method-grid h2 { color: white; }.method-grid > div > p { color: #aebfd0; }
.method-grid ol { margin: 0; padding: 0; list-style: none; }
.method-grid li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); }
.method-grid li > span { color: var(--green); font-size: 11px; font-weight: 800; }
.method-grid b { font-size: 16px; }.method-grid li p { margin: 5px 0 0; color: #9eb1c4; font-size: 12px; line-height: 1.6; }
.diagnostic-section { padding: 110px 0; background: var(--soft); }
.diagnostic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.diagnostic-card { padding: 38px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.diagnostic-card h3 { margin: 0; color: var(--navy); font-size: 20px; }.diagnostic-card .check-list { display: grid; margin-top: 26px; }
.config-note { margin: 26px 0; padding: 14px; border-radius: 10px; background: #f3f7fa; color: #6f7e8e; font-size: 11px; line-height: 1.55; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .nav-cta { margin-left: auto; }
  .brand { margin-right: 0; }
  .hero-grid, .product-hero-grid, .consulting-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy, .product-hero-copy { padding: 84px 0 40px; }
  .hero-visual, .workshop-visual, .consulting-map { margin: 0 auto 50px; width: min(620px,100%); }
  .erp-screen { margin-bottom: 70px; transform: none; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card:last-child { grid-column: 1 / -1; min-height: 430px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid, .benefit-grid, .method-grid, .diagnostic-grid { grid-template-columns: 1fr; gap: 54px; }
  .pain-image, .pain-image img { min-height: 440px; height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .page-width, .nav-shell { width: min(100% - 30px, 1180px); }
  .nav-shell { height: 70px; gap: 12px; }
  .brand { width: 168px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-top: 70px; }
  .hero h1, .product-hero h1, .consulting-hero h1 { font-size: 44px; }
  .hero-lead, .product-hero-copy > p, .consulting-hero-grid > div:first-child > p { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof > div { min-width: 0; flex: 1; padding-right: 12px; margin-right: 12px; }
  .hero-proof span { font-size: 10px; }
  .hero-visual { height: 420px; margin-bottom: 20px; }
  .dashboard-card { width: 100%; padding: 15px; transform: none; }
  .orbit-a { width: 380px; height: 380px; }.orbit-b { width: 320px; height: 320px; }
  .floating-note { display: none; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .solution-grid, .feature-grid, .journey-grid, .consulting-service-grid { grid-template-columns: 1fr; }
  .solution-card, .solution-card:last-child { grid-column: auto; min-height: 500px; }
  .pain-image, .pain-image img { min-height: 320px; height: 320px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; }
  .process-line { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .process-line::before { display: none; }
  .cta-section { padding: 0; }
  .cta-panel { width: 100%; min-height: 0; padding: 68px 24px; grid-template-columns: 1fr; gap: 34px; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .product-hero-grid, .consulting-hero-grid { min-height: auto; }
  .erp-screen { border-width: 6px; }
  .screen-body { grid-template-columns: 40px 1fr; min-height: 330px; }
  .screen-body aside { padding: 12px 7px; }.screen-content { padding: 12px; }
  .screen-metrics { grid-template-columns: 1fr; }.screen-metrics div:nth-child(3) { display: none; }
  .screen-lower { grid-template-columns: 1fr; }.screen-list { display: none; }
  .workshop-visual { height: 480px; overflow: hidden; }
  .car-card { width: 300px; }.workshop-ticket { width: 190px; }
  .ticket-a { left: -8px; }.ticket-b { right: -8px; }.ticket-c { left: 4px; }
  .consulting-map { height: 480px; transform: scale(.9); }
  .map-node { width: 112px; }
  .method-grid { gap: 40px; }
  .diagnostic-section { padding: 78px 0; }
}

/* Catálogo administrável de produtos */
.dynamic-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-catalog-card { display: flex; flex-direction: column; }
.product-catalog-card .solution-thumb { height: 210px; }
.product-catalog-card .solution-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-catalog-card .card-link {
  position: static;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
}
.product-illustration-service-desk img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 28px; }
.product-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) {
  .dynamic-product-grid, .product-detail-grid { grid-template-columns: 1fr; }
}

/* Menu agrupado de produtos */
.product-dropdown { position: relative; }
.product-dropdown summary {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c5d3e1;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.product-dropdown summary::-webkit-details-marker { display: none; }
.product-dropdown summary:hover,
.product-dropdown[open] summary { color: #8bdd00; }
.product-dropdown summary.nav-active::after { display: none; }
.product-dropdown summary span { font-size: 15px; transition: transform .2s ease; }
.product-dropdown[open] summary span { transform: rotate(180deg); }
.product-dropdown-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 18px);
  left: 50%;
  width: 330px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(18,184,255,.2);
  border-radius: 15px;
  background: #071a33;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  transform: translateX(-50%);
}
.product-dropdown-menu a { padding: 12px 14px; display: grid; gap: 3px; border-radius: 10px; }
.product-dropdown-menu a:hover,
.product-dropdown-menu a.nav-active { background: rgba(18,184,255,.1); text-decoration: none; }
.product-dropdown-menu a strong { color: #f2f7fb; font-size: 13px; }
.product-dropdown-menu a small { color: #8ea4b9; font-size: 10px; }
.product-dropdown-menu .nav-active::after { display: none; }
.mobile-product-group { border-radius: 8px; }
.mobile-product-group summary { padding: 12px; color: #34465d; font-size: 14px; font-weight: 700; cursor: pointer; }
.mobile-product-group div { padding: 0 0 5px 12px; }
.mobile-product-group div a { font-size: 13px; }

/* Generated Systenova illustrations */
.solution-card {
  min-height: 570px;
}
.solution-thumb {
  position: relative;
  z-index: 1;
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce8f1;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 52%, rgba(0,183,255,.14), transparent 56%), linear-gradient(145deg, #f7fbff, #edf4fa);
}
.solution-thumb::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px;
  height: 18px;
  border-radius: 50%;
  background: rgba(5,25,51,.12);
  filter: blur(13px);
}
.solution-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 184px;
  object-fit: contain;
  transition: transform .3s ease;
}
.solution-card:hover .solution-thumb img {
  transform: translateY(-3px) scale(1.035);
}
.solution-thumb-workshop {
  background: radial-gradient(circle at 50% 52%, rgba(114,212,0,.16), transparent 56%), linear-gradient(145deg, #fbfefc, #eef8f2);
}
.solution-thumb-consulting {
  background: radial-gradient(circle at 50% 52%, rgba(0,109,255,.13), transparent 56%), linear-gradient(145deg, #f8fbff, #edf5fb);
}
.solution-card .card-tag {
  margin-top: 24px;
}

.generated-section-art {
  min-height: 520px;
  padding: 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10,46,92,.1);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 45%, rgba(0,183,255,.2), transparent 44%), linear-gradient(145deg, #ffffff, #eaf2f9);
  box-shadow: var(--shadow);
}
.pain-image.generated-section-art img {
  width: 112%;
  height: auto;
  min-height: 0;
  max-height: 450px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 25px rgba(10,46,92,.16));
}

.product-illustration {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.product-illustration::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(500px, 88%);
  aspect-ratio: 1;
  border: 1px solid rgba(10,46,92,.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,183,255,.13), rgba(255,255,255,.2) 58%, transparent 70%);
}
.product-illustration-workshop::before {
  background: radial-gradient(circle, rgba(114,212,0,.15), rgba(255,255,255,.25) 58%, transparent 70%);
}
.product-illustration-consulting::before {
  background: radial-gradient(circle, rgba(0,109,255,.14), rgba(255,255,255,.2) 58%, transparent 70%);
}
.product-illustration > img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: 760px;
  max-height: 550px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(10,46,92,.16));
}
.illustration-label {
  position: absolute;
  z-index: 2;
  left: 8px;
  bottom: 30px;
  min-width: 280px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 15px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(10,46,92,.16);
  backdrop-filter: blur(12px);
}
.illustration-label span,
.illustration-label b,
.illustration-label small {
  display: block;
}
.illustration-label span {
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.illustration-label b {
  margin-top: 5px;
  color: var(--navy-2);
  font-size: 17px;
}
.illustration-label small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1050px) {
  .solution-card:last-child {
    min-height: 540px;
  }
  .product-illustration {
    width: min(680px, 100%);
    margin: 0 auto 42px;
  }
}

@media (max-width: 760px) {
  .solution-card,
  .solution-card:last-child {
    min-height: 565px;
  }
  .generated-section-art {
    min-height: 340px;
    height: 340px;
    padding: 20px;
  }
  .pain-image.generated-section-art img {
    width: 118%;
    height: auto;
    min-height: 0;
    max-height: 290px;
  }
  .product-illustration,
  .workshop-visual.product-illustration,
  .consulting-map.product-illustration {
    width: 100%;
    min-height: 390px;
    height: 390px;
    margin-bottom: 35px;
    overflow: visible;
    transform: none;
  }
  .product-illustration > img {
    width: 118%;
    max-height: 375px;
  }
  .illustration-label {
    left: 0;
    right: 0;
    bottom: 2px;
    min-width: 0;
    padding: 14px 16px;
  }
}

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

/* PHP/XAMPP navigation and accessibility */
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--navy-2);
  color: white;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.desktop-nav .nav-active { color: var(--green-dark); }
.desktop-nav .nav-active::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 3px;
  background: var(--green);
}
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  place-content: center;
  gap: 4px;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: var(--navy);
}
.mobile-navigation {
  position: absolute;
  top: 70px;
  right: 0;
  width: 250px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}
.mobile-navigation[hidden] { display: none; }
.mobile-navigation a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: #34465d;
  font-size: 14px;
  font-weight: 650;
}
.mobile-navigation a:hover,
.mobile-navigation .nav-active { background: var(--soft); color: var(--green-dark); }

/* Contact page */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbfd 0%, #fff 58%, #eefaf4 100%);
}
.contact-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -190px;
  border-radius: 50%;
  background: rgba(0, 200, 83, .08);
}
.contact-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 90px;
}
.contact-hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--navy-2);
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.contact-hero h1 span { color: var(--green-dark); }
.contact-hero-grid > div:first-child > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.contact-summary {
  padding: 30px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.contact-summary strong { margin-bottom: 10px; color: var(--navy); font-size: 16px; }
.contact-summary span { padding: 12px 14px; border-radius: 10px; background: var(--soft); color: #4e6176; font-size: 12px; }
.contact-section {
  padding: 110px 0;
  border-top: 1px solid rgba(10,46,92,.08);
  background: linear-gradient(180deg, #f8fbfd 0%, var(--soft) 100%);
}
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 86px; align-items: start; }
.contact-intro h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.contact-intro > p:last-of-type { margin: 22px 0 0; color: var(--muted); line-height: 1.75; }
.direct-links { margin-top: 32px; display: grid; gap: 10px; }
.direct-links a { padding: 18px; display: flex; justify-content: space-between; gap: 18px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.direct-links b { color: var(--navy); font-size: 13px; }
.direct-links span { color: var(--green-dark); font-size: 11px; font-weight: 700; }
.contact-details { margin-top: 32px; display: grid; gap: 10px; }
.contact-detail {
  min-height: 82px;
  padding: 15px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.contact-detail:hover {
  transform: translateY(-2px);
  border-color: #a9c8dd;
  box-shadow: 0 12px 28px rgba(10,46,92,.08);
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #8ad7f6;
  border-radius: 50%;
  background: #eef9fe;
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .03em;
}
.contact-detail > span:last-child { min-width: 0; }
.contact-detail small,
.contact-detail b { display: block; }
.contact-detail small {
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-detail b {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.45;
}
.contact-card { padding: 38px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 700; }
.contact-form input,
.contact-form select,
.contact-form textarea,
.prepared-message {
  width: 100%;
  border: 1px solid #cfdbe5;
  border-radius: 10px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  outline: none;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.prepared-message:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(0,200,83,.1);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.form-privacy { margin: -4px 0 0; color: #7d8997; font-size: 10px; line-height: 1.55; text-align: center; }
.form-alert { margin-bottom: 22px; padding: 16px 18px; border-radius: 12px; font-size: 12px; line-height: 1.55; }
.form-alert strong { display: block; margin-bottom: 4px; }
.form-alert p { margin: 5px 0 0; }
.form-alert ul { margin: 7px 0 0; padding-left: 20px; }
.form-alert-error { background: #fff0f0; color: #8d2828; }
.form-alert-info { background: #eef6fc; color: #255878; }
.form-alert-success { background: #eafaf0; color: #22663d; }
.prepared-message { min-height: 220px; margin-bottom: 18px; background: #f7fafc; resize: vertical; }
.diagnostic-card .button { margin-top: 28px; }

.error-page { min-height: 620px; padding: 120px 0; display: grid; align-items: center; text-align: center; background: var(--soft); }
.error-page .eyebrow { justify-content: center; }
.error-page h1 { margin: 0; color: var(--navy-2); font-size: clamp(42px, 6vw, 70px); letter-spacing: -.05em; }
.error-page p:not(.eyebrow) { margin: 18px 0 30px; color: var(--muted); }

@media (max-width: 1050px) {
  .mobile-toggle { display: grid; }
  .contact-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-hero-grid { padding: 70px 0; }
}

@media (max-width: 760px) {
  body.menu-open { overflow: hidden; }
  .mobile-toggle { display: grid; margin-left: auto; }
  .mobile-navigation { position: fixed; left: 15px; right: 15px; top: 78px; width: auto; }
  .contact-section { padding: 78px 0; }
  .contact-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .direct-links a { display: grid; }
}

/* Contact showcase inspired by the Systenova contact material */
.contact-showcase {
  position: relative;
  overflow: hidden;
  padding: 78px 0 28px;
  background:
    radial-gradient(circle at 75% 52%, rgba(0, 104, 215, .18), transparent 34%),
    radial-gradient(circle at 88% 74%, rgba(118, 211, 0, .09), transparent 22%),
    linear-gradient(135deg, #020b19 0%, #03142a 52%, #020b19 100%);
  color: white;
}
.contact-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(18, 184, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 184, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to left, black, transparent 80%);
}
.contact-glow { position: absolute; border-radius: 50%; filter: blur(75px); pointer-events: none; }
.contact-glow-blue { width: 280px; height: 280px; right: 18%; top: 28%; background: rgba(0, 126, 255, .14); }
.contact-glow-green { width: 180px; height: 180px; right: 4%; bottom: 10%; background: rgba(126, 218, 0, .1); }
.contact-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 78px;
}
.contact-showcase-info {
  padding: 6px 56px 20px 0;
  border-right: 1px solid rgba(18, 184, 255, .35);
}
.contact-overline {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.contact-showcase h1 {
  margin: 6px 0 0;
  color: #72d000;
  font-size: clamp(54px, 6.4vw, 90px);
  line-height: .96;
  font-weight: 850;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(89, 190, 0, .18);
}
.contact-light-line { position: relative; height: 2px; margin: 30px 0 26px; background: linear-gradient(90deg, #0bbdff 0%, rgba(11,189,255,.25) 72%, transparent 100%); }
.contact-light-line span { position: absolute; left: 38%; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: white; box-shadow: 0 0 8px #0bbdff, 0 0 20px #0bbdff; transform: translate(-50%,-50%); }
.contact-showcase-lead { max-width: 500px; margin: 0; color: #d4dfeb; font-size: 17px; line-height: 1.72; }
.contact-channel-list { margin-top: 30px; display: grid; gap: 10px; }
.contact-channel-card {
  min-height: 88px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 17px;
  align-items: center;
  border: 1px solid rgba(12, 173, 255, .65);
  border-radius: 13px;
  background: linear-gradient(100deg, rgba(4, 20, 42, .88), rgba(4, 14, 30, .58));
  box-shadow: inset 0 0 20px rgba(0, 143, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
a.contact-channel-card:hover {
  transform: translateX(4px);
  border-color: #19c6ff;
  background: linear-gradient(100deg, rgba(7, 39, 78, .95), rgba(4, 18, 36, .72));
  box-shadow: 0 12px 32px rgba(0, 119, 220, .13), inset 0 0 24px rgba(0, 143, 255, .055);
}
.contact-channel-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #11bdff;
  border-radius: 50%;
  background: rgba(2, 17, 37, .72);
  box-shadow: inset 0 0 18px rgba(10, 178, 255, .08), 0 0 18px rgba(10, 178, 255, .05);
}
.contact-channel-icon img { width: 29px; height: 29px; }
.contact-channel-card > span:nth-child(2) { min-width: 0; }
.contact-channel-card small,
.contact-channel-card b { display: block; }
.contact-channel-card small { margin-bottom: 6px; color: #12b8ff; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.contact-channel-card b { overflow-wrap: anywhere; color: white; font-size: 14px; line-height: 1.45; }
.contact-channel-action { color: #7fd500; font-size: 10px; font-weight: 800; white-space: nowrap; }
.contact-channel-status { display: flex; align-items: center; gap: 7px; color: #9eb2c8; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.contact-channel-status i { width: 7px; height: 7px; border-radius: 50%; background: #7fd500; box-shadow: 0 0 10px rgba(127,213,0,.75); }
.contact-showcase-brand { position: relative; min-height: 720px; padding: 0 4px 0 4px; }
.contact-brand-logo { width: min(500px, 92%); margin: 0 auto; padding: 14px 24px; border: 1px solid rgba(255,255,255,.2); border-radius: 17px; background: rgba(255,255,255,.96); box-shadow: 0 18px 54px rgba(0,0,0,.28); }
.contact-brand-logo img { width: 100%; }
.contact-pillars { margin-top: 34px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(18,184,255,.18); border-bottom: 1px solid rgba(18,184,255,.18); }
.contact-pillars > div { min-height: 78px; padding: 15px 12px; display: flex; align-items: center; justify-content: center; gap: 11px; border-right: 1px solid rgba(18,184,255,.25); }
.contact-pillars > div:last-child { border-right: 0; }
.contact-pillars img { width: 31px; height: 31px; }
.contact-pillars span { color: white; font-size: 12px; font-weight: 750; text-transform: uppercase; }
.contact-mission { position: relative; z-index: 3; max-width: 430px; margin: 34px 0 0 26px; color: #edf4fa; font-size: clamp(22px, 2.5vw, 31px); line-height: 1.45; }
.contact-mission strong { color: #7fd500; font-weight: 760; }
.contact-network-art { position: absolute; right: 0; bottom: 0; width: 390px; height: 330px; }
.contact-network-art::before {
  content: "";
  position: absolute;
  inset: 45px 0 0 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 18% 28%, #12b8ff 0 2px, transparent 3px),
    radial-gradient(circle at 72% 22%, #12b8ff 0 2px, transparent 3px),
    radial-gradient(circle at 81% 68%, #7fd500 0 2px, transparent 3px),
    radial-gradient(circle at 40% 82%, #12b8ff 0 2px, transparent 3px),
    radial-gradient(circle, rgba(0,105,215,.3), rgba(0,40,91,.12) 46%, transparent 68%);
  border: 1px solid rgba(18,184,255,.24);
  box-shadow: inset 0 0 60px rgba(0,113,218,.13), 0 0 50px rgba(0,113,218,.08);
}
.network-ring { position: absolute; border: 1px solid rgba(18,184,255,.22); border-radius: 50%; transform: rotate(-18deg); }
.network-ring-one { width: 350px; height: 180px; right: -5px; bottom: 70px; }
.network-ring-two { width: 260px; height: 260px; right: 20px; bottom: 18px; border-color: rgba(127,213,0,.16); }
.network-core { position: absolute; z-index: 2; right: 107px; bottom: 93px; width: 100px; height: 100px; padding: 14px; display: grid; place-items: center; border: 1px solid rgba(18,184,255,.55); border-radius: 50%; background: rgba(3,17,35,.92); box-shadow: 0 0 35px rgba(0,135,255,.18); }
.network-core img { max-width: 100%; max-height: 100%; object-fit: contain; }
.network-node { position: absolute; z-index: 3; width: 56px; height: 56px; padding: 14px; display: grid; place-items: center; border: 1px solid rgba(18,184,255,.72); border-radius: 50%; background: rgba(3,18,38,.93); box-shadow: 0 0 22px rgba(0,131,255,.13); }
.network-node img { width: 100%; height: 100%; }
.network-node-mail { right: 2px; top: 60px; }
.network-node-phone { left: 48px; bottom: 54px; }
.network-node-location { right: 22px; bottom: 15px; border-color: rgba(127,213,0,.8); }
.contact-social-bar {
  position: relative;
  z-index: 4;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(12, 173, 255, .45);
  border-radius: 15px;
  background: rgba(3, 17, 36, .84);
  box-shadow: 0 16px 48px rgba(0,0,0,.22);
}
.contact-social-bar > a { min-height: 98px; padding: 18px 20px; display: grid; grid-template-columns: 54px 1fr; gap: 15px; align-items: center; border-right: 1px solid rgba(18,184,255,.22); }
.contact-social-bar > a:last-child { border-right: 0; }
.contact-social-bar > a:hover { background: rgba(11, 87, 159, .18); }
.social-icon { width: 54px; height: 54px; padding: 13px; display: grid; place-items: center; border: 1px solid #12b8ff; border-radius: 50%; background: rgba(5,26,53,.8); }
.social-icon-green { border-color: #7fd500; }
.social-icon img { width: 100%; height: 100%; }
.contact-social-bar small,
.contact-social-bar b { display: block; }
.contact-social-bar small { margin-bottom: 5px; color: #7fd500; font-size: 10px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.contact-social-bar b { overflow-wrap: anywhere; color: white; font-size: 12px; font-weight: 600; }

.contact-benefits { margin: 32px 0; padding: 0; list-style: none; }
.contact-benefits li { padding: 18px 0; display: grid; grid-template-columns: 38px 1fr; gap: 16px; border-top: 1px solid #d8e3eb; }
.contact-benefits li > span { color: var(--green-dark); font-size: 11px; font-weight: 850; }
.contact-benefits p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.contact-benefits b { display: block; margin-bottom: 4px; color: var(--navy); font-size: 14px; }
.quick-whatsapp { min-height: 76px; padding: 13px 16px; display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; border: 1px solid rgba(0,200,83,.35); border-radius: 14px; background: #eafaf0; transition: transform .2s ease, box-shadow .2s ease; }
.quick-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 15px 32px rgba(0,150,66,.12); }
.quick-whatsapp > img { width: 48px; height: 48px; padding: 9px; border-radius: 50%; background: var(--green); }
.quick-whatsapp small,
.quick-whatsapp b { display: block; }
.quick-whatsapp small { margin-bottom: 3px; color: #4b7b5d; font-size: 10px; }
.quick-whatsapp b { color: #0d5a2e; font-size: 14px; }
.quick-whatsapp > strong { color: var(--green-dark); font-size: 20px; }
.contact-form button[type="submit"]:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1050px) {
  .contact-showcase-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact-showcase-info { padding-right: 0; border-right: 0; }
  .contact-showcase-brand { min-height: 690px; }
  .contact-social-bar { grid-template-columns: 1fr 1fr; }
  .contact-social-bar > a:nth-child(2) { border-right: 0; }
  .contact-social-bar > a:nth-child(-n+2) { border-bottom: 1px solid rgba(18,184,255,.22); }
}

@media (max-width: 760px) {
  .contact-showcase { padding-top: 56px; }
  .contact-overline { font-size: 30px; }
  .contact-showcase h1 { font-size: 54px; }
  .contact-showcase-lead { font-size: 15px; }
  .contact-channel-card { grid-template-columns: 48px 1fr; min-height: 82px; }
  .contact-channel-icon { width: 48px; height: 48px; }
  .contact-channel-icon img { width: 25px; height: 25px; }
  .contact-channel-action,
  .contact-channel-status { display: none; }
  .contact-showcase-brand { min-height: 600px; }
  .contact-brand-logo { width: 100%; padding: 10px 14px; }
  .contact-pillars > div { min-height: 70px; padding: 11px 5px; display: grid; justify-items: center; gap: 6px; }
  .contact-pillars img { width: 26px; height: 26px; }
  .contact-pillars span { font-size: 9px; }
  .contact-mission { margin-left: 0; font-size: 22px; }
  .contact-network-art { right: -90px; transform: scale(.82); transform-origin: right bottom; }
  .contact-social-bar { grid-template-columns: 1fr; }
  .contact-social-bar > a { min-height: 84px; border-right: 0; border-bottom: 1px solid rgba(18,184,255,.22); }
  .contact-social-bar > a:last-child { border-bottom: 0; }
}

/* Gestor ERP — business management showcase */
.erp-business-hero {
  position: relative;
  overflow: hidden;
  color: var(--navy-2);
  background: #fff;
}
.erp-business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .7;
  background-image:
    linear-gradient(rgba(10, 46, 92, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 46, 92, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 52%, #000);
}
.erp-business-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 62px;
  align-items: center;
}
.erp-business-copy {
  padding: 92px 0 112px;
}
.erp-business-copy .eyebrow {
  color: var(--green-dark);
}
.erp-business-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.erp-business-copy h1 span {
  display: block;
  color: #82d900;
}
.erp-business-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.button-secondary-dark {
  color: var(--navy);
  border-color: #b9c8d7;
  background: #fff;
}
.button-secondary-dark:hover {
  color: var(--navy);
  border-color: #8fa9bd;
  background: #eef4f8;
}
.erp-hero-signals {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.erp-hero-signals span {
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d4e3ed;
  border-radius: 999px;
  background: #f7fafc;
  color: #40566c;
  font-size: 11px;
  font-weight: 720;
}
.erp-hero-signals i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82d900;
  box-shadow: 0 0 0 5px rgba(130,217,0,.1);
}
.erp-business-visual {
  min-height: 610px;
}
.erp-business-visual::before {
  width: min(540px, 94%);
  border-color: rgba(18,184,255,.2);
  background: radial-gradient(circle, rgba(18,184,255,.12), rgba(236,247,253,.7) 57%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(0,112,255,.045);
}
.erp-business-visual > img {
  width: 118%;
  max-width: 820px;
  max-height: 610px;
  filter: drop-shadow(0 30px 34px rgba(10,46,92,.2));
}
.erp-business-visual .illustration-label {
  left: 22px;
  bottom: 54px;
  border-color: rgba(18,184,255,.35);
  background: rgba(2,17,36,.9);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.erp-business-visual .illustration-label b { color: white; }
.erp-business-visual .illustration-label small { color: #9fb6cb; }

.erp-outcome-section {
  position: relative;
  z-index: 4;
  padding-bottom: 34px;
  background: #fff;
}
.erp-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(18,184,255,.28);
  border-radius: 20px;
  background: linear-gradient(135deg, #071d3a, #03142b);
  box-shadow: 0 24px 70px rgba(2,20,42,.2);
}
.erp-outcome-grid article {
  min-height: 128px;
  padding: 25px 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  border-right: 1px solid rgba(18,184,255,.18);
}
.erp-outcome-grid article:last-child { border-right: 0; }
.erp-outcome-grid img {
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid rgba(130,217,0,.5);
  border-radius: 14px;
  background: rgba(2,20,42,.75);
}
.erp-outcome-grid h2 {
  margin: 0;
  color: white;
  font-size: 14px;
  line-height: 1.25;
}
.erp-outcome-grid p {
  margin: 7px 0 0;
  color: #9eb3c8;
  font-size: 11px;
  line-height: 1.5;
}

.erp-modules-section { padding-top: 88px; }
.erp-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.erp-module-card {
  position: relative;
  min-height: 242px;
  padding: 30px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8fbfd);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.erp-module-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0,183,255,.045);
}
.erp-module-card:hover {
  transform: translateY(-4px);
  border-color: #bcd5e7;
  box-shadow: 0 24px 60px rgba(10,46,92,.11);
}
.erp-module-icon {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 12px 18px rgba(10,46,92,.16));
}
.erp-module-icon img { width: 100%; height: 100%; }
.erp-module-content { position: relative; z-index: 1; }
.erp-module-content > span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}
.erp-module-content h3 {
  margin: 7px 0 10px;
  color: var(--navy-2);
  font-size: 20px;
}
.erp-module-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.erp-module-content ul {
  margin: 18px 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.erp-module-content li {
  position: relative;
  padding-left: 14px;
  color: #40556d;
  font-size: 10px;
  font-weight: 650;
}
.erp-module-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.erp-technology-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: white;
  background:
    radial-gradient(circle at 74% 50%, rgba(0,131,255,.18), transparent 31%),
    linear-gradient(135deg, #031226, #071f40 58%, #03162e);
}
.erp-technology-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}
.erp-technology-copy .eyebrow { color: #8febaf; }
.erp-technology-copy > h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.erp-technology-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 620px;
  color: #afc1d2;
  font-size: 16px;
  line-height: 1.75;
}
.erp-technology-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.erp-technology-list article {
  min-height: 126px;
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border: 1px solid rgba(18,184,255,.18);
  border-radius: 15px;
  background: rgba(2,18,38,.58);
}
.erp-technology-list img {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(8,58,107,.55);
}
.erp-technology-list h3 {
  margin: 1px 0 6px;
  color: #82d900;
  font-size: 13px;
}
.erp-technology-list p {
  margin: 0;
  color: #a7b9ca;
  font-size: 10px;
  line-height: 1.55;
}
.erp-technology-art {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.erp-technology-art::before {
  content: "";
  position: absolute;
  width: 500px;
  max-width: 94%;
  aspect-ratio: 1;
  border: 1px solid rgba(18,184,255,.26);
  border-radius: 50%;
  box-shadow: inset 0 0 75px rgba(0,116,255,.11), 0 0 70px rgba(0,116,255,.08);
}
.erp-technology-art > img {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: 760px;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.36));
}
.erp-technology-art > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 35px;
  width: min(330px, 78%);
  padding: 17px 19px;
  border: 1px solid rgba(130,217,0,.4);
  border-radius: 15px;
  background: rgba(2,17,36,.9);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.erp-technology-art span,
.erp-technology-art b { display: block; }
.erp-technology-art span {
  color: #82d900;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.erp-technology-art b {
  margin-top: 5px;
  font-size: 15px;
}

.erp-results-section { background: #f3f7fa; }
.erp-results-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 88px;
  align-items: center;
}
.erp-results-grid > div:first-child h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.07;
  letter-spacing: -.045em;
}
.erp-results-grid > div:first-child > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.erp-results-list {
  padding: 10px 34px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.erp-results-list article {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.erp-results-list article:last-child { border-bottom: 0; }
.erp-results-list article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e9f9ef;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 850;
}
.erp-results-list h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}
.erp-results-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .erp-business-grid,
  .erp-technology-grid,
  .erp-results-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .erp-business-copy { padding: 84px 0 20px; }
  .erp-business-visual { width: min(700px, 100%); margin: 0 auto 60px; }
  .erp-outcome-grid { grid-template-columns: 1fr 1fr; }
  .erp-outcome-grid article:nth-child(2) { border-right: 0; }
  .erp-outcome-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(18,184,255,.18); }
  .erp-technology-art { width: min(680px, 100%); margin: 0 auto; }
}

@media (max-width: 760px) {
  .erp-business-grid { min-height: auto; }
  .erp-business-copy { padding: 70px 0 12px; }
  .erp-business-copy h1 { font-size: 44px; }
  .erp-business-copy > p:not(.eyebrow) { font-size: 16px; }
  .erp-business-visual {
    min-height: 410px;
    height: 410px;
    margin-bottom: 38px;
  }
  .erp-business-visual > img { width: 126%; max-height: 400px; }
  .erp-business-visual .illustration-label { left: 0; right: 0; bottom: 0; }
  .erp-outcome-section { padding-bottom: 0; background: #fff; }
  .erp-outcome-grid { width: 100%; grid-template-columns: 1fr; border-radius: 0; border-inline: 0; }
  .erp-outcome-grid article { min-height: 104px; border-right: 0; border-bottom: 1px solid rgba(18,184,255,.18); }
  .erp-outcome-grid article:last-child { border-bottom: 0; }
  .erp-module-grid { grid-template-columns: 1fr; }
  .erp-module-card { min-height: 0; padding: 24px; grid-template-columns: 58px 1fr; gap: 16px; }
  .erp-module-icon { width: 56px; height: 56px; }
  .erp-module-content ul { display: grid; }
  .erp-technology-section { padding: 78px 0; }
  .erp-technology-list { grid-template-columns: 1fr; }
  .erp-technology-art { min-height: 400px; }
  .erp-technology-art > img { width: 126%; }
  .erp-technology-art > div { right: 0; left: 0; bottom: 0; width: auto; }
  .erp-results-grid { gap: 40px; }
  .erp-results-list { padding: 6px 24px; }
}

/* New Systenova brand application */
.site-header {
  background: rgba(2, 15, 32, .96);
  border-bottom-color: rgba(18,184,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.brand {
  width: 250px;
}
.desktop-nav a {
  color: #c5d3e1;
}
.desktop-nav a:hover,
.desktop-nav .nav-active {
  color: #8bdd00;
}
.mobile-toggle {
  border-color: rgba(18,184,255,.32);
  background: rgba(6,31,65,.92);
}
.mobile-toggle span {
  background: white;
}
.footer-logo-wrap {
  width: 280px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.contact-brand-logo {
  width: min(540px, 96%);
  padding: 4px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 760px) {
  .brand { width: 190px; }
  .footer-logo-wrap { width: 250px; }
  .contact-brand-logo { width: 100%; padding: 0; }
}

/* Approved footer redesign */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(0,124,255,.14), transparent 31%),
    radial-gradient(circle at 100% 86%, rgba(130,217,0,.1), transparent 25%),
    linear-gradient(135deg, #020c1b, #061a36 58%, #031226);
  color: white;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 0 34%;
  opacity: .48;
  background-image:
    linear-gradient(rgba(40,184,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,184,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.footer-accent {
  position: relative;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, #00b7ff, #086bff 55%, #82d900);
}
.site-footer .page-width {
  width: min(1340px, calc(100% - 48px));
}
.site-footer .footer-grid {
  position: relative;
  z-index: 1;
  padding: 76px 0 60px;
  display: grid;
  grid-template-columns: minmax(260px,1.18fr) minmax(255px,1fr) minmax(255px,1fr) minmax(238px,.9fr);
  gap: 26px;
  align-items: start;
}
.site-footer .footer-brand,
.site-footer .footer-column {
  min-width: 0;
}
.site-footer .footer-logo-wrap {
  width: min(310px, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.site-footer .footer-brand p {
  max-width: 350px;
  margin: 27px 0 0;
  color: #b8cadd;
  font-size: 15px;
  line-height: 1.75;
}
.footer-brand-pill {
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 28px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(23,141,209,.5);
  border-radius: 999px;
  background: rgba(7,31,63,.76);
  color: #e7f2fc;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}
.footer-brand-pill > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #82d900;
  box-shadow: 0 0 0 6px rgba(130,217,0,.12);
}
.footer-column-title {
  min-height: 38px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-column-title > span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 7px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,183,255,.48);
  border-radius: 10px;
  background: #0a376a;
}
.footer-column-title img {
  width: 100%;
  height: 100%;
}
.site-footer .footer-column-title h2 {
  margin: 0;
  color: #82d900;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-link-list {
  display: grid;
  gap: 12px;
}
.site-footer .footer-column .footer-link-card {
  width: 100%;
  min-width: 0;
  min-height: 72px;
  margin: 0 !important;
  padding: 12px 14px;
  display: grid !important;
  grid-template-columns: 44px minmax(0,1fr);
  gap: 13px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(23,141,209,.28);
  border-radius: 16px;
  background: rgba(7,29,58,.84);
  color: #f4f9fd;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-footer .footer-column .footer-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,183,255,.62);
  background: rgba(10,45,85,.94);
  color: white;
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}
.site-footer .footer-column .footer-link-emphasis {
  border-color: rgba(130,217,0,.43);
  background: linear-gradient(135deg, rgba(7,42,66,.92), rgba(8,34,58,.92));
}
.footer-link-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 9px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,183,255,.58);
  border-radius: 12px;
  background: #0b3b70;
}
.footer-link-emphasis .footer-link-icon {
  border-color: rgba(130,217,0,.68);
  background: #123d55;
}
.footer-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-link-text {
  min-width: 0;
  max-width: 100%;
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.footer-email {
  font-size: 11.5px;
  letter-spacing: -.015em;
}
.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 82px;
  margin-top: 0;
  padding: 26px 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(23,141,209,.34);
  color: #8099b0;
  font-size: 11px;
  text-align: center;
}
.footer-copyright { display: block; width: 100%; }

@media (max-width: 1180px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .site-footer .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px,310px) minmax(260px,420px);
    column-gap: 48px;
    align-items: center;
  }
  .site-footer .footer-brand p { margin: 0; }
  .footer-brand-pill { grid-column: 2; margin-top: 18px; }
  .footer-contact-column { grid-column: 1 / -1; }
  .footer-contact-column .footer-link-list { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 760px) {
  .site-footer .page-width { width: min(100% - 30px, 1340px); }
  .site-footer .footer-grid {
    padding: 62px 0 48px;
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .site-footer .footer-brand {
    grid-column: auto;
    display: block;
  }
  .site-footer .footer-logo-wrap { width: min(290px, 100%); }
  .site-footer .footer-brand p { margin-top: 24px; font-size: 14px; }
  .footer-brand-pill { margin-top: 22px; }
  .footer-contact-column { grid-column: auto; }
  .footer-contact-column .footer-link-list { grid-template-columns: 1fr; }
  .site-footer .footer-column .footer-link-card {
    min-height: 68px;
    padding: 11px 13px;
    font-size: 13px;
  }
  .footer-email { font-size: 12px; }
  .site-footer .footer-bottom {
    min-height: 0;
    padding: 26px 0 30px;
  }
}

/* 2026 conversion, accessibility and CMS refinements */
:focus-visible {
  outline: 3px solid rgba(0, 183, 255, .72);
  outline-offset: 4px;
}
.site-header .nav-shell {
  height: 82px;
}
.site-header .brand {
  width: 250px;
  height: auto;
  overflow: visible;
}
.site-header .brand img,
.site-footer .footer-logo-wrap img,
.contact-brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.site-footer .footer-logo-wrap {
  height: auto;
  overflow: visible;
}
.contact-brand-logo {
  height: auto;
  overflow: visible;
}
.desktop-nav { gap: 30px; }

.cms-product-showcase { isolation: isolate; }
.cms-hero-image-frame {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  aspect-ratio: 1.08;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10,46,92,.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,183,255,.18), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(232,243,250,.94));
  box-shadow: 0 38px 90px rgba(10,46,92,.18);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.cms-hero-image-frame > img {
  width: 112%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(10,46,92,.16));
}
.cms-image-status {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(10,46,92,.12);
  backdrop-filter: blur(12px);
}
.cms-image-status strong { color: var(--navy); font-size: 12px; }

.client-proof-section {
  padding: 76px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(0,185,255,.07), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(132,217,0,.06), transparent 25%),
    #f8fbfd;
}
.client-proof-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.client-proof-heading .eyebrow { margin: 0; }
.client-proof-heading h2 { max-width: 620px; margin: 0; color: var(--navy-2); font-size: clamp(27px,3vw,40px); line-height: 1.12; letter-spacing: -.035em; }
.client-logo-marquee {
  position: relative;
  width: 100%;
  margin-top: 38px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
}
.client-logo-marquee::-webkit-scrollbar { display: none; }
.client-logo-marquee.is-ready { overflow: hidden; }
.client-logo-track { width: max-content; display: flex; will-change: transform; }
.client-logo-marquee.is-ready .client-logo-track { animation: client-logo-flow var(--client-marquee-duration, 32s) linear infinite; }
.client-logo-marquee:hover .client-logo-track,
.client-logo-marquee:focus-within .client-logo-track { animation-play-state: paused; }
.client-logo-set { flex: 0 0 auto; display: flex; gap: 16px; padding-right: 16px; }
.client-logo-card {
  width: clamp(172px,17vw,230px);
  height: 112px;
  flex: 0 0 clamp(172px,17vw,230px);
  padding: 20px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d9e5ee;
  border-radius: 18px;
  background: linear-gradient(145deg,#fff,#f4f8fb);
  box-shadow: 0 14px 34px rgba(10,46,92,.065);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
a.client-logo-card:hover { transform: translateY(-4px); border-color: #9ed6ee; box-shadow: 0 18px 38px rgba(10,46,92,.12); text-decoration: none; }
.client-logo-card img { width: 100%; height: 68px; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(3,26,51,.14)); }

@keyframes client-logo-flow {
  to { transform: translate3d(calc(-1 * var(--client-marquee-distance, 0px)),0,0); }
}

.testimonial-section { background: linear-gradient(180deg,#f6f9fc,#fff); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.testimonial-grid > article { min-height: 300px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 16px 40px rgba(10,46,92,.05); }
.testimonial-mark { height: 42px; color: var(--green-dark); font-family: Georgia,serif; font-size: 56px; line-height: 1; }
.testimonial-grid blockquote { margin: 20px 0 28px; color: #41566d; font-size: 15px; line-height: 1.75; }
.testimonial-grid footer { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.testimonial-grid footer > img,
.testimonial-grid footer > span { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.testimonial-grid footer > span { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,var(--navy),#0b78ba); font-weight: 850; }
.testimonial-grid footer div { display: grid; gap: 3px; }
.testimonial-grid footer strong { color: var(--navy); font-size: 13px; }
.testimonial-grid footer small { color: var(--muted); font-size: 11px; }

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-item:nth-child(2) { transition-delay: 55ms; }
.reveal-item:nth-child(3) { transition-delay: 110ms; }
.reveal-item:nth-child(4) { transition-delay: 165ms; }
.reveal-item.reveal-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .testimonial-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .testimonial-grid > article:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header .nav-shell { height: 70px; }
  .site-header .brand { width: 190px; height: auto; }
  .mobile-navigation { top: 70px; }
  .cms-hero-image-frame { aspect-ratio: 1; padding: 15px; border-radius: 22px; transform: none; }
  .cms-image-status { left: 12px; right: 12px; bottom: 12px; padding: 11px 12px; }
  .cms-image-status strong { font-size: 10px; }
  .client-proof-heading { align-items: flex-start; flex-direction: column; }
  .client-logo-marquee { margin-top: 28px; -webkit-mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); }
  .client-logo-card { width: 168px; height: 96px; flex-basis: 168px; padding: 16px 20px; }
  .client-logo-card img { height: 58px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid > article:last-child:nth-child(odd) { grid-column: auto; }
  .site-footer .footer-logo-wrap,
  .contact-brand-logo { height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; }
  .client-logo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scrollbar-width: thin; }
  .client-logo-marquee .client-logo-track { animation: none !important; transform: none !important; }
  .client-logo-marquee .client-logo-set[aria-hidden="true"] { display: none; }
}

/* Floating WhatsApp support */
.whatsapp-widget {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  justify-items: end;
}
.whatsapp-widget-panel[hidden] { display: none; }
.whatsapp-widget-panel {
  width: min(360px, calc(100vw - 32px));
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,166,81,.28);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(2,20,42,.28);
  animation: whatsapp-panel-in .22s ease both;
}
.whatsapp-widget-panel > header {
  min-height: 74px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg,#20c968,#25d366);
  color: #fff;
}
.whatsapp-widget-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
}
.whatsapp-widget-brand img { width: 30px; height: 30px; }
.whatsapp-widget-close {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(3,88,43,.34);
  color: #fff;
  font: 400 29px/1 Arial,sans-serif;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-widget-close:hover { transform: rotate(5deg); background: rgba(3,88,43,.52); }
.whatsapp-widget-body { padding: 24px; background: linear-gradient(180deg,#f5fff9,#fff); }
.whatsapp-widget-message {
  position: relative;
  width: fit-content;
  max-width: 92%;
  padding: 15px 18px;
  display: grid;
  gap: 5px;
  border: 1px solid #dce7e1;
  border-radius: 18px 18px 18px 4px;
  background: #fff;
  color: #233a30;
  font-size: 15px;
  line-height: 1.45;
  box-shadow: 0 9px 24px rgba(10,46,30,.09);
}
.whatsapp-widget-message strong { font-size: 16px; }
.whatsapp-widget-body > p { margin: 18px 0; color: #5c7066; font-size: 12px; line-height: 1.6; }
.whatsapp-widget-action {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 14px;
  background: #25d366;
  color: #05351a;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(37,211,102,.23);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-widget-action:hover { transform: translateY(-2px); background: #31df75; box-shadow: 0 16px 34px rgba(37,211,102,.3); }
.whatsapp-widget-action span { font-size: 20px; }
.whatsapp-widget-toggle {
  position: relative;
  width: 68px;
  height: 68px;
  padding: 16px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(3,75,35,.3);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.whatsapp-widget-toggle:hover { transform: translateY(-3px) scale(1.03); background: #20c968; box-shadow: 0 20px 44px rgba(3,75,35,.36); }
.whatsapp-widget-toggle > img { position: relative; z-index: 2; width: 100%; height: 100%; }
.whatsapp-widget-pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(37,211,102,.42);
  border-radius: 50%;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}
.whatsapp-widget.is-open .whatsapp-widget-pulse { animation: none; opacity: 0; }

@keyframes whatsapp-panel-in {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes whatsapp-pulse {
  0% { opacity: .75; transform: scale(.86); }
  75%,100% { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 760px) {
  .whatsapp-widget { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .whatsapp-widget-toggle { width: 62px; height: 62px; padding: 14px; }
  .whatsapp-widget-panel { margin-bottom: 10px; border-radius: 21px; }
  .whatsapp-widget-panel > header { min-height: 68px; padding: 13px 15px; }
  .whatsapp-widget-body { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-widget-panel,
  .whatsapp-widget-pulse { animation: none; }
}

/* Semantic content icons — replaces numeric labels throughout the public site */
.content-icon,
.solution-symbol {
  box-sizing: border-box;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18,184,255,.38);
  border-radius: 14px;
  background: linear-gradient(145deg,#0a3769,#041a35);
  box-shadow: 0 10px 24px rgba(10,46,92,.16), inset 0 1px 0 rgba(255,255,255,.08);
}
.content-icon img,
.solution-symbol img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.solution-symbol {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 15px;
}
.solution-card:hover .solution-symbol,
.feature-card:hover .content-icon,
.consulting-service-grid article:hover .content-icon,
.erp-module-card:hover .content-icon {
  border-color: rgba(126,213,0,.72);
  box-shadow: 0 13px 30px rgba(10,46,92,.2), 0 0 0 3px rgba(126,213,0,.08);
}

.pain-list > div { align-items: center; }
.pain-list > div > span.content-icon {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 13px;
}

.process-line span.content-icon {
  width: 58px;
  height: 58px;
  padding: 13px;
  border: 6px solid #f8fafb;
  border-radius: 50%;
  background: linear-gradient(145deg,#0a417a,#041a35);
  box-shadow: 0 0 0 1px #c8d9e5, 0 11px 25px rgba(10,46,92,.14);
}
.process-line::before { top: 29px; }
.process-line h3 { margin-top: 22px; }

.feature-card > span.content-icon {
  width: 50px;
  height: 50px;
  padding: 9px;
  border-radius: 15px;
}
.feature-card h3 { margin-top: 27px; }

.journey-grid span.content-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-color: rgba(18,184,255,.48);
  background: rgba(7,39,77,.9);
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
}
.journey-grid h3 { margin-top: 30px; }

.consulting-service-grid article { align-items: start; }
.consulting-service-grid article > span.content-icon {
  width: 46px;
  height: 46px;
  padding: 8px;
  border-radius: 14px;
}

.method-grid li { align-items: start; }
.method-grid li > span.content-icon {
  width: 44px;
  height: 44px;
  padding: 9px;
  border-color: rgba(126,213,0,.5);
  background: rgba(4,26,53,.9);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.contact-benefits li {
  grid-template-columns: 46px 1fr;
  align-items: center;
}
.contact-benefits li > span.content-icon {
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 14px;
}

.erp-module-content > span.content-icon {
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 11px;
  letter-spacing: normal;
}
.erp-module-content h3 { margin-top: 12px; }

.erp-results-list article { align-items: center; }
.erp-results-list article > span.content-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 13px;
  background: linear-gradient(145deg,#0a3769,#041a35);
}

@media (max-width: 760px) {
  .solution-symbol { top: 18px; right: 18px; width: 44px; height: 44px; padding: 9px; }
  .feature-card > span.content-icon { width: 46px; height: 46px; }
  .journey-grid span.content-icon { width: 46px; height: 46px; }
}
