/* ==============================
   FONTS — Zona Pro (local)
============================== */
@font-face {
  font-family: 'Zona Pro';
  src: url('fonts/ZonaPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zona Pro';
  src: url('fonts/ZonaPro-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zona Pro';
  src: url('fonts/ZonaPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zona Pro';
  src: url('fonts/ZonaPro-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zona Pro';
  src: url('fonts/ZonaPro-ExtraBold.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --bg: #0c0b0a;
  --bg2: #161412;
  --bg3: #1d1a18;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f0;
  --muted: #888899;
  --accent: #f48c62;
  --accent2: #e66f48;
  --green: #3dd68c;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: rgba(0,0,0,0.5);
}

/* Light mode */
html.light {
  --bg: #f4f4f8;
  --bg2: #eaeaf0;
  --bg3: #dfdfe8;
  --border: rgba(0,0,0,0.1);
  --text: #1a1a2e;
  --muted: #6b6b80;
  --shadow-card: rgba(0,0,0,0.12);
}

/* Display font for headings */
h1, h2, h3,
.logo,
.hero-title,
.stat-num,
.step-num,
.section-header h2,
.integrations-label,
.cta-inner h2 {
  font-family: 'Zona Pro', sans-serif;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: var(--bg);
}
html.light .navbar {
  background: rgba(244,244,248,0.88);
}
html.light .hero-glow {
  background: radial-gradient(ellipse at center, rgba(244,140,98,0.1) 0%, transparent 70%);
}
html.light .cta-glow {
  background: radial-gradient(ellipse at center, rgba(230,111,72,0.1) 0%, transparent 70%);
}
html.light .testimonial-card,
html.light .step {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.07);
}
html.light .feature-saas:hover {
  background: rgba(0,0,0,0.03);
}
html.light .testimonial-card:hover {
  box-shadow:
    0 20px 50px -12px rgba(244,140,98,0.18),
    0 6px 20px -6px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.8);
}
html.light .features-saas-grid {
  background: rgba(0,0,0,0.02);
}
html.light pre { background: var(--bg3); border-radius: 0 0 var(--radius) var(--radius); }
html.light .c { color: #9ca3af; }

body {
  font-family: 'Zona Pro', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

html.light body {
  background: var(--bg);
}

/* Full-bleed page shell (content width stays in .container) */
.page-wrapper {
  width: 100%;
  margin: 0;
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  transition: background 0.35s ease;
}

html.light .page-wrapper {
  background: var(--bg);
}

.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 0;
}

html.light .navbar {
  background: rgba(244,244,248,0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-footer .logo-img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 8px 18px !important;
}

.btn-nav:hover { opacity: 0.9; }

.theme-toggle {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  transform: rotate(20deg) scale(1.1);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(244,140,98,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(244,140,98,0.15);
  border: 1px solid rgba(244,140,98,0.35);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.65;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat { padding: 0 32px; text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.85rem; color: var(--muted); }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ==============================
   SPONSORS / VALUE STRIP
============================== */
.sponsors {
  padding: 56px 0 64px;
  overflow: hidden;
}

.sponsors-value-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sponsors-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.sponsors-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 14px rgba(244,140,98,0.55);
  animation: valuePulse 2.2s ease-in-out infinite;
}

@keyframes valuePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.85; }
}

.sponsors-headline {
  font-family: 'Zona Pro', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 32px;
}

.sponsors-marquee-wrap {
  overflow: visible;
  width: 100%;
  margin: 0 auto;
  align-self: stretch;
  padding: 8px 0 4px;
  box-sizing: border-box;
}

.sponsors-value .container.sponsors-value-inner {
  overflow: visible;
}

.sponsors-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
  opacity: 0.7;
}

.sponsors-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.sponsor-logo svg {
  height: 34px;
  width: auto;
}

.sponsor-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,140,98,0.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 8px 28px -8px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.sponsor-pill:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(244,140,98,0.45);
  background: rgba(244,140,98,0.08);
  box-shadow:
    0 0 0 1px rgba(244,140,98,0.15) inset,
    0 16px 40px -12px rgba(244,140,98,0.25);
}

.sponsor-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0a0a0f;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink: 0;
}

html.light .sponsor-pill-icon {
  color: #1a1a2e;
}

html.light .sponsor-pill {
  background: rgba(0,0,0,0.03);
  border-color: rgba(230,111,72,0.35);
  box-shadow: 0 8px 28px -8px rgba(0,0,0,0.12);
}

html.light .sponsor-pill:hover {
  background: rgba(244,140,98,0.12);
  border-color: rgba(230,111,72,0.5);
}

.sponsor-text {
  font-family: 'Zona Pro', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.sponsor-logo {
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
  cursor: default;
}

.sponsor-logo:hover {
  opacity: 1;
  color: var(--text);
}

@media (max-width: 768px) {
  .sponsors-marquee-wrap {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sponsor-pill {
    padding: 10px 16px 10px 12px;
  }
  .sponsor-text {
    font-size: 0.85rem;
  }
}

/* ==============================
   INTEGRATIONS
============================== */
.integrations {
  padding: 20px 0 80px;
  text-align: center;
}

.integrations-label {
  font-family: 'Zona Pro', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  cursor: default;
}
.chip:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px -4px rgba(244,140,98,0.3);
}

/* ==============================
   SECTIONS COMMON
============================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.sh-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.sh-chevron {
  color: var(--accent2);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  -webkit-text-fill-color: var(--accent2);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text);
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ==============================
   FEATURES (minimal SaaS)
============================== */
.features { padding: 100px 0; }
.features--saas { padding: 120px 0; }

.features-saas-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 4rem;
}

.features-saas-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.features-saas-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.15rem;
  color: var(--text);
}

.features-saas-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
  margin: 0;
}

.features-saas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}

.feature-saas {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
  transition: background 0.25s ease;
}
.feature-saas:nth-child(2n) { border-right: none; }
.feature-saas:nth-last-child(-n+2) { border-bottom: none; }

.feature-saas:hover {
  background: rgba(255,255,255,0.035);
}

.feature-saas-num {
  flex-shrink: 0;
  font-family: 'Zona Pro', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--accent2);
  opacity: 0.85;
  padding-top: 0.2em;
}

.feature-saas-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.feature-saas-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ==============================
   HOW IT WORKS
============================== */
.how {
  padding: 100px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.45s ease;
}

.step:hover {
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}

.step::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(244,140,98,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  pointer-events: none;
}

.step:hover {
  border-color: rgba(244,140,98,0.45);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 16px 48px -10px rgba(244,140,98,0.22),
    0 4px 16px -4px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.step:hover::after { opacity: 1; bottom: -20px; }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { color: var(--muted); font-size: 0.9rem; }
.step-content code { background: rgba(244,140,98,0.15); color: #f2b89a; padding: 2px 7px; border-radius: 5px; font-size: 0.85rem; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--muted);
  padding-top: 60px;
  flex-shrink: 0;
}

/* ==============================
   INSTALL
============================== */
.install { padding: 100px 0; }

.install-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 24px;
}

.tab {
  background: none;
  border: none;
  color: var(--muted);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  font-family: 'Zona Pro', sans-serif;
}
.tab.active { background: var(--accent); color: #fff; }
.tab:hover:not(.active) { background: rgba(255,255,255,0.06); color: var(--text); }

.code-block {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.code-block.active { display: block; }

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.copy-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
  font-family: inherit;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }

pre {
  padding: 24px;
  overflow-x: auto;
}
code {
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.9rem;
  line-height: 1.8;
}
.c { color: #4a5568; }

/* ==============================
   PRODUCT DEMO (screenshots)
============================== */
.demo-section {
  padding: 96px 0 100px;
  position: relative;
}

.demo-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(244,140,98,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: 8px;
}

.demo-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: zoom-in;
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.demo-shot:focus {
  outline: none;
}

.demo-shot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.demo-shot:hover {
  transform: translateY(-4px);
}

.demo-shot--hero {
  grid-column: 1 / -1;
}

.demo-shot:not(.demo-shot--hero):not(.demo-shot--wide) {
  grid-column: span 4;
}

.demo-shot--wide {
  grid-column: 1 / -1;
  max-width: 920px;
  width: 100%;
  justify-self: center;
}

.demo-shot-frame {
  position: relative;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid rgba(244,140,98,0.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 20px 50px -20px rgba(0,0,0,0.55);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.demo-shot:hover .demo-shot-frame {
  border-color: rgba(244,140,98,0.45);
  box-shadow:
    0 0 0 1px rgba(244,140,98,0.12) inset,
    0 28px 60px -18px rgba(244,140,98,0.2);
}

.demo-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  object-position: top center;
}

.demo-shot--hero .demo-shot-frame img {
  max-height: min(72vh, 640px);
  object-fit: cover;
}

.demo-shot-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.demo-shot:hover .demo-shot-zoom,
.demo-shot:focus-visible .demo-shot-zoom {
  opacity: 1;
  transform: translateY(0);
}

.demo-shot:not(.demo-shot--hero) .demo-shot-zoom {
  padding: 8px 10px;
  font-size: 0.85rem;
}

.demo-shot figcaption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

html.light .demo-shot-frame {
  background: var(--bg3);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.12);
}

html.light .demo-shot-zoom {
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border-color: rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .demo-shot:not(.demo-shot--hero):not(.demo-shot--wide) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .demo-shot:not(.demo-shot--hero):not(.demo-shot--wide),
  .demo-shot--hero,
  .demo-shot--wide {
    grid-column: 1 / -1;
    max-width: none;
  }
  .demo-shot-zoom {
    opacity: 0.95;
    transform: translateY(0);
  }
}

/* Demo lightbox */
.demo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.demo-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.demo-lightbox[hidden] {
  display: none !important;
}

.demo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(5,5,10,0.92);
  cursor: pointer;
}

html.light .demo-lightbox-backdrop {
  background: rgba(20,20,30,0.88);
}

.demo-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1440px);
  max-height: min(92vh, 900px);
  animation: demoPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes demoPop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.demo-lightbox-img {
  display: block;
  max-width: min(96vw, 1440px);
  max-height: min(88vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
}

.demo-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--bg2);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 2;
}

.demo-lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0f;
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .demo-lightbox-close {
    top: 8px;
    right: 8px;
  }
}

/* ==============================
   TESTIMONIALS
============================== */
.testimonials {
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Marquee container — testimonials, бусад хэсэгтэй ижил төв & өргөн */
.marquee-container {
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Marquee rows */
.marquee-row {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}

.marquee-track.marquee-reverse {
  animation: marquee-right 65s linear infinite;
}

/* Зогсоох — track дээр hover хийхэд */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card */
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  width: 280px;
  min-height: 160px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.45s ease;
}

.testimonial-card:hover {
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,140,98,0.6), rgba(230,111,72,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(244,140,98,0.4);
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 20px 50px -12px rgba(244,140,98,0.2),
    0 6px 20px -6px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.testimonial-card:hover::before { opacity: 1; }

/* Twitter card header */
.t-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: 2px solid rgba(255,255,255,0.12);
}

/* Avatar color variants */
.t-av-j  { background: linear-gradient(135deg, #f48c62, #e06a42); }
.t-av-t  { background: linear-gradient(135deg, #e66f48, #d45a38); }
.t-av-t2 { background: linear-gradient(135deg, #3dd68c, #28a870); }
.t-av-d  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.t-av-d2 { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.t-av-c  { background: linear-gradient(135deg, #f87171, #ef4444); }
.t-av-a  { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.t-av-c2 { background: linear-gradient(135deg, #34d399, #059669); }
.t-av-b  { background: linear-gradient(135deg, #fb923c, #ea580c); }
.t-av-tm { background: linear-gradient(135deg, #e879f9, #c026d3); }
.t-av-s  { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.t-av-k  { background: linear-gradient(135deg, #4ade80, #16a34a); }

.t-meta { flex: 1; min-width: 0; }
.t-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-handle {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

.t-x {
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
  opacity: 0.5;
}

.t-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* ==============================
   CTA
============================== */
.cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(230,111,72,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.cta-inner p { color: var(--muted); font-size: 1.1rem; margin-bottom: 20px; }

.cta-phone {
  display: block;
  font-family: 'Zona Pro', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 28px;
  line-height: 1;
}
.cta-phone:hover { color: var(--accent); }

/* ==============================
   FOOTER
============================== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .logo {
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cta-inline-logo {
  vertical-align: -0.45em;
  display: inline-block;
  width: clamp(100px, 8vw, 100px);
  height: clamp(100px, 8vw, 100px);
  object-fit: contain;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; max-width: 240px; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==============================
   RESPONSIVE
============================== */

/* Tablet — үнийн карт бүгд ижил өргөн (2 баганаар эхний нь нарийн болдог тул 1 багана) */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }
  .pricing-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-self: stretch;
  }
  .features-saas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-cols { gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; width: 100%; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }

  .hero { padding: 80px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }

  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* Үнэ: контейнерийн хязгааргүй, карт дэлгэцийн өргөн (≤768px) */
  .pricing > .container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .pricing .section-header {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    width: 100%;
    margin: 0;
    gap: 12px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }
  .pricing-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-self: stretch;
  }
  .pricing-card { padding: 28px 20px; }
  .pricing-head { min-height: 0; }
  .pricing-price { font-size: 1.9rem; }
  .cursor-glow { display: none; }

  .features-saas-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .feature-saas {
    border-right: none;
    padding: 1.75rem 1.35rem;
  }
  .feature-saas:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .features--saas { padding: 88px 0; }
  .features-saas-head { margin-bottom: 2.75rem; }
  .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .container { padding: 0 16px; }

  .marquee-row { gap: 12px; }
  .testimonial-card { width: 240px; min-height: 240px; padding: 18px; }

  .sponsors-track { gap: 24px; }
  .sponsors-value .sponsors-track { gap: 10px; }
  .sponsor-logo svg { height: 28px; }
}

/* ==============================
   SCROLL PROGRESS BAR
============================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(244,140,98,0.6);
}

/* ==============================
   PARTICLE CANVAS
============================== */
.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ==============================
   GLASSMORPHISM CARDS
============================== */
.testimonial-card,
.step,
.pricing-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ==============================
   LIVE COUNTER
============================== */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--muted);
  animation: fadeUp 0.6s 0.5s ease both;
}
.live-counter strong { color: var(--text); }
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3dd68c;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(61,214,140,0.4);
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,214,140,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(61,214,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,214,140,0); }
}

/* ==============================
   PAGE LOADER
============================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.loader-title {
  margin: 0;
  font-family: 'Zona Pro', sans-serif;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: min(320px, 90vw);
  line-height: 1.2;
}
.loader-logo {
  animation: loaderBounce 0.8s ease infinite alternate;
}
.loader-logo img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
@keyframes loaderBounce {
  from { transform: translateY(0) rotate(-10deg); }
  to   { transform: translateY(-12px) rotate(10deg); }
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 100px;
  animation: loaderProgress 1.2s ease forwards;
}
@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ==============================
   CURSOR GLOW
============================== */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,140,98,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: left 0.1s ease, top 0.1s ease;
}


/* ==============================
   TOAST
============================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1000;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(244,140,98,0.4);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==============================
   BACK TO TOP
============================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(244,140,98,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px) scale(1.1); }

/* ==============================
   PRICING
============================== */
.pricing { padding: clamp(60px, 8vw, 100px) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  position: relative;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.16);
}

.pricing-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0;
  width: fit-content;
}
.pricing-price {
  font-family: 'Zona Pro', sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0;
  white-space: nowrap;
  line-height: 1.15;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }

.pricing-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  flex: 1 1 auto;
  min-height: 0;
}
.pricing-features li { font-size: 0.9rem; color: var(--text); }
.pricing-features li.muted { color: var(--muted); opacity: 0.5; }

.pricing-btn {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  flex-shrink: 0;
  /* padding: btn-primary / btn-ghost-ийн 14px 28px хадгалагдана — зөвхөн дээд талд padding-top өгөхгүй */
}

/* ==============================
   FAQ
============================== */
.faq { padding: 100px 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Zona Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-a code {
  background: rgba(244,140,98,0.15);
  color: #f2b89a;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.85rem;
}

/* ==============================
   REBRAND — layout & surfaces
============================== */
.navbar--float {
  position: sticky;
  top: 12px;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  padding: 0 16px;
}
.navbar--float .nav-inner {
  height: 60px;
  padding: 0 10px 0 6px;
  background: rgba(12,11,10,0.78);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.7);
}
html.light .navbar--float .nav-inner {
  background: rgba(255,255,255,0.86);
}
.navbar--float .logo-img { width: 42px; height: 42px; }

.hero--split {
  text-align: left;
  padding: 56px 0 40px;
  overflow: visible;
}
.hero--split .hero-glow {
  left: 18%;
  width: 640px;
  height: 520px;
  top: -40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}
.hero--split .hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  margin-bottom: 18px;
  animation: none;
}
.hero--split .hero-badge,
.hero--split .hero-sub,
.hero--split .hero-actions { animation: none; }
.hero--split .hero-sub {
  margin: 0 0 28px;
  max-width: 480px;
}
.hero--split .hero-actions {
  justify-content: flex-start;
  margin-bottom: 22px;
}
.hero--split .live-counter {
  margin: 0;
  width: fit-content;
  animation: none;
}

.hero-phones {
  position: relative;
  height: 560px;
  max-width: 520px;
  margin: 0 auto;
}
.phone-frame {
  position: absolute;
  width: min(46%, 236px);
  margin: 0;
  padding: 8px;
  border-radius: 34px;
  background: #161412;
  box-shadow:
    0 24px 50px -18px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: #fff;
}
.phone-frame--back {
  left: 4%;
  top: 48px;
  transform: rotate(-9deg);
  z-index: 1;
}
.phone-frame--front {
  right: 6%;
  top: 0;
  transform: rotate(7deg);
  z-index: 2;
}
.device-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 80px -28px rgba(0,0,0,0.75),
    0 0 80px -20px rgba(244,140,98,0.18);
  transform: perspective(1400px) rotateY(-6deg) rotateX(4deg);
  transform-origin: left center;
}
.device-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #12100e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3532;
}
.device-bar span:nth-child(1) { background: #e36a4a; }
.device-bar span:nth-child(2) { background: #d4a15a; }
.device-bar span:nth-child(3) { background: #5aa86a; }
.device-bar em {
  margin-left: 10px;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.device-bar--sm { padding: 8px 12px; }
.device-bar--sm em { display: none; }

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.metric {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.metric .stat-num {
  font-size: 1.7rem;
  margin-bottom: 2px;
}
.metric .stat-label { font-size: 0.82rem; }

.section-header--left { text-align: left; }
.section-header--left p { margin-left: 0; margin-right: 0; }

.outcomes { padding: 72px 0 40px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.outcome-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 168px;
  transition: border-color 0.25s, transform 0.25s;
}
.outcome-card:hover {
  border-color: rgba(244,140,98,0.35);
  transform: translateY(-3px);
}
.outcome-ico {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.outcome-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.how--process { padding: 80px 0 40px; }
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: none;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,140,98,0.45), transparent);
  pointer-events: none;
}
.process-step {
  position: relative;
  padding: 0 8px 8px;
}
.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #1a100c;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px -8px rgba(244,140,98,0.55);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.work { padding: 80px 0 100px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.work-card {
  padding: 26px 24px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
  min-height: 220px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,140,98,0.32);
  box-shadow: 0 20px 40px -22px rgba(244,140,98,0.35);
}
.work-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,140,98,0.14);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.work-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.demo-shot-frame .device-bar { border-radius: 0; }

.cta--panel {
  padding: 40px 0 100px;
}
.cta--panel .cta-glow { display: none; }
.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 48px 52px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(244,140,98,0.22), transparent 50%),
    linear-gradient(160deg, #211c19 0%, #141210 100%);
  border: 1px solid rgba(244,140,98,0.22);
}
.cta-panel-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.cta-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}
.cta-panel-call {
  text-align: right;
}
.cta--panel .cta-phone {
  margin-bottom: 16px;
  color: var(--text);
}
.cta--panel .btn-large { width: auto; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .cta-actions { justify-content: flex-start; }
}

.cta-panel--form {
  align-items: start;
}
.cta-panel--form .cta-phone {
  display: inline-block;
  margin: 18px 0 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.inquiry-form-full { grid-column: 1 / -1; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(244,140,98,0.45);
  border-color: transparent;
}
.inquiry-form textarea { resize: vertical; min-height: 84px; }
.inquiry-submit { grid-column: 1 / -1; width: 100%; text-align: center; border: none; cursor: pointer; }
.inquiry-submit:disabled { opacity: 0.6; cursor: wait; }
.inquiry-status { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; }

.inquiry-page {
  padding: 48px 0 80px;
  position: relative;
  z-index: 1;
}
.inquiry-page-inner {
  max-width: 720px;
}
.inquiry-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}
.inquiry-back:hover { color: var(--text); }
.inquiry-form--page {
  padding: 28px;
  border-radius: 22px;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.07);
}
html.light .inquiry-form--page {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.inquiry-status.is-ok { color: var(--green); }
.inquiry-status.is-err { color: #f07167; }
html.light .inquiry-form input,
html.light .inquiry-form select,
html.light .inquiry-form textarea {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
}

html.light .phone-frame {
  background: #2a2623;
  box-shadow:
    0 24px 50px -18px rgba(0,0,0,0.22),
    0 0 0 1px rgba(0,0,0,0.06) inset;
}
html.light .device-frame,
html.light .outcome-card,
html.light .work-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
html.light .device-bar { background: #efeae6; }
html.light .cta-panel {
  background: linear-gradient(160deg, #fff6f1 0%, #fff 70%);
  border-color: rgba(230,111,72,0.25);
}
html.light .navbar--float { background: transparent; }
html.light .metric {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
html.light .pricing-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
html.light .pricing-card:hover {
  border-color: rgba(0,0,0,0.16);
}

@media (max-width: 960px) {
  .hero-grid,
  .cta-panel,
  .outcomes-grid,
  .work-grid,
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process::before { display: none; }
  .hero-grid { gap: 28px; }
  .device-frame { transform: none; }
  .hero-phones { height: 460px; }
  .phone-frame--back { top: 36px; }
  .phone-frame--front { top: 0; }
  .cta-panel { padding: 32px 24px; }
  .cta-panel-call { text-align: left; }
  .inquiry-form { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar--float { top: 0; padding: 8px 12px 0; }
  .navbar--float .nav-links {
    top: 72px;
    border-radius: 0 0 16px 16px;
  }
  .hero--split { padding: 28px 0 24px; }
  .hero-grid,
  .hero-metrics,
  .outcomes-grid,
  .work-grid,
  .process,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .hero-metrics { margin-top: 24px; }
  .hero-phones {
    height: 420px;
    max-width: 380px;
    margin-top: 8px;
  }
  .phone-frame { width: min(48%, 168px); padding: 6px; border-radius: 26px; }
  .phone-frame img { border-radius: 20px; }
  .phone-frame--back { top: 28px; transform: rotate(-7deg); }
  .phone-frame--front { top: 4px; transform: rotate(6deg); }
  .work { padding: 56px 0 72px; }
  .cta--panel { padding: 24px 0 72px; }
}

.inquiry-admin-wrap { max-width: 1180px; }
.inquiry-admin-title { margin: 0 0 8px; font-size: 1.5rem; }
.inquiry-admin-lead { color: var(--muted); margin: 0 0 20px; }
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
}
.admin-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg2);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.admin-table td:nth-child(5),
.admin-table td:nth-child(7) {
  white-space: normal;
  min-width: 140px;
}
.admin-table th { color: var(--muted); font-weight: 600; }
.admin-status {
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  color: var(--text);
  font-family: inherit;
}
html.light .admin-table-wrap {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
html.light .admin-table th,
html.light .admin-table td {
  border-bottom-color: rgba(0,0,0,0.06);
}
html.light .admin-status {
  background: #fff;
  border-color: rgba(0,0,0,0.12);
}