:root {
  --color-primary: #ff1f3a;
  --color-primary-dark: #8b0012;
  --color-primary-gradient: linear-gradient(135deg, #ff1f3a 0%, #2a000a 55%, #030305 100%);
  --color-dark: #08070a;
  --color-darker: #040305;
  --color-ink: #0c0d12;
  --color-light: #f5f5f5;
  --color-gray: #9fa3ad;
  --color-white: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.05);

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;

  --container-width: min(1160px, 90vw);
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
  --transition-base: all 0.35s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 15% -10%, rgba(255, 31, 58, 0.18), rgba(3, 3, 5, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(255, 31, 58, 0.08), rgba(5, 5, 7, 1));
  color: var(--color-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

.background-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.background-canvas__orb,
.background-canvas__grid {
  position: absolute;
  filter: blur(0.3px);
  transform-origin: center;
  transition: transform 0.35s ease-out;
  will-change: transform;
  mix-blend-mode: screen;
}

.background-canvas__orb {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.25) 0%, rgba(13, 0, 6, 0.8) 65%, transparent 100%);
  border-radius: 50%;
  top: -120px;
  left: -180px;
  opacity: 0.7;
  background-size: 160%;
}

.background-canvas__orb--2 {
  width: 420px;
  height: 420px;
  top: 60%;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.2) 0%, rgba(12, 0, 4, 0.85) 75%, transparent 100%);
  opacity: 0.65;
  background-size: 170%;
}

.background-canvas__grid {
  inset: 10%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  mix-blend-mode: lighten;
  opacity: 0.35;
  background-size: 140%;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topbar {
  position: relative;
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  z-index: 999;
  transition: var(--transition-base);
}

.topbar.is-scrolled {
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brand__logo {
  width: clamp(200px, 16vw, 280px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand__logo img {
  width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(32, 32, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px) saturate(125%);
  transition:
    color 0.24s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform, box-shadow;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 31, 58, 0.25), rgba(139, 0, 18, 0.18), rgba(255, 255, 255, 0.55));
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  mix-blend-mode: multiply;
  z-index: -1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 31, 58, 0), rgba(255, 31, 58, 0.45), rgba(255, 31, 58, 0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.nav a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 18px 32px rgba(255, 31, 58, 0.25);
}

.nav a:hover::before {
  opacity: 0.6;
  transform: scale(1);
}

.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav a:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(206, 210, 226, 0.6),
    0 6px 12px rgba(12, 13, 18, 0.06);
}

.nav__icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 31, 58, 0.85), rgba(255, 94, 127, 0.65));
  box-shadow: 0 6px 14px rgba(255, 31, 58, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  flex-shrink: 0;
}

.nav__icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  opacity: 1;
  transition: transform 0.35s ease;
}

.nav a:hover .nav__icon,
.nav a:focus-visible .nav__icon {
  transform: scale(1.18);
  box-shadow: 0 14px 26px rgba(255, 31, 58, 0.38);
  filter: brightness(1.08);
}

.nav a:hover .nav__icon::after,
.nav a:focus-visible .nav__icon::after {
  transform: scale(1.08);
}

.nav__cta {
  gap: 14px;
  padding-inline: 32px;
  border-radius: 22px;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(255, 31, 58, 0.92), rgba(139, 0, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 22px 40px rgba(255, 31, 58, 0.28);
}

.nav__cta::before {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.65), rgba(255, 31, 58, 0.65));
  opacity: 0.4;
  transform: scale(0.96);
}

.nav__cta::after {
  left: 20px;
  right: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
  opacity: 0.35;
}

.nav__icon--cta {
  width: 22px;
  height: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 31, 58, 0.9), rgba(255, 94, 127, 0.75));
  min-width: 22px;
  min-height: 22px;
}

.nav__icon--cta::after {
  background: rgba(255, 255, 255, 0.9);
}

.nav__cta:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 28px 46px rgba(255, 31, 58, 0.34);
  background: linear-gradient(135deg, rgba(255, 31, 58, 1), rgba(139, 0, 18, 1));
}

.nav__cta:focus-visible {
  color: #ffffff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
}

.nav a:focus-visible {
  outline: 3px solid rgba(255, 31, 58, 0.35);
  outline-offset: 4px;
}

.nav::after {
  content: "";
  position: absolute;
  inset: -18px -20px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0));
  opacity: 0.35;
  z-index: -1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.button--primary {
  background: var(--color-primary-gradient);
  color: var(--color-white);
  box-shadow: 0 16px 32px rgba(255, 31, 58, 0.35);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 31, 58, 0.45);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.topbar .button--ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
  padding: 12px 20px;
}

.topbar .button--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(255, 31, 58, 0.24);
}

main {
  margin-top: 120px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 8vw, 140px) 0 clamp(120px, 10vw, 160px);
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 31, 58, 0.35), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.75), transparent 60%), #030305;
  animation: heroPulse 14s ease-in-out infinite;
  will-change: background-position;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1582719478549-45a67bfc4f87?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -140px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 31, 58, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 31, 58, 0.12), transparent 55%);
  opacity: 0.8;
  filter: blur(48px);
  animation: orbitGlow 22s linear infinite;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 31, 58, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.hero__badge-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff1f3a 0%, rgba(255, 31, 58, 0) 70%);
  box-shadow: 0 0 12px rgba(255, 31, 58, 0.6);
}

.hero__badge-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero__headline {
  font-family: var(--font-display);
  display: grid;
  gap: clamp(6px, 1vw, 12px);
  max-width: clamp(560px, 58vw, 760px);
}

.hero__headline-line {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
  font-size: clamp(2.2rem, 3vw + 1.8rem, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
}

.hero__headline-line::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 31, 58, 0.4), rgba(255, 31, 58, 0));
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero__headline-line--primary {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.hero__headline-line--secondary {
  font-weight: 600;
  color: rgba(220, 223, 235, 0.9);
}

.hero__headline-line--accent {
  font-weight: 700;
  background: linear-gradient(135deg, #ff1f3a, #ffa5b5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__headline:hover .hero__headline-line::after {
  opacity: 1;
  transform: translateX(0);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.5vw, 16px);
}

.hero__highlights {
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
  margin: clamp(16px, 2vw, 28px) 0 clamp(20px, 2.4vw, 32px);
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.hero__highlight-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(circle, rgba(255, 31, 58, 0.6), rgba(255, 31, 58, 0));
  box-shadow: 0 0 8px rgba(255, 31, 58, 0.45);
}

.hero__note {
  margin-top: 26px;
  max-width: 520px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 44vw, 560px);
}

.hero__devices {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 960px);
  margin: 0 auto;
  gap: clamp(20px, 3.5vw, 48px);
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
  transition: filter 0.4s ease;
}

.device--laptop {
  width: clamp(420px, 42vw, 560px);
  padding: 32px 36px 42px;
  border-radius: 24px;
  flex: 0 0 auto;
}

.device--mobile {
  position: absolute;
  right: clamp(6%, 6vw, 10%);
  bottom: -12px;
  width: clamp(230px, 22vw, 320px);
  padding: clamp(18px, 2vw, 24px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at 40% 0, rgba(255, 255, 255, 0.16), rgba(6, 6, 10, 0.94));
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.6);
  transform: translateX(12%);
  flex: 0 0 auto;
}

.device--laptop .device__topbar {
  position: absolute;
  top: 18px;
  left: 32px;
  display: flex;
  gap: 8px;
}

.device--laptop .device__topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.device__screen {
  background: linear-gradient(165deg, rgba(8, 12, 24, 0.9), rgba(20, 24, 42, 0.95) 60%, rgba(30, 18, 30, 0.9));
  border-radius: 18px;
  padding: 18px; /* Reduzido para dar mais espaço */
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.screen__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.screen__header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
}

.screen__header small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.screen__badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(92, 222, 174, 0.35), rgba(0, 181, 148, 0.6));
  color: #c3ffef;
  border: 1px solid rgba(114, 255, 202, 0.5);
}

.screen__body {
  display: grid;
  gap: 24px;
}

.screen__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.screen__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px; /* Reduzido para melhor encaixe */
  display: grid;
  gap: 4px; /* Reduzido para compactar */
  position: relative;
  overflow: hidden;
}

.screen__stat::after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.18), transparent 65%);
  opacity: 0.4;
}

.screen__stat span {
  font-size: 11px; /* Reduzido para evitar quebra de linha */
  color: rgba(255, 255, 255, 0.65);
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px; /* Ajustado para a nova fonte */
  font-weight: 500;
}

.screen__stat strong {
  font-size: 30px;
  font-family: var(--font-display);
  z-index: 1;
  color: rgba(255, 255, 255, 0.95);
}

.screen__stat small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.screen__chart {
  position: relative;
  height: 90px; /* Reduzido para diminuir a altura */
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen__chart-line {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 31, 58, 0), rgba(255, 31, 58, 0.8), rgba(255, 31, 58, 0));
  box-shadow: 0 12px 28px rgba(255, 31, 58, 0.22);
  animation: pulse 6s ease-in-out infinite;
}

.screen__chart-line--a {
  top: 26%;
  animation-delay: 0.2s;
}

.screen__chart-line--b {
  top: 52%;
  animation-delay: 0.6s;
}

.screen__chart-line--c {
  top: 78%;
  animation-delay: 1s;
}

.screen__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px; /* Reduzido para diminuir a altura */
}

.screen__footer strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.screen__footer span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.screen__action {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 31, 58, 0.14);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 31, 58, 0.3);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.screen__action:hover {
  background: rgba(255, 31, 58, 0.22);
  transform: translateY(-2px);
}

.screen__action[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.device__base {
  width: 100%;
  height: 16px;
  margin-top: 14px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(60, 60, 78, 0.45), rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 -4px 12px rgba(0, 0, 0, 0.45);
}

.device--laptop {
  margin: 0;
  flex-shrink: 0;
  width: clamp(540px, 52vw, 700px); /* Aumentado mais um pouco para melhor visualização */
}

.device--mobile {
  position: absolute; /* Posição absoluta para sobreposição controlada */
  right: 0;
  bottom: 0;
  width: clamp(260px, 22vw, 340px);
  padding: clamp(16px, 1.6vw, 20px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 40% 0, rgba(255, 255, 255, 0.12), rgba(6, 6, 10, 0.92));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
  align-self: center;
  transform: translateX(20%); /* Leve sobreposição */
}

.device--mobile::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.device--mobile .device__screen {
  position: relative;
  margin: clamp(18px, 1.8vw, 24px) clamp(14px, 1.5vw, 22px);
  padding: clamp(18px, 1.6vw, 24px);
  border-radius: 22px;
  background: linear-gradient(210deg, rgba(36, 32, 62, 0.96), rgba(8, 6, 18, 0.96));
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  min-height: clamp(320px, 30vw, 440px);
}

.device--mobile .device__screen::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.55);
}

.device--mobile .device__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 31, 58, 0.15));
  opacity: 0.22;
  pointer-events: none;
}

.mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mobile__signal,
.mobile__battery {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}

.mobile__battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.mobile__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex: 1;
  overflow: visible;
}

.mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile__brand {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.9px;
}

.mobile__indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(114, 255, 202, 0.18);
  border: 1px solid rgba(114, 255, 202, 0.45);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(195, 255, 239, 0.9);
  font-weight: 500;
}

.mobile__indicator-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #72ffca 20%, rgba(114, 255, 202, 0) 80%);
  box-shadow: 0 0 8px rgba(114, 255, 202, 0.6);
}

.mobile__cards {
  display: grid;
  gap: 10px;
}

.mobile-card {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.mobile-card::after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.18), transparent 65%);
  opacity: 0.35;
}

.mobile-card__label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.mobile-card strong {
  font-size: 18px;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.95);
}

.mobile-card small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.mobile__timeline {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 16, 0.6);
  position: relative;
  overflow: hidden;
}

.mobile__timeline::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.18), transparent 65%);
  opacity: 0.25;
}

.mobile__timeline-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
}

.mobile__timeline strong {
  font-size: 16px;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.9);
}

.mobile__timeline small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.mobile__cta {
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 31, 58, 0.5), rgba(255, 31, 58, 0.85));
  border: 1px solid rgba(255, 31, 58, 0.45);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
  margin-top: auto;
}

.mobile__cta:hover {
  background: rgba(255, 31, 58, 0.35);
  transform: translateY(-2px);
}

.mobile__cta[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.hero__floating {
  position: absolute;
  background: rgba(255, 31, 58, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  animation: float 5s ease-in-out infinite;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(255, 31, 58, 0.24);
}

.hero__floating--1 {
  top: -30px;
  right: 40px;
  animation-delay: 0.4s;
}

.hero__floating--2 {
  bottom: -20px;
  left: 80px;
  animation-delay: 1.8s;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 120px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: -25% -20%;
  background: radial-gradient(circle at center, rgba(255, 31, 58, 0.18), transparent 65%);
  opacity: 0.35;
  filter: blur(80px);
  pointer-events: none;
  transition: transform 0.45s ease-out, opacity 0.45s ease-out;
}

.section:hover::before {
  opacity: 0.5;
  transform: scale(1.02);
}

.section .container {
  position: relative;
  z-index: 2;
}

.section--dark {
  background: linear-gradient(145deg, rgba(15, 16, 21, 0.92), rgba(3, 3, 5, 0.96));
}

.section--dark::before {
  opacity: 0.25;
}

.section--gradient {
  background: var(--color-primary-gradient);
  color: var(--color-white);
  position: relative;
}

.section--gradient::before {
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12), transparent 70%);
  opacity: 0.45;
}

.section--highlight {
  background: radial-gradient(circle at center, rgba(255, 31, 58, 0.22), rgba(3, 3, 5, 0.92));
}

.section--highlight::before {
  opacity: 0.4;
}

.section--parallax {
  background-attachment: fixed;
  background-image: radial-gradient(circle at top left, rgba(255, 31, 58, 0.25), rgba(0, 0, 0, 0.85));
}

.section__eyebrow {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 24px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1vw + 2rem, 3rem);
  margin-bottom: 20px;
}

.section__description {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.solutions__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.solutions__card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.18), transparent 55%);
  transform: translateY(50%);
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}

.solutions__card:hover {
  transform: translateY(-18px) scale(1.02) rotateX(2deg);
  border-color: rgba(255, 31, 58, 0.65);
  box-shadow: 0 36px 70px rgba(255, 31, 58, 0.2);
}

.solutions__card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.solutions__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.solutions__icon--check::before {
  content: "";
  width: 18px;
  height: 10px;
  border: 3px solid rgba(114, 255, 202, 0.9);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(114, 255, 202, 0.45);
}

.solutions__card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.solutions__card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.solutions__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 31, 58, 0.16);
  font-size: 12px;
  letter-spacing: 1.2px;
}

.technology {
  display: grid;
  gap: clamp(32px, 4vw, 64px);
}

.technology__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

.technology__text {
  display: grid;
  gap: 24px;
}

.technology__text p {
  color: rgba(255, 255, 255, 0.78);
}

.technology__list {
  display: grid;
  gap: 18px;
}

.technology__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.technology__check {
  width: 18px;
  height: 12px;
  border: 3px solid rgba(114, 255, 202, 0.9);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(114, 255, 202, 0.4);
  margin-top: 6px;
}

.technology__panel {
  display: grid;
  gap: 18px;
}

.technology__preview {
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-lg);
  background: rgba(10, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.technology__preview::after {
  content: "";
  position: absolute;
  inset: -50% 10% 20% -10%;
  background: radial-gradient(circle at top right, rgba(255, 31, 58, 0.18), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.technology__preview header {
  display: grid;
  gap: 8px;
}

.technology__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(114, 255, 202, 0.12);
  border: 1px solid rgba(114, 255, 202, 0.4);
  color: rgba(195, 255, 239, 0.85);
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.technology__preview header strong {
  font-size: 28px;
  font-family: var(--font-display);
}

.technology__preview header small {
  color: rgba(255, 255, 255, 0.55);
}

.technology__preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.technology__preview-metrics div {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.technology__preview-metrics span {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.technology__preview-metrics strong {
  font-size: 26px;
  font-family: var(--font-display);
}

.technology__preview-metrics small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.technology__preview footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.technology__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.technology__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.technology__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.technology__badge {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 10px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.technology__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 31, 58, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.technology__badge:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 31, 58, 0.45);
  box-shadow: 0 20px 40px rgba(255, 31, 58, 0.16);
}

.technology__badge:hover::after {
  opacity: 1;
}

.technology__badge strong {
  font-size: 18px;
  font-family: var(--font-display);
}

.technology__badge p {
  color: rgba(255, 255, 255, 0.7);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.benefit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 31, 58, 0.55);
  box-shadow: 0 24px 50px rgba(255, 31, 58, 0.16);
}

.benefit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 31, 58, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit:hover::after {
  opacity: 1;
}

.timeline {
  display: grid;
  gap: 28px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 31, 58, 0.4), rgba(255, 255, 255, 0));
}

.timeline__item {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
  border-radius: 16px;
  padding: 10px 0;
}

.timeline__step {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.timeline__item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.timeline__item p {
  color: rgba(255, 255, 255, 0.82);
}

.timeline__item:hover {
  transform: translateY(-6px);
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.case:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(255, 31, 58, 0.55);
  box-shadow: 0 24px 48px rgba(255, 31, 58, 0.22);
}

.case::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.24), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.case:hover::after {
  opacity: 0.9;
  transform: scale(1.05);
}

.case header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case__label {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.case__metric span {
  font-size: 26px;
  font-family: var(--font-display);
  display: block;
}

.case__metric small {
  color: rgba(255, 255, 255, 0.55);
}

.resources {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
}

.resources--dossier {
  grid-template-columns: 1fr;
}

.resources__intro p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.resources__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.resource {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.resource--dossier header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.resource__chapter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.6px;
}

.resource ul {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.resource ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.resource ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 31, 58, 0.7);
  margin-top: 8px;
  box-shadow: 0 0 10px rgba(255, 31, 58, 0.45);
}

.resource::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 31, 58, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.resource:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 31, 58, 0.45);
}

.resource:hover::after {
  opacity: 1;
}

.partners {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: center;
}

.partners__halo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(255, 31, 58, 0.22), rgba(3, 3, 5, 0.92));
  filter: blur(12px);
  opacity: 0.75;
}

.partners__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.partners__item {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(6px);
}

.partners__item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 31, 58, 0.45);
  box-shadow: 0 16px 30px rgba(255, 31, 58, 0.18);
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.faq details[open] {
  border-color: rgba(255, 31, 58, 0.55);
  box-shadow: 0 18px 38px rgba(255, 31, 58, 0.18);
}

.faq details::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 31, 58, 0.12), transparent 75%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.faq details[open]::after {
  opacity: 1;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
}

.contact {
  position: relative;
  z-index: 1;
}

.contact__form {
  position: relative;
  z-index: 5;
}

.contact__form input,
.contact__form textarea,
.contact__form button {
  pointer-events: auto;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 120%, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0.4;
}

.contact .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.contact__highlights {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact__highlight {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-base);
}

.contact__highlight strong {
  font-weight: 600;
  font-size: 15px;
}

.contact__highlight span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.contact__highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 31, 58, 0.45);
  box-shadow: 0 18px 38px rgba(255, 31, 58, 0.18);
}

.contact__form {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.contact__form label {
  font-weight: 500;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font: inherit;
  transition: var(--transition-base);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(255, 31, 58, 0.65);
  box-shadow: 0 20px 40px rgba(255, 31, 58, 0.25);
}

.contact__form::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 31, 58, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.contact__form > * {
  position: relative;
  z-index: 1;
}

.contact__form:hover::after {
  opacity: 0.7;
}

.contact__form textarea {
  resize: none;
}

.contact__form small {
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  transition: var(--transition-base);
}

.form-status--success {
  border-color: rgba(114, 255, 202, 0.5);
  color: rgba(195, 255, 239, 0.9);
  background: rgba(114, 255, 202, 0.12);
}

.form-status--error {
  border-color: rgba(255, 31, 58, 0.5);
  color: rgba(255, 177, 188, 0.95);
  background: rgba(255, 31, 58, 0.12);
}

.footer {
  background: #020203;
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -40% -20% 20%;
  background: radial-gradient(circle at center, rgba(255, 31, 58, 0.2), transparent 65%);
  opacity: 0.45;
  filter: blur(40px);
  animation: orbitGlow 40s linear infinite;
  z-index: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, minmax(0, 1fr)) 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.footer__brand p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 260px;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 12px;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(255, 31, 58, 0.85);
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  box-shadow: 0 20px 40px rgba(255, 31, 58, 0.3);
  z-index: 10;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-6px);
}

.topbar .button--ghost {
  color: var(--color-primary-dark);
  border-color: rgba(12, 13, 18, 0.1);
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
}

.topbar .button--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 31, 58, 0.08);
  box-shadow: 0 16px 32px rgba(255, 31, 58, 0.18);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-10%);
    opacity: 0.6;
  }
  50% {
    transform: translateX(6%);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes orbitGlow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@media (max-width: 1080px) {
  .topbar .container {
    gap: 18px;
    position: relative;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    flex: initial;
    justify-content: flex-start;
    transform-origin: top right;
    z-index: 1000;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translate(0);
  }

  .nav.is-open a {
    color: var(--color-ink);
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 18px 36px rgba(0, 0, 0, 0.25);
  }

  .nav.is-open .nav__cta {
    color: #0c0d12 !important;
    background: linear-gradient(135deg, rgba(255, 31, 58, 0.96), rgba(139, 0, 18, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 24px 40px rgba(255, 31, 58, 0.28);
  }

  .nav.is-open .nav__cta:hover,
  .nav.is-open .nav__cta:focus-visible {
    color: #0c0d12 !important;
  }

  .nav.is-open a::after {
    bottom: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__text {
    align-items: flex-start;
  }

  .hero__highlights {
    width: 100%;
    gap: 12px;
  }

  .hero__visual {
    min-height: auto;
    width: 100%;
  }

  .technology__grid {
    grid-template-columns: 1fr;
  }

  .technology__preview-metrics {
    grid-template-columns: 1fr;
  }

  .technology__badges {
    grid-template-columns: 1fr;
  }

  .hero__devices {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.4));
  }

  .device--mobile {
    position: static; /* Reseta o posicionamento absoluto */
    right: auto;
    bottom: auto;
    margin: 0;
    width: min(260px, 90%);
    min-height: 400px;
    transform: translateY(0);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.5);
    padding: 16px;
    transform: translateX(0); /* Reseta a sobreposição */
  }

  .solutions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact .container {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__text {
    align-items: center;
    text-align: center;
  }

  .hero__headline {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__devices {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .device--laptop,
  .device--mobile {
    max-width: 100%;
  }

  .device--mobile {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 14px 0;
  }

  main {
    margin-top: 74px;
  }

  .hero {
    padding: 52px 0 60px;
    min-height: auto;
  }

  .hero__headline-line {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
    justify-content: center;
  }

  .hero p {
    text-align: center;
    max-width: 100%;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .hero__text {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 18px;
  }

  .hero__actions {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
    max-width: 300px;
    padding-block: 11px;
  }

  .hero__highlights {
    gap: 8px;
    width: 100%;
  }

  .hero__visual {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
  }

  .hero__devices {
    width: min(280px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .device--laptop {
    display: none;
  }

  .device--mobile {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    padding: 18px;
    transform: none;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  }

  .device--mobile .device__screen {
    padding: 18px;
    min-height: 300px;
  }

  .screen__stats {
    grid-template-columns: 1fr;
  }

  .technology__preview {
    padding: 22px;
  }

  .technology__preview footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .solutions__card,
  .benefit,
  .resource,
  .technology__preview,
  .contact__form {
    padding: 22px;
  }

  .solutions__grid,
  .benefits,
  .cases,
  .resources {
    grid-template-columns: 1fr;
  }

  .partners__items {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline__item {
    grid-template-columns: 56px auto;
  }

  .section {
    padding: 50px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 18px;
    bottom: 20px;
  }

  .hero__visual {
    margin-top: 18px;
  }

  .hero__devices {
    display: none;
  }

  .hero__mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .hero__mobile-card {
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 6px;
    text-align: left;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
  }

  .hero__mobile-card strong {
    font-family: var(--font-display);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
  }

  .hero__mobile-card span {
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
  }

  .hero__mobile-card small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }

  .hero__mobile-card--primary {
    background: linear-gradient(145deg, rgba(255, 31, 58, 0.85), rgba(139, 0, 18, 0.85));
    border-color: rgba(255, 255, 255, 0.28);
  }

  .hero__floating--1 {
    top: auto;
    bottom: 12px;
    right: 12px;
    transform: translateY(0);
  }

  .hero__floating--2 {
    top: auto;
    bottom: -32px;
    left: 12px;
    transform: translateY(0);
  }

  .hero__floating {
    display: none;
  }

  .hero__mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 24px;
  }

  .hero__mobile-chips {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero__mobile-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 31, 58, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
  }
}

@media (max-width: 540px) {
  .topbar .container {
    flex-wrap: wrap;
    gap: 12px;
  }

  main {
    margin-top: 72px;
  }

  .brand__logo {
    width: clamp(160px, 48vw, 220px);
    justify-content: flex-start;
  }

  .nav {
    right: 16px;
    width: calc(100% - 32px);
  }

  .nav.is-open {
    gap: 12px;
  }

  .nav.is-open a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .hero__visual {
    margin-top: 18px;
  }

  .hero__text {
    gap: 18px;
  }

  .hero__badge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .hero__devices {
    width: min(280px, 100%);
    gap: 14px;
  }

  .hero__headline-line::after {
    display: none;
  }

  .hero__highlights li {
    align-items: flex-start;
    line-height: 1.45;
    font-size: 14px;
  }

  .hero__note {
    font-size: 14px;
    margin-top: 18px;
  }

  .device--laptop {
    width: 100%;
    max-width: 260px;
    padding: 16px 14px 22px;
  }

  .device__screen {
    padding: 16px;
  }

  .screen__stats {
    grid-template-columns: 1fr;
  }

  .screen__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .device--mobile {
    width: 160px;
    min-height: 320px;
    margin-top: 0;
    padding: 14px;
  }

  .device--mobile .device__screen {
    padding: 14px;
    min-height: 280px;
  }

  .hero__actions .button {
    max-width: 260px;
  }

  .partners__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .technology__badges,
  .technology__preview-metrics,
  .resources__list {
    grid-template-columns: 1fr;
  }

  .partners__item {
    font-size: 12px;
    letter-spacing: 0.4px;
    padding: 12px 18px;
    white-space: normal;
    line-height: 1.4;
  }

  .section {
    padding: 56px 0;
  }

  .section__title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .section__description {
    font-size: 15px;
  }

  .solutions__card,
  .benefit,
  .resource,
  .technology__preview,
  .contact__form {
    padding: 20px;
  }

  .contact__form button.button--primary {
    width: 100%;
  }

  .hero__mobile-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero__mobile-card {
    padding: 14px;
  }

  .hero__floating--1 {
    bottom: 8px;
    right: 10px;
  }

  .hero__floating--2 {
    bottom: -28px;
    left: 10px;
  }

  .hero__mobile-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero__mobile-chip {
    font-size: 11px;
    padding: 7px 10px;
  }
}

@media (max-width: 420px) {
  .hero__mobile-stats {
    grid-template-columns: 1fr;
  }

  .hero__mobile-card {
    padding: 12px;
  }

  .hero__mobile-card strong {
    font-size: 22px;
  }

  .hero__floating--1 {
    bottom: 6px;
    right: 8px;
  }

  .hero__floating--2 {
    bottom: -20px;
    left: 8px;
  }

  .hero__mobile-chip {
    font-size: 10px;
  }
}

@media (max-width: 1080px) {
  .section--parallax {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero {
    animation: none;
  }

  .hero__floating {
    animation: none;
  }

  .screen__chart-line {
    animation: none;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 14px 0;
  }

  .topbar .container {
    gap: 8px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
  }

  .nav-toggle span {
    width: 28px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero__visual {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  .device--laptop {
    display: none;
  }

  .device--mobile {
    width: 150px;
    min-height: 260px;
    padding: 12px;
  }

  .device--mobile .device__screen {
    padding: 12px;
    min-height: 240px;
  }

  .hero__headline-line {
    font-size: clamp(1.75rem, 6.5vw, 2.1rem);
    letter-spacing: -0.01em;
  }

  .hero p {
    font-size: 15px;
  }

  .hero__highlights {
    gap: 10px;
  }

  .hero__actions {
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .hero__actions .button {
    flex: 1 1 100%;
    max-width: 240px;
    padding: 12px 0;
  }

  .section {
    padding: 52px 0;
  }

  .section__title {
    font-size: clamp(1.6rem, 5.6vw, 2rem);
  }

  .section__description {
    font-size: 15px;
  }

  .solutions__card,
  .benefit,
  .resource,
  .technology__preview,
  .contact__form {
    padding: 22px;
  }

  .contact__content {
    text-align: center;
  }

  .contact__highlights {
    gap: 12px;
  }

  .contact__highlight {
    padding: 14px 16px;
  }

  .contact__form input,
  .contact__form textarea {
    padding: 12px 14px;
  }

  .footer {
    padding-top: 56px;
  }

  .footer__bottom {
    font-size: 12px;
  }
}

.hero__mobile-stats {
  display: none;
}

@media (max-width: 720px) {
  .hero__visual {
    margin-top: 18px;
  }

  .hero__devices {
    display: none;
  }

  .hero__mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .hero__mobile-card {
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 6px;
    text-align: left;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
  }

  .hero__mobile-card strong {
    font-family: var(--font-display);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
  }

  .hero__mobile-card span {
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
  }

  .hero__mobile-card small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }

  .hero__mobile-card--primary {
    background: linear-gradient(145deg, rgba(255, 31, 58, 0.85), rgba(139, 0, 18, 0.85));
    border-color: rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 540px) {
  .hero__mobile-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero__mobile-card {
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .hero__mobile-stats {
    grid-template-columns: 1fr;
  }

  .hero__mobile-card {
    padding: 12px;
  }

  .hero__mobile-card strong {
    font-size: 22px;
  }
}

@media (max-width: 720px) {
  .hero__floating {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(255, 31, 58, 0.2);
  }

  .hero__floating--1 {
    bottom: 12px;
    right: 12px;
  }

  .hero__floating--2 {
    bottom: -28px;
    left: 12px;
  }
}

@media (max-width: 540px) {
  .hero__floating {
    padding: 7px 10px;
    font-size: 11px;
  }

  .hero__floating--1 {
    bottom: 8px;
    right: 10px;
  }

  .hero__floating--2 {
    bottom: -24px;
    left: 10px;
  }
}

@media (max-width: 420px) {
  .hero__floating {
    padding: 6px 9px;
    font-size: 10px;
  }

  .hero__floating--1 {
    bottom: 6px;
    right: 8px;
  }

  .hero__floating--2 {
    bottom: -20px;
    left: 8px;
  }
}
