:root {
  --deep-navy: #0a0f1c;
  --dark-blue: #0b132b;
  --primary-blue: #007bff;
  --cyan: #00d4ff;
  --green: #00e5a8;
  --light-gray: #e5e7eb;
  --medium-gray: #6b7280;
  --white: #ffffff;
  --ink: #111827;
  --muted: #94a3b8;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.16);
  --gradient: linear-gradient(135deg, #007bff, #00e5a8);
  --dark-gradient: linear-gradient(135deg, #0a0f1c, #0b132b);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", sans-serif;
  color: var(--white);
  background: var(--deep-navy);
  letter-spacing: 0;
}

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

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

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 12px clamp(20px, 5vw, 54px);
  background: rgba(10, 15, 28, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
}

.brand-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(0, 212, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(0, 212, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(10, 15, 28, 0.94), rgba(11, 19, 43, 0.98));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 0 7px rgba(255, 255, 255, 0.03),
    0 0 34px rgba(0, 229, 168, 0.16);
  overflow: hidden;
}

.brand-emblem::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
  pointer-events: none;
}

.brand-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 123, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 123, 255, 0.22), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(0, 229, 168, 0.13), transparent 30%),
    var(--dark-gradient);
}

.section-light {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

section {
  padding: 96px 0;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero-grid,
.solution-grid,
.about-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
}

.eyebrow.dark {
  color: var(--primary-blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
}

.section-light p {
  color: #4b5563;
}

.hero-copy p {
  max-width: 760px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 123, 255, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section-light .btn-secondary,
.price-card .btn-secondary {
  border-color: #d1d5db;
  background: var(--white);
  color: var(--dark-blue);
}

.btn-whatsapp {
  background: #16a34a;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(22, 163, 74, 0.24);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbeafe;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard-card,
.phone-mockup,
.solution-shot,
.focus-card {
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 26px;
  transform-style: preserve-3d;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-topbar div {
  display: flex;
  gap: 7px;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.dashboard-topbar span:nth-child(2) {
  background: var(--green);
}

.dashboard-topbar span:nth-child(3) {
  background: #f59e0b;
}

.dashboard-map {
  position: relative;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 15, 28, 0.72);
}

.dashboard-map::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.18), transparent);
  animation: scanMap 5.8s ease-in-out infinite;
  pointer-events: none;
}

.dashboard-map img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  opacity: 0.92;
}

.dashboard-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 15, 28, 0.86));
  pointer-events: none;
}

.dashboard-map figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-map strong {
  color: var(--white);
  font-size: 1rem;
}

.dashboard-map span {
  max-width: 240px;
  color: #cbd5e1;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid article,
.feature-card,
.industry-card,
.validation-card,
.price-card,
.steps article {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid article {
  padding: 16px;
}

.metric-grid small,
.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.metric-grid strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.8rem;
}

.positive {
  color: var(--green) !important;
}

.chart-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(10, 15, 28, 0.7);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 190px;
}

.chart-bars span {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 6px 6px;
  background: var(--gradient);
  transform-origin: bottom;
  animation: barPulse 3.8s ease-in-out infinite;
}

.chart-bars span:nth-child(2n) {
  animation-delay: 0.35s;
}

.chart-bars span:nth-child(3n) {
  animation-delay: 0.7s;
}

.activity-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.activity-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #e2e8f0;
  font-size: 0.85rem;
}

.activity-list b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 229, 168, 0.55);
  animation: livePulse 2.2s ease-out infinite;
}

.ops-feed {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 212, 255, 0.07);
}

.ops-feed strong {
  color: #e2e8f0;
  font-size: 0.86rem;
}

.ops-feed small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.76rem;
}

.feed-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 229, 168, 0.55);
  animation: livePulse 2s ease-out infinite;
}

.phone-mockup {
  position: absolute;
  right: -12px;
  bottom: 18px;
  z-index: 3;
  width: 178px;
  padding: 34px 18px 18px;
  border-radius: 34px;
  text-align: center;
}

.phone-camera {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.phone-mockup p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.phone-mockup strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1.3rem;
}

.phone-mockup button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
}

.problem-grid,
.security-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.problem-grid article,
.security-list span,
.benefits-grid span,
.service-pills span {
  padding: 17px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: var(--white);
  color: #1f2937;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.solution-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
  align-items: stretch;
}

.solution-shot {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.solution-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.94;
}

.solution-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 15, 28, 0.9));
}

.solution-shot figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.solution-shot strong {
  color: var(--white);
  font-size: 1rem;
}

.solution-shot span {
  color: #cbd5e1;
  font-size: 0.86rem;
  line-height: 1.45;
}

.map-shot {
  grid-row: span 2;
}

.ticket-shot {
  min-height: 180px;
}

.solution-pills,
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.solution-pills {
  align-content: start;
  margin-top: 0;
  padding: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.solution-pills span {
  padding: 10px 12px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dbeafe;
  font-size: 0.86rem;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.card-grid,
.pricing-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.feature-card {
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.industry-card:hover,
.validation-card:hover,
.price-card:hover,
.steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.feature-card i,
.industry-card i,
.validation-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(0, 229, 168, 0.18));
  color: var(--primary-blue);
}

.feature-card svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.industry-card svg,
.validation-card svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.industries-section {
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
  border-color: rgba(0, 212, 255, 0.38);
}

.industry-card p {
  margin-bottom: 18px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.industry-card span {
  display: block;
  padding: 12px;
  border: 1px solid rgba(0, 229, 168, 0.18);
  border-radius: 14px;
  background: rgba(0, 229, 168, 0.08);
  color: #d1fae5;
  font-size: 0.86rem;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefits-grid span {
  border-color: var(--panel-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.desk-grid,
.audit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.desk-benefits,
.audit-tags,
.evidence-grid {
  display: grid;
  gap: 12px;
}

.desk-visuals {
  display: grid;
  gap: 16px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.desk-benefits {
  grid-template-columns: repeat(2, 1fr);
}

.desk-benefits span,
.audit-tags span,
.evidence-grid span {
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: var(--white);
  color: #1f2937;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.validation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.validation-card {
  padding: 26px;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.validation-card.highlighted {
  border-color: rgba(0, 229, 168, 0.7);
  background: linear-gradient(180deg, rgba(0, 123, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.validation-card p {
  color: #cbd5e1;
  font-size: 0.96rem;
}

.validation-card ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.validation-card li {
  position: relative;
  padding-left: 24px;
  color: #dbeafe;
  line-height: 1.45;
}

.validation-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.audit-grid {
  grid-template-columns: 0.85fr 1fr;
  align-items: stretch;
}

.audit-grid > div:first-child {
  align-self: center;
}

.audit-panel {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.audit-panel h3 {
  margin-bottom: 18px;
}

.audit-tags,
.evidence-grid {
  grid-template-columns: repeat(2, 1fr);
}

.audit-tags span,
.evidence-grid span {
  padding: 12px 13px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.88rem;
  box-shadow: none;
}

.evidence-panel {
  grid-column: 2;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps article {
  padding: 22px;
  background: var(--white);
  color: var(--ink);
}

.steps strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-blue);
  font-size: 0.9rem;
}

.pricing-section {
  position: relative;
}

.price-card {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card.recommended {
  border-color: rgba(0, 229, 168, 0.75);
  background: linear-gradient(180deg, rgba(0, 123, 255, 0.18), rgba(255, 255, 255, 0.08));
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0, 229, 168, 0.18);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card p {
  color: var(--muted);
}

.price-card .plan-extra {
  margin-top: -10px;
  margin-bottom: 18px;
  color: #dbeafe;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-card > strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.price-card > strong span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 350px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #dbeafe;
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.addon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  text-align: center;
}

.addon strong {
  color: var(--green);
}

.user-policy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.user-policy article {
  padding: 24px;
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.user-policy h3 {
  color: var(--white);
}

.user-policy p {
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 0.96rem;
}

.user-policy p:last-child {
  margin-bottom: 0;
}

.user-policy strong {
  color: var(--green);
}

.focus-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  text-align: center;
}

.focus-card p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

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

.service-pills {
  margin-top: 0;
}

.service-pills span {
  border-radius: 999px;
}

.about-grid {
  align-items: start;
}

.founder-note {
  color: #9fb2ca;
  font-size: 0.96rem;
}

.final-cta {
  padding: 98px 0;
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.92), rgba(0, 229, 168, 0.92)),
    var(--dark-blue);
  text-align: center;
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.88);
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
}

.site-footer {
  padding: 42px 0;
  background: #070b14;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.9fr 0.8fr 1.35fr;
  gap: 28px;
  align-items: start;
}

.footer-grid p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-grid a {
  display: block;
  color: #dbeafe;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.footer-brand strong {
  color: var(--white);
}

.footer-links h4 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-brand a {
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-brand a:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.footer-social a {
  position: relative;
  padding-left: 16px;
}

.footer-social a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.footer-copy {
  justify-self: end;
  max-width: 310px;
  text-align: right;
}

.page-shell {
  min-height: 100vh;
  background: var(--deep-navy);
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 78px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.45rem, 6vw, 4.6rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.legal-content {
  max-width: 920px;
  padding: 14px 0;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--dark-blue);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content a {
  color: var(--primary-blue);
  font-weight: 800;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.page-card h3 {
  color: var(--dark-blue);
}

.page-card p {
  color: #475569;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.contact-form,
.contact-aside {
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: #1f2937;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 15px;
  color: #111827;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 123, 255, 0.18);
  border-color: var(--primary-blue);
}

.form-note {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.contact-aside h2 {
  color: var(--dark-blue);
}

.contact-aside p {
  color: #475569;
}

.contact-aside a:not(.btn) {
  color: var(--primary-blue);
  font-weight: 800;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.feature-card,
.industry-card,
.validation-card,
.price-card,
.page-card,
.photo-card,
.solution-shot,
.dashboard-card {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.feature-card::after,
.industry-card::after,
.validation-card::after,
.price-card::after,
.page-card::after,
.photo-card::after,
.solution-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 212, 255, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: 3;
}

.feature-card.is-tilting::after,
.industry-card.is-tilting::after,
.validation-card.is-tilting::after,
.price-card.is-tilting::after,
.page-card.is-tilting::after,
.photo-card.is-tilting::after,
.solution-shot.is-tilting::before {
  opacity: 1;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes scanMap {
  0%,
  48% {
    left: -35%;
  }
  78%,
  100% {
    left: 110%;
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(1);
    filter: saturate(1);
  }
  50% {
    transform: scaleY(1.07);
    filter: saturate(1.18);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 168, 0.58);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(0, 229, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 168, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    background: rgba(10, 15, 28, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid,
  .solution-grid,
  .about-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .solution-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 80px;
  }

  .card-grid,
  .pricing-grid,
  .benefits-grid,
  .industries-grid,
  .validation-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .desk-grid,
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .user-policy {
    grid-template-columns: 1fr;
  }

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

  .evidence-panel {
    grid-column: auto;
  }

  .price-card.recommended {
    transform: none;
  }

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

  .footer-copy {
    justify-self: start;
    text-align: left;
  }

  .page-card-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .page-hero {
    padding-top: 128px;
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 82px;
  }

  .main-nav {
    top: 82px;
  }

  .brand {
    min-width: 86px;
  }

  .brand-emblem {
    width: 62px;
    height: 62px;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.3),
      0 0 0 5px rgba(255, 255, 255, 0.03),
      0 0 26px rgba(0, 229, 168, 0.14);
  }

  .brand-logo {
    width: 51px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
  }

  .hero-actions,
  .addon {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-grid,
  .chart-panel,
  .solution-gallery,
  .card-grid,
  .pricing-grid,
  .benefits-grid,
  .industries-grid,
  .validation-grid,
  .desk-benefits,
  .photo-grid,
  .audit-tags,
  .evidence-grid,
  .steps,
  .problem-grid,
  .security-list {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    min-height: 150px;
  }

  .phone-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(230px, 100%);
    margin: -48px auto 0;
  }

  .map-shot {
    grid-row: auto;
  }

  .solution-shot,
  .ticket-shot {
    min-height: 230px;
  }

  .price-card ul {
    min-height: auto;
  }
}
