:root {
  --bg: #0b1220;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f7fb;
  --muted: #a9b3c9;
  --brand-deep: #0f2a4a;
  --brand-mid: #1f4f8f;
  --brand-soft: #3b82f6;

  --brand-purple: #7c4dcc;
  --brand-purple-soft: #a78bfa;

  --accent-blue: #2563eb;

  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #09090f;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
 background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,0.18), transparent 35%),
    radial-gradient(circle at 80% 25%, rgba(124,77,204,0.18), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(37,99,235,0.14), transparent 35%),
    linear-gradient(180deg, #070e1a 0%, #0b1220 50%, #0a1628 100%);

  background-size: 200% 200%, 200% 200%, 180% 180%, 100% 100%;
  animation: gradientMove 18s ease-in-out infinite;
  color: var(--text);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 50%, 0% 0%;
  }
  100% {
    background-position: 0% 0%, 100% 0%, 0% 0%;
  }
}

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

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.cta-text {
  margin: 0;
  font-weight: 500;
  color: #fff;
}
.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: visible;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
   border-bottom: 1px solid rgba(59,130,246,0.25);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.5),
    0 0 25px rgba(59,130,246,0.12);
  background: linear-gradient(
    120deg,
    rgba(10, 25, 50, 0.95),
    rgba(20, 45, 85, 0.95),
    rgba(45, 85, 150, 0.90),
    rgba(20, 45, 85, 0.95),
    rgba(10, 25, 50, 0.95)
  );
  background-size: 220% 220%;
  animation: headerGradientFlow 16s ease infinite;
}

@keyframes headerGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 16px;
  border-radius: 999px;

  background: linear-gradient(135deg, #3b82f6, #7c4dcc) !important; /* 👈 force override */
  color: #ffffff !important;

  text-decoration: none;
  border: none !important;

  box-shadow:
    0 8px 20px rgba(59,130,246,0.35),
    0 0 12px rgba(124,77,204,0.25);

  transition: all 0.25s ease;
}

.appstore-btn:hover {
  transform: scale(1.05);
  border-color: rgba(240, 201, 135, 0.65);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(214, 168, 95, 0.22);
}

.appstore-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff !important;
}

.appstore-btn:hover .appstore-icon {
  color: var(--brand-gold-soft);
}

.appstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.appstore-text .small {
  font-size: 10px;
  opacity: 0.7;
}

.appstore-text .big {
  font-size: 13px;
  font-weight: 600;
}

.header-appstore {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-left: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-tagline {
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aab0c0;
}

.smalllogo {
  max-width: 50%;
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  color: #fff;
  align-items: center;
}

.nav a {
  transition: all 0.25s ease;
}

.nav a:hover {
  color: var(--brand-gold-soft);
  text-shadow:
    0 0 6px rgba(214,168,95,0.5),
    0 0 14px rgba(214,168,95,0.3);
}

.site-main {
  flex: 1;
  padding: 0;
}
.hero-title-row {
  position: relative;
  display: inline-block;
}


.promo-offer {
  position: absolute;
  top: 0px;
  right: -380px; 
  z-index: 5;
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.hero-top-left {
  max-width: 600px;
}

.hero-top-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

/* promo image */
.promo-img {
  width: 320px;
  height: auto;
  display: block;

  transform: rotate(5deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}

/* subtle floating feel */
@keyframes floatPromo {
  0% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-6px); }
  100% { transform: rotate(5deg) translateY(0); }
}

.promo-img {
  animation: floatPromo 4s ease-in-out infinite;
}
.promo-img:hover {
  transform: rotate(6deg) scale(1.05);
}
.promo-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  margin-bottom: 20px;

  border-radius: 999px;

  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;

  font-size: 13px;
  font-weight: 600;

  box-shadow:
    0 8px 25px rgba(168, 85, 247, 0.35),
    0 2px 6px rgba(0,0,0,0.3);

  animation: promoGlow 3s ease-in-out infinite;
}

.promo-main {
  font-size: 14px;
  font-weight: 700;
}

.promo-sub {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 500;
}

/* subtle glow animation */
@keyframes promoGlow {
  0% {
    box-shadow:
      0 8px 25px rgba(168, 85, 247, 0.35),
      0 2px 6px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow:
      0 12px 35px rgba(168, 85, 247, 0.6),
      0 4px 10px rgba(0,0,0,0.4);
  }
  100% {
    box-shadow:
      0 8px 25px rgba(168, 85, 247, 0.35),
      0 2px 6px rgba(0,0,0,0.3);
  }
}
#demoVideo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: transparent;
}
.waiterheight {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: transparent; 
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.4);
}

.mobile-contact-link {
  display: none;
}

.desktop-contact-btn {
  display: inline-flex;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 40px 0 60px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 168, 95, 0.10), transparent 34%),
    radial-gradient(circle at 15% 30%, rgba(138, 58, 78, 0.12), transparent 28%);
}
.hero-visual img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  background-color:transparent;
}
.hero-visual {
  width: 100%;
  max-width: 380px;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual video {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

.hero-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center; 
}
.cta-button {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;

  background: linear-gradient(135deg, #3b82f6, #7c4dcc);
  color: #fff;

  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
   box-shadow:
    0 10px 25px rgba(59,130,246,0.4),
    0 0 20px rgba(124,77,204,0.3);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-gold-soft);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lead {
  margin: 20px 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #aab0c0;
}

.neon-border-bg {
  fill: none;
  stroke: rgba(124, 77, 204, 0.25); 
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(124, 77, 204, 0.4));
}

.neon-border-line {
  stroke: #7c4dcc; 

  filter:
    drop-shadow(0 0 4px rgba(124, 77, 204, 0.95))
    drop-shadow(0 0 10px rgba(124, 77, 204, 0.85))
    drop-shadow(0 0 18px rgba(59, 130, 246, 0.55)); 
}
.neon-stroke-btn:hover .neon-border-line {
  filter:
    drop-shadow(0 0 6px rgba(124, 77, 204, 1))
    drop-shadow(0 0 14px rgba(124, 77, 204, 0.95))
    drop-shadow(0 0 24px rgba(59, 130, 246, 0.7));
}

.neon-stroke-btn {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 54px;
  text-decoration: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #1d1238 0%, #2d1b4e 100%);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    inset 0 0 10px rgba(255, 255, 255, 0.04);
  overflow: visible;
  margin-top:30px;
}

.neon-stroke-btn .btn-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border-radius: 16px;
}

.neon-border-svg {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.neon-border-bg {
  fill: none;
  stroke: rgba(124, 77, 204, 0.25);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(124, 77, 204, 0.4));
}

.neon-border-line {
  fill: none;
  stroke: #7c4dcc;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 90 540;
  stroke-dashoffset: 0;
  filter:
    drop-shadow(0 0 4px rgba(124, 77, 204, 0.95))
    drop-shadow(0 0 10px rgba(124, 77, 204, 0.85))
    drop-shadow(0 0 18px rgba(59, 130, 246, 0.55));
  animation: neonBorderMove 6.5s linear infinite;
}

.neon-stroke-btn:hover .neon-border-line {
  animation-duration: 2.2s;
  filter:
    drop-shadow(0 0 6px rgba(124, 77, 204, 1))
    drop-shadow(0 0 14px rgba(124, 77, 204, 0.95))
    drop-shadow(0 0 24px rgba(59, 130, 246, 0.7));
}

@keyframes neonBorderMove {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -630;
  }
}

.play-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-visual {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}


.hero-visual img,
.hero-visual video {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
}

.hero-visual img {
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

.section {
  padding: 80px 0;
}

.section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.centered-heading {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-intro {
  margin: 16px auto 0;
  max-width: 680px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
}

.narrow-copy {
  max-width: 860px;
}

.body-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto 18px 0;
}

.value-strip {
  padding-top: 10px;
}

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

.value-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.value-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.value-card,
.feature-card-inner,
.feature-list li,
.faq-item {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(214, 168, 95, 0.08);
}
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.feature-header h3 {
  margin: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.97rem;
  line-height: 1.5;
  transition: all 0.25s ease;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #38a35b, #3ad66d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.feature-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.special-features {
  padding-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.feature-card-inner {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card-inner:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(139, 92, 246, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  opacity: 0.92;
  font-size: 1.5rem;
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 10px;
}
.feature-icon-purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.feature-icon-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.feature-icon-cyan {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.feature-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.feature-icon-green {
  background: linear-gradient(135deg, #22c55e, #10b981);
}
.feature-icon-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.feature-icon-sync {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}

.plans-placeholder {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.plans-placeholder > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-placeholder img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius:20px;
}

.featured-plan {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.12);
}
.contact-section .contact-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 38px 30px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.06); 
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(10px); 

  text-align: center;
}
.contact-section .btn-outline {
  min-width: 180px;
}
.contact-info {
  display: grid;
  flex-direction: column;
  align-items: center; 
  gap: 18px;
  margin-top: 20px;
  justify-items: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-item .label {
  color: #ffffff;
  font-weight: 600;
}

.contact-item a {
  color: #f0c987; 
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(59,130,246,0.2);
    background: linear-gradient(
    120deg,
    rgba(10, 25, 50, 0.98),
    rgba(20, 45, 85, 0.98)
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-center p,
.footer-right p,
.footer-inner strong {
  margin: 0;
  font-size: 0.85rem;
}

.footer-center p,
.footer-right p {
  color: #aab0c0;
}

.footer-right {
  text-align: right;
}
.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.faq-item {
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #fff;
}

.faq-item .body-copy {
  margin: 0;
}
.faq-accordion {
  max-width: 980px;
  margin: 32px auto 0;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #c084fc;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow:
    0 10px 25px rgba(124, 58, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(124, 58, 237, 0.6),
    0 6px 14px rgba(0, 0, 0, 0.5);
}

@media (max-width: 980px) {
  .hero {
    padding: 64px 0 48px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .site-header {
    position: static;
  }

  .topbar {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
  }

  .header-appstore {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .smalllogo {
    height: 34px;
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 50;
  }

  .desktop-contact-btn {
    display: none;
  }

  .nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  width: 100%;
  margin: 0;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(214, 168, 95, 0.14);
  background: rgba(20, 11, 13, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

  .menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
    color: #fff;
    transition: all 0.25s ease;
  }
  
  .nav a:hover {
  color: var(--brand-gold-soft);
  text-shadow:
    0 0 6px rgba(214,168,95,0.5),
    0 0 14px rgba(214,168,95,0.3);
}

  .mobile-contact-link {
    display: block;
    margin-top: 6px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff !important;
  }

  .hero {
    padding: 54px 0 40px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-lead,
  .body-copy,
  .section-intro,
  .feature-card p,
  .value-card p {
    font-size: 0.98rem;
    color: var(--muted);
  }
  
  .hero-visual img {
    max-width: 260px;
  }

  .value-grid,
  .feature-list,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    font-size: 0.94rem;
  }

  .hero-shell {
    flex-direction: column;
    text-align: center;
  }

  .hero-copy {
  text-align: left;
}

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .body-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    margin-top: 20px;
  }
 .faq-question {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 0.97rem;
  }
   .hero-title-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-top-left {
    max-width: 100%;
  }

  .promo-img {
    width: 180px;
    transform: none;
  }
    .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
   .hero-shell {
    flex-direction: column;
    text-align: center;
  }
  
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  #backToTop {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}