:root {
  --blue-950: #0b2034;
  --blue-900: #1b4f7c;
  --blue-700: #3a7eb9;
  --blue-500: #78add7;
  --slate-800: #283948;
  --cta: #f5811e;
  --bg: #e9eef5;
  --white: #ffffff;
  --shadow-soft: 0 18px 32px rgba(9, 24, 38, 0.12);
  --shadow: 0 24px 46px rgba(9, 24, 38, 0.18);
  --shadow-hover: 0 30px 64px rgba(9, 24, 38, 0.26);
  --radius-lg: 14px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --border: rgba(10, 33, 52, 0.12);
  --glass-bg: rgba(7, 20, 34, 0.58);
  --glass-border: rgba(148, 195, 242, 0.25);
  --glass-bg-light: rgba(255, 255, 255, 0.86);
  --glass-border-light: rgba(28, 90, 144, 0.16);
  --glow-blue: rgba(74, 145, 226, 0.35);
  --grid-line: rgba(86, 130, 170, 0.16);
}

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

body {
  margin: 0;
  font-family: 'Manrope', 'Source Sans 3', sans-serif;
  color: var(--slate-800);
  background: var(--bg);
  background-image: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9), transparent 52%),
    radial-gradient(circle at 82% 0%, rgba(54, 131, 194, 0.2), transparent 42%),
    linear-gradient(180deg, #f1f5fa 0%, #e3eaf3 100%);
  line-height: 1.6;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--blue-900);
  line-height: 1.2;
}

p {
  margin: 0.5rem 0 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

main {
  overflow: hidden;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.glass-panel {
  background: linear-gradient(135deg, rgba(9, 24, 38, 0.78), rgba(7, 18, 31, 0.6));
  border: 1px solid var(--glass-border);
  box-shadow: 0 26px 54px rgba(5, 14, 24, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 252, 0.85));
  border: 1px solid var(--glass-border-light);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: var(--blue-900);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-700);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 248, 252, 0.92);
  border-bottom: 1px solid rgba(18, 45, 70, 0.12);
  box-shadow: 0 16px 34px rgba(8, 22, 35, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--blue-900);
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.primary-nav a {
  font-size: 0.95rem;
  padding: 6px 0;
  color: var(--slate-800);
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue-700);
  transition: width 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.primary-nav a.is-active {
  color: var(--blue-900);
  font-weight: 600;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3f8;
  font-size: 0.8rem;
}

.lang-switch .lang {
  border: 0;
  background: transparent;
  font-weight: 600;
  color: var(--slate-800);
  cursor: pointer;
}

.lang-switch .lang.active {
  color: var(--blue-900);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #d6e1ec;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-900);
}

.nav-toggle:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.nav-cta {
  display: none;
  gap: 12px;
  flex-direction: column;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f2a35a 0%, #e88933 55%, #d87322 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 20px rgba(172, 95, 26, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f4b06b 0%, #eb9241 55%, #db7c2d 100%);
  box-shadow: 0 14px 26px rgba(172, 95, 26, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-900);
  border-color: rgba(28, 90, 144, 0.38);
  box-shadow: 0 10px 18px rgba(9, 24, 38, 0.08);
}

.btn-outline:hover {
  background: rgba(28, 90, 144, 0.08);
  border-color: rgba(28, 90, 144, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(9, 24, 38, 0.16);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 22, 35, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #1b4f7c 0%, #153c5f 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(12, 32, 52, 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1e5b8e 0%, #153c5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(12, 32, 52, 0.32);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2aac5f 0%, #239652 50%, #1f8349 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 20px rgba(33, 142, 78, 0.22);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #34b868 0%, #27a05a 50%, #218b4f 100%);
  box-shadow: 0 14px 26px rgba(33, 142, 78, 0.3);
}
.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}
.text-link {
  font-weight: 600;
  color: #fff;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

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

.section--light {
  background: linear-gradient(180deg, #f1f5fa 0%, #e8eef5 100%);
}

.section--muted {
  background: linear-gradient(180deg, #e6edf5 0%, #dee7f1 100%);
}

.section--light::before,
.section--muted::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.25;
  pointer-events: none;
}

.section--muted::before {
  opacity: 0.35;
}

.section--light > .container,
.section--muted > .container {
  position: relative;
  z-index: 1;
}

.section--compact {
  padding: 64px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head p {
  color: #526475;
  font-size: 1.05rem;
}

.section-head::after {
  content: '';
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(54, 131, 194, 0.7), rgba(245, 129, 30, 0.7));
  box-shadow: 0 6px 14px rgba(9, 24, 38, 0.18);
}

.hero {
  position: relative;
  padding: 124px 0 96px;
  background-color: var(--blue-950);
  background-image: linear-gradient(135deg, rgba(8, 20, 33, 0.92), rgba(17, 54, 92, 0.78)),
    url('../assets/img/hero-control-vehicular.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(96, 168, 255, 0.28), transparent 52%),
    radial-gradient(circle at 85% 10%, rgba(245, 129, 30, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(8, 20, 33, 0.25) 0%, rgba(8, 20, 33, 0.6) 100%);
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-content {
  grid-column: span 6;
}

.hero-content.glass-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  border-color: rgba(148, 195, 242, 0.32);
  box-shadow: 0 30px 60px rgba(6, 16, 26, 0.5);
}

.hero-media {
  grid-column: span 6;
  position: relative;
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 55% 35%, var(--glow-blue), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-media > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  letter-spacing: -0.01em;
  text-shadow: 0 14px 36px rgba(4, 10, 18, 0.45);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  appearance: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 195, 242, 0.35);
  background: rgba(9, 24, 38, 0.55);
  color: #e8f1fb;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 22px rgba(6, 16, 26, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.badge.is-active {
  background: rgba(9, 24, 38, 0.72);
  border-color: rgba(148, 195, 242, 0.6);
  box-shadow: 0 14px 28px rgba(6, 16, 26, 0.45);
}

.badge:focus-visible {
  outline: 2px solid rgba(148, 195, 242, 0.7);
  outline-offset: 2px;
}

.hero-flow {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  border-left: 2px solid rgba(148, 195, 242, 0.4);
  padding-left: 12px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 31 / 21;
  background: rgba(8, 20, 33, 0.35);
  border: 1px solid rgba(148, 195, 242, 0.2);
  box-shadow: 0 30px 60px rgba(5, 16, 28, 0.5);
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 20, 33, 0.12), rgba(8, 20, 33, 0.55));
  pointer-events: none;
}

.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-carousel img.is-active {
  opacity: 1;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(9, 22, 36, 0.82);
  color: #e6f1fb;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 195, 242, 0.28);
  box-shadow: 0 24px 50px rgba(5, 16, 28, 0.45);
  width: min(320px, 80%);
}

.hero-card.glass-card {
  background: rgba(9, 22, 36, 0.72);
  border: 1px solid rgba(148, 195, 242, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.page-hero {
  position: relative;
  padding: 88px 0 70px;
  background: linear-gradient(135deg, #0f2c46 0%, #1c4f7a 100%);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(130, 175, 215, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 175, 215, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.18;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(74, 145, 226, 0.25), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}

body[data-page='planes'] .page-hero {
  text-align: center;
}

body[data-page='planes'] .page-hero .page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius-lg);
}

body[data-page='planes'] .page-hero .page-hero-inner.glass-panel {
  background: rgba(9, 22, 36, 0.62);
  border-color: rgba(148, 195, 242, 0.28);
  box-shadow: 0 22px 44px rgba(6, 16, 26, 0.4);
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-900);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(28, 90, 144, 0.2);
  box-shadow: 0 6px 14px rgba(9, 24, 38, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.flow-details {
  margin-top: 36px;
}

.integration-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(28, 90, 144, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(233, 240, 248, 0.9) 100%);
  box-shadow: var(--shadow);
}

.integration-card.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(227, 237, 246, 0.78));
  border: 1px solid rgba(148, 195, 242, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.integration-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(74, 145, 226, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.integration-card > * {
  position: relative;
  z-index: 1;
}

.integration-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(54, 131, 194, 0.2), rgba(54, 131, 194, 0.05));
  border: 1px solid rgba(28, 90, 144, 0.18);
  box-shadow: 0 14px 26px rgba(9, 24, 38, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue-900);
}

.integration-content {
  display: grid;
  gap: 6px;
}

.integration-note {
  margin-top: 6px;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.integration-actions {
  display: flex;
  align-items: center;
}

.flow-stack {
  display: grid;
  gap: 24px;
}

.flow-head {
  display: grid;
  gap: 6px;
}

.flow-diagram {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: flow;
}

.flow-diagram li {
  counter-increment: flow;
  position: relative;
  padding: 16px 18px 16px 52px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 90, 144, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  box-shadow: var(--shadow-soft);
}

.flow-diagram li::before {
  content: counter(flow);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(74, 145, 226, 0.18);
  border: 1px solid rgba(74, 145, 226, 0.2);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.flow-diagram li::after {
  content: '↓';
  position: absolute;
  left: 24px;
  bottom: -14px;
  color: #8aa2b8;
  font-weight: 700;
}

.flow-diagram li:last-child::after {
  content: '';
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fb 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 45, 70, 0.12);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(54, 131, 194, 0), rgba(54, 131, 194, 0.35), rgba(245, 129, 30, 0.35), rgba(54, 131, 194, 0));
  opacity: 0.5;
}

.card-illustration {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 8px;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(28, 90, 144, 0.12);
  border: 1px solid rgba(28, 90, 144, 0.18);
  box-shadow: 0 10px 18px rgba(9, 24, 38, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-900);
}

.usecase-card {
  padding: 0;
  overflow: hidden;
}

.usecase-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.35s ease;
}

.usecase-card .card-body {
  padding: 20px;
}

.case-card {
  padding: 0;
  overflow: hidden;
}

.case-link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.35s ease;
}

.case-card .card-body {
  padding: 22px;
}

.case-card ul {
  margin-top: 12px;
}

.step-card {
  border: 1px solid rgba(28, 90, 144, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-number {
  font-weight: 700;
  color: var(--blue-700);
  font-size: 1.1rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 8px 4px;
}

.flow-step.glass-step {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 239, 248, 0.8));
  border: 1px solid rgba(148, 195, 242, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(54, 131, 194, 0.2), rgba(54, 131, 194, 0.05));
  border: 1px solid rgba(28, 90, 144, 0.18);
  box-shadow: 0 12px 22px rgba(9, 24, 38, 0.14);
  display: grid;
  place-items: center;
  color: var(--blue-900);
}

.flow-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -18px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(54, 131, 194, 0.4), rgba(245, 129, 30, 0.6));
}

.flow-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 36px;
  right: -8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(245, 129, 30, 0.6);
  border-right: 2px solid rgba(245, 129, 30, 0.6);
  transform: rotate(45deg);
}

body[data-page='como'] .step-card {
  border: none;
  box-shadow: none;
  background: transparent;
}

body[data-page='como'] .step-card.glass-step {
  border: 1px solid var(--glass-border-light);
  background: var(--glass-bg-light);
  box-shadow: var(--shadow-soft);
}

body[data-page='como'] .step-number {
  font-size: 1.35rem;
  color: var(--blue-900);
}

body[data-page='como'] .step-card p {
  color: #526475;
}

body[data-page='como'] .split .card {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

body[data-page='como'] .split .card-illustration {
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.media-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.media-card.glass-card {
  background: var(--glass-bg-light);
  border-color: var(--glass-border-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.media-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.media-caption {
  padding: 18px 20px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.list {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--blue-700);
}

.cta-band {
  padding: 72px 0;
  position: relative;
  background: linear-gradient(135deg, #0b1f33 0%, #103150 100%);
  color: #fff;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(130, 175, 215, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 175, 215, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.2;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(245, 129, 30, 0.22), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner.glass-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.plan-card {
  padding: 0;
  border: 1px solid rgba(28, 90, 144, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #edf3f9 100%);
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.plan-card.featured {
  border-color: rgba(245, 129, 30, 0.5);
  box-shadow: 0 22px 42px rgba(245, 129, 30, 0.22), 0 0 22px rgba(74, 145, 226, 0.18);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.plan-header {
  padding: 24px;
  border-bottom: 1px solid #eef2f6;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.plan-title {
  font-size: 1.35rem;
}

.plan-tag {
  font-weight: 600;
  color: var(--blue-700);
  font-size: 0.85rem;
}

.plan-price {
  font-weight: 700;
  color: var(--blue-900);
  font-size: 1.25rem;
  margin-top: 6px;
}

.plan-value {
  color: #526475;
}

.plan-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 129, 30, 0.18);
  color: #c86b15;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.plan-trust {
  margin-top: 36px;
  text-align: center;
  display: grid;
  gap: 18px;
}

.trust-note {
  font-size: 0.95rem;
  color: #526475;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(28, 90, 144, 0.12);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--blue-900);
}

.trust-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.plan-body {
  padding: 24px;
}

.plan-body .btn {
  margin-top: 18px;
  width: 100%;
}

.form-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-card .btn {
  margin-top: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-800);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6e0ea;
  font-family: inherit;
  font-size: 1rem;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(54, 131, 194, 0.35);
  border-color: var(--blue-700);
}

.form-note {
  font-size: 0.85rem;
  color: #667889;
  margin-top: 12px;
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(54, 131, 194, 0.12);
  border: 1px solid rgba(54, 131, 194, 0.25);
  color: var(--blue-900);
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(245, 129, 30, 0.12);
  border-color: rgba(245, 129, 30, 0.35);
  color: #b35310;
}

.plan-banner {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(54, 131, 194, 0.12);
  color: var(--blue-900);
  font-weight: 600;
  margin-bottom: 16px;
  width: 100%;
}

.plan-banner.is-visible {
  display: flex;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}
.contact-direct-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.contact-direct-content h3 {
  margin-bottom: 8px;
}

.contact-direct-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-direct-note {
  font-size: 0.85rem;
  color: #526475;
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(180deg, #e2e8f0 0%, #d8e1ea 100%);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-links h4 {
  margin: 0 0 10px;
  color: var(--blue-900);
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: var(--slate-800);
}

.footer-bottom {
  border-top: 1px solid rgba(18, 45, 70, 0.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #6b7c8c;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

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

[data-reveal] .icon,
[data-reveal] .flow-icon {
  transform: scale(0.96);
  opacity: 0.75;
}

[data-reveal].is-visible .icon,
[data-reveal].is-visible .flow-icon {
  transform: scale(1);
  opacity: 1;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }

  .card.glass-card:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(28, 90, 144, 0.22);
  }

  .plan-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(28, 90, 144, 0.22);
    box-shadow: var(--shadow-hover);
  }

  .flow-step.glass-step:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(28, 90, 144, 0.24);
    box-shadow: var(--shadow-hover);
  }

  .hero-card.glass-card:hover {
    box-shadow: 0 30px 60px rgba(5, 16, 28, 0.6);
  }

  .badge:hover {
    background: rgba(9, 24, 38, 0.7);
    border-color: rgba(148, 195, 242, 0.55);
    box-shadow: 0 14px 28px rgba(6, 16, 26, 0.4);
  }

  .usecase-card:hover img,
  .case-card:hover img {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    padding: 12px 0;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #e1e7ef;
    display: none;
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .nav-cta {
    display: grid;
    gap: 10px;
    margin-top: 8px;
  }

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

  .hero-card {
    position: static;
    margin-top: 16px;
    width: 100%;
  }

  .hero-content.glass-panel {
    padding: 22px;
  }

  .cta-inner {
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .integration-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .flow-step {
    grid-template-columns: auto 1fr;
    padding: 4px 0;
  }

  .flow-step.glass-step {
    padding: 12px 14px;
  }

  .flow-step::before,
  .flow-step::after {
    content: none;
  }

  .integration-actions {
    justify-content: flex-start;
  }
  .contact-direct-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .contact-direct-actions {
    width: 100%;
  }

  .contact-direct-actions .btn {
    width: 100%;
  }

}

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

  .section--compact {
    padding: 56px 0;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .plan-card.featured {
    transform: none;
  }

  body[data-page='planes'] .page-hero .page-hero-inner {
    padding: 22px;
  }

  .trust-item {
    justify-content: flex-start;
  }
}
