﻿:root {
  --primary: #ffc107;
  --secondary: #0f172a;
  --accent: #2566e9;
  --accent-alt: #2e56eb;
  --accent-glow: #10b1d6;
  --gold-soft: #ffe082;
  --gold-deep: #ffb300;
  --bg: #070d1a;
  --bg-deep: #040816;
  --text: #ffffff;
  --muted: #c7d2e3;
  --card: rgba(15, 23, 42, 0.78);
  --glass: rgba(11, 17, 34, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --shadow-yellow: 0 0 40px rgba(255, 193, 7, 0.25);
  --shadow-blue: 0 0 40px rgba(46, 86, 235, 0.28);
  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-body: "Sora", "Trebuchet MS", sans-serif;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 5rem;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(90deg, rgba(46, 86, 235, 0.08), transparent 35%, rgba(255, 193, 7, 0.08));
  opacity: 0.32;
  mix-blend-mode: screen;
  animation: scan-drift 10s linear infinite;
}

body::after {
  background-image:
    radial-gradient(circle, rgba(46, 86, 235, 0.24) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 193, 7, 0.18) 1px, transparent 1px);
  background-size: 68px 68px, 90px 90px;
  background-position: 0 0, 40px 20px;
  opacity: 0.16;
  animation: particles-drift 18s linear infinite;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
}

.site-bg::before {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 193, 7, 0.18), transparent 35%),
    radial-gradient(circle at 80% 5%, rgba(46, 86, 235, 0.24), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(30, 41, 59, 0.7), transparent 45%);
  filter: blur(4px);
  animation: drift 14s ease-in-out infinite alternate;
}

.site-bg::after {
  background-image:
    linear-gradient(120deg, rgba(46, 86, 235, 0.12) 2px, transparent 2px),
    linear-gradient(300deg, rgba(255, 193, 7, 0.08) 1px, transparent 1px);
  background-size: 150px 150px, 110px 110px;
  mask-image: radial-gradient(circle at 50% 30%, black 42%, transparent 82%);
  opacity: 0.56;
  animation: grid-shift 16s linear infinite;
}

main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(46, 86, 235, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(46, 86, 235, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 12%, black 36%, transparent 78%);
  opacity: 0.2;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.top-banner {
  position: relative;
  z-index: 110;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 193, 7, 0.13), rgba(37, 102, 233, 0.1)),
    rgba(11, 15, 25, 0.88);
}

.top-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 193, 7, 0.22), transparent 80%);
  transform: translateX(-120%);
  animation: banner-sweep 8s linear infinite;
}

.top-banner-content {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: #d6deea;
}

.top-banner-content strong {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.35rem;
}

.top-banner-content a {
  color: #d9f4ff;
  border: 1px solid rgba(37, 102, 233, 0.5);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.top-banner-content a:hover,
.top-banner-content a:focus-visible {
  background: rgba(37, 102, 233, 0.2);
  transform: translateY(-1px);
}

.section {
  padding: 4.2rem 0;
}

.section-shell {
  position: relative;
}

.section-tag {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 0.72rem;
  margin-bottom: 0.9rem;
}

.section-head h2 {
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.38);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 15, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-image {
  width: clamp(160px, 44vw, 260px);
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 14px rgba(255, 193, 7, 0.28))
    drop-shadow(0 6px 20px rgba(46, 86, 235, 0.2));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
}

.menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 4vw;
  left: 4vw;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.96);
  border: 1px solid var(--line);
  display: none;
  padding: 0.8rem;
  gap: 0.55rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.menu.open {
  display: grid;
}

.menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  color: var(--muted);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.11);
}

.menu .nav-cta {
  margin-top: 0.25rem;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #ffef91);
  color: #111827;
}

.hero {
  position: relative;
  padding-top: 5.4rem;
  overflow: hidden;
}

.energy-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.energy-overlay::before,
.energy-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
}

.energy-overlay::before {
  background:
    radial-gradient(circle at 15% 25%, rgba(46, 86, 235, 0.24), transparent 35%),
    radial-gradient(circle at 80% 56%, rgba(255, 193, 7, 0.18), transparent 36%);
  opacity: 0.6;
  animation: energy-haze 9s ease-in-out infinite alternate;
}

.energy-overlay::after {
  background: radial-gradient(circle at 50% 35%, rgba(255, 244, 181, 0.34), transparent 30%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.energy-overlay.burst::after {
  opacity: 0.78;
}

.ray {
  --ray-rotate: 0deg;
  position: absolute;
  height: 3px;
  border-radius: 999px;
  width: 58vw;
  transform: translateX(-45%) scaleX(0.72) rotate(var(--ray-rotate));
  transform-origin: center;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 193, 7, 0.9) 30%,
    rgba(46, 86, 235, 0.92) 55%,
    transparent
  );
  box-shadow:
    0 0 16px rgba(255, 193, 7, 0.36),
    0 0 22px rgba(46, 86, 235, 0.32);
  mix-blend-mode: screen;
  animation-name: lightning-dash, ray-flicker;
  animation-timing-function: linear, steps(2, end);
  animation-iteration-count: infinite, infinite;
}

.ray::before,
.ray::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 244, 181, 0.85), rgba(255, 193, 7, 0));
  opacity: 0.7;
}

.ray::before {
  left: 16%;
}

.ray::after {
  right: 14%;
}

.ray-1 {
  top: 20%;
  left: -35%;
  --ray-rotate: -8deg;
  animation-duration: 4.6s, 0.38s;
  animation-delay: 0s, 0s;
}

.ray-2 {
  top: 35%;
  right: -42%;
  --ray-rotate: 7deg;
  animation-duration: 5.4s, 0.36s;
  animation-delay: 0.9s, 0.1s;
}

.ray-3 {
  top: 58%;
  left: -40%;
  --ray-rotate: -6deg;
  animation-duration: 6.2s, 0.44s;
  animation-delay: 1.3s, 0.2s;
}

.energy-wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46, 86, 235, 0.35);
  opacity: 0;
  mix-blend-mode: screen;
}

.wave-1 {
  width: 320px;
  height: 320px;
  right: -50px;
  top: 40px;
  animation: energy-ring 5.4s ease-out infinite;
}

.wave-2 {
  width: 460px;
  height: 460px;
  left: -120px;
  bottom: -180px;
  animation: energy-ring 6.4s ease-out infinite 1s;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0 auto;
  height: 280px;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.18), transparent 25%),
    radial-gradient(circle at 86% 34%, rgba(46, 86, 235, 0.22), transparent 30%);
  filter: blur(6px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.9rem;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 10vw, 4.2rem);
  line-height: 0.98;
  max-width: 12ch;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  color: var(--muted);
  margin-top: 1.35rem;
  max-width: 56ch;
}

.hero-positioning {
  margin-top: 0.95rem;
  max-width: 58ch;
  color: #f0f6ff;
  font-size: 0.93rem;
  border-left: 2px solid rgba(255, 193, 7, 0.72);
  padding-left: 0.85rem;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.08), transparent 70%);
}

.hero-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-chips span {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.26rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: #dce6f5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #0f172a;
  background: linear-gradient(125deg, var(--primary), #fff1a3);
  box-shadow: 0 10px 24px rgba(255, 193, 7, 0.26);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -25%;
  width: 55%;
  height: 360%;
  transform: translateX(-180%) rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  pointer-events: none;
  transition: transform 0.6s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 14px 28px rgba(255, 193, 7, 0.36),
    0 0 26px rgba(255, 193, 7, 0.35);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(320%) rotate(20deg);
}

.btn-outline {
  border-color: rgba(37, 102, 233, 0.55);
  color: #d8f1ff;
  background: rgba(37, 102, 233, 0.08);
  box-shadow: 0 8px 22px rgba(37, 102, 233, 0.15);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  box-shadow:
    0 14px 28px rgba(37, 102, 233, 0.2),
    0 0 26px rgba(37, 102, 233, 0.22);
}

.btn-large {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

.hero-trust {
  list-style: none;
  margin-top: 1.55rem;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.hero-trust li {
  color: #d7deea;
  font-size: 0.92rem;
  padding-left: 1.3rem;
  position: relative;
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.62);
  position: absolute;
  top: 0.48rem;
  left: 0;
}

.hero-fast {
  margin-top: 1rem;
  color: #edf6ff;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-metrics {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.hero-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  background: rgba(11, 15, 25, 0.55);
  position: relative;
  overflow: hidden;
}

.hero-metrics article::after {
  content: "";
  position: absolute;
  inset: -140% auto auto -35%;
  width: 50%;
  height: 260%;
  transform: rotate(22deg);
  background: linear-gradient(180deg, transparent, rgba(46, 86, 235, 0.38), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-metrics article:hover::after {
  opacity: 1;
  animation: card-scan 1.25s linear;
}

.hero-metrics strong {
  display: block;
  font-size: 0.93rem;
  margin-bottom: 0.18rem;
}

.hero-metrics span {
  color: #cfdaec;
  font-size: 0.85rem;
}

.hero-panel {
  border-radius: var(--radius);
  padding: 1.2rem;
  background:
    linear-gradient(165deg, rgba(37, 102, 233, 0.12), transparent 58%),
    linear-gradient(315deg, rgba(255, 193, 7, 0.09), transparent 60%),
    var(--card);
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow-blue),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: float-panel 5s ease-in-out infinite;
}

.tech-modal {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--glass);
}

.tech-modal::before,
.tech-modal::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tech-modal::before {
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(120px 120px at var(--mx) var(--my), rgba(255, 244, 181, 0.95), rgba(255, 193, 7, 0.42) 30%, transparent 65%),
    repeating-linear-gradient(125deg, rgba(255, 226, 132, 0.5) 0 2px, rgba(255, 191, 0, 0.12) 2px 6px, rgba(255, 238, 169, 0.3) 6px 8px),
    conic-gradient(from 0deg, rgba(255, 193, 7, 0.22), rgba(255, 238, 171, 0.8), rgba(255, 193, 7, 0.16), rgba(46, 86, 235, 0.46), rgba(255, 193, 7, 0.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.22;
  filter: saturate(1.15);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.tech-modal::after {
  inset: -20%;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 214, 102, 0.42), rgba(255, 193, 7, 0.18) 24%, rgba(46, 86, 235, 0.18) 46%, transparent 72%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

.tech-modal:hover::before,
.tech-modal:focus-within::before {
  opacity: 1;
  filter: saturate(1.35) brightness(1.1);
  animation: border-charge 1.6s linear infinite;
}

.tech-modal:hover::after,
.tech-modal:focus-within::after {
  opacity: 1;
  animation: shock-burst 0.95s ease-out infinite;
}

.hero-panel.tech-modal:hover,
.cta-box.tech-modal:hover,
.contact-form.tech-modal:hover,
.process-card.tech-modal:hover {
  box-shadow:
    0 0 0 1px rgba(255, 193, 7, 0.62),
    0 0 24px rgba(255, 193, 7, 0.35),
    0 0 30px rgba(46, 86, 235, 0.28);
}

.panel-title {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cdefff;
  margin-bottom: 0.9rem;
}

.panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.panel-badges span {
  font-size: 0.75rem;
  color: #cdefff;
  border: 1px solid rgba(37, 102, 233, 0.45);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  background: rgba(37, 102, 233, 0.1);
}

.panel-points {
  display: grid;
  gap: 0.85rem;
}

.panel-points article {
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  padding: 0.85rem;
}

.panel-points h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.panel-points p {
  color: #ced6e5;
  font-size: 0.9rem;
}

.panel-cta {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.85rem;
}

.panel-cta p {
  color: #d7deea;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.btn-panel {
  width: 100%;
}

.section-head h2,
.about-copy h2,
.contact-info h2,
.cta-box h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(1.7rem, 7vw, 2.9rem);
  letter-spacing: 0.015em;
}

.section-head p,
.about-copy p,
.contact-info p {
  color: var(--muted);
  margin-top: 0.9rem;
}

.services-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(37, 102, 233, 0.08), rgba(30, 41, 59, 0.64));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -140% auto auto -28%;
  width: 50%;
  height: 280%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 193, 7, 0.4), rgba(46, 86, 235, 0.35), transparent);
  opacity: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -55%;
  height: 55%;
  background: radial-gradient(circle, rgba(37, 102, 233, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow:
    var(--shadow-yellow),
    0 0 22px rgba(46, 86, 235, 0.22);
}

.service-card:hover::before {
  opacity: 0.9;
  animation: card-scan 1.3s linear;
}

.service-card:hover::after {
  opacity: 1;
}

.icon-box {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 11px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.22), rgba(37, 102, 233, 0.22)),
    rgba(11, 15, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 0.85rem;
}

.icon-box svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.service-card p {
  color: #cfdaec;
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.about-cards {
  display: grid;
  gap: 0.85rem;
}

.about-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(17, 24, 39, 0.7);
}

.about-cards h3 {
  font-size: 1.04rem;
  margin-bottom: 0.35rem;
}

.about-cards p {
  color: #cfdaec;
  font-size: 0.92rem;
}

.diferenciais-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.diff-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background:
    linear-gradient(140deg, rgba(46, 86, 235, 0.12), rgba(11, 17, 34, 0.85)),
    rgba(17, 24, 39, 0.75);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.diff-item::after {
  content: "";
  position: absolute;
  inset: auto -15% -80%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.26), transparent 62%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.diff-item span {
  color: var(--primary);
  font-size: 1.1rem;
  text-shadow: 0 0 14px rgba(255, 193, 7, 0.65);
}

.diff-item div {
  display: grid;
  gap: 0.12rem;
}

.diff-item h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.diff-item p {
  font-weight: 400;
  color: #cfdaec;
  font-size: 0.89rem;
}

.diff-item:hover {
  border-color: rgba(37, 102, 233, 0.65);
  transform: translateX(4px);
  box-shadow: 0 0 22px rgba(46, 86, 235, 0.18);
}

.diff-item:hover::after {
  opacity: 1;
}

.section-process {
  position: relative;
}

.section-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(37, 102, 233, 0.06), transparent 36%),
    linear-gradient(320deg, rgba(255, 193, 7, 0.05), transparent 40%);
  pointer-events: none;
}

.process-grid {
  position: relative;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.process-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(46, 86, 235, 0.08), rgba(17, 24, 39, 0.86)),
    rgba(17, 24, 39, 0.76);
  padding: 1rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 102, 233, 0.62);
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.5);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.68rem;
}

.process-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.35rem;
}

.process-card p {
  color: #cfdaec;
  font-size: 0.91rem;
}

.cta-wrap {
  padding-top: 2rem;
}

.cta-box {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.5rem 1.1rem;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.2), transparent 38%),
    radial-gradient(circle at bottom right, rgba(37, 102, 233, 0.22), transparent 45%),
    rgba(17, 24, 39, 0.88);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(37, 102, 233, 0.2);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    repeating-linear-gradient(130deg, rgba(255, 214, 122, 0.08) 0 2px, transparent 2px 7px);
  opacity: 0.56;
}

.cta-box h2 {
  margin-bottom: 1.1rem;
}

.cta-box p {
  color: #d6dff0;
  max-width: 56ch;
  margin: 0 auto;
}

.cta-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.contact-info ul {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contact-info li {
  color: #e4e8ef;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(17, 24, 39, 0.78);
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #eaf3ff;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(11, 15, 25, 0.75);
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #97a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 102, 233, 0.75);
  box-shadow: 0 0 0 4px rgba(37, 102, 233, 0.2);
}

.contact-form .btn {
  margin-top: 0.8rem;
}

.form-feedback {
  min-height: 1.3rem;
  margin-top: 0.45rem;
  font-size: 0.87rem;
  color: #8ce4ff;
}

.form-feedback.success {
  color: #b8f282;
}

.form-feedback.error {
  color: #ffb7a8;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0 2.1rem;
  background: rgba(11, 15, 25, 0.7);
}

.footer-content {
  color: #d6deea;
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 140;
  width: min(92vw, 360px);
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111827;
  padding: 0.9rem 1rem;
  background: linear-gradient(120deg, var(--primary), #fff0a2);
  box-shadow:
    0 12px 28px rgba(255, 193, 7, 0.38),
    0 0 24px rgba(255, 193, 7, 0.33);
  animation: pulse-glow 2.4s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.05);
  }
}

@keyframes float-panel {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 12px 28px rgba(255, 193, 7, 0.38),
      0 0 24px rgba(255, 193, 7, 0.33);
  }
  50% {
    box-shadow:
      0 16px 34px rgba(255, 193, 7, 0.44),
      0 0 30px rgba(255, 193, 7, 0.4);
  }
}

@keyframes scan-drift {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes particles-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-40px, -30px, 0);
  }
}

@keyframes grid-shift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 150px 150px, -110px 110px;
  }
}

@keyframes banner-sweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes energy-haze {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(3%, -2%, 0) scale(1.08);
  }
}

@keyframes ray-flicker {
  0%,
  100% {
    filter: brightness(1) saturate(1.1);
  }
  50% {
    filter: brightness(1.45) saturate(1.45);
  }
}

@keyframes card-scan {
  0% {
    transform: translateY(-12%) rotate(18deg);
  }
  100% {
    transform: translateY(78%) rotate(18deg);
  }
}

@keyframes border-charge {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shock-burst {
  0% {
    opacity: 0.32;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes lightning-dash {
  0% {
    opacity: 0;
    transform: translateX(-45%) scaleX(0.72) rotate(var(--ray-rotate));
  }
  12% {
    opacity: 0.85;
  }
  18% {
    opacity: 0.25;
  }
  26% {
    opacity: 0.95;
  }
  42% {
    opacity: 0;
    transform: translateX(42%) scaleX(1.1) rotate(var(--ray-rotate));
  }
  100% {
    opacity: 0;
    transform: translateX(42%) scaleX(1.1) rotate(var(--ray-rotate));
  }
}

@keyframes energy-ring {
  0% {
    opacity: 0;
    transform: scale(0.76);
  }
  20% {
    opacity: 0.34;
  }
  66% {
    opacity: 0.14;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 0;
  }

  .logo-image {
    width: clamp(190px, 34vw, 300px);
  }

  .top-banner-content {
    font-size: 0.86rem;
  }

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

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

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

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

  .cta-box {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .logo-image {
    width: clamp(220px, 22vw, 320px);
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: inline-flex;
    align-items: center;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 0.1rem;
    width: auto;
  }

  .menu a {
    padding: 0.45rem 0.9rem;
  }

  .menu .nav-cta {
    margin-top: 0;
    margin-left: 0.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.18fr 0.82fr;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.4rem;
  }

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

  .footer-content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .floating-cta {
    display: none;
  }
}

@media (min-width: 1080px) {
  .hero {
    padding-top: 6.7rem;
  }

  .ray {
    width: 42vw;
  }

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

  .section {
    padding: 5.8rem 0;
  }
}

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

