:root {
  --bg: #020817;
  --bg-soft: #071225;
  --card: rgba(15, 23, 42, 0.84);
  --card-strong: #0f172a;
  --card-soft: rgba(17, 28, 49, 0.92);
  --border: rgba(147, 197, 253, 0.16);
  --text: #ffffff;
  --muted: #94a3b8;
  --primary: #2563eb;
  --glow: #3b82f6;
  --glow-soft: rgba(59, 130, 246, 0.16);
  --radius: 28px;
  --shadow: 0 30px 100px rgba(2, 6, 23, 0.42);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: #020817;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 24rem),
    radial-gradient(circle at left 25%, rgba(37, 99, 235, 0.12), transparent 22rem),
    linear-gradient(180deg, #020817 0%, #061224 40%, #020817 100%);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100%;
  background-color: #020817;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 20%, rgba(59, 130, 246, 0.04) 46%, transparent 65%),
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05), transparent 22rem);
  animation: meshShift 18s ease-in-out infinite alternate;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.page-shell {
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 420px;
  pointer-events: none;
  opacity: 0.36;
  background-repeat: no-repeat;
  background-size: min(1100px, 95vw) 100%;
  z-index: 0;
}

.page-shell::before {
  top: 160px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 360'%3E%3Cdefs%3E%3Cfilter id='g'%3E%3CfeGaussianBlur stdDeviation='7'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M-40 250C120 120 210 120 330 220s180 120 290 20 180-120 320 10 190 120 340-20' stroke='%233b82f6' stroke-width='18' fill='none' stroke-linecap='round' filter='url(%23g)' opacity='.42'/%3E%3Cpath d='M-50 230C100 130 190 130 310 220s170 110 280 10 180-130 320 0 190 120 340-10' stroke='%23ffffff' stroke-width='7' fill='none' stroke-linecap='round' opacity='.16'/%3E%3C/svg%3E");
  background-position: center;
}

.page-shell::after {
  top: 1450px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 360'%3E%3Cdefs%3E%3Cfilter id='g2'%3E%3CfeGaussianBlur stdDeviation='7'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M-80 150C40 280 180 300 310 210s220-120 330 0 210 160 320 40 190-140 320-10' stroke='%232563eb' stroke-width='18' fill='none' stroke-linecap='round' filter='url(%23g2)' opacity='.42'/%3E%3Cpath d='M-80 170C40 260 190 280 320 200s220-130 330 0 220 150 330 50 180-130 300-20' stroke='%23ffffff' stroke-width='7' fill='none' stroke-linecap='round' opacity='.14'/%3E%3C/svg%3E");
  background-position: center;
}

.skip-link {
  position: absolute;
  top: -3rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #020817;
  z-index: 200;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: 14px;
  transition: padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 60px rgba(2, 8, 23, 0.18);
  direction: ltr;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 70px rgba(2, 8, 23, 0.44);
}

.nav-brand-side,
.brand-mark,
.brand-name {
  display: inline-flex;
  align-items: center;
}

.nav-brand-side {
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark,
.brand-name {
  justify-content: center;
}

.brand-mark {
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-mark img {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.22);
}

.top-nav,
.nav-actions,
.hero-actions,
.download-row,
.feature-list,
.contact-links,
.footer-links,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.top-nav {
  direction: rtl;
  justify-content: center;
  flex-wrap: nowrap;
}

.top-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 150ms ease;
}

.top-nav a {
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.top-nav a:hover,
.footer-links a:hover,
.contact-links a:hover {
  color: var(--text);
}

.primary-button,
.secondary-button,
.ghost-button,
.download-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.nav-actions {
  direction: rtl;
  justify-content: flex-end;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--glow));
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.download-chip:hover {
  transform: translateY(-2px);
}

.secondary-button,
.ghost-button,
.download-chip {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-section,
.section {
  position: relative;
  z-index: 1;
}

.hero-section {
  padding: 5.4rem 0 3rem;
}

.hero-grid,
.showcase-grid,
.split-section,
.contact-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
}

.showcase-grid,
.split-section,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-section.reverse .split-copy {
  order: 2;
}

.split-section.reverse .split-visual {
  order: 1;
}

.hero-copy,
.glass-surface,
.benefit-card,
.stat-card,
.comparison-card,
.showcase-card,
.pricing-card,
.contact-copy,
.contact-form {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.showcase-copy,
.dashboard-frame,
.split-copy,
.split-visual,
.contact-copy,
.contact-form,
.cta-shell {
  min-width: 0;
}

.hero-copy,
.contact-copy,
.contact-form,
.glass-surface,
.comparison-card,
.pricing-card {
  padding: 1.6rem;
}

.hero-copy::before,
.glass-surface::before,
.benefit-card::before,
.pricing-card::before,
.comparison-card::before,
.showcase-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: #bfdbfe;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.cta-shell h2,
.contact-copy h2,
.modal-card h2 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.split-copy p,
.contact-copy p,
.modal-text,
.benefit-card p,
.comparison-card li,
.pricing-card p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 38rem;
  font-size: 1.08rem;
}

.trust-points,
.feature-list,
.comparison-card ul,
.pricing-card ul,
.ios-guide ol {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li,
.feature-list li,
.comparison-card li,
.pricing-card li,
.ios-guide li {
  position: relative;
  padding-inline-start: 1.3rem;
  color: var(--muted);
}

.trust-points li + li,
.feature-list li + li,
.comparison-card li + li,
.pricing-card li + li,
.ios-guide li + li {
  margin-top: 0.7rem;
}

.trust-points li::before,
.feature-list li::before,
.comparison-card li::before,
.pricing-card li::before,
.ios-guide li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  inset-inline-start: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--glow), #60a5fa);
}

.download-row {
  flex-wrap: wrap;
  margin-top: 1rem;
}

.download-chip {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.chip-icon {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  color: #dbeafe;
}

.chip-icon svg,
.benefit-icon svg,
.floating-contact-icon svg {
  width: 100%;
  height: 100%;
}

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

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}

.orb-a {
  width: 220px;
  height: 220px;
  top: 40px;
  right: 10%;
  background: rgba(37, 99, 235, 0.28);
}

.orb-b {
  width: 170px;
  height: 170px;
  bottom: 60px;
  left: 8%;
  background: rgba(59, 130, 246, 0.18);
}

.device-stack {
  position: relative;
  padding-top: 18px;
}

.tablet-frame,
.phone-frame {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(20px);
}

.tablet-frame {
  inset-inline-start: 0;
  top: 40px;
  width: min(620px, 100%);
  min-height: 400px;
  border-radius: 34px;
  padding: 1rem;
}

.tablet-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.tablet-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.4);
}

.tablet-body {
  display: grid;
  gap: 1rem;
}

.tablet-metric {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(59, 130, 246, 0.08));
}

.tablet-metric strong,
.phone-card strong,
.dashboard-top strong,
.analytics-insights strong,
.delivery-head strong {
  display: block;
  font-size: 1.5rem;
}

.tablet-metric span,
.phone-card small,
.delivery-head span,
.analytics-insights small,
.dashboard-top small,
.dashboard-grid small {
  color: var(--muted);
}

.tablet-grid,
.dashboard-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tablet-grid article,
.dashboard-grid article {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.tablet-grid strong,
.dashboard-grid strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.35rem;
}

.chart-bars,
.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 170px;
}

.chart-bars span,
.analytics-chart span {
  flex: 1;
  height: var(--h, var(--bar));
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.96), rgba(37, 99, 235, 0.22));
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.22);
}

.phone-frame {
  inset-inline-end: 4%;
  top: 0;
  width: 280px;
  min-height: 540px;
  border-radius: 42px;
  padding: 1rem 1rem 1.1rem;
}

.phone-notch {
  width: 116px;
  height: 24px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.phone-body {
  display: grid;
  gap: 0.9rem;
}

.phone-header strong,
.phone-list strong {
  display: block;
}

.phone-card,
.phone-list div,
.dashboard-bottom .mini-alert,
.delivery-meta,
.analytics-insights article {
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-card span,
.dashboard-badge {
  color: #bfdbfe;
}

.phone-list {
  display: grid;
  gap: 0.75rem;
}

.phone-list div span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-note {
  position: absolute;
  padding: 0.78rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(15, 23, 42, 0.82);
  color: #e2e8f0;
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.35);
  backdrop-filter: blur(12px);
  animation: floatNote 5.4s ease-in-out infinite;
}

.note-one { top: 24px; left: 18%; }
.note-two { top: 142px; left: 4%; animation-delay: 1s; }
.note-three { top: 284px; right: 0; animation-delay: 1.5s; }
.note-four { bottom: 92px; left: 18%; animation-delay: 2.2s; }
.note-five { bottom: 10px; right: 8%; animation-delay: 2.8s; }

.stats-section {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 0.4rem;
}

.stats-grid,
.benefits-grid,
.showcase-cards,
.pricing-grid,
.comparison-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card {
  padding: 1.2rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
}

.stat-card span {
  color: var(--muted);
}

.section {
  padding: 2.9rem 0;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

.section-heading.narrow,
.pricing-header .section-heading {
  max-width: 42rem;
}

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

.benefit-card,
.showcase-card {
  padding: 1.35rem;
}

.benefit-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.benefit-card:hover,
.showcase-card:hover,
.comparison-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 26px 90px rgba(2, 8, 23, 0.52);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(59, 130, 246, 0.08));
  color: #e2e8f0;
}

.workflow-track {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.workflow-track::before {
  content: "";
  position: absolute;
  top: 46px;
  inset-inline: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.65), rgba(59, 130, 246, 0.15));
}

.workflow-step {
  position: relative;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--glow));
  font-weight: 800;
}

.dashboard-frame,
.split-visual,
.cta-shell {
  padding: 1.6rem;
}

.dashboard-top,
.dashboard-bottom,
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-badge {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.18);
  font-size: 0.92rem;
  font-weight: 700;
}

.dashboard-bottom {
  margin-top: 1rem;
  flex-wrap: wrap;
}

.mini-alert.warning {
  color: #fde68a;
}

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

.showcase-card h3,
.benefit-card h3,
.comparison-card h3,
.pricing-card h3,
.workflow-step h3 {
  margin: 0 0 0.55rem;
}

.table-scene {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.table-top {
  width: min(320px, 90%);
  height: 140px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.82));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.qr-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: #fff;
  color: #020817;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 22px 60px rgba(2, 8, 23, 0.4);
}

.scan-line {
  position: absolute;
  width: 160px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.9), transparent);
  transform: translateY(-28px);
  animation: scanMove 2.2s ease-in-out infinite;
}

.delivery-card {
  display: grid;
  gap: 1rem;
}

.delivery-head,
.delivery-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.delivery-head span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
}

.delivery-route {
  height: 180px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 35%, rgba(59, 130, 246, 0.22), transparent 5rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(59, 130, 246, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 220'%3E%3Cpath d='M520 36c-48 18-86 41-118 68-23 19-42 39-67 55-45 28-98 35-146 23-43-11-80-39-116-71' stroke='%233b82f6' stroke-width='8' fill='none' stroke-linecap='round' stroke-dasharray='2 18'/%3E%3Ccircle cx='520' cy='36' r='18' fill='%232563eb'/%3E%3Ccircle cx='73' cy='114' r='18' fill='%2360a5fa'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.analytics-panel {
  display: grid;
  gap: 1rem;
}

.analytics-line {
  height: 220px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(59, 130, 246, 0.02)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 240'%3E%3Cpath d='M0 180c80-70 130-85 195-60s110 110 185 88 112-130 165-112 67 72 95 64' stroke='%2360a5fa' stroke-width='8' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0 184c80-70 130-85 195-60s110 110 185 88 112-130 165-112 67 72 95 64V240H0Z' fill='url(%23g)' opacity='.35'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop stop-color='%233b82f6'/%3E%3Cstop offset='1' stop-color='%233b82f6' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

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

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

.comparison-card {
  padding: 1.5rem;
}

.comparison-card.dimmed {
  background: rgba(255, 255, 255, 0.035);
}

.comparison-card.featured {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(15, 23, 42, 0.9));
}

.pricing-section .pricing-header {
  margin-bottom: 1rem;
}

.billing-toggle {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.billing-toggle button {
  min-width: 92px;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.billing-toggle .is-active {
  color: var(--text);
  background: rgba(59, 130, 246, 0.16);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-card strong {
  font-size: 2.5rem;
  line-height: 1;
}

.price-label {
  color: #bfdbfe;
}

.pricing-card.featured {
  border-color: rgba(96, 165, 250, 0.26);
  transform: translateY(-6px);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  color: #bfdbfe;
  font-size: 0.88rem;
  font-weight: 800;
}

.cta-section {
  padding-top: 1rem;
}

.cta-shell {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(59, 130, 246, 0.24), transparent 16rem),
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.88));
}

.cta-shell p {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: #d6e6fb;
}

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

.contact-links {
  flex-direction: column;
  align-items: flex-start;
}

.contact-links a {
  color: #bfdbfe;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0.95rem 1rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(59, 130, 246, 0.24);
  border-color: rgba(96, 165, 250, 0.32);
}

.form-actions {
  margin-top: 1rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.85rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #86efac;
}

.form-status.is-error {
  color: #fda4af;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.floating-contact-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: rgba(4, 12, 28, 0.92);
  color: #f8fafc;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.45);
  backdrop-filter: blur(18px);
}

.floating-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #93c5fd;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 280px;
  height: 280px;
  background: url("/brand/menuora-og.png") no-repeat center/contain;
  opacity: 0.035;
  pointer-events: none;
}

.footer-shell,
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  justify-content: flex-start;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
}

.footer-brand strong {
  display: block;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(18px);
  z-index: 120;
}

.modal-card {
  width: min(620px, 100%);
  padding: 1.6rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.ios-guide {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[hidden] {
  display: none !important;
}

@keyframes meshShift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-18px);
  }
}

@keyframes floatNote {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scanMove {
  0%, 100% {
    transform: translateY(-28px);
    opacity: 0.45;
  }
  50% {
    transform: translateY(28px);
    opacity: 0.96;
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.3rem));
  }

  .nav-shell {
    gap: 0.95rem;
    padding: 0.68rem 0.9rem;
  }

  .hero-grid,
  .showcase-grid,
  .split-section,
  .contact-grid {
    gap: 1.05rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }

  .hero-section {
    padding-top: 4.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .tablet-frame {
    top: 56px;
    width: min(520px, 100%);
  }

  .phone-frame {
    width: 244px;
    min-height: 492px;
  }

  .stats-grid,
  .benefits-grid,
  .showcase-cards,
  .pricing-grid,
  .comparison-grid,
  .workflow-track,
  .analytics-insights {
    gap: 0.85rem;
  }

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

@media (max-width: 780px) {
  .container {
    width: min(var(--max-width), calc(100% - 1rem));
  }

  .nav-shell {
    gap: 0.55rem;
    min-height: 4.5rem;
    padding: 0.62rem 0.72rem;
    border-radius: 28px;
  }

  .nav-brand-side {
    gap: 0.55rem;
  }

  .brand-mark,
  .brand-mark img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .top-nav {
    gap: 0.42rem;
  }

  .top-nav a {
    padding: 0.56rem 0.78rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 0.42rem;
  }

  .nav-actions .primary-button,
  .nav-actions .ghost-button {
    min-height: 2.55rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
    width: auto;
  }

  .hero-section {
    padding-top: 2.3rem;
  }

  .hero-grid,
  .showcase-grid,
  .split-section,
  .contact-grid {
    gap: 0.85rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .stats-grid,
  .benefits-grid,
  .showcase-cards,
  .pricing-grid,
  .comparison-grid,
  .workflow-track,
  .analytics-insights {
    gap: 0.55rem;
  }

  .hero-copy,
  .glass-surface,
  .contact-copy,
  .contact-form,
  .comparison-card,
  .pricing-card,
  .cta-shell,
  .benefit-card,
  .showcase-card,
  .workflow-step,
  .stat-card {
    padding: 1rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.9rem, 5.8vw, 2.45rem);
  }

  .hero-text,
  .section-heading p,
  .split-copy p,
  .contact-copy p,
  .benefit-card p,
  .comparison-card li,
  .pricing-card p,
  .pricing-card li,
  .showcase-card p,
  .workflow-step p,
  .feature-list li,
  .site-footer p,
  .trust-points li {
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .eyebrow {
    padding: 0.34rem 0.65rem;
    font-size: 0.72rem;
  }

  .hero-actions,
  .download-row {
    gap: 0.48rem;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .download-chip {
    flex: 1;
    min-height: 2.7rem;
    padding: 0.7rem 0.8rem;
    font-size: 0.74rem;
    width: auto;
  }

  .download-row {
    flex-wrap: nowrap;
  }

  .chip-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero-visual {
    min-height: 410px;
  }

  .tablet-frame {
    top: 34px;
    width: 100%;
    min-height: 280px;
    padding: 0.8rem;
    border-radius: 26px;
  }

  .tablet-metric strong,
  .phone-card strong,
  .dashboard-top strong,
  .analytics-insights strong,
  .delivery-head strong {
    font-size: 1.06rem;
  }

  .tablet-grid article,
  .dashboard-grid article,
  .phone-card,
  .phone-list div,
  .dashboard-bottom .mini-alert,
  .delivery-meta,
  .analytics-insights article {
    padding: 0.68rem 0.72rem;
    border-radius: 18px;
  }

  .tablet-grid strong,
  .dashboard-grid strong {
    font-size: 0.92rem;
  }

  .tablet-grid small,
  .dashboard-grid small,
  .phone-header span,
  .phone-card small,
  .phone-list div span {
    font-size: 0.6rem;
  }

  .chart-bars,
  .analytics-chart {
    gap: 0.45rem;
    height: 96px;
  }

  .phone-frame {
    top: 0;
    inset-inline-end: -2%;
    width: 43%;
    min-height: 340px;
    padding: 0.72rem 0.72rem 0.8rem;
    border-radius: 28px;
  }

  .phone-notch {
    width: 72px;
    height: 14px;
    margin-bottom: 0.65rem;
  }

  .phone-body {
    gap: 0.58rem;
  }

  .floating-note {
    padding: 0.4rem 0.56rem;
    border-radius: 14px;
    font-size: 0.58rem;
  }

  .note-one { top: 16px; left: 18%; }
  .note-two { top: 102px; left: 2%; }
  .note-three { top: 206px; right: -1%; }
  .note-four { bottom: 68px; left: 18%; }
  .note-five { bottom: 8px; right: 4%; }

  .section {
    padding: 1.9rem 0;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-shell h2,
  .contact-copy h2 {
    font-size: 1.5rem;
  }

  .stat-card strong {
    font-size: 1.25rem;
  }

  .stat-card span {
    font-size: 0.68rem;
  }

  .benefit-card h3,
  .showcase-card h3,
  .comparison-card h3,
  .pricing-card h3,
  .workflow-step h3 {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
  }

  .benefit-icon {
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 0.75rem;
    border-radius: 16px;
  }

  .workflow-track::before {
    top: 34px;
    inset-inline: 2%;
  }

  .workflow-step {
    padding: 0.78rem;
  }

  .step-index {
    width: 1.82rem;
    height: 1.82rem;
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
  }

  .dashboard-frame,
  .split-visual,
  .cta-shell {
    padding: 1rem;
  }

  .dashboard-top,
  .dashboard-bottom,
  .pricing-header,
  .delivery-head,
  .delivery-meta {
    gap: 0.55rem;
  }

  .dashboard-badge {
    padding: 0.42rem 0.6rem;
    font-size: 0.68rem;
  }

  .pricing-card strong {
    font-size: 1.7rem;
  }

  .billing-toggle button {
    min-width: 76px;
    padding: 0.56rem 0.72rem;
    font-size: 0.76rem;
  }

  .field-grid {
    gap: 0.72rem;
  }

  .field-grid label {
    gap: 0.35rem;
    font-size: 0.74rem;
  }

  input,
  select,
  textarea {
    padding: 0.74rem 0.8rem;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .footer-shell {
    gap: 0.75rem;
  }

  .footer-brand {
    gap: 0.65rem;
  }

  .footer-brand img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .footer-links,
  .footer-meta {
    gap: 0.45rem;
    font-size: 0.74rem;
  }

  .floating-contact-button {
    gap: 0.5rem;
    padding: 0.72rem 0.86rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 560px) {
  .page-shell {
    zoom: 0.84;
  }

  .container {
    width: min(var(--max-width), calc(100% - 0.7rem));
  }

  .hero-section {
    padding-top: 1.35rem;
  }

  .nav-shell {
    gap: 0.36rem;
    min-height: 4rem;
    padding: 0.5rem 0.56rem;
    border-radius: 24px;
  }

  .brand-mark,
  .brand-mark img {
    width: 2.1rem;
    height: 2.1rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .top-nav a {
    padding: 0.45rem 0.62rem;
    font-size: 0.72rem;
  }

  .nav-actions .primary-button,
  .nav-actions .ghost-button {
    min-height: 2.28rem;
    padding: 0.52rem 0.64rem;
    font-size: 0.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.28rem, 5vw, 1.72rem);
    line-height: 1.26;
    overflow-wrap: anywhere;
  }

  .hero-text,
  .section-heading p,
  .split-copy p,
  .contact-copy p,
  .benefit-card p,
  .comparison-card li,
  .pricing-card p,
  .pricing-card li,
  .showcase-card p,
  .workflow-step p,
  .feature-list li,
  .site-footer p,
  .trust-points li {
    font-size: 0.62rem;
    line-height: 1.48;
  }

  .eyebrow {
    font-size: 0.66rem;
    padding: 0.3rem 0.55rem;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .download-chip {
    min-height: 2.45rem;
    padding: 0.54rem 0.52rem;
    font-size: 0.62rem;
  }

  .hero-grid,
  .showcase-grid,
  .split-section,
  .contact-grid {
    gap: 0.62rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.36fr);
  }

  .stats-grid,
  .benefits-grid,
  .showcase-cards,
  .pricing-grid,
  .comparison-grid,
  .workflow-track,
  .analytics-insights {
    gap: 0.38rem;
  }

  .hero-copy,
  .glass-surface,
  .contact-copy,
  .contact-form,
  .comparison-card,
  .pricing-card,
  .cta-shell,
  .benefit-card,
  .showcase-card,
  .workflow-step,
  .stat-card {
    padding: 0.68rem;
    border-radius: 20px;
  }

  .hero-visual {
    min-height: 298px;
  }

  .tablet-frame {
    top: 24px;
    min-height: 208px;
    padding: 0.54rem;
    border-radius: 22px;
  }

  .tablet-bar {
    gap: 0.3rem;
    margin-bottom: 0.7rem;
  }

  .tablet-bar span {
    width: 0.48rem;
    height: 0.48rem;
  }

  .tablet-grid,
  .dashboard-grid {
    gap: 0.45rem;
  }

  .tablet-grid article,
  .dashboard-grid article,
  .phone-card,
  .phone-list div,
  .dashboard-bottom .mini-alert,
  .delivery-meta,
  .analytics-insights article {
    padding: 0.52rem 0.56rem;
    border-radius: 14px;
  }

  .tablet-metric strong,
  .phone-card strong,
  .dashboard-top strong,
  .analytics-insights strong,
  .delivery-head strong {
    font-size: 0.88rem;
  }

  .tablet-grid strong,
  .dashboard-grid strong {
    font-size: 0.78rem;
  }

  .tablet-grid small,
  .dashboard-grid small,
  .phone-header span,
  .phone-card small,
  .phone-list div span,
  .delivery-head span,
  .dashboard-badge,
  .price-label {
    font-size: 0.55rem;
  }

  .chart-bars,
  .analytics-chart {
    gap: 0.3rem;
    height: 74px;
  }

  .phone-frame {
    width: 41%;
    min-height: 240px;
    padding: 0.46rem 0.46rem 0.54rem;
    border-radius: 22px;
  }

  .phone-notch {
    width: 56px;
    height: 12px;
    margin-bottom: 0.45rem;
  }

  .phone-body {
    gap: 0.42rem;
  }

  .floating-note {
    padding: 0.28rem 0.42rem;
    font-size: 0.5rem;
    border-radius: 10px;
  }

  .section {
    padding: 1.45rem 0;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-shell h2,
  .contact-copy h2 {
    font-size: 1.08rem;
  }

  .stat-card strong {
    font-size: 0.92rem;
  }

  .stat-card span {
    font-size: 0.54rem;
  }

  .benefit-card h3,
  .showcase-card h3,
  .comparison-card h3,
  .pricing-card h3,
  .workflow-step h3 {
    font-size: 0.72rem;
    margin-bottom: 0.3rem;
  }

  .benefit-icon {
    width: 2.05rem;
    height: 2.05rem;
    margin-bottom: 0.55rem;
    border-radius: 14px;
  }

  .workflow-track::before {
    top: 27px;
  }

  .workflow-step {
    padding: 0.6rem;
  }

  .step-index {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
  }

  .dashboard-frame,
  .split-visual,
  .cta-shell {
    padding: 0.82rem;
  }

  .billing-toggle button {
    min-width: 62px;
    padding: 0.48rem 0.56rem;
    font-size: 0.68rem;
  }

  .pricing-card strong {
    font-size: 1.3rem;
  }

  .field-grid {
    gap: 0.55rem;
  }

  .field-grid label {
    font-size: 0.68rem;
  }

  input,
  select,
  textarea {
    padding: 0.62rem 0.68rem;
    font-size: 0.7rem;
    border-radius: 12px;
  }

  textarea {
    min-height: 104px;
  }

  .footer-links,
  .footer-meta {
    font-size: 0.66rem;
  }

  .floating-contact-button {
    right: 0.65rem;
    bottom: 0.65rem;
    gap: 0.42rem;
    padding: 0.64rem 0.74rem;
    font-size: 0.66rem;
  }

  .floating-contact-icon {
    width: 0.95rem;
    height: 0.95rem;
  }
}
