:root {
  --bg: #0F1020;
  --panel: #17182B;
  --panel-2: #20223A;
  --primary: #6C5CE7;
  --cyan: #00D2FF;
  --text: #F5F6FA;
  --muted: #A6A8C3;
  --border: #2D3050;
  --success: #00B86B;
  --warning: #FFB020;
  --danger: #D93636;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(108, 92, 231, 0.08), transparent 42%, rgba(0, 210, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(245, 246, 250, 0.025) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(245, 246, 250, 0.018) 0 1px, transparent 1px 96px);
}

.shooting-star {
  position: fixed;
  top: 14%;
  left: -160px;
  z-index: -1;
  width: 150px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.2), rgba(245, 246, 250, 0.95));
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.7));
  opacity: 0;
  transform: rotate(-18deg);
  animation: shooting-star 12s ease-in-out infinite;
  pointer-events: none;
}

.shooting-star::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.9);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  overflow: hidden;
}

.brand-mark img {
  width: 54px;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.24));
}

.program-logo img {
  width: 78px;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.22));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
}

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

.main-nav .nav-buy {
  border-color: rgba(0, 184, 107, 0.36);
  background: linear-gradient(135deg, rgba(0, 184, 107, 0.22), rgba(0, 210, 255, 0.14));
  color: var(--text);
  font-weight: 800;
}

.main-nav .nav-buy:hover,
.main-nav .nav-buy:focus-visible {
  border-color: rgba(0, 210, 255, 0.62);
  background: linear-gradient(135deg, rgba(0, 184, 107, 0.32), rgba(0, 210, 255, 0.22));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.hero-slogan {
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.16;
}

.hero-text,
.section-heading p,
.cta-inner p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(108, 92, 231, 0.34);
}

.btn-primary[href*="kaufen"],
.purchase-page .btn-primary {
  background: linear-gradient(135deg, var(--success), #00D2FF);
  box-shadow: 0 16px 38px rgba(0, 184, 107, 0.24);
}

.btn-secondary {
  background: rgba(32, 34, 58, 0.8);
  border-color: var(--border);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.72);
}

.hero-metrics dt {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-shell,
.contrast-card,
.feature-card,
.insight-panel,
.preview-card,
.cta-inner,
.contact-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
}

.dashboard-shell {
  overflow: hidden;
  min-height: 620px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--muted);
  font-size: 13px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: var(--warning);
}

.window-bar span:nth-child(3) {
  background: var(--success);
}

.window-bar strong {
  margin-left: 10px;
  color: var(--text);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 154px 1fr;
  min-height: 574px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  background: #121426;
}

.mock-sidebar span {
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 13px;
}

.mock-sidebar .active {
  background: rgba(108, 92, 231, 0.22);
  color: var(--text);
}

.mock-content {
  display: grid;
  gap: 16px;
  padding: 18px;
}

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

.kpi-row article,
.chart-card,
.table-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel-2);
}

.kpi-row article {
  min-height: 118px;
  padding: 16px;
}

.kpi-row small,
.kpi-row em,
.table-head,
.preview-top {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.kpi-row strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

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

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

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

.chart-card {
  padding: 18px;
}

.chart-head,
.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.chart-head b {
  color: var(--cyan);
}

.bar-chart,
.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 178px;
  margin-top: 22px;
  border-bottom: 1px solid var(--border);
}

.bar-chart i,
.mini-chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--primary));
}

.table-card {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.table-row:last-child {
  border-bottom: 0;
}

.pill {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 9px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 16px 0 0;
}

.solution-grid,
.benefit-layout,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contrast-card {
  padding: 28px;
}

.contrast-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contrast-card li {
  border-left: 3px solid var(--danger);
  padding-left: 12px;
}

.contrast-card.accent {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.24), rgba(0, 210, 255, 0.1)), var(--panel);
}

.module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.module-cloud span {
  border: 1px solid rgba(0, 210, 255, 0.38);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(15, 16, 32, 0.62);
  color: var(--text);
}

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

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-card span {
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
}

.feature-card h3 {
  margin-top: 34px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 64px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(32, 34, 58, 0.74);
}

.benefit-list b {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(0, 184, 107, 0.1);
}

.insight-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 36px;
  text-align: center;
}

.insight-panel p,
.insight-panel small {
  color: var(--muted);
}

.insight-panel strong {
  font-size: 28px;
}

.radial {
  display: grid;
  place-items: center;
  width: min(270px, 72vw);
  aspect-ratio: 1;
  margin: 24px 0;
  border-radius: 50%;
  background: conic-gradient(var(--success) 0 72%, var(--border) 72% 100%);
}

.radial span {
  display: grid;
  place-items: center;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 42px;
  font-weight: 800;
}

.preview-grid {
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
}

.preview-card {
  min-height: 300px;
  padding: 18px;
  background: var(--panel);
}

.preview-card.large {
  min-height: 360px;
}

.preview-top b {
  width: 74px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 210, 255, 0.34);
}

.mock-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mock-list i {
  display: block;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(108, 92, 231, 0.22), rgba(32, 34, 58, 0.92));
}

.invoice-lines {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.invoice-lines i,
.invoice-lines strong {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: var(--panel-2);
}

.invoice-lines i:nth-child(2) {
  width: 76%;
}

.invoice-lines i:nth-child(3) {
  width: 88%;
}

.invoice-lines strong {
  width: 48%;
  height: 42px;
  margin-top: 28px;
  background: rgba(108, 92, 231, 0.5);
}

.mini-chart {
  height: 214px;
  margin-top: 34px;
}

.cta-section {
  padding-top: 54px;
}

.cta-inner {
  padding: clamp(28px, 6vw, 58px);
  background:
    linear-gradient(100deg, rgba(108, 92, 231, 0.24), rgba(0, 210, 255, 0.1)),
    var(--panel);
}

.cta-inner p {
  max-width: 720px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label,
.contact-form .full {
  grid-column: span 2;
}

.contact-form label:not(.full) {
  grid-column: span 1;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1);
}

.form-note {
  grid-column: span 2;
  margin: 0;
  min-height: 24px;
  color: var(--success);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.legal-links {
  display: flex;
  flex: 1 0 100%;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 48, 80, 0.65);
  font-size: 14px;
}

.legal-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.purchase-page {
  background: #0F1020;
}

.legal-page {
  background: #0F1020;
}

.legal-hero {
  display: grid;
  justify-items: center;
  padding-top: 58px;
  padding-bottom: 34px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(54px, 8vw, 92px);
}

.legal-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 36px;
}

.legal-card,
.legal-note {
  border: 1px solid rgba(0, 210, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 184, 107, 0.08), rgba(108, 92, 231, 0.08)),
    rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
}

.legal-card {
  min-height: 220px;
  padding: clamp(22px, 4vw, 34px);
  animation: fade-up 620ms ease both;
}

.legal-card:nth-child(2) {
  animation-delay: 80ms;
}

.legal-card:nth-child(3) {
  animation-delay: 160ms;
}

.legal-card:nth-child(4) {
  animation-delay: 240ms;
}

.legal-main,
.legal-note {
  grid-column: span 2;
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.legal-card p,
.legal-data p,
.legal-note p {
  color: var(--muted);
}

.legal-data {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.legal-data p {
  margin: 0;
}

.legal-data strong {
  color: var(--text);
}

.legal-note {
  padding: 22px;
  border-color: rgba(255, 176, 32, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.1), rgba(108, 92, 231, 0.08)),
    rgba(23, 24, 43, 0.92);
}

.legal-note strong {
  color: var(--warning);
}

.legal-note p {
  margin: 8px 0 0;
}

.purchase-hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 26px;
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 52px;
  text-align: center;
}

.purchase-hero::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: min(760px, 88vw);
  height: 260px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1), rgba(0, 184, 107, 0.04) 44%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  animation: hero-breathe 5200ms ease-in-out infinite;
}

.purchase-hero-copy,
.offer-card,
.purchase-feature-grid article,
.purchase-panel,
.timeline article {
  animation: rise-in 650ms ease both;
}

.purchase-page .site-header {
  animation: header-drop 560ms ease both;
}

.purchase-page .purchase-hero-copy .eyebrow {
  animation: fade-up 520ms ease 80ms both;
}

.purchase-page .purchase-hero-copy h1 {
  animation: fade-up 620ms ease 160ms both;
}

.purchase-page .purchase-hero-copy .hero-slogan {
  animation: fade-up 620ms ease 240ms both;
}

.purchase-page .purchase-hero-copy .hero-text {
  animation: fade-up 620ms ease 320ms both;
}

.purchase-page .purchase-hero-copy .hero-actions {
  animation: fade-up 620ms ease 420ms both;
}

.purchase-page .hero-license-strip {
  animation: fade-up 620ms ease 500ms both;
}

.trust-strip span {
  animation: chip-in 520ms ease both;
}

.trust-strip span:nth-child(1) {
  animation-delay: 520ms;
}

.trust-strip span:nth-child(2) {
  animation-delay: 590ms;
}

.trust-strip span:nth-child(3) {
  animation-delay: 660ms;
}

.trust-strip span:nth-child(4) {
  animation-delay: 730ms;
}

.trust-strip span:nth-child(5) {
  animation-delay: 800ms;
}

.trust-strip span:nth-child(6) {
  animation-delay: 870ms;
}

.offer-card,
.program-preview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.26);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(155deg, rgba(0, 184, 107, 0.18), rgba(0, 210, 255, 0.1) 42%, rgba(32, 34, 58, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.offer-card::before,
.program-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(245, 246, 250, 0.22);
  pointer-events: none;
}

.purchase-hero-copy {
  position: relative;
  max-width: 920px;
  z-index: 1;
}

.purchase-hero-copy .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.purchase-hero-copy .hero-actions {
  justify-content: center;
}

.hero-license-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-license-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid rgba(0, 210, 255, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(23, 24, 43, 0.68);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.hero-license-strip b {
  color: var(--text);
}

.purchase-hero .btn-primary {
  position: relative;
  overflow: hidden;
}

.purchase-hero .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: button-sheen 3600ms ease-in-out 1200ms infinite;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid rgba(0, 210, 255, 0.24);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(23, 24, 43, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.purchase-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.62fr);
  align-items: stretch;
  gap: 18px;
  padding-top: 36px;
}

.program-preview-card {
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(108, 92, 231, 0.14), rgba(0, 210, 255, 0.08)),
    rgba(23, 24, 43, 0.94);
  animation: slide-in-left 760ms ease 140ms both;
}

.preview-window-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 14px;
  color: var(--muted);
  font-size: 12px;
}

.preview-window-bar strong {
  color: var(--cyan);
}

.program-frame {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(245, 246, 250, 0.12);
  border-radius: 8px;
  background: #101122;
}

.program-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 12px;
  border-right: 1px solid rgba(245, 246, 250, 0.1);
  background: #111225;
  text-align: center;
}

.program-logo {
  color: var(--cyan);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.program-sidebar small {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.28;
}

.program-sidebar b,
.program-sidebar span {
  border: 1px solid rgba(245, 246, 250, 0.08);
  border-radius: 2px;
  padding: 10px 8px;
  background: #242641;
  color: var(--text);
  font-size: 12px;
}

.program-sidebar b {
  background: var(--primary);
}

.program-main {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.program-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.program-head h2 {
  font-size: 28px;
}

.program-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.program-head button,
.program-form button {
  border: 0;
  border-radius: 2px;
  padding: 10px 13px;
  background: var(--primary);
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
}

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

.program-kpis article {
  min-height: 70px;
  border-radius: 8px;
  padding: 12px;
  background: #252742;
  animation: pop-in 520ms ease both;
}

.program-kpis article:nth-child(1) {
  animation-delay: 520ms;
}

.program-kpis article:nth-child(2) {
  animation-delay: 590ms;
}

.program-kpis article:nth-child(3) {
  animation-delay: 660ms;
}

.program-kpis article:nth-child(4) {
  animation-delay: 730ms;
}

.program-kpis small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.program-kpis strong {
  color: var(--success);
  font-size: 19px;
}

.program-workspace {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px;
}

.program-form,
.program-chart {
  border: 1px solid rgba(245, 246, 250, 0.1);
  border-radius: 8px;
  background: #191A2E;
  animation: fade-up 620ms ease 520ms both;
}

.program-form {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
}

.program-form h3 {
  font-size: 16px;
}

.program-form i {
  display: block;
  height: 25px;
  border: 1px solid rgba(245, 246, 250, 0.1);
  background: #111225;
}

.program-form div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.program-form button:first-of-type {
  margin-top: 8px;
  background: var(--success);
}

.program-chart {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(#ffffff 0 0) 18px 18px / calc(100% - 36px) 190px no-repeat,
    #191A2E;
  animation-delay: 620ms;
}

.chart-line {
  position: absolute;
  left: 86px;
  right: 64px;
  height: 4px;
  border-radius: 999px;
  transform-origin: left center;
}

.chart-line.blue {
  top: 105px;
  background: #1F9BFF;
  transform: rotate(-7deg);
  box-shadow: 0 56px 0 rgba(31, 155, 255, 0.16);
  animation: chart-draw-blue 1200ms ease 920ms both;
}

.chart-line.red {
  top: 160px;
  background: #FF4B4B;
  transform: rotate(-3deg);
  box-shadow: 0 28px 0 rgba(255, 75, 75, 0.14);
  animation: chart-draw-red 1200ms ease 1040ms both;
}

.program-table {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(245, 246, 250, 0.12);
  padding-top: 14px;
  color: var(--text);
  font-size: 12px;
}

.program-table b {
  color: var(--success);
  text-align: right;
}

.pro-program-frame {
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 620px;
}

.pro-sidebar {
  position: relative;
  padding-bottom: 116px;
}

.program-status {
  position: absolute;
  right: 10px;
  bottom: 12px;
  left: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(245, 246, 250, 0.08);
  border-radius: 8px;
  padding: 10px;
  background: #242641;
  text-align: left;
}

.program-status small {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.program-status em {
  color: var(--success);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.program-status i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--success), var(--cyan));
}

.pro-program-main {
  gap: 12px;
  padding: 16px;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.program-actions span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
  background: #252742;
  color: var(--muted);
  font-size: 11px;
}

.program-actions button:nth-child(3) {
  background: #252742;
}

.pro-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pro-kpis article {
  min-height: 62px;
  padding: 10px;
}

.pro-kpis strong {
  font-size: 16px;
}

.pro-workspace {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 12px;
}

.pro-form-panel,
.pro-dashboard-panel {
  border: 1px solid rgba(245, 246, 250, 0.1);
  border-radius: 8px;
  background: #191A2E;
}

.pro-form-panel {
  display: grid;
  gap: 8px;
  align-content: start;
  max-height: 420px;
  overflow: hidden;
  padding: 12px;
}

.pro-form-panel h3 {
  margin-top: 2px;
  font-size: 15px;
}

.pro-form-panel label {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 10px;
}

.pro-form-panel label i {
  display: block;
  height: 22px;
  border: 1px solid rgba(245, 246, 250, 0.1);
  background: #111225;
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-lines {
  display: grid;
  gap: 5px;
  margin: 2px 0;
}

.checkbox-lines span {
  display: block;
  width: 70%;
  height: 10px;
  border-left: 10px solid #F5F6FA;
  background: rgba(245, 246, 250, 0.08);
}

.pro-form-panel button {
  border: 0;
  min-height: 30px;
  border-radius: 2px;
  background: #252742;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
}

.pro-form-panel button:first-of-type {
  background: var(--success);
}

.pro-form-panel button:nth-of-type(2) {
  background: var(--primary);
}

.pro-dashboard-panel {
  overflow: hidden;
  padding: 10px;
}

.pro-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.pro-tabs span {
  border: 1px solid rgba(15, 16, 32, 0.32);
  padding: 4px 7px;
  background: #F5F6FA;
  color: #101122;
  font-size: 10px;
}

.pro-chart {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 8px solid #252742;
  border-radius: 8px;
  background: #ffffff;
}

.chart-grid {
  position: absolute;
  inset: 28px 28px 44px;
  background:
    repeating-linear-gradient(0deg, rgba(16, 17, 34, 0.08) 0 1px, transparent 1px 44px),
    linear-gradient(90deg, transparent, transparent);
}

.area-blue,
.area-red {
  position: absolute;
  right: 54px;
  left: 58px;
  height: 50px;
  opacity: 0.22;
  clip-path: polygon(0 56%, 100% 5%, 100% 100%, 0 100%);
}

.area-blue {
  top: 74px;
  background: #1F9BFF;
}

.area-red {
  top: 118px;
  background: #FF4B4B;
}

.pro-chart .line-blue,
.pro-chart .line-red {
  position: absolute;
  left: 58px;
  right: 54px;
  height: 4px;
  border-radius: 999px;
  transform-origin: left center;
}

.pro-chart .line-blue {
  top: 86px;
  background: #1F9BFF;
  transform: rotate(-8deg);
  animation: chart-draw-blue 1200ms ease 920ms both;
}

.pro-chart .line-red {
  top: 130px;
  background: #FF4B4B;
  transform: rotate(-3deg);
  animation: chart-draw-red 1200ms ease 1040ms both;
}

.pro-chart b {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
}

.point-one {
  right: 49px;
  top: 63px;
  color: #1F9BFF;
}

.point-two {
  right: 49px;
  top: 122px;
  color: #FF4B4B;
}

.month-search {
  display: grid;
  grid-template-columns: auto minmax(120px, 260px) 1fr;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  margin-top: 8px;
  border-radius: 8px;
  padding: 8px;
  background: #252742;
  color: var(--muted);
  font-size: 10px;
}

.month-search i {
  height: 22px;
  background: #111225;
}

.month-search em {
  font-style: normal;
}

.pro-table {
  margin-top: 8px;
  border: 1px solid rgba(245, 246, 250, 0.08);
  color: var(--text);
  font-size: 10px;
}

.pro-table div {
  display: grid;
  grid-template-columns: 1fr 70px 80px 80px;
  gap: 8px;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid rgba(245, 246, 250, 0.08);
}

.pro-table div:first-child {
  background: #252742;
}

.pro-table div:last-child {
  border-bottom: 0;
}

.offer-card-pro {
  display: grid;
  align-content: start;
  animation: slide-in-right 760ms ease 220ms both;
}

.offer-action {
  width: 100%;
  margin-top: 26px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(0, 184, 107, 0.42);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(0, 184, 107, 0.12);
  color: #9AF7C9;
  font-size: 13px;
  font-weight: 800;
}

.offer-card h2 {
  margin-top: 22px;
  font-size: clamp(30px, 4vw, 46px);
}

.offer-card p {
  color: var(--muted);
  font-size: 17px;
}

.offer-price {
  display: grid;
  gap: 4px;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid rgba(0, 210, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 16, 32, 0.54);
  animation: glow-pulse 2800ms ease-in-out infinite;
}

.offer-price span,
.offer-price small {
  color: var(--muted);
  font-size: 13px;
}

.offer-price strong {
  color: var(--text);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.price-breakdown {
  display: grid;
  gap: 10px;
  margin: -10px 0 24px;
}

.price-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(245, 246, 250, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(15, 16, 32, 0.42);
}

.price-breakdown span {
  color: var(--muted);
  font-size: 13px;
}

.price-breakdown b {
  color: var(--text);
  text-align: right;
  font-size: 13px;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(0, 184, 107, 0.1);
}

.purchase-band {
  padding-top: 64px;
}

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

.purchase-feature-grid article {
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
}

.purchase-feature-grid article:nth-child(2) {
  animation-delay: 80ms;
}

.purchase-feature-grid article:nth-child(3) {
  animation-delay: 160ms;
}

.purchase-feature-grid article:nth-child(4) {
  animation-delay: 240ms;
}

.purchase-feature-grid span {
  color: var(--success);
  font-weight: 800;
  font-size: 13px;
}

.purchase-feature-grid h3 {
  margin-top: 34px;
}

.purchase-feature-grid p,
.purchase-panel p {
  color: var(--muted);
}

.purchase-detail {
  padding-top: 70px;
}

.route-section {
  display: grid;
  gap: 38px;
}

.route-heading {
  max-width: 860px;
}

.route-heading p {
  color: var(--muted);
  font-size: 18px;
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 34px;
  min-height: 760px;
  padding: 18px 0;
}

.route-line {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 210, 255, 0.9) 12%, rgba(0, 184, 107, 0.9) 88%, transparent),
    rgba(245, 246, 250, 0.16);
  box-shadow: 0 0 34px rgba(0, 210, 255, 0.18);
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
  border: 2px solid rgba(245, 246, 250, 0.7);
  border-radius: 50%;
  background: var(--bg);
}

.route-line::before {
  top: 0;
}

.route-line::after {
  bottom: 0;
}

.route-car {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  display: block;
  width: 48px;
  height: 30px;
  transform: translate(-50%, -8px);
  animation: route-drive 9s ease-in-out infinite;
}

.route-car::before {
  content: "";
  position: absolute;
  inset: 8px 3px 5px;
  border-radius: 9px 9px 6px 6px;
  background: linear-gradient(135deg, var(--cyan), var(--success));
  box-shadow: 0 0 24px rgba(0, 210, 255, 0.32);
}

.route-car::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 13px;
  width: 22px;
  height: 13px;
  border-radius: 9px 9px 2px 2px;
  background: rgba(245, 246, 250, 0.9);
}

.route-car i,
.route-car i::after {
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #101122;
  border-radius: 50%;
  background: var(--text);
  content: "";
}

.route-car i {
  left: 8px;
}

.route-car i::after {
  left: 21px;
  bottom: -2px;
}

.route-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: min(470px, calc(50% - 56px));
  min-height: 156px;
  border: 1px solid rgba(0, 210, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(0, 184, 107, 0.13), rgba(108, 92, 231, 0.1)),
    rgba(23, 24, 43, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  animation: route-card-in 700ms ease both;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 210, 255, 0.42);
  box-shadow: 0 28px 90px rgba(0, 210, 255, 0.12), 0 24px 80px rgba(0, 0, 0, 0.32);
}

.route-card.left {
  justify-self: start;
}

.route-card.right {
  justify-self: end;
}

.route-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(0, 210, 255, 0.18);
  background: #1A1C33;
}

.route-card.left::before {
  right: -12px;
  border-left: 0;
  border-bottom: 0;
}

.route-card.right::before {
  left: -12px;
  border-right: 0;
  border-top: 0;
}

.route-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  border: 2px solid rgba(245, 246, 250, 0.82);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 7px rgba(0, 210, 255, 0.08);
}

.route-card.left::after {
  right: -65px;
}

.route-card.right::after {
  left: -65px;
}

.route-card:nth-of-type(3) {
  animation-delay: 100ms;
}

.route-card:nth-of-type(4) {
  animation-delay: 200ms;
}

.route-card:nth-of-type(5) {
  animation-delay: 300ms;
}

.route-card b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), var(--cyan));
  color: var(--bg);
  font-weight: 900;
}

.route-card h3 {
  margin: 0;
  font-size: 20px;
}

.route-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.purchase-request {
  padding-top: 58px;
}

.contact-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-options {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-options article {
  border: 1px solid rgba(0, 210, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 184, 107, 0.1), rgba(108, 92, 231, 0.08)),
    rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
}

.contact-options article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 20px;
  animation: fade-up 620ms ease both;
}

.contact-options article:nth-child(1) {
  animation-delay: 80ms;
}

.contact-options article:nth-child(2) {
  animation-delay: 160ms;
}

.contact-options article:nth-child(3) {
  animation-delay: 240ms;
}

.contact-options h3 {
  font-size: 18px;
}

.contact-options p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 210, 255, 0.34);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 184, 107, 0.26), rgba(0, 210, 255, 0.18));
}

.calendar-icon::before {
  content: "";
  width: 24px;
  height: 22px;
  border: 2px solid var(--text);
  border-top-width: 6px;
  border-radius: 4px;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 17px;
  width: 12px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 5px 0 var(--success);
}

.key-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid var(--text);
  border-radius: 50%;
  transform: translateX(-6px);
}

.key-icon::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 22px;
  width: 16px;
  height: 3px;
  background: var(--text);
  box-shadow: 7px 0 0 var(--text), 7px 5px 0 var(--cyan);
}

.support-icon::before {
  content: "";
  width: 24px;
  height: 18px;
  border: 2px solid var(--text);
  border-radius: 10px 10px 8px 8px;
}

.support-icon::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 12px;
  height: 2px;
  background: var(--cyan);
  transform: rotate(-28deg);
}

.purchase-form {
  border-color: rgba(0, 184, 107, 0.24);
  animation: fade-up 720ms ease 160ms both;
}

.trust-section {
  padding-top: 64px;
}

.security-layout {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.security-panel,
.security-grid article {
  border: 1px solid rgba(0, 210, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 184, 107, 0.12), rgba(108, 92, 231, 0.1)),
    rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
}

.security-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(540px, 0.58fr) minmax(380px, 0.42fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(34px, 5vw, 60px) clamp(28px, 5vw, 58px) 0;
  animation: slide-in-left 700ms ease both;
}

.security-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(0, 210, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(0, 184, 107, 0.1), rgba(108, 92, 231, 0.2));
  pointer-events: none;
}

.security-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding-bottom: clamp(34px, 5vw, 60px);
}

.security-copy h2 {
  max-width: 650px;
  font-size: clamp(46px, 5.2vw, 64px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.security-copy h2 span {
  display: block;
  white-space: nowrap;
}

.security-panel p {
  color: var(--muted);
  max-width: 560px;
  font-size: 17px;
}

.security-advisor {
  position: relative;
  display: grid;
  align-items: center;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
}

.security-advisor::before {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -54px;
  width: min(560px, 106%);
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.24), rgba(0, 184, 107, 0.12) 48%, transparent 72%);
  filter: blur(3px);
}

.security-advisor img {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(720px, 132%);
  max-height: 545px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.38));
  transform: translateY(-28px);
  animation: advisor-in 760ms ease 220ms both;
}

.security-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  margin-top: 26px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(15, 16, 32, 0.48);
}

.security-meter span {
  color: var(--muted);
  font-size: 13px;
}

.security-meter b {
  color: var(--success);
  font-size: 13px;
}

.security-meter i {
  grid-column: 1 / -1;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 246, 250, 0.1);
}

.security-meter i::before {
  content: "";
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--success), var(--cyan));
  animation: meter-fill 900ms ease 420ms both;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.security-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 20px;
  animation: fade-up 620ms ease both;
}

.security-grid article:nth-child(1) {
  animation-delay: 80ms;
}

.security-grid article:nth-child(2) {
  animation-delay: 160ms;
}

.security-grid article:nth-child(3) {
  animation-delay: 240ms;
}

.security-grid article:nth-child(4) {
  animation-delay: 320ms;
}

.security-grid h3 {
  font-size: 18px;
}

.security-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.security-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 210, 255, 0.34);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 184, 107, 0.26), rgba(0, 210, 255, 0.18));
}

.lock-icon::before {
  content: "";
  width: 22px;
  height: 17px;
  border: 2px solid var(--text);
  border-radius: 4px;
  transform: translateY(5px);
}

.lock-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 16px;
  height: 14px;
  border: 2px solid var(--text);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.key-mini-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid var(--text);
  border-radius: 50%;
  transform: translateX(-6px);
}

.key-mini-icon::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 23px;
  width: 17px;
  height: 3px;
  background: var(--text);
  box-shadow: 7px 0 0 var(--text), 7px 5px 0 var(--cyan);
}

.shield-icon::before {
  content: "";
  width: 24px;
  height: 28px;
  border: 2px solid var(--text);
  border-radius: 14px 14px 18px 18px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.shield-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 6px;
  border-left: 3px solid var(--success);
  border-bottom: 3px solid var(--success);
  transform: rotate(-45deg);
}

.doc-icon::before {
  content: "";
  width: 22px;
  height: 28px;
  border: 2px solid var(--text);
  border-radius: 3px;
}

.doc-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 6px 0 var(--success), 0 12px 0 rgba(245, 246, 250, 0.7);
}

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

.trust-grid article {
  display: flex;
  gap: 12px;
  min-height: 150px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: rgba(23, 24, 43, 0.92);
  box-shadow: var(--shadow);
  animation: fade-up 620ms ease both;
}

.trust-grid article:nth-child(1) {
  animation-delay: 80ms;
}

.trust-grid article:nth-child(2) {
  animation-delay: 160ms;
}

.trust-grid article:nth-child(3) {
  animation-delay: 240ms;
}

.trust-grid article:nth-child(4) {
  animation-delay: 320ms;
}

.trust-grid b {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(0, 184, 107, 0.1);
}

.trust-grid span {
  color: var(--text);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-34px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes chip-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 210, 255, 0);
  }

  50% {
    box-shadow: 0 0 38px rgba(0, 210, 255, 0.12);
  }
}

@keyframes hero-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes button-sheen {
  0%,
  45% {
    transform: translateX(-120%) skewX(-18deg);
  }

  70%,
  100% {
    transform: translateX(120%) skewX(-18deg);
  }
}

@keyframes meter-fill {
  from {
    width: 0;
  }

  to {
    width: 88%;
  }
}

@keyframes advisor-in {
  from {
    opacity: 0;
    transform: translate(26px, -8px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(0, -28px) scale(1);
  }
}

@keyframes shooting-star {
  0%,
  72% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  76% {
    opacity: 1;
  }

  84% {
    opacity: 0;
    transform: translate3d(calc(100vw + 320px), 240px, 0) rotate(-18deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 320px), 240px, 0) rotate(-18deg);
  }
}

@keyframes chart-draw-blue {
  from {
    opacity: 0;
    transform: rotate(-7deg) scaleX(0);
  }

  to {
    opacity: 1;
    transform: rotate(-7deg) scaleX(1);
  }
}

@keyframes chart-draw-red {
  from {
    opacity: 0;
    transform: rotate(-3deg) scaleX(0);
  }

  to {
    opacity: 1;
    transform: rotate(-3deg) scaleX(1);
  }
}

@keyframes route-drive {
  0%,
  8% {
    top: 0;
  }

  30% {
    top: 32%;
  }

  56% {
    top: 62%;
  }

  82%,
  92% {
    top: 100%;
  }

  100% {
    top: 0;
  }
}

@keyframes route-card-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .solution-grid,
  .benefit-layout,
  .preview-grid,
  .purchase-showcase,
  .purchase-hero,
  .security-layout,
  .security-panel,
  .purchase-detail {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    min-height: 0;
  }

  .feature-grid,
  .trust-grid,
  .security-grid,
  .legal-layout,
  .purchase-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--panel);
  }

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

  .main-nav .nav-buy {
    text-align: center;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 64px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-metrics,
  .kpi-row,
  .feature-grid,
  .purchase-feature-grid,
  .trust-grid,
  .security-grid,
  .legal-layout,
  .contact-intro,
  .contact-options,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .legal-main,
  .legal-note {
    grid-column: span 1;
  }

  .program-frame,
  .program-workspace,
  .pro-workspace {
    grid-template-columns: 1fr;
  }

  .program-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: left;
  }

  .program-logo,
  .program-sidebar small {
    grid-column: span 3;
  }

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

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

  .program-chart {
    min-height: 300px;
  }

  .route-timeline {
    gap: 22px;
    min-height: auto;
    padding-left: 58px;
  }

  .route-line {
    left: 22px;
  }

  .route-card,
  .route-card.left,
  .route-card.right {
    justify-self: stretch;
    width: 100%;
  }

  .route-card.left::before,
  .route-card.right::before {
    left: -12px;
    right: auto;
    border-right: 0;
    border-top: 0;
    border-left: 1px solid rgba(0, 210, 255, 0.18);
    border-bottom: 1px solid rgba(0, 210, 255, 0.18);
  }

  .route-card.left::after,
  .route-card.right::after {
    left: -45px;
    right: auto;
  }

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

  .mock-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 86px;
    padding: 12px;
  }

  .contact-form label,
  .contact-form label:not(.full),
  .contact-form .full,
  .form-note {
    grid-column: span 1;
  }

  .security-panel {
    min-height: auto;
    padding-bottom: 0;
  }

  .security-copy {
    max-width: 100%;
  }

  .security-copy h2 {
    max-width: 100%;
    font-size: clamp(42px, 8vw, 58px);
  }

  .security-copy h2 span {
    white-space: normal;
  }

  .security-copy {
    padding-bottom: 0;
  }

  .security-advisor {
    min-height: 390px;
  }

  .security-advisor img {
    justify-self: center;
    width: min(560px, 108%);
    max-height: 420px;
    transform: translateY(-14px);
  }

}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

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

  .mock-sidebar {
    grid-template-columns: 1fr;
  }

  .program-sidebar,
  .program-kpis,
  .program-table,
  .pro-kpis,
  .pro-table div,
  .month-search {
    grid-template-columns: 1fr;
  }

  .program-logo,
  .program-sidebar small {
    grid-column: span 1;
  }

  .pro-sidebar {
    padding-bottom: 20px;
  }

  .program-status {
    position: static;
  }

  .program-head {
    display: grid;
  }

  .program-actions {
    justify-content: start;
  }

  .pro-chart {
    min-height: 190px;
  }

  .security-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.08;
  }

  .security-advisor {
    min-height: 330px;
  }

  .security-advisor img {
    width: min(420px, 118%);
    max-height: 350px;
    transform: translateY(-8px);
  }

  .route-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .route-card b {
    width: 38px;
    height: 38px;
  }

  .route-car {
    width: 40px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purchase-page *,
  .route-car,
  .shooting-star {
    animation: none;
    transition: none;
  }

  .shooting-star {
    display: none;
  }
}
