:root {
  --bg: #061326;
  --bg-soft: #0b1f35;
  --surface: #102842;
  --surface-2: #0f2239;
  --line: #1f3d5c;
  --text: #e9f3ff;
  --muted: #9eb7cf;
  --teal: #1ed0bf;
  --teal-strong: #14b4a5;
  --radius: 16px;
  --card-border: rgba(56, 98, 133, 0.44);
  --card-bg: linear-gradient(145deg, rgba(16, 41, 68, 0.92), rgba(11, 30, 51, 0.96));
  --shadow: 0 18px 40px rgba(2, 9, 18, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 12% -10%, #11345a 0%, transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.section {
  padding: clamp(4.9rem, 7vw, 5.5rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(30px);
  opacity: 0.28;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: #1cb0c4;
  top: -130px;
  left: -70px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: #103f72;
  right: -90px;
  top: 34%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 16, 30, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(69, 108, 146, 0.25);
}

.nav-wrap {
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.logo-image {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  object-fit: contain;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  line-height: 1.15;
  min-height: 2.8rem;
  padding: 0.72rem 1.1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-strong));
  color: #06242d;
  box-shadow: 0 8px 25px rgba(29, 188, 176, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 12px 30px rgba(29, 188, 176, 0.42);
}

.btn-secondary {
  border-color: #2c546f;
  background: rgba(16, 38, 60, 0.62);
  color: #d4e7fb;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #4d7896;
  background: rgba(20, 46, 74, 0.88);
}

.btn-nav {
  padding: 0.58rem 0.98rem;
  background: rgba(21, 50, 79, 0.7);
  border-color: #2f5a79;
  color: #d8ecff;
}

.hero {
  padding-top: 4.85rem;
  padding-bottom: 2.85rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 1.35rem;
  align-items: stretch;
}

.hero-copy {
  align-self: center;
  max-width: 42rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  max-width: 18ch;
  letter-spacing: -0.015em;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
  margin-top: 0.85rem;
}

.hero .lead {
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  box-shadow: 0 10px 26px rgba(29, 188, 176, 0.4);
}

.hero-actions .btn-secondary {
  background: rgba(10, 27, 44, 0.72);
  border-color: #3a6585;
}

.hero-capabilities {
  list-style: none;
  margin: 1.05rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 38rem;
}

.hero-capabilities li {
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(67, 113, 145, 0.58);
  background: rgba(11, 36, 57, 0.62);
  color: #cfe6fa;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  border-radius: 18px;
  border: 1px solid rgba(55, 98, 132, 0.58);
  background: linear-gradient(145deg, rgba(14, 37, 61, 0.82), rgba(8, 24, 41, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(88px, 1fr) minmax(88px, 1fr) minmax(94px, 1fr);
  gap: 0.44rem;
  padding: 0.95rem;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  top: -98px;
  right: -78px;
  background: radial-gradient(circle, rgba(37, 181, 209, 0.2), transparent 70%);
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  left: -72px;
  bottom: -82px;
  background: radial-gradient(circle, rgba(29, 188, 176, 0.18), transparent 68%);
}

.hero-surface {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(81, 126, 158, 0.56);
  border-radius: 12px;
  background: rgba(9, 30, 48, 0.86);
  box-shadow: 0 14px 28px rgba(3, 12, 24, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
}

.hero-surface p {
  margin: 0;
}

.hero-surface-main {
  grid-column: 1 / 10;
  grid-row: 1;
  padding: 0.78rem 0.84rem;
  animation: hero-float 8.2s ease-in-out infinite;
}

.hero-surface-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #d7ecff;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-surface-status {
  padding: 0.16rem 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(67, 153, 148, 0.66);
  background: rgba(13, 57, 65, 0.55);
  color: #90efe4;
  font-size: 0.7rem;
}

.hero-kpis {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
}

.hero-kpi {
  padding: 0.48rem 0.54rem;
  border-radius: 9px;
  border: 1px solid rgba(68, 111, 145, 0.45);
  background: rgba(7, 22, 39, 0.7);
}

.hero-kpi span {
  display: block;
  color: #95b5d2;
  font-size: 0.72rem;
  line-height: 1.3;
}

.hero-kpi strong {
  display: block;
  margin-top: 0.18rem;
  color: #e9f5ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.hero-surface-report {
  grid-column: 1 / 9;
  grid-row: 2 / 4;
  padding: 0.72rem 0.78rem;
  animation: hero-drift 9.4s ease-in-out infinite;
}

.hero-surface-report p,
.hero-surface-web p {
  color: #c8ddf1;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-bars {
  margin-top: 0.5rem;
  height: 100%;
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 0.3rem;
}

.hero-bars span {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(56, 182, 203, 0.88), rgba(35, 140, 165, 0.7));
}

.hero-bars span:nth-child(1) {
  height: 42%;
}

.hero-bars span:nth-child(2) {
  height: 68%;
}

.hero-bars span:nth-child(3) {
  height: 82%;
}

.hero-bars span:nth-child(4) {
  height: 58%;
}

.hero-surface-web {
  grid-column: 10 / 13;
  grid-row: 1;
  padding: 0.68rem 0.72rem;
  justify-content: center;
  animation: hero-drift 8.6s ease-in-out infinite;
}

.hero-lines {
  margin-top: 0.44rem;
  display: grid;
  gap: 0.3rem;
}

.hero-lines span {
  display: block;
  height: 0.33rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(74, 182, 205, 0.78), rgba(34, 122, 150, 0.38));
}

.hero-lines span:nth-child(2) {
  width: 82%;
}

.hero-lines span:nth-child(3) {
  width: 64%;
}

.hero-charts {
  display: contents;
}

.hero-chart {
  min-height: 78px;
  padding: 0.42rem 0.48rem 0.46rem;
  border-radius: 10px;
  border: 1px solid rgba(73, 122, 158, 0.52);
  background: rgba(8, 27, 44, 0.82);
  box-shadow: 0 10px 20px rgba(3, 12, 24, 0.34);
  z-index: 1;
}

.hero-chart-bar {
  grid-column: 9 / 13;
  grid-row: 2;
}

.hero-chart-line {
  grid-column: 9 / 13;
  grid-row: 3;
}

.hero-chart-donut {
  grid-column: 1 / 7;
  grid-row: 4;
}

.hero-chart-area {
  grid-column: 7 / 13;
  grid-row: 4;
}

.hero-chart p {
  margin: 0;
  color: #c4dbef;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.hero-widget-bars {
  margin-top: 0.34rem;
  height: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 0.25rem;
}

.hero-widget-bars span {
  display: block;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(72, 199, 220, 0.9), rgba(36, 132, 157, 0.74));
}

.hero-widget-bars span:nth-child(1) {
  height: 44%;
}

.hero-widget-bars span:nth-child(2) {
  height: 79%;
}

.hero-widget-bars span:nth-child(3) {
  height: 61%;
}

.hero-widget-bars span:nth-child(4) {
  height: 90%;
}

.hero-widget-line {
  margin-top: 0.34rem;
  height: 44px;
  border-radius: 7px;
  position: relative;
  border: 1px solid rgba(71, 119, 153, 0.4);
  background: linear-gradient(180deg, rgba(14, 40, 63, 0.78), rgba(9, 27, 44, 0.75));
}

.hero-widget-line .dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #81e6fd;
  box-shadow: 0 0 0 2px rgba(68, 172, 196, 0.2);
}

.hero-widget-line .dot-1 {
  left: 8%;
  bottom: 10px;
}

.hero-widget-line .dot-2 {
  left: 34%;
  bottom: 20px;
}

.hero-widget-line .dot-3 {
  left: 61%;
  bottom: 16px;
}

.hero-widget-line .dot-4 {
  left: 86%;
  bottom: 27px;
}

.hero-widget-line .seg {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(95, 217, 234, 0.88), rgba(72, 169, 197, 0.55));
  transform-origin: left center;
}

.hero-widget-line .seg-1 {
  left: 10%;
  bottom: 13px;
  width: 26%;
  transform: rotate(16deg);
}

.hero-widget-line .seg-2 {
  left: 36%;
  bottom: 22px;
  width: 26%;
  transform: rotate(-8deg);
}

.hero-widget-line .seg-3 {
  left: 63%;
  bottom: 18px;
  width: 24%;
  transform: rotate(22deg);
}

.hero-widget-donut {
  margin-top: 0.42rem;
  height: 48px;
  display: grid;
  place-items: center start;
}

.hero-widget-donut span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  position: relative;
  background: conic-gradient(#4ad3dc 0deg 125deg, #2b95b6 125deg 265deg, #1c6e98 265deg 360deg);
}

.hero-widget-donut span::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: rgba(7, 24, 40, 0.92);
}

.hero-widget-area {
  margin-top: 0.34rem;
  height: 44px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(71, 119, 153, 0.4);
  background: linear-gradient(180deg, rgba(14, 40, 63, 0.78), rgba(9, 27, 44, 0.75));
}

.hero-widget-area span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(76, 198, 221, 0.55), rgba(38, 131, 157, 0.18));
  clip-path: polygon(0 100%, 0 70%, 20% 64%, 38% 69%, 58% 49%, 78% 56%, 100% 34%, 100% 100%);
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes hero-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero-panel,
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(30, 208, 191, 0.18), transparent 45%);
  pointer-events: none;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.hero-panel h2 {
  font-size: 1rem;
  color: #c9e8ff;
  margin-bottom: 0;
}

.dashboard-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #89f0e5;
  border: 1px solid rgba(67, 153, 148, 0.65);
  background: rgba(13, 57, 65, 0.55);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.metric-card {
  padding: 0.82rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(68, 111, 145, 0.45);
  background: rgba(7, 22, 39, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.metric-title {
  color: #95b5d2;
  font-size: 0.82rem;
}

.metric-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0;
  color: #e9f5ff;
}

.status-ok {
  color: #8fe8d8;
}

.section-head {
  margin-bottom: 2.1rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  margin-bottom: 0.35rem;
}

.section-head p {
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.68;
}

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

.card {
  padding: 1.35rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.card p {
  color: #b4cae0;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card:hover {
  border-color: rgba(78, 130, 168, 0.58);
  box-shadow: 0 20px 42px rgba(2, 10, 20, 0.48);
}

.icon {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border-radius: 0.75rem;
  color: var(--teal);
  background: rgba(20, 60, 80, 0.5);
  border: 1px solid rgba(43, 94, 122, 0.6);
}

.icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.product-section .container {
  display: grid;
  gap: 1rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.product-image {
  margin: 0;
  padding: 0.45rem;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.product-image img {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
  border: 1px solid rgba(63, 106, 139, 0.6);
  background: linear-gradient(140deg, rgba(16, 55, 85, 0.42), rgba(5, 24, 39, 0.6));
}

.product-features {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.product-features h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  margin-bottom: 0.1rem;
}

.product-features > p {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0.45rem 0 0;
  display: grid;
  gap: 0.62rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #c7e0f6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(30, 208, 191, 0.12);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.screenshot-card {
  appearance: none;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0.65rem;
  border-radius: 15px;
  border: 1px solid var(--card-border);
  background: linear-gradient(145deg, rgba(16, 41, 68, 0.88), rgba(10, 30, 51, 0.9));
  box-shadow: var(--shadow);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: clamp(126px, 10.5vw, 164px);
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
  border: 1px solid rgba(63, 106, 139, 0.65);
  background: linear-gradient(140deg, rgba(16, 55, 85, 0.42), rgba(5, 24, 39, 0.6));
}

.screenshot-card-title {
  display: block;
  margin: 0.72rem 0 0.2rem;
  font-size: 0.94rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #d1e7fa;
  font-weight: 600;
}

.screenshot-card:focus-visible {
  outline: 2px solid rgba(67, 200, 188, 0.8);
  outline-offset: 2px;
}

.screenshot-card.is-active {
  border-color: rgba(84, 171, 201, 0.76);
  box-shadow: 0 16px 34px rgba(8, 26, 45, 0.55), 0 0 0 1px rgba(35, 137, 161, 0.35);
}

.screenshot-card.is-active img {
  border-color: rgba(100, 186, 206, 0.9);
}

.product-image:hover,
.screenshot-card:hover {
  transform: scale(1.012);
  border-color: rgba(88, 154, 194, 0.66);
  box-shadow: 0 14px 30px rgba(8, 26, 45, 0.52);
}

body.lightbox-open {
  overflow: hidden;
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.2vw, 1.4rem);
  background: rgba(2, 11, 22, 0.78);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.screenshot-lightbox[hidden] {
  display: none;
}

.screenshot-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.screenshot-lightbox-dialog {
  position: relative;
  width: min(980px, 100%);
  padding: 0.74rem;
  border-radius: 16px;
  border: 1px solid rgba(73, 118, 155, 0.6);
  background: linear-gradient(145deg, rgba(12, 35, 57, 0.95), rgba(7, 24, 42, 0.95));
  box-shadow: 0 24px 48px rgba(1, 8, 16, 0.62);
}

.screenshot-lightbox-close {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  border: 1px solid rgba(84, 126, 160, 0.62);
  border-radius: 9px;
  background: rgba(10, 30, 48, 0.92);
  color: #d5e8f9;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.34rem 0.6rem;
  cursor: pointer;
}

.screenshot-lightbox-close:hover,
.screenshot-lightbox-close:focus-visible {
  border-color: rgba(117, 172, 205, 0.75);
  background: rgba(13, 37, 58, 0.96);
}

.screenshot-lightbox-close:focus-visible {
  outline: 2px solid rgba(92, 211, 224, 0.7);
  outline-offset: 2px;
}

.screenshot-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.62rem;
}

.screenshot-lightbox-figure img {
  display: block;
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(72, 118, 152, 0.72);
  background: linear-gradient(140deg, rgba(12, 40, 61, 0.82), rgba(7, 24, 40, 0.86));
}

.screenshot-lightbox-figure figcaption {
  color: #d6e9fa;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0 0.12rem;
}

.pricing-section .section-head {
  margin-bottom: 1.8rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-height: 100%;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
}

.pricing-card > p:not(.pricing-badge) {
  color: #b7cee3;
}

.pricing-badge {
  width: fit-content;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 153, 171, 0.7);
  background: rgba(20, 70, 79, 0.55);
  color: #9cece1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pricing-card-featured {
  border-color: rgba(79, 155, 181, 0.75);
  box-shadow: 0 20px 42px rgba(3, 13, 26, 0.54), 0 0 0 1px rgba(44, 123, 148, 0.35);
  transform: translateY(-6px);
}

.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: grid;
  gap: 0.58rem;
}

.pricing-points li {
  position: relative;
  padding-left: 1.12rem;
  color: #cee3f7;
}

.pricing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(30, 208, 191, 0.14);
}

.pricing-cta {
  margin-top: 0.6rem;
  width: 100%;
}

.about {
  padding-top: 4.8rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 40, 65, 0.82), rgba(7, 23, 41, 0.85));
  border: 1px solid rgba(49, 89, 120, 0.5);
}

.about p {
  color: #bdd3e8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-helper {
  color: #b8d2e9;
  font-size: 0.93rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(10, 30, 51, 0.62);
  border: 1px solid rgba(53, 91, 122, 0.55);
}

.contact-form label {
  font-weight: 600;
  display: grid;
  gap: 0.4rem;
  color: #d7ebff;
}

.contact-submit-note {
  margin-top: 0.1rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #91aac3;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(56, 96, 128, 0.66);
  border-radius: 10px;
  background: rgba(5, 20, 35, 0.8);
  color: #e9f3ff;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(30, 208, 191, 0.36);
  border-color: rgba(34, 164, 159, 0.9);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.btn-whatsapp {
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 1rem;
  background: linear-gradient(135deg, #2cd46e, #22b95f);
  border-color: rgba(69, 181, 106, 0.9);
  color: #062313;
  box-shadow: 0 12px 28px rgba(27, 162, 83, 0.34);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  box-shadow: 0 16px 32px rgba(27, 162, 83, 0.42);
  background: linear-gradient(135deg, #33dc76, #25c366);
}

.contact-person {
  font-weight: 700;
  color: #e4f3ff;
  line-height: 1.45;
}

.contact-info p {
  color: #b7cee3;
}

.contact-info a {
  color: #d4eeff;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: #a5f0e5;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(50, 92, 125, 0.45);
  background: rgba(4, 13, 24, 0.7);
}

.mini-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 35;
  width: min(760px, calc(100vw - 1.6rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.82rem;
  border-radius: 14px;
  border: 1px solid rgba(64, 106, 141, 0.56);
  background: linear-gradient(145deg, rgba(9, 26, 44, 0.95), rgba(7, 21, 37, 0.94));
  box-shadow: 0 18px 38px rgba(4, 11, 20, 0.56);
  backdrop-filter: blur(6px);
  transform: translate(-50%, 16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.mini-cta p {
  color: #d8eafe;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.mini-cta-actions {
  display: flex;
  gap: 0.58rem;
  align-items: center;
  flex-shrink: 0;
}

.mini-cta .btn {
  min-height: 2.55rem;
  padding: 0.62rem 0.88rem;
  font-size: 0.9rem;
}

.mini-cta-contact {
  border-color: #3f6785;
}

.mini-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mini-cta.is-visible ~ .floating-whatsapp {
  bottom: 5.9rem;
}

.footer-grid {
  padding: 1.4rem 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #e9f4ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #afc7df;
}

.copyright {
  color: #85a5c4;
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(0.8rem, 1.8vw, 1.4rem);
  bottom: clamp(0.85rem, 2.2vw, 1.5rem);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 185, 116, 0.9);
  background: linear-gradient(135deg, #2ecf6c, #20b45b);
  color: #042413;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(14, 63, 36, 0.4), 0 0 0 1px rgba(34, 121, 69, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-whatsapp svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex-shrink: 0;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 18px 32px rgba(14, 63, 36, 0.48), 0 0 0 1px rgba(34, 121, 69, 0.28);
}

.floating-whatsapp:focus-visible {
  outline: 2px solid rgba(152, 244, 181, 0.9);
  outline-offset: 3px;
}

@media (min-width: 1024px) {
  .floating-whatsapp {
    transform: scale(0.92);
    transform-origin: bottom right;
    padding: 0.64rem 0.9rem;
    font-size: 0.94rem;
    box-shadow: 0 10px 22px rgba(14, 63, 36, 0.34), 0 0 0 1px rgba(34, 121, 69, 0.18);
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    transform: scale(0.92) translateY(-2px);
    box-shadow: 0 14px 26px rgba(14, 63, 36, 0.4), 0 0 0 1px rgba(34, 121, 69, 0.24);
  }
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.4rem;
  border-radius: 8px;
  border: 1px solid rgba(59, 98, 130, 0.6);
  background: rgba(10, 28, 48, 0.8);
  color: #cde4fb;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0.28rem auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .product-layout,
  .contact-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-info {
    order: -1;
  }

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

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

  .hero {
    padding-top: 4.5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 360px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: auto minmax(82px, 1fr) minmax(82px, 1fr) minmax(90px, 1fr);
  }

  .hero-surface-main {
    grid-column: 1 / 7;
  }

  .hero-surface-web {
    grid-column: 7 / 9;
    grid-row: 1;
  }

  .hero-surface-report {
    grid-column: 1 / 6;
    grid-row: 2 / 4;
  }

  .hero-chart-bar {
    grid-column: 6 / 9;
    grid-row: 2;
  }

  .hero-chart-line {
    grid-column: 6 / 9;
    grid-row: 3;
  }

  .hero-chart-donut {
    grid-column: 1 / 5;
    grid-row: 4;
  }

  .hero-chart-area {
    grid-column: 5 / 9;
    grid-row: 4;
  }

  .hero-surface-report .hero-bars {
    min-height: 86px;
  }
}

@media (max-width: 760px) {
  .logo-image {
    width: 2rem;
    height: 2rem;
  }

  .nav-wrap {
    grid-template-columns: auto auto auto;
    gap: 0.7rem;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.7rem);
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(53, 95, 130, 0.6);
    background: rgba(8, 25, 44, 0.98);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav a {
    padding: 0.6rem 0.45rem;
  }

  .nav.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .btn-nav {
    display: none;
  }

  .section {
    padding: 4.7rem 0;
  }

  .hero {
    padding-top: 4.2rem;
    padding-bottom: 2.4rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-capabilities {
    margin-top: 0.95rem;
    gap: 0.45rem;
  }

  .hero-capabilities li {
    font-size: 0.76rem;
    padding: 0.36rem 0.62rem;
  }

  .hero-visual {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 0.34rem;
    padding: 0.72rem;
  }

  .hero-surface-main {
    grid-column: 1 / 3;
    grid-row: auto;
    animation: none;
  }

  .hero-surface-web {
    grid-column: 1 / 3;
    grid-row: auto;
    animation: none;
  }

  .hero-surface-report {
    grid-column: 1 / 3;
    grid-row: auto;
    animation: none;
  }

  .hero-chart-bar {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .hero-chart-line {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .hero-chart-donut {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .hero-chart-area {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .hero-chart {
    min-height: 66px;
    padding: 0.34rem 0.38rem 0.4rem;
  }

  .hero-chart p {
    font-size: 0.58rem;
  }

  .hero-widget-bars,
  .hero-widget-line,
  .hero-widget-area {
    margin-top: 0.26rem;
    height: 30px;
  }

  .hero-widget-donut {
    margin-top: 0.26rem;
    height: 30px;
  }

  .hero-widget-donut span {
    width: 24px;
    height: 24px;
  }

  .hero-widget-donut span::after {
    inset: 6px;
  }

  .hero-surface-report .hero-bars {
    min-height: 74px;
  }

  .screenshot-lightbox-dialog {
    width: 100%;
    padding: 0.56rem;
  }

  .screenshot-lightbox-figure {
    gap: 0.5rem;
  }

  .screenshot-lightbox-figure img {
    max-height: 72vh;
  }

  .screenshot-lightbox-figure figcaption {
    font-size: 0.88rem;
  }

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

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

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

  .product-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mini-cta {
    width: calc(100vw - 1rem);
    bottom: 0.62rem;
    padding: 0.62rem 0.65rem;
    display: grid;
    justify-items: stretch;
    gap: 0.58rem;
  }

  .mini-cta p {
    font-size: 0.86rem;
    text-align: center;
  }

  .mini-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mini-cta .btn {
    width: 100%;
    min-height: 2.45rem;
    font-size: 0.84rem;
  }

  .mini-cta.is-visible ~ .floating-whatsapp {
    bottom: 7.9rem;
  }

  .floating-whatsapp {
    right: 0.72rem;
    bottom: 0.78rem;
    padding: 0.72rem;
    min-height: 2.95rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .copyright {
    white-space: normal;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.trust-strip {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.trust-strip-inner p {
  margin: 0;
  font-size: 14px;
  color: #9fb3c8;
  letter-spacing: 0.5px;
}
